Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/DBD-Pg: DBD-Pg-2.19.3.ebuild ChangeLog
Date: Wed, 22 Aug 2012 17:43:08
Message-Id: 20120822174250.A2F912037A@flycatcher.gentoo.org
1 tove 12/08/22 17:42:50
2
3 Modified: ChangeLog
4 Added: DBD-Pg-2.19.3.ebuild
5 Log:
6 [bump] dev-perl/DBD-Pg-2.19.3
7
8 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.121 dev-perl/DBD-Pg/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.121&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.121&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?r1=1.120&r2=1.121
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v
20 retrieving revision 1.120
21 retrieving revision 1.121
22 diff -u -r1.120 -r1.121
23 --- ChangeLog 9 Aug 2012 17:47:01 -0000 1.120
24 +++ ChangeLog 22 Aug 2012 17:42:50 -0000 1.121
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-perl/DBD-Pg
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.120 2012/08/09 17:47:01 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.121 2012/08/22 17:42:50 tove Exp $
30 +
31 +*DBD-Pg-2.19.3 (22 Aug 2012)
32 +
33 + 22 Aug 2012; Torsten Veller <tove@g.o> +DBD-Pg-2.19.3.ebuild:
34 + Version bump
35
36 09 Aug 2012; Brent Baude <ranger@g.o> DBD-Pg-2.19.2.ebuild:
37 Marking DBD-Pg-2.19.2 ppc for bug 418799
38
39
40
41 1.1 dev-perl/DBD-Pg/DBD-Pg-2.19.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: DBD-Pg-2.19.3.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.3.ebuild,v 1.1 2012/08/22 17:42:50 tove Exp $
51
52 EAPI=4
53
54 MODULE_AUTHOR=TURNSTEP
55 MODULE_VERSION=2.19.3
56 inherit perl-module
57
58 DESCRIPTION="The Perl DBD::Pg Module"
59
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
62 IUSE=""
63
64 RDEPEND="virtual/perl-version
65 >=dev-perl/DBI-1.52
66 dev-db/postgresql-base"
67 DEPEND="${RDEPEND}"
68
69 # testcases require a local database with an
70 # open password for the postgres user.
71 SRC_TEST="skip"
72
73 src_prepare() {
74 postgres_include="$(readlink -f "${EPREFIX}"/usr/include/postgresql)"
75 postgres_lib="${postgres_include//include/lib}"
76 # Fall-through case is the non-split postgresql
77 # The active cases instead get us the matching libdir for the includedir.
78 for i in lib lib64 ; do
79 if [ -d "${postgres_lib}/${i}" ]; then
80 postgres_lib="${postgres_lib}/${i}"
81 break
82 fi
83 done
84
85 # env variables for compilation:
86 export POSTGRES_INCLUDE="${postgres_include}"
87 export POSTGRES_LIB="${postgres_lib}"
88 perl-module_src_prepare
89 }