blob: 1ff57de295b6f98471a261507bd0663710783ff6 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit toolchain-funcs
DESCRIPTION="qmail-queue multi-filter front end"
SRC_URI="http://untroubled.org/qmail-qfilter/archive/${P}.tar.gz"
HOMEPAGE="http://untroubled.org/qmail-qfilter/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
DEPEND=">=dev-libs/bglibs-1.0.19"
RDEPEND="${DEPEND} virtual/qmail"
QMAIL_BINDIR="/var/qmail/bin/"
src_compile() {
echo "$(tc-getCC) ${CFLAGS}" > conf-cc
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
echo "${D}${QMAIL_BINDIR}" > conf-bin
echo "${D}/usr/share/man/" > conf-man
echo "/usr/include/bglibs" > conf-bgincs
echo "/usr/lib/bglibs" > conf-bglibs
make || die
}
src_install () {
dodir ${QMAIL_BINDIR} /usr/share/man/
emake install || die "Installer failed"
dodoc ANNOUNCEMENT NEWS README TODO
docinto samples
dodoc samples/*
}
pkg_postinst() {
elog "Please see /usr/share/doc/${PF}/README* for configuration information"
}
|