blob: 2961f2a1a37209ed644e8a6706177264a5b6e5a5 (
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
48
49
50
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/safecat/safecat-1.11.ebuild,v 1.4 2004/02/22 16:28:07 agriffis Exp $
IUSE=""
inherit fixheadtails
S=${WORKDIR}/${P}
DESCRIPTION="Safecat implements qmail's maildir algorithm, copying standard input safely to a specified directory."
HOMEPAGE="http://budney.homeunix.net:8080/users/budney/linux/software/${PN}/"
SRC_URI="http://budney.homeunix.net:8080/users/budney/linux/software/${PN}/${P}.tar.gz"
DEPEND="virtual/glibc
sys-apps/groff"
RDEPEND="virtual/glibc"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~mips"
src_unpack() {
unpack ${P}.tar.gz
# applying errno-patch and maildir-patch
epatch ${FILESDIR}/safecat-1.11-gentoo.patch
cd ${S}
echo "/usr" > conf-root
echo "${CC} ${CFLAGS}" > conf-cc
echo "${CC} ${LDFLAGS}" > conf-ld
ht_fix_file Makefile make-compile.sh
}
src_compile() {
egrep -v 'man|doc' hier.c > hier.c.new
mv hier.c.new hier.c
make it man || die
}
src_install() {
dodir /usr
echo "${D}/usr" > conf-root
make man setup check || die
dodoc CHANGES COPYING INSTALL README
doman maildir.1 safecat.1
}
|