diff options
author | rm <rm@FreeBSD.org> | 2012-12-12 14:42:27 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2012-12-12 14:42:27 +0800 |
commit | 39d352ed72cb81b9850e1e959ab737de730ce687 (patch) | |
tree | 1609f226d73754d2a6b599e62cc1ddf5691451f8 /www/trac-ticketimport | |
parent | be0bb4da956ccfec67b7c2f243bd7eba64806116 (diff) | |
download | freebsd-ports-graphics-39d352ed72cb81b9850e1e959ab737de730ce687.tar.gz freebsd-ports-graphics-39d352ed72cb81b9850e1e959ab737de730ce687.tar.zst freebsd-ports-graphics-39d352ed72cb81b9850e1e959ab737de730ce687.zip |
- drop direct dependency on setuptools
- trim Makefile header
- limit python version to 2.x only
- move pkg-plist contents into Makefile:PLIST_FILES
PR: 174319
Submitted by: rm (myself)
Approved by: brooks (maintainer, by mail)
Diffstat (limited to 'www/trac-ticketimport')
-rw-r--r-- | www/trac-ticketimport/Makefile | 12 | ||||
-rw-r--r-- | www/trac-ticketimport/pkg-plist | 1 |
2 files changed, 4 insertions, 9 deletions
diff --git a/www/trac-ticketimport/Makefile b/www/trac-ticketimport/Makefile index e22734b7614..4b64e7d72ab 100644 --- a/www/trac-ticketimport/Makefile +++ b/www/trac-ticketimport/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: trac-ticketimport -# Date created: Dec 31, 2009 -# Whom: Brooks Davis <brooks@freebsd.org> -# +# Created by: Brooks Davis <brooks@freebsd.org> # $FreeBSD$ -# PORTNAME= ${PYDISTUTILS_PKGNAME:S;^Trac;;S;Plugin$;;:L} PORTVERSION= 0.7c @@ -18,11 +14,11 @@ COMMENT= Import or update tickets from a CSV file or Excel file RUN_DEPENDS+= tracd:${PORTSDIR}/www/trac \ ${PYTHON_PKGNAMEPREFIX}xlrd>=0.7.1:${PORTSDIR}/textproc/py-xlrd -BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install +USE_PYTHON= -2.7 +USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= TicketImport +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% # Maintainter targets below this point diff --git a/www/trac-ticketimport/pkg-plist b/www/trac-ticketimport/pkg-plist deleted file mode 100644 index ddf68a1c022..00000000000 --- a/www/trac-ticketimport/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% |