Bug 170711 - games/unknown-horizons: fix python version
Summary: games/unknown-horizons: fix python version
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-17 21:10 UTC by fiziologus
Modified: 2012-08-18 11:40 UTC (History)
0 users

See Also:


Attachments
file.diff (275 bytes, patch)
2012-08-17 21:10 UTC, fiziologus
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description fiziologus 2012-08-17 21:10:08 UTC
[games/unknown-horizons] fix python version to <= 2.7

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-17 21:10:19 UTC
Class Changed
From-To: change-request->maintainer-update

Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-08-18 11:30:33 UTC
Author: rm
Date: Sat Aug 18 10:30:18 2012
New Revision: 302719
URL: http://svn.freebsd.org/changeset/ports/302719

Log:
  - strict python version 2.x
  - fix portling warnings (missing tabs), while here
  
  PR:		170711
  Submitted by:	Green Dog <fiziologus at gmail dot com> (maintainer)

Modified:
  head/games/unknown-horizons/Makefile

Modified: head/games/unknown-horizons/Makefile
==============================================================================
--- head/games/unknown-horizons/Makefile	Sat Aug 18 10:28:18 2012	(r302718)
+++ head/games/unknown-horizons/Makefile	Sat Aug 18 10:30:18 2012	(r302719)
@@ -26,7 +26,7 @@ ONLY_FOR_ARCHS=		i386 amd64
 USE_XZ=			yes
 USE_GNOME=		intltool
 USE_GETTEXT=		build
-USE_PYTHON=		yes
+USE_PYTHON=		-2.7
 USE_PYDISTUTILS=	yes
 PYDISTUTILS_PKGNAME=	UnknownHorizons
 
@@ -35,15 +35,15 @@ MAN6=			unknown-horizons.6
 .include <bsd.port.pre.mk>
 
 .if ${ARCH} == i386
-PLIST_SUB+=     X86_ONLY=""
+PLIST_SUB+=	X86_ONLY=""
 .else
-PLIST_SUB+=     X86_ONLY="@comment "
+PLIST_SUB+=	X86_ONLY="@comment "
 .endif
 
 .if ${ARCH} == amd64
-PLIST_SUB+=     X64_ONLY=""
+PLIST_SUB+=	X64_ONLY=""
 .else
-PLIST_SUB+=     X64_ONLY="@comment "
+PLIST_SUB+=	X64_ONLY="@comment "
 .endif
 
 post-patch:
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Ruslan Makhmatkhanov freebsd_committer freebsd_triage 2012-08-18 11:31:23 UTC
State Changed
From-To: open->closed

Committed, thank you!