blob: 7b3197265a562eb5996bdd22bfcb2c29c47ffccd (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Geert Bevin <gbevin@theleaf.be>
# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/postgresql-7.1.3.ebuild,v 1.1 2002/01/15 14:47:42 gbevin Exp $
S=${WORKDIR}/${P}
DESCRIPTION="PostgreSQL is a sophisticated Object-Relational DBMS"
SRC_URI="ftp://ftp.easynet.be/postgresql/v${PV}/${P}.tar.gz"
HOMEPAGE="http://www.postgresql.org"
DEPEND="virtual/glibc
sys-devel/autoconf
>=sys-libs/readline-4.1
>=sys-libs/ncurses-5.2
>=sys-libs/zlib-1.1.3
tcltk? ( >=dev-lang/tcl-8 )
java? ( >=virtual/jdk-1.3 >=dev-java/ant-1.3 )
ssl? ( >=dev-libs/openssl-0.9.6-r1 )
nls? ( sys-devel/gettext )"
# perl? ( sys-devel/perl )
# python? ( >=dev-lang/python-2.2-r4 )
RDEPEND="virtual/glibc
>=sys-libs/zlib-1.1.3
tcltk? ( >=dev-lang/tcl-8 )
java? ( >=virtual/jdk-1.3 )
ssl? ( >=dev-libs/openssl-0.9.6-r1 )"
# perl? ( sys-devel/perl )
# python? ( >=dev-lang/python-2.2-r4 )
src_unpack() {
unpack postgresql-${PV}.tar.gz
cd ${S}
}
src_compile() {
local myconf
if [ "`use tcltk`" ]
then
myconf="--with-tcl"
fi
# if [ "`use python`" ]
# then
# myconf="$myconf --with-python"
# fi
# if [ "`use perl`" ]
# then
# myconf="$myconf --with-perl"
# fi
if [ "`use java`" ]
then
myconf="$myconf --with-java"
fi
if [ "`use ssl`" ]
then
myconf="$myconf --with-openssl=/usr"
fi
if [ "`use nls`" ]
then
myconf="$myconf --enable-locale"
fi
if [ "`use libg++`" ]
then
myconf="$myconf --with-CXX"
fi
./configure --prefix=/usr \
--mandir=/usr/share/man \
--host=${CHOST} \
--docdir=/usr/share/doc/${P} \
--enable-syslog \
$myconf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc COPYRIGHT HISTORY INSTALL README register.txt
cd ${S}/doc
dodoc FAQ* KNOWN_BUGS MISSING_FEATURES README*
dodoc TODO internals.ps bug.template
dodoc *.tar.gz
docinto sgml
dodoc src/sgml/*.{sgml,dsl}
docinto sgml/ref
dodoc src/sgml/ref/*.sgml
docinto sgml/graphics
dodoc src/graphics/*
mv ${D}/usr/doc/postgresql/html ${D}/usr/share/doc/${PF}
rm -rf ${D}/usr/doc ${D}/mnt
exeinto /usr/bin
exeinto /etc/init.d/
doexe ${FILESDIR}/${PV}/${PN}
einfo ">>> Execute the following command"
einfo ">>> ebuild /var/db/pkg/dev-db/${P}/${P}.ebuild config"
einfo ">>> to setup the initial database environment."
}
pkg_config() {
einfo ">>> Creating data directory ..."
mkdir -p /var/db/${PN}/data
chown -Rf postgres.postgres /var/db/${PN}
chmod 700 /var/db/${PN}/data
einfo ">>> Initializing the database ..."
if [ -f /var/db/${PN}/data/PG_VERSION ] ; then
echo -n "A postgres data directory already exists from version "; cat /var/db/${PN}/data/PG_VERSION
echo "Read the documentation to check how to upgrade to version ${PV}."
else
su - postgres -c "/usr/bin/initdb --pgdata /var/db/${PN}/data"
fi
}
|