diff options
author | drochner <drochner@pkgsrc.org> | 2005-08-19 11:16:57 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2005-08-19 11:16:57 +0000 |
commit | 9ab3a7f29d9912e7f65dc967477877a7ae1159b6 (patch) | |
tree | dd94ccbc4e23f64141afb67d99df0017758aceba /devel | |
parent | 06064da0cac386566a3d692dd53c490c646e8b77 (diff) | |
download | pkgsrc-9ab3a7f29d9912e7f65dc967477877a7ae1159b6.tar.gz |
add a dependency on py-xml
This is not necessary for normal scons use, but there is an extension
"bksys" which needs XML.
Since scons users do not necessarily use Python theirselfes, a buildtime
dependency on px-xml-for-the-python-version-used-by-scons would be needed
which I don't see an easy and robust way for.
bump PKGREVISION
Diffstat (limited to 'devel')
-rw-r--r-- | devel/scons/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/devel/scons/Makefile b/devel/scons/Makefile index cf8f6d7fc04..e199e49cbd6 100644 --- a/devel/scons/Makefile +++ b/devel/scons/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.5 2005/04/11 21:45:38 tv Exp $ +# $NetBSD: Makefile,v 1.6 2005/08/19 11:16:57 drochner Exp $ # DISTNAME= scons-0.96.1 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scons/} @@ -11,10 +12,18 @@ COMMENT= Build system, written in Python PYDISTUTILSPKG= yes +# XXX The dependency on py-xml below is not needed for +# standard operation. There is an extension to scons (bksys) +# however which needs XML processing. Putting a dependency +# on px-xml-for-the-python-version-used-by-scons elsewhere +# would be too complicated. + post-install: ${INSTALL_MAN} ${WRKSRC}/scons.1 ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/sconsign.1 ${PREFIX}/man/man1 .include "../../lang/python/application.mk" .include "../../lang/python/extension.mk" +# XXX see comment above +.include "../../textproc/py-xml/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |