summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2005-07-20 11:45:53 +0000
committerAndrej Kacian <ticho@gentoo.org>2005-07-20 11:45:53 +0000
commit39afc6a05fc1c116525a87fc77ec987624cb55e6 (patch)
tree45f3a368d15d83a263429ca35652d89b90eab788 /net-libs
parentVersion bumped (diff)
downloadgentoo-2-39afc6a05fc1c116525a87fc77ec987624cb55e6.tar.gz
gentoo-2-39afc6a05fc1c116525a87fc77ec987624cb55e6.tar.bz2
gentoo-2-39afc6a05fc1c116525a87fc77ec987624cb55e6.zip
Version bump.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/libetpan/ChangeLog7
-rw-r--r--net-libs/libetpan/Manifest12
-rw-r--r--net-libs/libetpan/files/digest-libetpan-0.381
-rw-r--r--net-libs/libetpan/libetpan-0.38.ebuild31
4 files changed, 40 insertions, 11 deletions
diff --git a/net-libs/libetpan/ChangeLog b/net-libs/libetpan/ChangeLog
index 78f745d8ab63..3f645fd37fd6 100644
--- a/net-libs/libetpan/ChangeLog
+++ b/net-libs/libetpan/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/libetpan
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.6 2005/07/06 14:50:56 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.7 2005/07/20 11:45:53 ticho Exp $
+
+*libetpan-0.38 (20 Jul 2005)
+
+ 20 Jul 2005; Andrej Kacian <ticho@gentoo.org> +libetpan-0.38.ebuild:
+ Version bump.
05 Jul 2005; David Holm <dholm@gentoo.org> libetpan-0.37.ebuild:
Added to ~ppc.
diff --git a/net-libs/libetpan/Manifest b/net-libs/libetpan/Manifest
index a253cd94abce..99ac7bdaf9c0 100644
--- a/net-libs/libetpan/Manifest
+++ b/net-libs/libetpan/Manifest
@@ -1,16 +1,8 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 df56f13bcfcbbe4d0c286ece4b275062 libetpan-0.36.ebuild 804
+MD5 b72031a08b1306b77711ae51ead8b309 libetpan-0.38.ebuild 809
MD5 b72031a08b1306b77711ae51ead8b309 libetpan-0.37.ebuild 809
MD5 1bd698557d7d3914bc8bdc0258914dd8 ChangeLog 640
MD5 509fe3ad1d5f4dfbeab7ff814984a262 metadata.xml 612
MD5 b97f7371a550f937a4b82ef30079c155 files/digest-libetpan-0.36 66
MD5 abfec432a49010c2597fe864d33e8287 files/digest-libetpan-0.37 66
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.1 (GNU/Linux)
-
-iD8DBQFCy+/1QlM6RnzZP+IRAu/AAJ9L3Qqi0cMk1lKPTKcvNRHj/VqwLACfffdv
-AcDCPKieLJ1Lp7PW6sVxx2Y=
-=6bjb
------END PGP SIGNATURE-----
+MD5 364e68999c2cd29fbe9da07eb967855b files/digest-libetpan-0.38 66
diff --git a/net-libs/libetpan/files/digest-libetpan-0.38 b/net-libs/libetpan/files/digest-libetpan-0.38
new file mode 100644
index 000000000000..511c6de1e6cb
--- /dev/null
+++ b/net-libs/libetpan/files/digest-libetpan-0.38
@@ -0,0 +1 @@
+MD5 4d31145dee857beca7e283aa03fe9450 libetpan-0.38.tar.gz 1104864
diff --git a/net-libs/libetpan/libetpan-0.38.ebuild b/net-libs/libetpan/libetpan-0.38.ebuild
new file mode 100644
index 000000000000..90c1d764c7ad
--- /dev/null
+++ b/net-libs/libetpan/libetpan-0.38.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-0.38.ebuild,v 1.1 2005/07/20 11:45:53 ticho Exp $
+
+DESCRIPTION="A portable, efficient middleware for different kinds of mail access."
+HOMEPAGE="http://libetpan.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~ppc ~x86"
+IUSE="berkdb debug ssl"
+
+DEPEND="virtual/libc
+ ssl? ( dev-libs/openssl )
+ db? ( sys-libs/db )"
+
+src_compile() {
+ local myconf
+
+ econf \
+ `use_enable debug` \
+ `use_enable berkdb db` \
+ `use_with ssl openssl` \
+ || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+ dodoc NEWS TODO ChangeLog
+}