blob: e468313c09d9d63bb4ae14022faa1deaf71e09cf (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/twoftpd/twoftpd-1.21-r1.ebuild,v 1.2 2009/09/23 18:37:33 patrick Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Simple secure efficient FTP server by Bruce Guenter"
HOMEPAGE="http://untroubled.org/twoftpd/"
SRC_URI="http://untroubled.org/twoftpd/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="breakrfc"
DEPEND=">=dev-libs/bglibs-1.026
>=net-libs/cvm-0.32"
RDEPEND="sys-apps/ucspi-tcp
sys-process/daemontools
>=net-libs/cvm-0.32"
src_unpack() {
unpack ${A}
cd "${S}"
use breakrfc && epatch "${FILESDIR}"/${P}-disable-TELNET_IAC.patch
}
src_compile() {
echo "/usr/sbin" > conf-bin
echo "/usr/share/man" > conf-man
echo "$(tc-getCC) ${CFLAGS} -I/usr/include/bglibs" > conf-cc
echo "$(tc-getCC) -s -L/usr/lib/bglibs" > conf-ld
emake || die "make failed"
}
src_install() {
dodir /usr/sbin
dodir /usr/share/man/man1
emake install install_prefix="${D}" || die "install failed"
dodoc ANNOUNCEMENT ChangeLog NEWS README TODO VERSION
dodoc twoftpd.run twoftpd-log.run
}
|