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: ChangeLog DBD-Pg-2.17.1-r1.ebuild
Date: Fri, 03 Sep 2010 07:34:58
Message-Id: 20100903073450.5A04A20051@flycatcher.gentoo.org
1 tove 10/09/03 07:34:50
2
3 Modified: ChangeLog
4 Added: DBD-Pg-2.17.1-r1.ebuild
5 Log:
6 Add lost prefix keywords. EAPI bump
7
8 (Portage version: 2.2_rc74_p2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.78 dev-perl/DBD-Pg/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.78&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.78&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?r1=1.77&r2=1.78
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v
20 retrieving revision 1.77
21 retrieving revision 1.78
22 diff -u -r1.77 -r1.78
23 --- ChangeLog 17 Jun 2010 18:28:46 -0000 1.77
24 +++ ChangeLog 3 Sep 2010 07:34:50 -0000 1.78
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-perl/DBD-Pg
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.77 2010/06/17 18:28:46 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.78 2010/09/03 07:34:50 tove Exp $
30 +
31 +*DBD-Pg-2.17.1-r1 (03 Sep 2010)
32 +
33 + 03 Sep 2010; Torsten Veller <tove@g.o> +DBD-Pg-2.17.1-r1.ebuild:
34 + Add lost prefix keywords. EAPI bump
35
36 17 Jun 2010; Patrick Lauer <patrick@g.o> DBD-Pg-2.15.1.ebuild,
37 DBD-Pg-2.16.0.ebuild, DBD-Pg-2.16.0-r1.ebuild, DBD-Pg-2.16.1.ebuild,
38
39
40
41 1.1 dev-perl/DBD-Pg/DBD-Pg-2.17.1-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.17.1-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.17.1-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: DBD-Pg-2.17.1-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.17.1-r1.ebuild,v 1.1 2010/09/03 07:34:50 tove Exp $
51
52 EAPI=3
53
54 MODULE_AUTHOR=TURNSTEP
55 inherit perl-module
56
57 DESCRIPTION="The Perl DBD::Pg Module"
58
59 SLOT="0"
60 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"
61 IUSE=""
62
63 RDEPEND="virtual/perl-version
64 >=dev-perl/DBI-1.52
65 dev-db/postgresql-base"
66 DEPEND="${RDEPEND}"
67
68 # testcases require a local database with an
69 # open password for the postgres user.
70 SRC_TEST="skip"
71
72 src_prepare() {
73 postgres_include="$(readlink -f "${EPREFIX}"/usr/include/postgresql)"
74 postgres_lib="${postgres_include//include/lib}"
75 # Fall-through case is the non-split postgresql
76 # The active cases instead get us the matching libdir for the includedir.
77 for i in lib lib64 ; do
78 if [ -d "${postgres_lib}/${i}" ]; then
79 postgres_lib="${postgres_lib}/${i}"
80 break
81 fi
82 done
83
84 # env variables for compilation:
85 export POSTGRES_INCLUDE="${postgres_include}"
86 export POSTGRES_LIB="${postgres_lib}"
87 perl-module_src_prepare
88 }