diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-04-18 15:33:52 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-04-18 15:33:52 +0000 |
commit | 344e89f9827a886ff68556080fd18b4e9ba3ecc2 (patch) | |
tree | 0ee2fe67f35c99fda4a647890e0d1ca38beff789 /net-mail/libpst | |
parent | Bump to 1.7. Fixes #266116 (diff) | |
download | gentoo-2-344e89f9827a886ff68556080fd18b4e9ba3ecc2.tar.gz gentoo-2-344e89f9827a886ff68556080fd18b4e9ba3ecc2.tar.bz2 gentoo-2-344e89f9827a886ff68556080fd18b4e9ba3ecc2.zip |
Bump to 0.5.3
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/libpst')
-rw-r--r-- | net-mail/libpst/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/libpst/libpst-0.5.3.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/net-mail/libpst/ChangeLog b/net-mail/libpst/ChangeLog index add20001d574..88fbc02c5759 100644 --- a/net-mail/libpst/ChangeLog +++ b/net-mail/libpst/ChangeLog @@ -1,6 +1,11 @@ # 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.10 2009/04/02 12:13:33 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.11 2009/04/18 15:33:52 patrick Exp $ + +*libpst-0.5.3 (18 Apr 2009) + + 18 Apr 2009; Patrick Lauer <patrick@gentoo.org> +libpst-0.5.3.ebuild: + Bump to 0.5.3 02 Apr 2009; Caleb Tennis <caleb@gentoo.org> libpst-0.5.2.ebuild: x86/amd64 stable diff --git a/net-mail/libpst/libpst-0.5.3.ebuild b/net-mail/libpst/libpst-0.5.3.ebuild new file mode 100644 index 000000000000..abb91e03271d --- /dev/null +++ b/net-mail/libpst/libpst-0.5.3.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.5.3.ebuild,v 1.1 2009/04/18 15:33:52 patrick Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="Tools and library for reading Outlook files (.pst format)" +HOMEPAGE="http://alioth.debian.org/projects/libpst/" +SRC_URI="http://alioth.debian.org/download.php/844/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-0.5.1" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-0.5.2-gentoo.diff" +} + +src_compile() { + emake CC=$(tc-getCC) || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS CREDITS TODO FILE-FORMAT || die "dodoc failed" + dohtml FILE-FORMAT.html || die "dohtml failed" +} |