diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-10-08 19:47:37 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-10-08 19:47:37 +0000 |
commit | 247e17009c3b21ac3c102031ddb0cb4419507bcc (patch) | |
tree | 1aa7e33a24643d355676bb0de32daf705a614200 /app-text/unpaper/unpaper-9999.ebuild | |
parent | Masking pngcrush for using the bundled libpng14 and zlib libraries. See bug #... (diff) | |
download | historical-247e17009c3b21ac3c102031ddb0cb4419507bcc.tar.gz historical-247e17009c3b21ac3c102031ddb0cb4419507bcc.tar.bz2 historical-247e17009c3b21ac3c102031ddb0cb4419507bcc.zip |
Update live ebuild with new homepage URL, and bump to 0.4 version that use my new fork package.
Package-Manager: portage-2.2.0_alpha63/cvs/Linux x86_64
Diffstat (limited to 'app-text/unpaper/unpaper-9999.ebuild')
-rw-r--r-- | app-text/unpaper/unpaper-9999.ebuild | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/app-text/unpaper/unpaper-9999.ebuild b/app-text/unpaper/unpaper-9999.ebuild index c17f91984aac..c352cea4bbf1 100644 --- a/app-text/unpaper/unpaper-9999.ebuild +++ b/app-text/unpaper/unpaper-9999.ebuild @@ -1,15 +1,18 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/unpaper/unpaper-9999.ebuild,v 1.2 2011/09/06 14:25:31 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/unpaper/unpaper-9999.ebuild,v 1.3 2011/10/08 19:47:37 flameeyes Exp $ EAPI=4 -EGIT_REPO_URI="git://github.com/Flameeyes/unpaper.git" -inherit git-2 autotools +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="git://github.com/Flameeyes/unpaper.git" + inherit git-2 autotools +else + SRC_URI="http://www.flameeyes.eu/files/${P}.tar.xz" +fi DESCRIPTION="Post-processor for scanned and photocopied book pages" -HOMEPAGE="http://unpaper.berlios.de/ - https://github.com/flameeyes/unpaper" +HOMEPAGE="http://www.flameeyes.eu/projects/unpaper" LICENSE="GPL-2" @@ -22,9 +25,11 @@ DEPEND="test? ( media-libs/netpbm[png] ) app-text/docbook-xsl-ns-stylesheets" RDEPEND="" -src_prepare() { - eautoreconf -} +if [[ ${PV} == 9999 ]]; then + src_prepare() { + eautoreconf + } +fi src_configure() { econf \ |