diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-03-09 20:29:40 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-03-09 20:29:40 +0000 |
commit | f8bf6c3a76bf43d981a2f1b5a0911a26246e30da (patch) | |
tree | 889ff5bec8433f69ee8a47d4dbf51255ef9c509d /net-libs | |
parent | Version bump (diff) | |
download | gentoo-2-f8bf6c3a76bf43d981a2f1b5a0911a26246e30da.tar.gz gentoo-2-f8bf6c3a76bf43d981a2f1b5a0911a26246e30da.tar.bz2 gentoo-2-f8bf6c3a76bf43d981a2f1b5a0911a26246e30da.zip |
Version bump
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libesmtp/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libesmtp/files/digest-libesmtp-1.0 | 1 | ||||
-rw-r--r-- | net-libs/libesmtp/libesmtp-1.0.ebuild | 32 |
3 files changed, 39 insertions, 1 deletions
diff --git a/net-libs/libesmtp/ChangeLog b/net-libs/libesmtp/ChangeLog index de7ee03f43d5..b7d762372dba 100644 --- a/net-libs/libesmtp/ChangeLog +++ b/net-libs/libesmtp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libesmtp # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.7 2003/02/12 08:05:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.8 2003/03/09 20:25:37 aliz Exp $ + +*libesmtp-1.0 (09 Mar 2003) + + 09 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> : + Version bump. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/net-libs/libesmtp/files/digest-libesmtp-1.0 b/net-libs/libesmtp/files/digest-libesmtp-1.0 new file mode 100644 index 000000000000..588955cf4e98 --- /dev/null +++ b/net-libs/libesmtp/files/digest-libesmtp-1.0 @@ -0,0 +1 @@ +MD5 6da5742bd8119a48a8385adfad14ea85 libesmtp-1.0.tar.bz2 230169 diff --git a/net-libs/libesmtp/libesmtp-1.0.ebuild b/net-libs/libesmtp/libesmtp-1.0.ebuild new file mode 100644 index 000000000000..b45d97a17bc8 --- /dev/null +++ b/net-libs/libesmtp/libesmtp-1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/libesmtp-1.0.ebuild,v 1.1 2003/03/09 20:25:37 aliz Exp $ + +IUSE="ssl" + +S=${WORKDIR}/${P} +DESCRIPTION="libESMTP is a library that implements the client side of the SMTP protocol" +SRC_URI="http://www.stafford.uklinux.net/libesmtp/${P}.tar.bz2" +HOMEPAGE="http://www.stafford.uklinux.net/libesmtp/" + +DEPEND=">=sys-devel/libtool-1.3.5-r2 + ssl? ( >=dev-libs/openssl-0.9.6b )" + +SLOT="0" +LICENSE="LGPL-2.1 GPL-2" +KEYWORDS="~x86 ~sparc ~ppc" + +src_compile() { + local myconf + use ssl || myconf="${myconf} --without-openssl" + + ./configure --prefix=/usr ${myconf} || die "configure failed" + emake || die "emake failed" +} + +src_install () { + make prefix=${D}/usr install || die "make install failed" + dodoc AUTHORS COPYING COPYING.GPL INSTALL ChangeLog NEWS Notes README TODO + dohtml doc/api.xml +} + |