blob: 9b79d42035b57bfa3582a9de72fa8e6b63ccaf12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/pgperl/pgperl-2.0.2.ebuild,v 1.14 2008/05/21 16:01:00 dev-zero Exp $
inherit perl-module
DESCRIPTION="native Perl interface to PostgreSQL"
SRC_URI="ftp://gborg.postgresql.org/pub/pgperl/stable/${P}.tar.gz"
HOMEPAGE="http://gborg.postgresql.org/project/pgperl/projdisplay.php"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ia64 sparc x86"
IUSE=""
DEPEND=">=virtual/postgresql-server-7.3
dev-lang/perl"
S=${WORKDIR}/Pg-${PV}
src_compile() {
export POSTGRES_HOME=/var/lib/postgresql
perl-module_src_compile
}
|