diff options
author | Fabian Groffen <grobian@gentoo.org> | 2008-04-15 13:22:06 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2008-04-15 13:22:06 +0000 |
commit | d8f3c9b3f090917dce9bbaa84869240ccb0f1f35 (patch) | |
tree | e4addd197f098e784989d02b89f8e41eedd1a622 /app-text/libwpd | |
parent | Version bump (diff) | |
download | gentoo-2-d8f3c9b3f090917dce9bbaa84869240ccb0f1f35.tar.gz gentoo-2-d8f3c9b3f090917dce9bbaa84869240ccb0f1f35.tar.bz2 gentoo-2-d8f3c9b3f090917dce9bbaa84869240ccb0f1f35.zip |
Version bump, bug #217781
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-text/libwpd')
-rw-r--r-- | app-text/libwpd/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/libwpd/libwpd-0.8.14.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/app-text/libwpd/ChangeLog b/app-text/libwpd/ChangeLog index c36f696a5ce4..dc688f9eb9aa 100644 --- a/app-text/libwpd/ChangeLog +++ b/app-text/libwpd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/libwpd # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/ChangeLog,v 1.56 2008/01/20 16:20:26 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/ChangeLog,v 1.57 2008/04/15 13:22:06 grobian Exp $ + +*libwpd-0.8.14 (15 Apr 2008) + + 15 Apr 2008; Fabian Groffen <grobian@gentoo.org> +libwpd-0.8.14.ebuild: + Version bump, bug #217781 20 Jan 2008; Fabian Groffen <grobian@gentoo.org> libwpd-0.8.9.ebuild, libwpd-0.8.10.ebuild: diff --git a/app-text/libwpd/libwpd-0.8.14.ebuild b/app-text/libwpd/libwpd-0.8.14.ebuild new file mode 100644 index 000000000000..eba4aad5b6ad --- /dev/null +++ b/app-text/libwpd/libwpd-0.8.14.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/libwpd-0.8.14.ebuild,v 1.1 2008/04/15 13:22:06 grobian Exp $ + +inherit eutils + +DESCRIPTION="WordPerfect Document import/export library" +HOMEPAGE="http://libwpd.sf.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="doc" +RESTRICT="test" + +RDEPEND=">=dev-libs/glib-2 + >=gnome-extra/libgsf-1.6 + doc? ( app-doc/doxygen )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf $(use_with doc docs) || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc CHANGES CREDITS INSTALL README TODO +} |