diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-01-31 13:06:54 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-01-31 13:06:54 +0000 |
commit | 3416ef2296257cccce32f6e6b310e6b613d00e81 (patch) | |
tree | be90320913abd96c6ee3c7c5c50d50778872239f /app-text | |
parent | Bump (diff) | |
download | gentoo-2-3416ef2296257cccce32f6e6b310e6b613d00e81.tar.gz gentoo-2-3416ef2296257cccce32f6e6b310e6b613d00e81.tar.bz2 gentoo-2-3416ef2296257cccce32f6e6b310e6b613d00e81.zip |
Version bump, remove old, dvips and latex are required (bug #345121).
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/wv/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/wv/wv-1.2.9.ebuild (renamed from app-text/wv/wv-1.2.4.ebuild) | 30 |
2 files changed, 19 insertions, 21 deletions
diff --git a/app-text/wv/ChangeLog b/app-text/wv/ChangeLog index fa994861cc20..0638aaf85be7 100644 --- a/app-text/wv/ChangeLog +++ b/app-text/wv/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/wv -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.53 2010/03/12 10:16:57 pacho Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/ChangeLog,v 1.54 2011/01/31 13:06:54 pacho Exp $ + +*wv-1.2.9 (31 Jan 2011) + + 31 Jan 2011; Pacho Ramos <pacho@gentoo.org> -wv-1.2.4.ebuild, + +wv-1.2.9.ebuild: + Version bump, remove old, dvips and latex are required (bug #345121). *wv-1.2.7 (12 Mar 2010) diff --git a/app-text/wv/wv-1.2.4.ebuild b/app-text/wv/wv-1.2.9.ebuild index d37e4303ca97..45076dfdf704 100644 --- a/app-text/wv/wv-1.2.4.ebuild +++ b/app-text/wv/wv-1.2.9.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.4.ebuild,v 1.1 2008/02/19 15:09:59 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.9.ebuild,v 1.1 2011/01/31 13:06:54 pacho Exp $ -inherit eutils +EAPI="3" DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable" -SRC_URI="mirror://sourceforge/wvware/${P}.tar.gz" +SRC_URI="http://abiword.org/downloads/${PN}/${PV}/${P}.tar.gz" HOMEPAGE="http://wvware.sourceforge.net/" IUSE="wmf" @@ -18,33 +18,25 @@ RDEPEND=">=dev-libs/glib-2 sys-libs/zlib media-libs/libpng dev-libs/libxml2 + app-text/texlive-core + dev-texlive/texlive-latex 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" - +src_configure() { + econf $(use_with wmf libwmf) || die "./configure failed" } src_install () { - make DESTDIR="${D}" install || die "Installation failed" + dodoc README NEWS || die - dodoc README - - rm -f "${D}"/usr/share/man/man1/wvConvert.1 - dosym /usr/share/man/man1/wvWare.1 /usr/share/man/man1/wvConvert.1 - + rm -f "${ED}"/usr/share/man/man1/wvConvert.1 + dosym /usr/share/man/man1/wvWare.1 /usr/share/man/man1/wvConvert.1 || die } pkg_postinst() { - ewarn "You have to re-emerge packages that linked against wv by running:" ewarn "revdep-rebuild" - } |