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 | 93f12f8f1aa65c09c6b0c37ed7db6938399c49be (patch) | |
tree | dd94ccbc4e23f64141afb67d99df0017758aceba /devel/scons | |
parent | 4c18cd82e3e107a8bec02bf17b81ed7fc0dd443e (diff) | |
download | pkgsrc-93f12f8f1aa65c09c6b0c37ed7db6938399c49be.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/scons')
-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" |