blob: 7bdc4829a53f1402b3c9c240c95d591642013003 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/gofish/gofish-1.1.ebuild,v 1.3 2007/04/22 16:35:53 phreak Exp $
inherit eutils
DESCRIPTION="Gofish gopher server"
HOMEPAGE="http://gofish.sourceforge.net"
SRC_URI="mirror://sourceforge/gofish/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}/${PN}"
pkg_setup() {
enewgroup gopher 30
enewuser gopher 30 -1 -1 gopher
}
src_compile() {
econf \
--localstatedir=/var \
--disable-http || die "econf failed!"
emake || die "emake failed!"
}
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 "make install failed!"
newinitd "${FILESDIR}"/gofish.rc gofish
newconfd "${FILESDIR}"/gofish.confd gofish
}
pkg_postinst() {
echo
elog "Please configure /etc/${PN}.conf before attempt to use it!"
echo
}
|