summaryrefslogtreecommitdiff
blob: 19a641fdcf1ce6b4a3b0e123e736213c4aad6eb9 (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
# Copyright 1999-2004 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.6 2004/06/25 03:10:53 agriffis Exp $

inherit eutils fixheadtails gcc

DESCRIPTION="Simple yet powerful mailing list manager for qmail"
HOMEPAGE="http://cr.yp.to/${PN}.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="|| (
	mail-mta/qmail
	mail-mta/qmail-mysql
	mail-mta/qmail-ldap )"

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 "$(gcc-getCC) ${CFLAGS}" > conf-cc
	echo "$(gcc-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
}