blob: c8038fd1c9312409a6a30d1907810d21604e328a (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/gofish/gofish-0.29.ebuild,v 1.1 2003/12/22 13:22:10 zul Exp $
IUSE=""
S="${WORKDIR}/gofish-${PV}"
HOMEPAGE="http://gofish.sourceforge.net"
DESCRIPTION="Gofish gopher server"
SRC_URI="mirror://sourceforge/gofish/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="virtual/glibc
>=sys-apps/sed-4"
RDEPEND=""
src_compile() {
econf --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--disable-http
emake || die
}
src_install () {
sed -i s/';uid = -1'/'uid = 30'/ ${S}/gofish.conf
sed -i s/';gid = -1'/'uid = 30'/ ${S}/gofish.conf
make DESTDIR=${D} install || die
exeinto /etc/init.d ; newexe ${FILESDIR}/gofish.rc gofish
insinto /etc/conf.d ; newins ${FILESDIR}/gofish.confd gofish
}
pkg_postinst() {
enewgroup "gopher" 30
enewuser "gopher" 30 "/bin/false" "/dev/null" "gopher"
einfo
einfo "You have to edit the configuration file"
einfo "/etc/gofish.conf if this is a new install"
einfo
}
|