Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libesmtp/
Date: Sun, 25 Jun 2017 22:19:19
Message-Id: 1498429148.db02ea0efb7ac2d61e18c047ffa8d559c2b6c491.dilfridge@gentoo
1 commit: db02ea0efb7ac2d61e18c047ffa8d559c2b6c491
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 25 22:19:08 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 25 22:19:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db02ea0e
7
8 net-libs/libesmtp: Drop old, bug 605728
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 net-libs/libesmtp/libesmtp-1.0.6.ebuild | 38 ---------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/net-libs/libesmtp/libesmtp-1.0.6.ebuild b/net-libs/libesmtp/libesmtp-1.0.6.ebuild
16 deleted file mode 100644
17 index 43e86d336e3..00000000000
18 --- a/net-libs/libesmtp/libesmtp-1.0.6.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=3
25 -inherit libtool
26 -
27 -DESCRIPTION="lib that implements the client side of the SMTP protocol"
28 -HOMEPAGE="http://www.stafford.uklinux.net/libesmtp/"
29 -SRC_URI="http://www.stafford.uklinux.net/${PN}/${P}.tar.bz2"
30 -
31 -LICENSE="LGPL-2.1 GPL-2"
32 -SLOT="0"
33 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
34 -IUSE="debug ssl static-libs threads"
35 -
36 -RDEPEND="ssl? ( dev-libs/openssl )"
37 -DEPEND="${RDEPEND}"
38 -
39 -src_prepare() {
40 - elibtoolize
41 -}
42 -
43 -src_configure() {
44 - econf \
45 - --disable-dependency-tracking \
46 - $(use_enable static-libs static) \
47 - --enable-all \
48 - $(use_enable threads pthreads) \
49 - $(use_enable debug) \
50 - $(use_with ssl openssl)
51 -}
52 -
53 -src_install() {
54 - emake DESTDIR="${D}" install || die
55 - dodoc AUTHORS ChangeLog NEWS Notes README TODO
56 - insinto /usr/share/doc/${PF}/xml
57 - doins doc/api.xml
58 -}