Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Dec 2013 19:12:27 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r336567 - head/textproc/rasqal
Message-ID:  <201312151912.rBFJCRCs046295@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sun Dec 15 19:12:26 2013
New Revision: 336567
URL: http://svnweb.freebsd.org/changeset/ports/336567

Log:
  - Update to 0.9.31.
  - Support staging [1].
  - Adapt to the new LIB_DEPENDS and options formats.
  - Set LICENSE.
  
  Submitted by:	Schaich Alonso <alonsoschaich@fastmail.fm>

Modified:
  head/textproc/rasqal/Makefile
  head/textproc/rasqal/distinfo
  head/textproc/rasqal/pkg-plist

Modified: head/textproc/rasqal/Makefile
==============================================================================
--- head/textproc/rasqal/Makefile	Sun Dec 15 18:50:51 2013	(r336566)
+++ head/textproc/rasqal/Makefile	Sun Dec 15 19:12:26 2013	(r336567)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	rasqal
-PORTVERSION=	0.9.30
+PORTVERSION=	0.9.31
 CATEGORIES=	textproc
 MASTER_SITES=	http://download.librdf.org/source/ \
 		SF/librdf/${PORTNAME}/${PORTVERSION}
@@ -10,8 +10,13 @@ MASTER_SITES=	http://download.librdf.org
 MAINTAINER=	kde@FreeBSD.org
 COMMENT=	High-level interface for RDF
 
-LIB_DEPENDS=	raptor2:${PORTSDIR}/textproc/raptor2 \
-		pcre:${PORTSDIR}/devel/pcre
+# Even though GPLv3 is not explicitly mentioned in the port's LICENSE.html, one
+# of its licenses is "GPLv2 or newer", which includes GPLv3.
+LICENSE=	AL2 GPLv2 GPLv3 LGPL21
+LICENSE_COMB=	dual
+
+LIB_DEPENDS=	libraptor2.so:${PORTSDIR}/textproc/raptor2 \
+		libpcre.so:${PORTSDIR}/devel/pcre
 
 USE_GNOME=	lthack
 USE_OPENSSL=	yes
@@ -20,25 +25,20 @@ USES=		gmake pathfix pkgconfig perl5
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 
-MAN1=		rasqal-config.1 roqet.1
-MAN3=		librasqal.3
-
 OPTIONS_RADIO=	DEC
 OPTIONS_RADIO_DEC=	GMP MPFR
 
 GMP_DESC=	Use GMP library for decimals
 MPFR_DESC=	Use MPFR library for decimals
 
-NO_STAGE=	yes
+GMP_CONFIGURE_ON=	--with-decimal=gmp --with-gmp=${LOCALBASE}
+GMP_LIB_DEPENDS=	libgmp.so:${PORTSDIR}/math/gmp
+MPFR_CONFIGURE_ON=	--with-decimal=mpfr --with-mpfr=${LOCALBASE}
+MPFR_LIB_DEPENDS=	libmpfr.so:${PORTSDIR}/math/mpfr
+
 .include <bsd.port.options.mk>
 
-.if ${PORT_OPTIONS:MMPFR}
-CONFIGURE_ARGS+=--with-decimal=mpfr --with-mpfr=${LOCALBASE}
-LIB_DEPENDS+=	mpfr:${PORTSDIR}/math/mpfr
-.elif ${PORT_OPTIONS:MGMP}
-CONFIGURE_ARGS+=--with-decimal=gmp
-LIB_DEPENDS+=	gmp:${PORTSDIR}/math/gmp
-.else
+.if empty(PORT_OPTIONS:MMPFR) && empty(PORT_OPTIONS:MGMP)
 CONFIGURE_ARGS+=--with-decimal=none
 .endif
 

Modified: head/textproc/rasqal/distinfo
==============================================================================
--- head/textproc/rasqal/distinfo	Sun Dec 15 18:50:51 2013	(r336566)
+++ head/textproc/rasqal/distinfo	Sun Dec 15 19:12:26 2013	(r336567)
@@ -1,2 +1,2 @@
-SHA256 (rasqal-0.9.30.tar.gz) = abf0e93d80cc79bdf383fd3e904255bf98bc729356d6cf2f673bce74b08b1cfd
-SIZE (rasqal-0.9.30.tar.gz) = 1469921
+SHA256 (rasqal-0.9.31.tar.gz) = 28d743c9f1b0e5b0486ae4a945fa1e021c8495707e7adbfa0e232244b28b7fee
+SIZE (rasqal-0.9.31.tar.gz) = 1530461

Modified: head/textproc/rasqal/pkg-plist
==============================================================================
--- head/textproc/rasqal/pkg-plist	Sun Dec 15 18:50:51 2013	(r336566)
+++ head/textproc/rasqal/pkg-plist	Sun Dec 15 19:12:26 2013	(r336567)
@@ -6,6 +6,9 @@ lib/librasqal.la
 lib/librasqal.so
 lib/librasqal.so.3
 libdata/pkgconfig/rasqal.pc
+man/man1/rasqal-config.1.gz
+man/man1/roqet.1.gz
+man/man3/librasqal.3.gz
 share/gtk-doc/html/rasqal/home.png
 share/gtk-doc/html/rasqal/index.html
 share/gtk-doc/html/rasqal/index.sgml
@@ -19,6 +22,7 @@ share/gtk-doc/html/rasqal/rasqal-changes
 share/gtk-doc/html/rasqal/rasqal-changes-0-9-26-to-0-9-27.html
 share/gtk-doc/html/rasqal/rasqal-changes-0-9-28-to-0-9-29.html
 share/gtk-doc/html/rasqal/rasqal-changes-0-9-29-to-0-9-30.html
+share/gtk-doc/html/rasqal/rasqal-changes-0-9-30-to-0-9-31.html
 share/gtk-doc/html/rasqal/rasqal-changes.html
 share/gtk-doc/html/rasqal/rasqal-section-data.html
 share/gtk-doc/html/rasqal/rasqal-section-expression.html
@@ -44,7 +48,7 @@ share/gtk-doc/html/rasqal/reference-manu
 share/gtk-doc/html/rasqal/right.png
 share/gtk-doc/html/rasqal/style.css
 share/gtk-doc/html/rasqal/up.png
-@exec mkdir -p %D/share/gtk-doc/html/rasqal
 @dirrm share/gtk-doc/html/rasqal
+@dirrmtry share/gtk-doc/html
 @dirrmtry share/gtk-doc
 @dirrm include/rasqal



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312151912.rBFJCRCs046295>