diff options
author | tcberner <tcberner@FreeBSD.org> | 2016-07-16 22:24:24 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2016-07-16 22:24:24 +0800 |
commit | 7883faadabc8bc251756fd06637ae0e5c94cb460 (patch) | |
tree | 6ca0795eff443e58f70c40c079a0753631c781e3 /textproc | |
parent | 565f5daadfe14288a4bd4b9b7d93ed48131f53ad (diff) | |
download | freebsd-ports-gnome-7883faadabc8bc251756fd06637ae0e5c94cb460.tar.gz freebsd-ports-gnome-7883faadabc8bc251756fd06637ae0e5c94cb460.tar.zst freebsd-ports-gnome-7883faadabc8bc251756fd06637ae0e5c94cb460.zip |
textproc/redland-bindings perl-binding has been broken
for a long time. As there are no bug reports concering
it -- and therefore no users, simply remove it, rather
than investing time to fix it.
It does not build with at least perl-5.20.
1) it #udefs bool in CORE_wrap.c and then has issues with bool not being defined...
==> we could just remove the #undef similar to patch-SAML_wrap.c of security/p5-Net-SaML
introduced in pr 194865 .
2) it fails to link against -lperl as /usr/local/lib/perl5/5.20/mach/CORE is not passed
to the linker.
Approved by: rakuco (mentor)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/redland-bindings/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/textproc/redland-bindings/Makefile b/textproc/redland-bindings/Makefile index 9c7ecab21df0..103fd52d1b20 100644 --- a/textproc/redland-bindings/Makefile +++ b/textproc/redland-bindings/Makefile @@ -3,7 +3,7 @@ PORTNAME= redland-bindings PORTVERSION= 1.0.17.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://download.librdf.org/source/ @@ -20,13 +20,10 @@ LIB_DEPENDS= librdf.so:textproc/redland GNU_CONFIGURE= yes USES= pkgconfig -OPTIONS_DEFINE= PERL PHP PYTHON RUBY +OPTIONS_DEFINE= PHP PYTHON RUBY OPTIONS_DEFAULT=PYTHON OPTIONS_SUB= yes -PERL_CONFIGURE_WITH= perl -PERL_USES= perl5 -PERL_USE= PERL5=build,run PHP_CONFIGURE_WITH= php PHP_USES= php:build PYTHON_CONFIGURE_WITH= python |