blob: a07baf110ae5b41f5f49a9b638d7ffaa887c8d03 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/twoftpd/twoftpd-1.21.ebuild,v 1.4 2007/07/15 02:38:18 mr_bones_ Exp $
inherit 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=""
DEPEND="virtual/libc
>=dev-libs/bglibs-1.026
>=net-libs/cvm-0.32"
RDEPEND="sys-apps/ucspi-tcp
sys-process/daemontools
>=net-libs/cvm-0.32"
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
make || die "make failed"
}
src_install() {
dodir /usr/sbin
dodir /usr/share/man/man1
make install install_prefix="${D}" || die "install failed"
dodoc ANNOUNCEMENT COPYING ChangeLog NEWS README TODO VERSION
dodoc twoftpd.run twoftpd-log.run
}
|