diff options
author | 2011-06-08 08:27:50 +0000 | |
---|---|---|
committer | 2011-06-08 08:27:50 +0000 | |
commit | 516c040a5c4bf4a9fa82815ebdf7327900ccf529 (patch) | |
tree | 45c0bc078122cac371be909e303b24e310cec06e | |
parent | Note that FEATURES=install-sources requires debugedit and rsync. (diff) | |
download | gentoo-2-516c040a5c4bf4a9fa82815ebdf7327900ccf529.tar.gz gentoo-2-516c040a5c4bf4a9fa82815ebdf7327900ccf529.tar.bz2 gentoo-2-516c040a5c4bf4a9fa82815ebdf7327900ccf529.zip |
remove old
(Portage version: 2.1.10/cvs/Linux x86_64)
-rw-r--r-- | net-libs/libesmtp/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libesmtp/libesmtp-1.0.3.ebuild | 50 | ||||
-rw-r--r-- | net-libs/libesmtp/libesmtp-1.0.4.ebuild | 48 |
3 files changed, 5 insertions, 99 deletions
diff --git a/net-libs/libesmtp/ChangeLog b/net-libs/libesmtp/ChangeLog index 6ad297c9eb67..4dc3d2b6b266 100644 --- a/net-libs/libesmtp/ChangeLog +++ b/net-libs/libesmtp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libesmtp # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.52 2011/02/21 08:38:17 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.53 2011/06/08 08:27:50 eras Exp $ + + 08 Jun 2011; Eray Aslan <eras@gentoo.org> -libesmtp-1.0.3.ebuild, + -libesmtp-1.0.4.ebuild: + Remove old 21 Feb 2011; Jeroen Roovers <jer@gentoo.org> libesmtp-1.0.6.ebuild: Stable for HPPA (bug #354461). diff --git a/net-libs/libesmtp/libesmtp-1.0.3.ebuild b/net-libs/libesmtp/libesmtp-1.0.3.ebuild deleted file mode 100644 index cb92628069a6..000000000000 --- a/net-libs/libesmtp/libesmtp-1.0.3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/libesmtp-1.0.3.ebuild,v 1.9 2006/01/27 14:27:31 slarti Exp $ - -inherit toolchain-funcs eutils - -MY_P="${P}r1" -DESCRIPTION="libESMTP is a library that implements the client side of the SMTP protocol" -SRC_URI="http://www.stafford.uklinux.net/${PN}/${MY_P}.tar.bz2" -HOMEPAGE="http://www.stafford.uklinux.net/libesmtp/" -LICENSE="LGPL-2.1 GPL-2" - -DEPEND=">=sys-devel/libtool-1.4.1 - >=sys-apps/sed-4 - ssl? ( >=dev-libs/openssl-0.9.6b )" - -IUSE="ssl debug" -SLOT="0" -KEYWORDS="alpha ~amd64 ia64 ppc sparc x86" - -S="${WORKDIR}/${MY_P}" - -src_compile() { - local myconf - - if [[ $(gcc-major-version) == 2 ]]; then - myconf="${myconf} --disable-isoc" - fi - - econf \ - --enable-all \ - --enable-threads \ - $(use_with ssl) \ - $(use_enable debug) \ - ${myconf} || die "configure failed" - - if [[ $(gcc-major-version) == 3 ]] && [[ $(gcc-minor-version) == 3 ]]; then - sed -i "s:-Wsign-promo::g" Makefile - fi - - emake || die "emake failed" -} - -src_install () { - - make DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS INSTALL ChangeLog NEWS Notes README TODO - dohtml doc/api.xml - -} diff --git a/net-libs/libesmtp/libesmtp-1.0.4.ebuild b/net-libs/libesmtp/libesmtp-1.0.4.ebuild deleted file mode 100644 index 36e26697d402..000000000000 --- a/net-libs/libesmtp/libesmtp-1.0.4.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/libesmtp-1.0.4.ebuild,v 1.15 2010/01/10 16:31:16 fauli Exp $ - -inherit toolchain-funcs eutils libtool - -DESCRIPTION="lib that implements the client side of the SMTP protocol" -HOMEPAGE="http://www.stafford.uklinux.net/libesmtp/" -SRC_URI="http://www.stafford.uklinux.net/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2.1 GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="ssl debug" - -DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )" - -src_unpack() { - unpack ${A} - elibtoolize -} - -src_compile() { - local myconf - - if [[ $(gcc-major-version) == 2 ]]; then - myconf="${myconf} --disable-isoc" - fi - - econf \ - --enable-all \ - --enable-threads \ - $(use_with ssl) \ - $(use_enable debug) \ - ${myconf} || die "configure failed" - - if [[ $(gcc-major-version) == 3 ]] && [[ $(gcc-minor-version) == 3 ]]; then - sed -i "s:-Wsign-promo::g" Makefile - fi - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS INSTALL ChangeLog NEWS Notes README TODO - dohtml doc/api.xml -} |