blob: 078d56f0fde93e4de8c7faa95687c833953e3fcf (
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-2009 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-r2.ebuild,v 1.4 2009/09/23 16:34:40 patrick Exp $
inherit eutils
MY_P=${P//./_}
DESCRIPTION="a database frontend for postgresql"
HOMEPAGE="http://sourceforge.net/projects/pgaccess/"
SRC_URI="mirror://sourceforge/pgaccess/${MY_P}.tgz"
LICENSE="POSTGRESQL"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE=""
S=${WORKDIR}/${MY_P}
DEPEND=""
RDEPEND=">=dev-lang/tcl-8.3.4
>=dev-lang/tk-8.3.4
>=virtual/postgresql-server-7.3
dev-tcltk/tcllib"
src_compile() {
epatch "${FILESDIR}"/${P}.patch
epatch "${FILESDIR}"/${P}-tcl8.5.patch
}
src_install() {
make prefix="${D}" bindir="${D}"/usr/bin 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,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"
}
|