diff options
author | 2008-11-02 07:32:46 +0000 | |
---|---|---|
committer | 2008-11-02 07:32:46 +0000 | |
commit | a88ad950ab798b2d699ee92e6d33874018c0455f (patch) | |
tree | a0c06680a83f9b08e0a25be6424be7efb0cd2ec4 /net-libs/libesmtp/libesmtp-1.0.4.ebuild | |
parent | Add ppc/ppc64 love for KDE 4. (diff) | |
download | historical-a88ad950ab798b2d699ee92e6d33874018c0455f.tar.gz historical-a88ad950ab798b2d699ee92e6d33874018c0455f.tar.bz2 historical-a88ad950ab798b2d699ee92e6d33874018c0455f.zip |
Cleanup ebuild and add ppc64 love for KDE 4.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.26.2 x86_64
Diffstat (limited to 'net-libs/libesmtp/libesmtp-1.0.4.ebuild')
-rw-r--r-- | net-libs/libesmtp/libesmtp-1.0.4.ebuild | 26 |
1 files changed, 10 insertions, 16 deletions
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 - } |