Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/redland: ChangeLog redland-1.0.14.ebuild
Date: Fri, 29 Jul 2011 06:02:21
Message-Id: 20110729054348.900E12004B@flycatcher.gentoo.org
1 ssuominen 11/07/29 05:43:48
2
3 Modified: ChangeLog
4 Added: redland-1.0.14.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.82 dev-libs/redland/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/ChangeLog?rev=1.82&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/ChangeLog?rev=1.82&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/ChangeLog?r1=1.81&r2=1.82
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/redland/ChangeLog,v
20 retrieving revision 1.81
21 retrieving revision 1.82
22 diff -u -r1.81 -r1.82
23 --- ChangeLog 10 Apr 2011 15:43:46 -0000 1.81
24 +++ ChangeLog 29 Jul 2011 05:43:48 -0000 1.82
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/redland
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland/ChangeLog,v 1.81 2011/04/10 15:43:46 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland/ChangeLog,v 1.82 2011/07/29 05:43:48 ssuominen Exp $
30 +
31 +*redland-1.0.14 (29 Jul 2011)
32 +
33 + 29 Jul 2011; Samuli Suominen <ssuominen@g.o> +redland-1.0.14.ebuild:
34 + Version bump.
35
36 10 Apr 2011; Samuli Suominen <ssuominen@g.o> redland-1.0.13.ebuild:
37 Reset dependency_libs to '' in libtool files.
38
39
40
41 1.1 dev-libs/redland/redland-1.0.14.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/redland-1.0.14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/redland-1.0.14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: redland-1.0.14.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/redland/redland-1.0.14.ebuild,v 1.1 2011/07/29 05:43:48 ssuominen Exp $
51
52 EAPI=4
53 inherit libtool
54
55 DESCRIPTION="High-level interface for the Resource Description Framework"
56 HOMEPAGE="http://librdf.org/"
57 SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
58
59 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
62 IUSE="berkdb iodbc mysql odbc postgres sqlite ssl static-libs +xml"
63
64 # plugins use libltdl -> don't remove .la files, empty the dependency_libs in
65 # src_install() instead
66 RDEPEND=">=sys-devel/libtool-2.2.6b
67 mysql? ( virtual/mysql )
68 sqlite? ( =dev-db/sqlite-3* )
69 berkdb? ( sys-libs/db )
70 xml? ( dev-libs/libxml2 )
71 !xml? ( dev-libs/expat )
72 ssl? ( dev-libs/openssl )
73 media-libs/raptor:2
74 >=dev-libs/rasqal-0.9.26
75 postgres? ( dev-db/postgresql-base )
76 iodbc? ( dev-db/libiodbc )
77 odbc? ( dev-db/unixODBC )"
78 DEPEND="${RDEPEND}
79 dev-util/pkgconfig"
80
81 src_prepare() {
82 elibtoolize # fbsd .so version sanity
83 }
84
85 src_configure() {
86 local parser=expat
87 use xml && parser=libxml
88
89 local myconf="--without-virtuoso"
90 if use iodbc; then
91 myconf="--with-virtuoso --with-iodbc --without-unixodbc"
92 elif use odbc; then
93 myconf="--with-virtuoso --with-unixodbc --without-iodbc"
94 fi
95
96 # FIXME: --with-threads -> KDE runtime problems and testsuite broken
97 econf \
98 $(use_enable static-libs static) \
99 $(use_with berkdb bdb) \
100 --with-xml-parser=${parser} \
101 $(use_with ssl openssl-digests) \
102 $(use_with mysql) \
103 $(use_with sqlite) \
104 $(use_with postgres postgresql) \
105 --without-threads \
106 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
107 ${myconf}
108 }
109
110 src_test() {
111 if ! use berkdb; then
112 export REDLAND_TEST_CLONING_STORAGE_TYPE=hashes
113 export REDLAND_TEST_CLONING_STORAGE_NAME=test
114 export REDLAND_TEST_CLONING_STORAGE_OPTIONS="hash-type='memory',dir='.',write='yes',new='yes',contexts='yes'"
115 fi
116 default
117 }
118
119 src_install() {
120 default
121 dohtml {FAQS,NEWS,README,RELEASE,TODO}.html
122 find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
123 }