svn commit: r418633 - head/textproc/redland-bindings

Tobias C. Berner tcberner at FreeBSD.org
Sat Jul 16 14:24:26 UTC 2016


Author: tcberner
Date: Sat Jul 16 14:24:24 2016
New Revision: 418633
URL: https://svnweb.freebsd.org/changeset/ports/418633

Log:
  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)

Modified:
  head/textproc/redland-bindings/Makefile

Modified: head/textproc/redland-bindings/Makefile
==============================================================================
--- head/textproc/redland-bindings/Makefile	Sat Jul 16 14:21:46 2016	(r418632)
+++ head/textproc/redland-bindings/Makefile	Sat Jul 16 14:24:24 2016	(r418633)
@@ -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


More information about the svn-ports-all mailing list