diff options
author | lioux <lioux@FreeBSD.org> | 2004-12-24 19:27:38 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2004-12-24 19:27:38 +0800 |
commit | da51fb3b0a155dedbec03dbfd85a374760c1f7a7 (patch) | |
tree | d936be2a1b1b69a72320d04f347a17d7454026bf /net-p2p/py-kenosis-bittorrent | |
parent | 74fcc6b6bb0dc7c7e67c4881da2f40786279f939 (diff) | |
download | freebsd-ports-gnome-da51fb3b0a155dedbec03dbfd85a374760c1f7a7.tar.gz freebsd-ports-gnome-da51fb3b0a155dedbec03dbfd85a374760c1f7a7.tar.zst freebsd-ports-gnome-da51fb3b0a155dedbec03dbfd85a374760c1f7a7.zip |
o devel/py-psyco only works under i386. Therefore, define
WITHOUT_PSYCO=yes if ${ARCH} != "i386"
o No PORTREVISION bump necessary since the dependency just wouldn't
work outside of i386
Reminded by: perky
cVS: ----------------------------------------------------------------------
Diffstat (limited to 'net-p2p/py-kenosis-bittorrent')
-rw-r--r-- | net-p2p/py-kenosis-bittorrent/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net-p2p/py-kenosis-bittorrent/Makefile b/net-p2p/py-kenosis-bittorrent/Makefile index 3ada585314a8..06cbc48e7568 100644 --- a/net-p2p/py-kenosis-bittorrent/Makefile +++ b/net-p2p/py-kenosis-bittorrent/Makefile @@ -27,6 +27,12 @@ CONFLICTS= py??-*[Bb]it[Tt]orrent* py??-*[Bb]it[Tt]ornado* btqueue* PORTDOCS= BUILD.windows.txt INSTALL.unix.txt LICENSE.txt \ README.txt credits.txt +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +WITHOUT_PSYCO= yes +.endif + # required for GUI .ifndef(WITHOUT_GUI) RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/wxPython/__init__.py:${PORTSDIR}/x11-toolkits/py-wxPython @@ -94,4 +100,4 @@ post-install: @${CHMOD} ${SHAREMODE} ${PREFIX}/${PYTHON_SITELIBDIR:S|^${PYTHONBASE}/||}/BitTorrent @${CHMOD} a+x ${PREFIX}/${PYTHON_SITELIBDIR:S|^${PYTHONBASE}/||}/BitTorrent -.include <bsd.port.mk> +.include <bsd.port.post.mk> |