Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.4.1.ebuild ChangeLog
Date: Wed, 28 Nov 2012 02:49:46
Message-Id: 20121128024932.BA75B20C9F@flycatcher.gentoo.org
1 ottxor 12/11/28 02:49:32
2
3 Modified: apr-util-1.4.1.ebuild ChangeLog
4 Log:
5 added prefix support
6
7 (Portage version: 2.2.0_alpha142/cvs/Linux i686, signed Manifest commit with key C2000586)
8
9 Revision Changes Path
10 1.3 dev-libs/apr-util/apr-util-1.4.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.4.1.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.4.1.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.4.1.ebuild?r1=1.2&r2=1.3
15
16 Index: apr-util-1.4.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.4.1.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- apr-util-1.4.1.ebuild 12 May 2012 01:12:46 -0000 1.2
23 +++ apr-util-1.4.1.ebuild 28 Nov 2012 02:49:32 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.4.1.ebuild,v 1.2 2012/05/12 01:12:46 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.4.1.ebuild,v 1.3 2012/11/28 02:49:32 ottxor Exp $
29
30 EAPI="4"
31
32 @@ -16,7 +16,7 @@
33
34 LICENSE="Apache-2.0"
35 SLOT="1"
36 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
37 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-aix ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
38 IUSE="berkdb doc freetds gdbm ldap mysql nss odbc openssl postgres sqlite static-libs"
39 RESTRICT="test"
40
41 @@ -47,20 +47,22 @@
42 src_configure() {
43 local myconf
44
45 + [[ ${CHOST} == *-mint* ]] && myconf="${myconf} --disable-util-dso"
46 +
47 if use berkdb; then
48 local db_version
49 db_version="$(db_findver sys-libs/db)" || die "Unable to find Berkeley DB version"
50 db_version="$(db_ver_to_slot "${db_version}")"
51 db_version="${db_version/\./}"
52 - myconf+=" --with-dbm=db${db_version} --with-berkeley-db=$(db_includedir 2> /dev/null):/usr/$(get_libdir)"
53 + myconf+=" --with-dbm=db${db_version} --with-berkeley-db=$(db_includedir 2> /dev/null):${EPREFIX}/usr/$(get_libdir)"
54 else
55 myconf+=" --without-berkeley-db"
56 fi
57
58 econf \
59 - --datadir=/usr/share/apr-util-1 \
60 - --with-apr=/usr \
61 - --with-expat=/usr \
62 + --datadir="${EPREFIX}"/usr/share/apr-util-1 \
63 + --with-apr="${EPREFIX}"/usr \
64 + --with-expat="${EPREFIX}"/usr \
65 --without-sqlite2 \
66 $(use_with freetds) \
67 $(use_with gdbm) \
68
69
70
71 1.176 dev-libs/apr-util/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.176&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.176&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?r1=1.175&r2=1.176
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
80 retrieving revision 1.175
81 retrieving revision 1.176
82 diff -u -r1.175 -r1.176
83 --- ChangeLog 27 Nov 2012 18:42:12 -0000 1.175
84 +++ ChangeLog 28 Nov 2012 02:49:32 -0000 1.176
85 @@ -1,6 +1,9 @@
86 # ChangeLog for dev-libs/apr-util
87 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.175 2012/11/27 18:42:12 pacho Exp $
89 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.176 2012/11/28 02:49:32 ottxor Exp $
90 +
91 + 28 Nov 2012; Christoph Junghans <ottxor@g.o> apr-util-1.4.1.ebuild:
92 + added prefix support
93
94 27 Nov 2012; Pacho Ramos <pacho@g.o> metadata.xml:
95 Drop apache herd as discussed in http://www.gossamer-