public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.21.ebuild
@ 2010-04-25 13:48 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2010-04-25 13:48 UTC (permalink / raw
  To: gentoo-commits

aballier    10/04/25 13:48:08

  Modified:             ChangeLog
  Added:                raptor-1.4.21.ebuild
  Log:
  version bump
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 media-libs/raptor/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	18 Apr 2010 14:00:06 -0000	1.80
+++ ChangeLog	25 Apr 2010 13:48:08 -0000	1.81
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/raptor
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.80 2010/04/18 14:00:06 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.81 2010/04/25 13:48:08 aballier Exp $
+
+*raptor-1.4.21 (25 Apr 2010)
+
+  25 Apr 2010; Alexis Ballier <aballier@gentoo.org> +raptor-1.4.21.ebuild:
+  version bump
 
   18 Apr 2010; Samuli Suominen <ssuominen@gentoo.org> raptor-1.4.20.ebuild:
   amd64 stable wrt #301306



1.1                  media-libs/raptor/raptor-1.4.21.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.1&content-type=text/plain

Index: raptor-1.4.21.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild,v 1.1 2010/04/25 13:48:08 aballier Exp $

EAPI=2
inherit eutils libtool

DESCRIPTION="The RDF Parser Toolkit"
HOMEPAGE="http://librdf.org/raptor"
SRC_URI="http://download.librdf.org/source/${P}.tar.gz"

LICENSE="LGPL-2.1 Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="curl debug unicode xml"

RDEPEND="unicode? ( dev-libs/glib:2 )
	xml? ( >=dev-libs/libxml2-2.6.8 )
	!xml? ( dev-libs/expat )
	curl? ( net-misc/curl )
	dev-libs/libxslt"
DEPEND="${RDEPEND}
	sys-devel/flex
	dev-util/pkgconfig"

src_prepare() {
	epunt_cxx
	elibtoolize # Required by FreeBSD .so versioning
}

src_configure() {
	local myconf

	if use xml; then
		myconf="${myconf} --with-xml-parser=libxml"
	else
		myconf="${myconf} --with-xml-parser=expat"
	fi

	if use curl; then
		myconf="${myconf} --with-www=curl"
	elif use xml; then
		myconf="${myconf} --with-www=xml"
	else
		myconf="${myconf} --with-www=none"
	fi

	econf \
		$(use_enable unicode nfc-check) \
		$(use_enable debug) \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS ChangeLog NEWS NOTICE README
	dohtml NEWS.html README.html RELEASE.html
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.21.ebuild
@ 2010-08-11 15:56 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-08-11 15:56 UTC (permalink / raw
  To: gentoo-commits

scarabeus    10/08/11 15:56:33

  Modified:             ChangeLog raptor-1.4.21.ebuild
  Log:
  Introduce static-libs useflag.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.83                 media-libs/raptor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.82&r2=1.83

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	3 Jul 2010 23:07:35 -0000	1.82
+++ ChangeLog	11 Aug 2010 15:56:33 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/raptor
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.82 2010/07/03 23:07:35 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.83 2010/08/11 15:56:33 scarabeus Exp $
+
+  11 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org> raptor-1.4.21.ebuild:
+  Introduce static-libs useflag.
 
   03 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> raptor-1.4.20.ebuild:
   ppc64 stable wrt #301306



1.2                  media-libs/raptor/raptor-1.4.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?r1=1.1&r2=1.2

Index: raptor-1.4.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- raptor-1.4.21.ebuild	25 Apr 2010 13:48:08 -0000	1.1
+++ raptor-1.4.21.ebuild	11 Aug 2010 15:56:33 -0000	1.2
@@ -1,8 +1,9 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild,v 1.1 2010/04/25 13:48:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild,v 1.2 2010/08/11 15:56:33 scarabeus Exp $
+
+EAPI=3
 
-EAPI=2
 inherit eutils libtool
 
 DESCRIPTION="The RDF Parser Toolkit"
@@ -12,7 +13,7 @@
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="curl debug unicode xml"
+IUSE="curl debug static-libs unicode xml"
 
 RDEPEND="unicode? ( dev-libs/glib:2 )
 	xml? ( >=dev-libs/libxml2-2.6.8 )
@@ -32,20 +33,22 @@
 	local myconf
 
 	if use xml; then
-		myconf="${myconf} --with-xml-parser=libxml"
+		myconf+=" --with-xml-parser=libxml"
 	else
-		myconf="${myconf} --with-xml-parser=expat"
+		myconf+=" --with-xml-parser=expat"
 	fi
 
 	if use curl; then
-		myconf="${myconf} --with-www=curl"
+		myconf+=" --with-www=curl"
 	elif use xml; then
-		myconf="${myconf} --with-www=xml"
+		myconf+=" --with-www=xml"
 	else
-		myconf="${myconf} --with-www=none"
+		myconf+=" --with-www=none"
 	fi
 
 	econf \
+		--disable-dependency-tracking \
+		$(use_enable static-libs static) \
 		$(use_enable unicode nfc-check) \
 		$(use_enable debug) \
 		${myconf}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.21.ebuild
@ 2010-08-23 19:11 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-08-23 19:11 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/08/23 19:11:25

  Modified:             ChangeLog raptor-1.4.21.ebuild
  Log:
  Punt .la files and fix HTML documentation directory.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.84                 media-libs/raptor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	11 Aug 2010 15:56:33 -0000	1.83
+++ ChangeLog	23 Aug 2010 19:11:25 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/raptor
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.83 2010/08/11 15:56:33 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.84 2010/08/23 19:11:25 ssuominen Exp $
+
+  23 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> raptor-1.4.21.ebuild:
+  Punt .la files and fix HTML documentation directory.
 
   11 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org> raptor-1.4.21.ebuild:
   Introduce static-libs useflag.



1.3                  media-libs/raptor/raptor-1.4.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?r1=1.2&r2=1.3

Index: raptor-1.4.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- raptor-1.4.21.ebuild	11 Aug 2010 15:56:33 -0000	1.2
+++ raptor-1.4.21.ebuild	23 Aug 2010 19:11:25 -0000	1.3
@@ -1,9 +1,8 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild,v 1.2 2010/08/11 15:56:33 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild,v 1.3 2010/08/23 19:11:25 ssuominen Exp $
 
 EAPI=3
-
 inherit eutils libtool
 
 DESCRIPTION="The RDF Parser Toolkit"
@@ -51,11 +50,13 @@
 		$(use_enable static-libs static) \
 		$(use_enable unicode nfc-check) \
 		$(use_enable debug) \
+		--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
 		${myconf}
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
+	emake DESTDIR="${D}" install || die
 	dodoc AUTHORS ChangeLog NEWS NOTICE README
 	dohtml NEWS.html README.html RELEASE.html
+	find "${ED}" -name '*.la' -exec rm -f '{}' +
 }






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-23 19:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-11 15:56 [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.21.ebuild Tomas Chvatal (scarabeus)
  -- strict thread matches above, loose matches on Subject: below --
2010-08-23 19:11 Samuli Suominen (ssuominen)
2010-04-25 13:48 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox