summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2012-06-20 13:51:01 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2012-06-20 13:51:01 +0000
commitfc946ef6a4b188c1b5866fb22cdd47fb59300d66 (patch)
tree9658f0d03d1d6462095f015d004a1b8ad99bf026 /app-text
parentVersion bump. The new version comes with bundled udev and is highly experimen... (diff)
downloadgentoo-2-fc946ef6a4b188c1b5866fb22cdd47fb59300d66.tar.gz
gentoo-2-fc946ef6a4b188c1b5866fb22cdd47fb59300d66.tar.bz2
gentoo-2-fc946ef6a4b188c1b5866fb22cdd47fb59300d66.zip
Version bump.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/unpaper/ChangeLog9
-rw-r--r--app-text/unpaper/unpaper-0.4.1.ebuild42
2 files changed, 49 insertions, 2 deletions
diff --git a/app-text/unpaper/ChangeLog b/app-text/unpaper/ChangeLog
index 54ba0dd32170..676a1184533b 100644
--- a/app-text/unpaper/ChangeLog
+++ b/app-text/unpaper/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/unpaper
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/unpaper/ChangeLog,v 1.8 2011/10/31 13:04:47 flameeyes Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/unpaper/ChangeLog,v 1.9 2012/06/20 13:51:01 flameeyes Exp $
+
+*unpaper-0.4.1 (20 Jun 2012)
+
+ 20 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> +unpaper-0.4.1.ebuild:
+ Version bump.
31 Oct 2011; Diego E. Pettenò <flameeyes@gentoo.org> -unpaper-0.3.ebuild:
Remove 0.3 version as it relies on berlios mirrors (I have a copy of it
diff --git a/app-text/unpaper/unpaper-0.4.1.ebuild b/app-text/unpaper/unpaper-0.4.1.ebuild
new file mode 100644
index 000000000000..39f9d82423a4
--- /dev/null
+++ b/app-text/unpaper/unpaper-0.4.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/unpaper/unpaper-0.4.1.ebuild,v 1.1 2012/06/20 13:51:01 flameeyes Exp $
+
+EAPI=4
+
+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"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Post-processor for scanned and photocopied book pages"
+HOMEPAGE="http://www.flameeyes.eu/projects/unpaper"
+
+LICENSE="GPL-2"
+
+SLOT="0"
+IUSE="test"
+
+DEPEND="test? ( media-libs/netpbm[png] )
+ dev-libs/libxslt
+ app-text/docbook-xsl-ns-stylesheets"
+RDEPEND=""
+
+if [[ ${PV} == 9999 ]]; then
+ src_prepare() {
+ eautoreconf
+ }
+fi
+
+src_configure() {
+ econf \
+ --docdir=/usr/share/doc/${PF} \
+ --htmldir=/usr/share/doc/${PF}/html
+}
+
+src_test() {
+ emake check
+}