From 1ad3eb774ceb9a9d892264198dc2744bf8ee0338 Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Wed, 24 Apr 2013 06:05:59 +0000 Subject: Version bump. (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3) --- app-text/qpdf/ChangeLog | 7 +++++- app-text/qpdf/qpdf-4.1.0.ebuild | 54 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 app-text/qpdf/qpdf-4.1.0.ebuild (limited to 'app-text') diff --git a/app-text/qpdf/ChangeLog b/app-text/qpdf/ChangeLog index 62cd8f1cd390..62673ac5f05b 100644 --- a/app-text/qpdf/ChangeLog +++ b/app-text/qpdf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/qpdf # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/qpdf/ChangeLog,v 1.22 2013/03/24 10:33:31 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/qpdf/ChangeLog,v 1.23 2013/04/24 06:05:59 radhermit Exp $ + +*qpdf-4.1.0 (24 Apr 2013) + + 24 Apr 2013; Tim Harder +qpdf-4.1.0.ebuild: + Version bump. 24 Mar 2013; Fabian Groffen qpdf-4.0.1.ebuild: Marked ~m68k-mint, bug #458766 diff --git a/app-text/qpdf/qpdf-4.1.0.ebuild b/app-text/qpdf/qpdf-4.1.0.ebuild new file mode 100644 index 000000000000..f0150ba4b1e8 --- /dev/null +++ b/app-text/qpdf/qpdf-4.1.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/qpdf/qpdf-4.1.0.ebuild,v 1.1 2013/04/24 06:05:59 radhermit Exp $ + +EAPI="5" + +inherit eutils + +DESCRIPTION="A command-line program that does structural, content-preserving transformations on PDF files" +HOMEPAGE="http://qpdf.sourceforge.net/" +SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz" + +LICENSE="Artistic-2" +SLOT="0/10" # subslot = libqpdf soname version +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint" +IUSE="doc examples static-libs test" + +RDEPEND="dev-libs/libpcre + sys-libs/zlib + >=dev-lang/perl-5.8" +DEPEND="${RDEPEND} + test? ( + sys-apps/diffutils + media-libs/tiff + app-text/ghostscript-gpl + )" + +DOCS=( ChangeLog README TODO ) + +src_prepare() { + # Manually install docs + sed -i -e "/docdir/d" make/libtool.mk || die +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable test test-compare-images) +} + +src_install() { + default + + if use doc ; then + dodoc doc/qpdf-manual.pdf + dohtml doc/* + fi + + if use examples ; then + dobin examples/build/.libs/* + fi + + prune_libtool_files +} -- cgit v1.2.3-65-gdbad