Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/redland: redland-1.0.16.ebuild ChangeLog
Date: Thu, 31 Jan 2013 04:35:29
Message-Id: 20130131043524.428782171D@flycatcher.gentoo.org
1 patrick 13/01/31 04:35:24
2
3 Modified: ChangeLog
4 Added: redland-1.0.16.ebuild
5 Log:
6 Bump for #450556
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.109 dev-libs/redland/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/ChangeLog?rev=1.109&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/ChangeLog?rev=1.109&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/ChangeLog?r1=1.108&r2=1.109
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/redland/ChangeLog,v
20 retrieving revision 1.108
21 retrieving revision 1.109
22 diff -u -r1.108 -r1.109
23 --- ChangeLog 6 Jan 2013 09:26:22 -0000 1.108
24 +++ ChangeLog 31 Jan 2013 04:35:23 -0000 1.109
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/redland
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland/ChangeLog,v 1.108 2013/01/06 09:26:22 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland/ChangeLog,v 1.109 2013/01/31 04:35:23 patrick Exp $
30 +
31 +*redland-1.0.16 (31 Jan 2013)
32 +
33 + 31 Jan 2013; Patrick Lauer <patrick@g.o> +redland-1.0.16.ebuild:
34 + Bump for #450556
35
36 06 Jan 2013; Agostino Sarubbo <ago@g.o> redland-1.0.15.ebuild:
37 Add ~sparc, wrt bug #449220
38
39
40
41 1.1 dev-libs/redland/redland-1.0.16.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/redland-1.0.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/redland/redland-1.0.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: redland-1.0.16.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.16.ebuild,v 1.1 2013/01/31 04:35:23 patrick 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="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~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 # NOTE: libtool is required for libltdl at runtime
65 RDEPEND=">=sys-devel/libtool-2.2.6b
66 mysql? ( virtual/mysql )
67 sqlite? ( =dev-db/sqlite-3* )
68 berkdb? ( sys-libs/db )
69 xml? ( dev-libs/libxml2 )
70 !xml? ( >=dev-libs/expat-2 )
71 ssl? ( dev-libs/openssl:0 )
72 >=media-libs/raptor-2.0.7
73 >=dev-libs/rasqal-0.9.28
74 postgres? ( dev-db/postgresql-base )
75 iodbc? ( dev-db/libiodbc )
76 odbc? ( dev-db/unixODBC )"
77 DEPEND="${RDEPEND}
78 virtual/pkgconfig"
79
80 src_prepare() {
81 elibtoolize # NOTE: this is for fbsd .so version
82 }
83
84 src_configure() {
85 local parser=expat
86 use xml && parser=libxml
87
88 local myconf="--without-virtuoso"
89 if use iodbc; then
90 myconf="--with-virtuoso --with-iodbc --without-unixodbc"
91 elif use odbc; then
92 myconf="--with-virtuoso --with-unixodbc --without-iodbc"
93 fi
94
95 # FIXME: upstream doesn't test with --with-threads and testsuite fails
96 econf \
97 $(use_enable static-libs static) \
98 $(use_with berkdb bdb) \
99 --with-xml-parser=${parser} \
100 $(use_with ssl openssl-digests) \
101 $(use_with mysql) \
102 $(use_with sqlite) \
103 $(use_with postgres postgresql) \
104 --without-threads \
105 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
106 ${myconf}
107 }
108
109 src_test() {
110 if ! use berkdb; then
111 export REDLAND_TEST_CLONING_STORAGE_TYPE=hashes
112 export REDLAND_TEST_CLONING_STORAGE_NAME=test
113 export REDLAND_TEST_CLONING_STORAGE_OPTIONS="hash-type='memory',dir='.',write='yes',new='yes',contexts='yes'"
114 fi
115 default
116 }
117
118 src_install() {
119 default
120 dohtml {FAQS,NEWS,README,RELEASE,TODO}.html
121 find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
122 }