diff options
author | rillig <rillig@pkgsrc.org> | 2006-08-31 13:04:54 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-08-31 13:04:54 +0000 |
commit | a32b5110cb398f887186bcbb8ade00556c1cca88 (patch) | |
tree | e0a61b9ffef67ba726e2ee02380deb554ac6ce1b /security | |
parent | 7833a03df09befb5836216c3d9ce3371286aad1b (diff) | |
download | pkgsrc-a32b5110cb398f887186bcbb8ade00556c1cca88.tar.gz |
Fixed the PLISTs according to Krister's latest bulk build on NetBSD 3.0.
Made the "perl" option work and tested all four option combinations.
Diffstat (limited to 'security')
-rw-r--r-- | security/libprelude/PLIST | 5 | ||||
-rw-r--r-- | security/libprelude/PLIST.py | 3 | ||||
-rw-r--r-- | security/libprelude/options.mk | 5 |
3 files changed, 7 insertions, 6 deletions
diff --git a/security/libprelude/PLIST b/security/libprelude/PLIST index 60c1c38d18f..34fe2008fd6 100644 --- a/security/libprelude/PLIST +++ b/security/libprelude/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2006/08/23 10:51:25 shannonjr Exp $ +@comment $NetBSD: PLIST,v 1.7 2006/08/31 13:04:54 rillig Exp $ bin/libprelude-config bin/prelude-adduser include/libprelude/common.h @@ -102,9 +102,6 @@ share/examples/libprelude/client.conf share/examples/libprelude/global.conf share/examples/libprelude/idmef-client.conf share/examples/libprelude/tls.conf -${PYSITELIB}/_prelude.so -${PYSITELIB}/prelude.py -${PYSITELIB}/prelude.pyc @dirrm share/examples/libprelude @dirrm share/doc/libprelude @dirrm include/libprelude diff --git a/security/libprelude/PLIST.py b/security/libprelude/PLIST.py index 72366dd1b1a..734de693366 100644 --- a/security/libprelude/PLIST.py +++ b/security/libprelude/PLIST.py @@ -1,3 +1,4 @@ -@comment $NetBSD: PLIST.py,v 1.1.1.1 2006/01/29 15:54:04 shannonjr Exp $ +@comment $NetBSD: PLIST.py,v 1.2 2006/08/31 13:04:54 rillig Exp $ ${PYSITELIB}/_prelude.so +${PYSITELIB}/prelude.py ${PYSITELIB}/prelude.pyc diff --git a/security/libprelude/options.mk b/security/libprelude/options.mk index 8d5b24abb2c..c28c3d88c51 100644 --- a/security/libprelude/options.mk +++ b/security/libprelude/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.5 2006/06/08 22:07:24 shannonjr Exp $ +# $NetBSD: options.mk,v 1.6 2006/08/31 13:04:54 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.libprelude PKG_SUPPORTED_OPTIONS= perl python @@ -14,6 +14,8 @@ PKG_SUPPORTED_OPTIONS= perl python .if !empty(PKG_OPTIONS:Mperl) CONFIGURE_ARGS+= --with-perl=${PERL5:Q} USE_TOOLS+= perl:run +GENERATE_PLIST+= cat ${PKGDIR}/PLIST.perl; +.include "../../lang/perl5/buildlink3.mk" .else CONFIGURE_ARGS+= --with-perl=no .endif @@ -21,6 +23,7 @@ CONFIGURE_ARGS+= --with-perl=no CONFIGURE_ARGS+= --with-python CONFIGURE_ENV+= PYTHON=${PYTHONBIN:Q} PY_PATCHPLIST= yes +GENERATE_PLIST+= cat ${PKGDIR}/PLIST.py; .include "../../lang/python/application.mk" .include "../../lang/python/extension.mk" .else |