blob: ae1ac3c0b794db2a968261130c921d7b78dfbaa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgaccess/pgaccess-0.98.8.ebuild,v 1.12 2005/01/01 17:39:53 eradicator Exp $
DESCRIPTION="a database frontend for postgresql"
HOMEPAGE="http://www.pgaccess.org/"
SRC_URI="http://www.pgaccess.org/download/${P}.tar.gz"
LICENSE="POSTGRESQL"
SLOT="0"
KEYWORDS="x86 amd64 ~ppc"
IUSE=""
# Build-time dependencies
DEPEND=">=dev-lang/tcl-8.3.4
>=dev-lang/tk-8.3.4
>=dev-db/postgresql-7.3"
src_compile() {
cd ${S}
patch -p1 < ${FILESDIR}/${P}.patch || die
}
src_install() {
make prefix=${D} install || die
}
pkg_postinst() {
einfo "When running the program, if you encount the error "
einfo "\"Error: Shared library file: '/usr/lib/libpgtcl.so' does not exist.\","
einfo "you need to emerge postgresql with USE='tcltk' again"
}
|