summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-07-04 14:53:03 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-07-04 14:53:03 +0000
commit142d072e5aa508c675fcc60d95eedfc1afa727a9 (patch)
treebf6fcd1fe6eaea939bd30cc5207eb7d556775363 /app-text/qpdfview
parentRemove old. (diff)
downloadgentoo-2-142d072e5aa508c675fcc60d95eedfc1afa727a9.tar.gz
gentoo-2-142d072e5aa508c675fcc60d95eedfc1afa727a9.tar.bz2
gentoo-2-142d072e5aa508c675fcc60d95eedfc1afa727a9.zip
Remove old.
(Portage version: 2.1.12.11/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'app-text/qpdfview')
-rw-r--r--app-text/qpdfview/ChangeLog6
-rw-r--r--app-text/qpdfview/qpdfview-0.4.2-r1.ebuild63
2 files changed, 5 insertions, 64 deletions
diff --git a/app-text/qpdfview/ChangeLog b/app-text/qpdfview/ChangeLog
index ab6b2e58e733..d20664dd2768 100644
--- a/app-text/qpdfview/ChangeLog
+++ b/app-text/qpdfview/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/qpdfview
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/qpdfview/ChangeLog,v 1.48 2013/07/04 12:25:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/qpdfview/ChangeLog,v 1.49 2013/07/04 14:53:03 kensington Exp $
+
+ 04 Jul 2013; Michael Palimaka <kensington@gentoo.org>
+ -qpdfview-0.4.2-r1.ebuild:
+ Remove old.
04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> qpdfview-0.4.3.ebuild:
Stable for x86, wrt bug #475096
diff --git a/app-text/qpdfview/qpdfview-0.4.2-r1.ebuild b/app-text/qpdfview/qpdfview-0.4.2-r1.ebuild
deleted file mode 100644
index ab7d170eef6d..000000000000
--- a/app-text/qpdfview/qpdfview-0.4.2-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/qpdfview/qpdfview-0.4.2-r1.ebuild,v 1.4 2013/05/26 15:55:55 ago Exp $
-
-EAPI=5
-
-PLOCALES="ast az bg bs ca cs da de el en_GB eo es eu fi fr he hr id it ky ms my pl pt_BR ro ru sk tr ug uk zh_CN"
-inherit l10n multilib qt4-r2
-
-DESCRIPTION="A tabbed document viewer"
-HOMEPAGE="http://launchpad.net/qpdfview"
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE="cups dbus djvu +pdf postscript sqlite +svg synctex"
-
-RDEPEND="app-text/poppler[qt4]
- dev-qt/qtcore:4[iconv]
- dev-qt/qtgui:4
- cups? ( net-print/cups )
- dbus? ( dev-qt/qtdbus:4 )
- djvu? ( app-text/djvu )
- postscript? ( app-text/libspectre )
- sqlite? ( dev-qt/qtsql:4[sqlite] )
- svg? ( dev-qt/qtsvg:4 )
- !svg? ( virtual/freedesktop-icon-theme )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( CHANGES CONTRIBUTORS README TODO )
-
-prepare_locale() {
- lrelease "translations/${PN}_${1}.ts" || die "preparing ${1} locale failed"
-}
-
-src_prepare() {
- l10n_find_plocales_changes "translations" "${PN}_" '.ts'
- l10n_for_each_locale_do prepare_locale
-
- qt4-r2_src_prepare
-}
-
-src_configure() {
- local config i
-
- for i in cups dbus pdf djvu svg synctex ; do
- if ! use ${i} ; then
- config+=" without_${i}"
- fi
- done
-
- if ! use sqlite ; then
- config+=" without_sql"
- fi
-
- if ! use postscript ; then
- config+=" without_ps"
- fi
-
- eqmake4 CONFIG+="${config}" PLUGIN_INSTALL_PATH="/usr/$(get_libdir)/${PN}"
-}