blob: 6a853d7e9767278c2bb5ff023974dc39781892e1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/jftpgw/jftpgw-0.13.4-r1.ebuild,v 1.1 2003/06/26 00:32:57 vapier Exp $
inherit eutils
DESCRIPTION="A small FTP gateway"
HOMEPAGE="http://www.mcknight.de/jftpgw/"
SRC_URI="http://www.mcknight.de/jftpgw/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="crypt tcpd xinetd"
DEPEND="virtual/glibc
tcpd? ( sys-apps/tcp-wrappers )"
RDEPEND="${DEPEND}
xinetd? ( sys-apps/xinetd )"
src_compile() {
econf \
--sysconfdir=/etc/jftpgw \
--with-logpath=/var/log \
`use_enable crypt` \
`use_enable tcpd libwrap` \
|| die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc ChangeLog COPYING README TODO
dosed "s:nobody:${PN}:" /etc/jftpgw/jftpgw.conf
dosed "s:nobody:${PN}:" /etc/jftpgw/jftpgw.conf.sample
exeinto /etc/init.d ; newexe ${FILESDIR}/jftpgw.rc jftpgw
if [ `use xinetd` ] ; then
insinto /etc/xinetd.d
newins support/jftpgw.xinetd jftpgw
dosed "s:nobody:${PN}:" /etc/xinetd.d/jftpgw
fi
enewuser ${PN} -1 /bin/false /dev/null nobody
}
|