blob: e57a76cf4ff2d2c3cd8e75a91247bee726bf80da (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sendfile/sendfile-2.1a.ebuild,v 1.5 2003/07/13 14:31:36 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Sendfile is a SAFT implementation for UNIX and serves as a tool for asynchronous sending of files in the Internet"
SRC_URI="ftp://ftp.belwue.de/pub/unix/sendfile/${P}.tar.gz"
HOMEPAGE="http://www.belwue.de/projekte/saft/sendfile-us.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
src_compile() {
./makeconfig "CFLAGS=\"${CFLAGS}\" BINDIR=/usr/bin MANDIR=/usr/share/man \
CONFIG=/etc/sendfile SERVERDIR=/usr/sbin" || die
make all || die
}
src_install() {
into /usr
dosbin src/sendfiled
dobin etc/check_sendfile src/sendfile src/sendmsg src/receive src/fetchfile
dobin src/utf7encode src/wlock etc/sfconf etc/sfdconf
dosym /usr/bin/utf7encode /usr/bin/utf7decode
dodir /etc/sendfile
dodir /var/spool/sendfile
dodir /var/spool/sendfile/LOG
dodir /var/spool/sendfile/OUTGOING
fperms 0700 /var/spool/sendfile/LOG
fperms 1777 /var/spool/sendfile/OUTGOING
insinto /etc/sendfile
doins etc/sendfile.deny etc/sendfile.cf
doman doc/sendmsg.1 doc/sendfile.1 doc/receive.1 doc/fetchfile.1
dodoc doc/AUTHORS doc/COPYING doc/ChangeLog doc/README* doc/THANKS
}
pkg_postinst() {
einfo "To start the sendfile daemon you have to start Inetd."
einfo
}
|