forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mini-qmail-1.06.ebuild
71 lines (56 loc) · 1.31 KB
/
mini-qmail-1.06.ebuild
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
GENQMAIL_PV=20080406
inherit eutils qmail
DESCRIPTION="a small null client that forwards mail via QMQP to a full qmail server"
HOMEPAGE="
http://netqmail.org/
http://cr.yp.to/qmail/mini.html
http://qmail.org/
"
SRC_URI="mirror://qmail/netqmail-${PV}.tar.gz
https://dev.gentoo.org/~hollow/distfiles/${GENQMAIL_F}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 arm hppa ~mips ppc x86"
IUSE=""
DEPEND=""
RDEPEND="
!mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/maildrop
!mail-mta/msmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap
!mail-mta/sendmail
!mail-mta/ssmtp
!mail-mta/opensmtpd
${DEPEND}
"
S="${WORKDIR}"/netqmail-${PV}
src_unpack() {
genqmail_src_unpack
unpack netqmail-${PV}.tar.gz
cd "${S}"
epatch "${FILESDIR}"/${PV}-headers.patch
qmail_src_postunpack
}
src_compile() {
MAKEOPTS="${MAKEOPTS} -j1" qmail_src_compile #398135
}
# make check is actually an install-check target, see bug #364955
src_test() { :; }
qmail_base_install_hook() {
dosym qmail-qmqpc "${QMAIL_HOME}"/bin/qmail-queue
exeinto "${QMAIL_HOME}"/bin
doexe "${FILESDIR}"/config-mini
}
src_install() {
qmail_base_install
qmail_man_install
qmail_sendmail_install
}