blob: f2d96499dc021348e81e47a86bc0a765c6cf7d3f (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# 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.99.0.20040219.ebuild,v 1.6 2007/07/13 06:38:59 mr_bones_ Exp $
inherit eutils
MY_P=${P//./_}
DESCRIPTION="a database frontend for postgresql"
HOMEPAGE="http://www.pgaccess.org/"
SRC_URI="mirror://sourceforge/pgaccess/${MY_P}.tgz"
LICENSE="POSTGRESQL"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
S=${WORKDIR}/${MY_P}
DEPEND="virtual/libc"
RDEPEND=">=dev-lang/tcl-8.3.4
>=dev-lang/tk-8.3.4
>=dev-db/postgresql-7.3
dev-tcltk/tcllib"
src_compile() {
cd ${S}
epatch ${FILESDIR}/${P}.patch
}
src_install() {
make prefix=${D} install || die
rm -rf ${D}/usr/lib/pgaccess/win32 \
${D}/usr/lib/pgaccess/Makefile
rm -rf ${D}/usr/lib/pgaccess/osx
dodir /usr/share/doc/${PF}
mv ${D}/usr/lib/pgaccess/{README,changelog,copyright,demo,doc/html,todo} ${D}/usr/share/doc/${PF}
rmdir ${D}/usr/lib/pgaccess/doc
}
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"
}
|