summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-11-02 07:32:46 +0000
committerMike Frysinger <vapier@gentoo.org>2008-11-02 07:32:46 +0000
commit6bb3c5876985525cb89217859e2e3a4180e96fc0 (patch)
tree16b44218610db959b9b65c7ef560f0919cf316d3 /net-libs/libesmtp
parentdev-perl => perl-core migration (diff)
downloadgentoo-2-6bb3c5876985525cb89217859e2e3a4180e96fc0.tar.gz
gentoo-2-6bb3c5876985525cb89217859e2e3a4180e96fc0.tar.bz2
gentoo-2-6bb3c5876985525cb89217859e2e3a4180e96fc0.zip
Cleanup ebuild and add ppc64 love for KDE 4.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'net-libs/libesmtp')
-rw-r--r--net-libs/libesmtp/ChangeLog7
-rw-r--r--net-libs/libesmtp/libesmtp-1.0.4.ebuild26
2 files changed, 15 insertions, 18 deletions
diff --git a/net-libs/libesmtp/ChangeLog b/net-libs/libesmtp/ChangeLog
index c25ed8c438ec..1b30f8966dce 100644
--- a/net-libs/libesmtp/ChangeLog
+++ b/net-libs/libesmtp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libesmtp
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.41 2008/02/12 12:14:58 flameeyes Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.42 2008/11/02 07:32:46 vapier Exp $
+
+ 02 Nov 2008; Mike Frysinger <vapier@gentoo.org> libesmtp-1.0.4.ebuild:
+ Cleanup ebuild and add ppc64 love for KDE 4.
12 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> libesmtp-1.0.4.ebuild:
Run elibtoolize.
diff --git a/net-libs/libesmtp/libesmtp-1.0.4.ebuild b/net-libs/libesmtp/libesmtp-1.0.4.ebuild
index efc9955a581b..256d9f02cf6b 100644
--- a/net-libs/libesmtp/libesmtp-1.0.4.ebuild
+++ b/net-libs/libesmtp/libesmtp-1.0.4.ebuild
@@ -1,26 +1,22 @@
# Copyright 1999-2008 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.12 2008/02/12 12:14:58 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/libesmtp-1.0.4.ebuild,v 1.13 2008/11/02 07:32:46 vapier Exp $
inherit toolchain-funcs eutils libtool
-DESCRIPTION="libESMTP is a library that implements the client side of the SMTP protocol"
-SRC_URI="http://www.stafford.uklinux.net/${PN}/${P}.tar.bz2"
+DESCRIPTION="lib that implements the client side of the SMTP protocol"
HOMEPAGE="http://www.stafford.uklinux.net/libesmtp/"
-LICENSE="LGPL-2.1 GPL-2"
-
-RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )"
-DEPEND=">=sys-devel/libtool-1.4.1
- >=sys-apps/sed-4
- ${RDEPEND}"
+SRC_URI="http://www.stafford.uklinux.net/${PN}/${P}.tar.bz2"
-IUSE="ssl debug"
+LICENSE="LGPL-2.1 GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86"
+KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sparc x86"
+IUSE="ssl debug"
+
+DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )"
src_unpack() {
unpack ${A}
-
elibtoolize
}
@@ -45,10 +41,8 @@ src_compile() {
emake || die "emake failed"
}
-src_install () {
-
- make DESTDIR="${D}" install || die "make install failed"
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS INSTALL ChangeLog NEWS Notes README TODO
dohtml doc/api.xml
-
}