diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-24 15:00:30 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-24 15:00:30 +0000 |
commit | a3d67a968659437283fddf617fd658c8ca82cea9 (patch) | |
tree | 886369672df20aefe3526a04ebe642006efc4acc /net-libs | |
parent | new version, and a new revision with fixed bugs (diff) | |
download | gentoo-2-a3d67a968659437283fddf617fd658c8ca82cea9.tar.gz gentoo-2-a3d67a968659437283fddf617fd658c8ca82cea9.tar.bz2 gentoo-2-a3d67a968659437283fddf617fd658c8ca82cea9.zip |
version bump again
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libesmtp/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libesmtp/files/digest-libesmtp-0.8.12 | 1 | ||||
-rw-r--r-- | net-libs/libesmtp/libesmtp-0.8.12.ebuild | 28 |
3 files changed, 34 insertions, 1 deletions
diff --git a/net-libs/libesmtp/ChangeLog b/net-libs/libesmtp/ChangeLog index 666f61c5239c..2efe694d8b24 100644 --- a/net-libs/libesmtp/ChangeLog +++ b/net-libs/libesmtp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libesmtp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.2 2002/04/22 00:34:43 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libesmtp/ChangeLog,v 1.3 2002/04/24 15:00:30 spider Exp $ + +*libesmtp-0.8.12 (24 Apr 2002) + 24 Apr 2002; Spider <spider@gentoo.org> libesmtp-0.8.12.ebuild: + Update again : ) *libesmtp-0.8.9 (21 Apr 2002) diff --git a/net-libs/libesmtp/files/digest-libesmtp-0.8.12 b/net-libs/libesmtp/files/digest-libesmtp-0.8.12 new file mode 100644 index 000000000000..035918a383d6 --- /dev/null +++ b/net-libs/libesmtp/files/digest-libesmtp-0.8.12 @@ -0,0 +1 @@ +MD5 4f7df95fb43f0151f7f1c9fc5479d4c0 libesmtp-0.8.12.tar.bz2 249158 diff --git a/net-libs/libesmtp/libesmtp-0.8.12.ebuild b/net-libs/libesmtp/libesmtp-0.8.12.ebuild new file mode 100644 index 000000000000..a2d47224a295 --- /dev/null +++ b/net-libs/libesmtp/libesmtp-0.8.12.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bruce A. Locke <blocke@shivan.org> +# /space/gentoo/cvsroot/gentoo-x86/net-libs/libesmtp/libesmtp-0.8.12.ebuild,v 1.1 2001/12/20 15:35:51 chouser Exp + +A=${P}.tar.bz2 +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/${A}" +HOMEPAGE="http://www.stafford.uklinux.net/libesmtp/index.html" + +DEPEND="virtual/glibc + >=sys-devel/libtool-1.3.5-r2 + ssl? ( >=dev-libs/openssl-0.9.6b )" + +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 doc/api.xml +} + |