Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/
Date: Thu, 02 May 2019 20:54:12
Message-Id: 1556830442.f3cd9049df68ec34c137cab49223e22963da0225.zlogene@gentoo
1 commit: f3cd9049df68ec34c137cab49223e22963da0225
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 2 20:53:00 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu May 2 20:54:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3cd9049
7
8 net-mail/qmail-autoresponder: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 .../qmail-autoresponder-0.97-r1.ebuild | 57 ----------------------
14 1 file changed, 57 deletions(-)
15
16 diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r1.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r1.ebuild
17 deleted file mode 100644
18 index d7c0c1da018..00000000000
19 --- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r1.ebuild
20 +++ /dev/null
21 @@ -1,57 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="2"
26 -
27 -inherit toolchain-funcs eutils
28 -
29 -DESCRIPTION="Rate-limited autoresponder for qmail"
30 -HOMEPAGE="http://untroubled.org/qmail-autoresponder/"
31 -SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz"
32 -
33 -SLOT="0"
34 -LICENSE="GPL-2"
35 -KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86"
36 -IUSE="mysql"
37 -
38 -DEPEND=">=dev-libs/bglibs-1.022
39 - mysql? ( virtual/mysql )"
40 -RDEPEND="
41 - ${DEPEND}
42 - virtual/qmail
43 - mysql? ( virtual/mysql )
44 -"
45 -
46 -src_prepare() {
47 - use mysql || epatch "${FILESDIR}/${PN}-0.97-remove-mysql.h.diff"
48 -}
49 -
50 -src_configure() {
51 - echo "/usr/include/bglibs" > conf-bgincs
52 - echo "/usr/lib/bglibs" > conf-bglibs
53 - echo "$(tc-getCC) ${CFLAGS}" > conf-cc
54 - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
55 -}
56 -
57 -src_compile() {
58 - # fails on parallel builds!
59 - make qmail-autoresponder || die "Failed to make qmail-autoresponder"
60 - if use mysql; then
61 - make qmail-autoresponder-mysql || die "Failed to make qmail-autoresponder-mysql"
62 - fi
63 -}
64 -
65 -src_install () {
66 - dobin qmail-autoresponder || die
67 - doman qmail-autoresponder.1
68 - if use mysql; then
69 - dobin qmail-autoresponder-mysql || die
70 - dodoc schema.mysql
71 - fi
72 -
73 - dodoc ANNOUNCEMENT NEWS README TODO ChangeLog procedure.txt
74 -}
75 -
76 -pkg_postinst() {
77 - elog "Please see the README file in /usr/share/doc/${PF}/ for per-user configurations."
78 -}