summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-05-31 23:12:46 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-05-31 23:12:46 +0000
commitc94e1f26b7c2ea5256bd25a4fb4027a7848b64c0 (patch)
treec020ba39b6fce0dc9eda13cc2340e93b1c11faa3 /net-mail/libpst
parentRemove unused configure flags, bug #230750. Move documentation to one folder. (diff)
downloadgentoo-2-c94e1f26b7c2ea5256bd25a4fb4027a7848b64c0.tar.gz
gentoo-2-c94e1f26b7c2ea5256bd25a4fb4027a7848b64c0.tar.bz2
gentoo-2-c94e1f26b7c2ea5256bd25a4fb4027a7848b64c0.zip
Bump to 0.6.37. Thanks to Gilles Dartiguelongue for the modifications. Closes #272008
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/libpst')
-rw-r--r--net-mail/libpst/ChangeLog10
-rw-r--r--net-mail/libpst/libpst-0.6.37.ebuild35
2 files changed, 43 insertions, 2 deletions
diff --git a/net-mail/libpst/ChangeLog b/net-mail/libpst/ChangeLog
index 5f5cc18d2c35..827f84e5fa40 100644
--- a/net-mail/libpst/ChangeLog
+++ b/net-mail/libpst/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-mail/libpst
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.12 2009/05/31 22:04:19 ranger Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.13 2009/05/31 23:12:46 patrick Exp $
+
+*libpst-0.6.37 (31 May 2009)
+
+ 31 May 2009; Patrick Lauer <patrick@gentoo.org> +libpst-0.6.37.ebuild:
+ Bump to 0.6.37. Thanks to Gilles Dartiguelongue for the modifications.
+ Closes #272008
31 May 2009; Brent Baude <ranger@gentoo.org> libpst-0.5.3.ebuild:
Marking libpst-0.5.3 ~ppc64 for bug 271000
diff --git a/net-mail/libpst/libpst-0.6.37.ebuild b/net-mail/libpst/libpst-0.6.37.ebuild
new file mode 100644
index 000000000000..3c54ff8ace96
--- /dev/null
+++ b/net-mail/libpst/libpst-0.6.37.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.37.ebuild,v 1.1 2009/05/31 23:12:46 patrick Exp $
+
+EAPI="2"
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
+HOMEPAGE="http://www.five-ten-sg.com/libpst/"
+SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+RDEPEND="media-libs/gd[png]
+ media-gfx/imagemagick[png]"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ econf \
+ $(use_enable debug pst-debug) \
+ --enable-libpst-shared
+}
+
+src_compile() {
+ emake CC=$(tc-getCC) || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
+ dodoc AUTHORS ChangeLog NEWS TODO || die "dodoc failed"
+}