mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
6bdccc5cda
The project does not seem to exist in PyPI anymore, switch to fetching from GitHub. diff between the two tarballs: Only in dist-TraitsGUI-3.1.0: PKG-INFO diff -upr dist-TraitsGUI-3.1.0/setup.cfg traitsgui-3.1.0/setup.cfg --- dist-TraitsGUI-3.1.0/setup.cfg 2009-07-16 19:04:50.000000000 +0200 +++ traitsgui-3.1.0/setup.cfg 2009-07-16 02:02:18.000000000 +0200 @@ -1,15 +1,13 @@ [egg_info] -tag_build = -tag_date = 0 -tag_svn_revision = 0 - -[nosetests] -verbosity = 0 -detailed-errors = 1 -with-coverage = 1 -with-doctest = 1 +tag_build = .dev +tag_svn_revision = 1 [aliases] release = egg_info -RDb '' bdist_egg = build_docs bdist_egg +[nosetests] +verbosity = 0 +with-doctest = 1 +detailed-errors = 1 +with-coverage = 1 Only in dist-TraitsGUI-3.1.0: TraitsGUI.egg-info MFH: 2016Q1
35 lines
1013 B
Makefile
35 lines
1013 B
Makefile
# Created by: Jacob Frelinger <jacob.frelinger@duke.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= traitsgui
|
|
PORTVERSION= 3.1.0
|
|
PORTREVISION= 7
|
|
CATEGORIES= x11-toolkits python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= jacob.frelinger@duke.edu
|
|
COMMENT= Gui toolkit derived from the Enthought python traits library
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}traitsbackendwx>=3.1.0:${PORTSDIR}/x11-toolkits/py-traitsbackendwx
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= enthought
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/examples \
|
|
&& ${FIND} . -type d -exec ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/\{} \; \
|
|
&& ${FIND} . -type f -exec ${INSTALL_DATA} \{} ${STAGEDIR}${EXAMPLESDIR}/\{} \;
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/docs \
|
|
&& ${FIND} . -type d -exec ${MKDIR} ${STAGEDIR}${DOCSDIR}/\{} \; \
|
|
&& ${FIND} . -type f -exec ${INSTALL_DATA} \{} ${STAGEDIR}${DOCSDIR}/\{} \;
|
|
|
|
.include <bsd.port.mk>
|