* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild rasqal-0.9.15.ebuild
@ 2009-05-12 7:26 Samuli Suominen (ssuominen)
0 siblings, 0 replies; only message in thread
From: Samuli Suominen (ssuominen) @ 2009-05-12 7:26 UTC (permalink / raw
To: gentoo-commits
ssuominen 09/05/12 07:26:57
Modified: ChangeLog rasqal-0.9.16.ebuild
Removed: rasqal-0.9.15.ebuild
Log:
Remove USE debug which was bad idea to begin with wrt #263508, it needs maintainer-mode.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.25 dev-libs/rasqal/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 12 Mar 2009 17:27:18 -0000 1.24
+++ ChangeLog 12 May 2009 07:26:57 -0000 1.25
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/rasqal
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.24 2009/03/12 17:27:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.25 2009/05/12 07:26:57 ssuominen Exp $
+
+ 12 May 2009; Samuli Suominen <ssuominen@gentoo.org> -rasqal-0.9.15.ebuild,
+ rasqal-0.9.16.ebuild:
+ Remove USE debug which was bad idea to begin with wrt #263508, it needs
+ maintainer-mode.
12 Mar 2009; Jeroen Roovers <jer@gentoo.org> rasqal-0.9.16.ebuild:
Marked ~hppa (bug #260777).
1.5 dev-libs/rasqal/rasqal-0.9.16.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?r1=1.4&r2=1.5
Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rasqal-0.9.16.ebuild 12 Mar 2009 17:27:18 -0000 1.4
+++ rasqal-0.9.16.ebuild 12 May 2009 07:26:57 -0000 1.5
@@ -1,7 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.4 2009/03/12 17:27:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.5 2009/05/12 07:26:57 ssuominen Exp $
+EAPI=2
inherit libtool
DESCRIPTION="library that handles Resource Description Framework (RDF)"
@@ -11,26 +12,23 @@
LICENSE="LGPL-2.1 Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug gmp pcre test xml"
+IUSE="gmp pcre test xml"
RDEPEND=">=media-libs/raptor-1.4.17
pcre? ( dev-libs/libpcre )
xml? ( dev-libs/libxml2 )
!gmp? ( dev-libs/mpfr )
- gmp? ( dev-libs/gmp )
- debug? ( >=dev-libs/dmalloc-5.5.2-r2 )"
+ gmp? ( dev-libs/gmp )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/flex
test? ( dev-perl/XML-DOM )"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
elibtoolize
}
-src_compile() {
+src_configure() {
local regex
local decimal
@@ -46,14 +44,15 @@
decimal="mpfr"
fi
- econf $(use_enable pcre) $(use_enable xml xml2) $(use_with debug dmalloc) \
- $(use_enable debug maintainer-mode) --with-regex-library=${regex} \
- --with-decimal=${decimal} --with-raptor=system
-
- emake || die "emake failed."
+ econf \
+ $(use_enable pcre) \
+ $(use_enable xml xml2) \
+ --with-regex-library=${regex} \
+ --with-decimal=${decimal} \
+ --with-raptor=system
}
src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
+ emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog* NEWS README
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-05-12 7:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-12 7:26 [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild rasqal-0.9.15.ebuild Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox