blob: 994b7d032e0051a0cbccc6d44448a2f95e412f91 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/ezmlm/ezmlm-0.53-r1.ebuild,v 1.8 2006/02/20 00:17:08 hansmi Exp $
inherit eutils fixheadtails toolchain-funcs
DESCRIPTION="Simple yet powerful mailing list manager for qmail"
HOMEPAGE="http://cr.yp.to/ezmlm.html"
SRC_URI="http://cr.yp.to/software/${P}.tar.gz
http://csa-net.dk/djbware/ezmlm-0.53-ia64.patch"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 sparc ppc alpha"
IUSE=""
DEPEND="sys-apps/groff"
RDEPEND="virtual/qmail"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/ezmlm-0.53-errno.patch
epatch ${DISTDIR}/ezmlm-0.53-ia64.patch
epatch ${FILESDIR}/ezmlm-0.53-gcc33.patch
cd ${S}
ht_fix_file Makefile *.do
echo "/usr/bin" > conf-bin
echo "/usr/share/man" > conf-man
echo "$(tc-getCC) ${CFLAGS}" > conf-cc
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
}
src_compile() {
mkdir tmp
# single thread only to avoid bug in makefile
make || die
}
src_install () {
dobin ezmlm-list ezmlm-make ezmlm-manage \
ezmlm-reject ezmlm-return ezmlm-send \
ezmlm-sub ezmlm-unsub ezmlm-warn ezmlm-weed \
|| die
doman *.1 *.5
}
|