diff options
Diffstat (limited to 'app-text/wv/wv-1.2.1.ebuild')
-rw-r--r-- | app-text/wv/wv-1.2.1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/app-text/wv/wv-1.2.1.ebuild b/app-text/wv/wv-1.2.1.ebuild new file mode 100644 index 000000000000..2c9b5ff3837d --- /dev/null +++ b/app-text/wv/wv-1.2.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.1.ebuild,v 1.1 2006/04/15 11:37:02 foser Exp $ + +inherit eutils + +DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable" +SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz" +HOMEPAGE="http://wvware.sourceforge.net/" + +IUSE="wmf" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" +LICENSE="GPL-2" + +RDEPEND=">=dev-libs/glib-2 + >=gnome-extra/libgsf-1.13 + sys-libs/zlib + media-libs/libpng + dev-libs/libxml2 + wmf? ( >=media-libs/libwmf-0.2.2 )" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9" + +src_compile() { + + econf `use_with wmf libwmf` || die "./configure failed" + + emake || die "Compilation failed" + + preserve_old_lib /usr/$(get_libdir)/libwv-1.2.so.0 + preserve_old_lib /usr/$(get_libdir)/libwv-1.0.so.0 + +} + +src_install () { + + make DESTDIR="${D}" install || die "Installation failed" + + dodoc README + + rm -f ${D}/usr/share/man/man1/wvConvert.1 + dosym /usr/share/man/man1/wvWare.1 /usr/share/man/man1/wvConvert.1 + +} + +pkg_postinst() { + + preserve_old_lib_notify /usr/$(get_libdir)/libwv-1.2.so.0 + preserve_old_lib_notify /usr/$(get_libdir)/libwv-1.0.so.0 + +} |