diff options
author | 2025-01-03 12:27:25 +0700 | |
---|---|---|
committer | 2025-01-03 12:27:25 +0700 | |
commit | 87c7e7fecff300e11cc9ac910ecdd251e4e8a91b (patch) | |
tree | 726e3c519a5278a9626e506bdac8089fbff99069 /app-text/qpdfview | |
parent | 0.5_p2-r1: removed the possibility to usr Qt5 (diff) | |
download | gentoo-87c7e7fecff300e11cc9ac910ecdd251e4e8a91b.tar.gz gentoo-87c7e7fecff300e11cc9ac910ecdd251e4e8a91b.tar.bz2 gentoo-87c7e7fecff300e11cc9ac910ecdd251e4e8a91b.zip |
app-text/qpdfview: remove old verions
Signed-off-by: Andrey Grozin <grozin@gentoo.org>
Diffstat (limited to 'app-text/qpdfview')
-rw-r--r-- | app-text/qpdfview/Manifest | 1 | ||||
-rw-r--r-- | app-text/qpdfview/qpdfview-0.5_p1.ebuild | 90 | ||||
-rw-r--r-- | app-text/qpdfview/qpdfview-0.5_p2.ebuild | 121 |
3 files changed, 0 insertions, 212 deletions
diff --git a/app-text/qpdfview/Manifest b/app-text/qpdfview/Manifest index 5d7143649298..e0f1d83ccad7 100644 --- a/app-text/qpdfview/Manifest +++ b/app-text/qpdfview/Manifest @@ -1,3 +1,2 @@ DIST qpdfview-0.5.tar.gz 925408 BLAKE2B 8ce8ff82893c90012ea1b35a582e87783da87e6eba3d4a10e78fe7810c269908ed1541cf40b1eb17fc474254131cebbc4832a3f46a2016262c485d48e222791b SHA512 1b6b479bb42f4568c21b5f6cb0c552c4323739ba9fe46cea80cc199f48b0b49a278e0a2fb0d21f83bafb467e43dd37352b99ef41795d140220bb82d704e03926 -DIST qpdfview-0.5_p1.tar.gz 922833 BLAKE2B 99d5e818b7c5dd5e583072043be6a282da64277f695cf4c0d38ad339dbdbcb100dcbbf161657f3622a324f691275beb6338c07fe2bbd62e1db896ec759ef162c SHA512 65720f6642b23a23b2d05b38334ce95424e69985b69223d978d4fd59b565d59a37eb43138c2f17fd37d8139b4cc223d5ab32dd18c62f2524792f42b44ba52189 DIST qpdfview-0.5_p2.tar.gz 928017 BLAKE2B adffb6b0007787231bbe89f9c96fdf089141b135838f81895807dd8208e3046f8eee751a7a6668a26ea9f54f8a2192d50b0afabd6fa76155f916d8ea1f10cbc0 SHA512 19bab7d39c454c3c49db18c5161b73956c055c07de7a44448f9f8bbf966c26a339343e12e99ed6af9b91bba15fbb26074a745c318abbc63ef85f5ab177e7140f diff --git a/app-text/qpdfview/qpdfview-0.5_p1.ebuild b/app-text/qpdfview/qpdfview-0.5_p1.ebuild deleted file mode 100644 index caf4f6353347..000000000000 --- a/app-text/qpdfview/qpdfview-0.5_p1.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PLOCALES="af ast az be ber bg bs ca cs da de el en_AU en_GB eo es eu fa fi fr gl he hi hr hu id it ja kk ko ku ky lt lv ms my nb nds oc pl pt pt_BR ro ru rue sk sr sv th tr ug uk uz vi zgh zh_CN zh_TW" -inherit plocale qmake-utils xdg - -DESCRIPTION="A tabbed document viewer" -HOMEPAGE="https://launchpad.net/qpdfview" -# revision 2161 -SRC_URI="https://dev.gentoo.org/~grozin/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" -IUSE="cups +dbus djvu fitz +pdf postscript +sqlite +svg synctex" - -REQUIRED_USE="?? ( fitz pdf )" - -BDEPEND=" - dev-qt/linguist-tools:5 - virtual/pkgconfig -" -RDEPEND=" - cups? ( net-print/cups ) - djvu? ( app-text/djvu ) - fitz? ( >=app-text/mupdf-1.7:= ) - postscript? ( app-text/libspectre ) - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtprintsupport:5[cups?] - dev-qt/qtwidgets:5 - dbus? ( dev-qt/qtdbus:5 ) - pdf? ( >=app-text/poppler-0.35[qt5] - dev-qt/qtxml:5 ) - sqlite? ( dev-qt/qtsql:5[sqlite] ) - svg? ( dev-qt/qtsvg:5 ) - !svg? ( virtual/freedesktop-icon-theme ) - synctex? ( app-text/texlive-core )" -DEPEND="${RDEPEND}" - -DOCS=( CHANGES CONTRIBUTORS README TODO ) - -PATCHES=( - "${FILESDIR}"/${PN}-0.5-poppler-23.08.0-cxx17.patch -) - -src_prepare() { - default - - local mylrelease="$(qt5_get_bindir)"/lrelease - p_locale() { - "${mylrelease}" "translations/${PN}_${1}.ts" || die "preparing ${1} locale failed" - } - - rm_help() { - rm -f "help/help_${1}.html" || die "removing ${1} help file failed" - } - - plocale_find_changes translations ${PN}_ .ts - plocale_for_each_locale p_locale - plocale_for_each_disabled_locale rm_help - - # adapt for prefix - sed -i -e "s:/usr:${EPREFIX}/usr:g" qpdfview.pri || die -} - -src_configure() { - local myconfig=() i= - for i in cups dbus djvu pdf svg synctex; do - use ${i} || myconfig+=(without_${i}) - done - use fitz && myconfig+=(with_fitz) - use postscript || myconfig+=(without_ps) - use sqlite || myconfig+=(without_sql) - - local myqmakeargs=( - qpdfview.pro - CONFIG+="${myconfig[*]}" - PLUGIN_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/${PN}" - ) - eqmake5 "${myqmakeargs[@]}" -} - -src_install() { - emake INSTALL_ROOT="${D}" install - einstalldocs -} diff --git a/app-text/qpdfview/qpdfview-0.5_p2.ebuild b/app-text/qpdfview/qpdfview-0.5_p2.ebuild deleted file mode 100644 index f94ce1e814e5..000000000000 --- a/app-text/qpdfview/qpdfview-0.5_p2.ebuild +++ /dev/null @@ -1,121 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PLOCALES="af ast az be ber bg bs ca cs da de el en_AU en_GB eo es eu fa fi fr gl he hi hr hu id it ja kk ko ku ky lt lv ms my nb nds oc pl pt pt_BR ro ru rue sk sr sv th tr ug uk uz vi zgh zh_CN zh_TW" -inherit plocale qmake-utils xdg - -DESCRIPTION="A tabbed document viewer" -HOMEPAGE="https://launchpad.net/qpdfview" -REVISION=2162 -SRC_URI="https://bazaar.launchpad.net/~adamreichold/${PN}/trunk/tarball/${REVISION} -> ${PN}-${PV}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" -IUSE="cups +dbus djvu fitz +pdf postscript +qt6 +sqlite +svg synctex" - -REQUIRED_USE="?? ( fitz pdf )" - -BDEPEND=" - qt6? ( dev-qt/qttools:6[linguist] ) - !qt6? ( dev-qt/linguist-tools:5 ) - virtual/pkgconfig -" -RDEPEND=" - cups? ( net-print/cups ) - djvu? ( app-text/djvu ) - fitz? ( >=app-text/mupdf-1.7:= ) - postscript? ( app-text/libspectre ) - qt6? ( - dev-qt/qtbase:6[gui,widgets,concurrent] - dbus? ( dev-qt/qttools:6[qdbus] ) - pdf? ( - app-text/poppler[qt6] - dev-qt/qtbase:6[xml] - ) - sqlite? ( dev-qt/qtbase:6[sql,sqlite] ) - svg? ( dev-qt/qtsvg:6 ) - ) - !qt6? ( - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtprintsupport:5[cups?] - dev-qt/qtwidgets:5 - dbus? ( dev-qt/qtdbus:5 ) - pdf? ( - app-text/poppler[qt5] - dev-qt/qtxml:5 - ) - sqlite? ( dev-qt/qtsql:5[sqlite] ) - svg? ( dev-qt/qtsvg:5 ) - ) - !svg? ( virtual/freedesktop-icon-theme ) - synctex? ( app-text/texlive-core )" -DEPEND="${RDEPEND}" - -DOCS=( CHANGES CONTRIBUTORS README TODO ) - -PATCHES=( - "${FILESDIR}"/${PN}-0.5-poppler-23.08.0-cxx17.patch -) - -src_unpack() { - unpack ${A} - mv '~adamreichold'/${PN}/trunk ${PN}-${PV} || die "mv trunk failed" -} - -src_prepare() { - default - - local mylrelease - if use qt6; then - mylrelease="$(qt6_get_bindir)"/lrelease - else - mylrelease="$(qt5_get_bindir)"/lrelease - fi - - p_locale() { - "${mylrelease}" "translations/${PN}_${1}.ts" || die "preparing ${1} locale failed" - } - - rm_help() { - rm -f "help/help_${1}.html" || die "removing ${1} help file failed" - } - - plocale_find_changes translations ${PN}_ .ts - plocale_for_each_locale p_locale - plocale_for_each_disabled_locale rm_help - - # adapt for prefix - sed -i -e "s:/usr:${EPREFIX}/usr:g" qpdfview.pri || die -} - -src_configure() { - local myconfig=() i= - for i in cups dbus djvu pdf svg synctex; do - use ${i} || myconfig+=(without_${i}) - done - use fitz && myconfig+=(with_fitz) - use postscript || myconfig+=(without_ps) - use sqlite || myconfig+=(without_sql) - - local myqmakeargs=( - qpdfview.pro - CONFIG+="${myconfig[*]}" - PLUGIN_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/${PN}" - ) - - if use qt6; then - eqmake6 "${myqmakeargs[@]}" - else - eqmake5 "${myqmakeargs[@]}" - fi -} - -src_install() { - emake INSTALL_ROOT="${D}" install - einstalldocs -} |