diff options
author | Michael Palimaka <kensington@gentoo.org> | 2017-07-29 13:52:41 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-07-29 13:52:47 +1000 |
commit | 3a66100aa62a4ee7514692bd62e72ea826ceac4a (patch) | |
tree | 26056ce128b445b487c9bc595b8a8f432b4778d2 /app-text/cb2bib | |
parent | app-text/cb2bib: amd64/x86 stable (diff) | |
download | gentoo-3a66100aa62a4ee7514692bd62e72ea826ceac4a.tar.gz gentoo-3a66100aa62a4ee7514692bd62e72ea826ceac4a.tar.bz2 gentoo-3a66100aa62a4ee7514692bd62e72ea826ceac4a.zip |
app-text/cb2bib: remove 1.9.6
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'app-text/cb2bib')
-rw-r--r-- | app-text/cb2bib/Manifest | 1 | ||||
-rw-r--r-- | app-text/cb2bib/cb2bib-1.9.6.ebuild | 63 |
2 files changed, 0 insertions, 64 deletions
diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest index dd6f15c733d3..4336bcdc9482 100644 --- a/app-text/cb2bib/Manifest +++ b/app-text/cb2bib/Manifest @@ -1,2 +1 @@ -DIST cb2bib-1.9.6.tar.gz 845129 SHA256 a2715a670ad405d6599b237d058cccf9e0dbe47070ee8e5d7f799c24ea4715af SHA512 2e13d50996a5461f544ece6cac96ca32f1df1c703b9872d0ec8852a43fd0ba51041a136363fbed433b464163254b4d42ab2e6239a48567961155ae068ad6b27c WHIRLPOOL fbaaa3c77c5d90098d33c31dd13c75484be05b8c5fbf81d33b5a9a620bd9dec452fb9877f2d3c69213354763c63b56d07ff0c282d0ddd2077b8a58942a6d0571 DIST cb2bib-1.9.7.tar.gz 845121 SHA256 fae8520d85a01066434dbdc9357663467c20b4578229cea3047cc6f069dd283f SHA512 87a438288c6e7776db136de63de1a8e27f2abf8499d28c0691b60ad3ef4f848e8987af4fc47d1f2cfb1d47009e28e7535f6bab998811cb721bfc9f384941b1e4 WHIRLPOOL a4dc37345e93f815a50503108b9997717ea96885869a6aef5991f39aa1698810d7289a55da6cf330729e8e12c8399781b0eaebdbae256ac245d2700900da9529 diff --git a/app-text/cb2bib/cb2bib-1.9.6.ebuild b/app-text/cb2bib/cb2bib-1.9.6.ebuild deleted file mode 100644 index ee41902c48f2..000000000000 --- a/app-text/cb2bib/cb2bib-1.9.6.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit qmake-utils - -DESCRIPTION="Tool for extracting unformatted bibliographic references" -HOMEPAGE="http://www.molspaces.com/cb2bib/" -SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+lzo webengine +webkit" - -REQUIRED_USE="?? ( webkit webengine )" - -DEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - lzo? ( dev-libs/lzo:2 ) - webkit? ( dev-qt/qtwebkit:5 ) - webengine? ( dev-qt/qtwebengine:5[widgets] ) -" -RDEPEND="${DEPEND}" - -DOCS=( AUTHORS CHANGELOG COPYRIGHT ) - -src_prepare() { - default - - sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" src/src.pro || die - - use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" src/src.pro || die - use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" src/src.pro || die -} - -src_configure() { - eqmake5 \ - $(use !lzo && echo -config disable_lzo) -} - -src_install() { - emake INSTALL_ROOT="${D}" install - einstalldocs -} - -pkg_postinst() { - einfo - elog "For best functionality, emerge the following packages:" - elog " app-text/poppler[utils] - for data import from PDF files" - elog " app-text/dvipdfm - for data import from DVI files" - elog " app-text/bibutils - for data import from ISI, endnote format" - elog " media-fonts/jsmath - for displaying mathematical notation" - elog " media-libs/exiftool - for proper UTF-8 metadata writing in PDF" - elog " text strings" - elog " virtual/latex-base - to check for BibTeX file correctness and to get" - elog " nice printing through the shell script bib2pdf" - einfo -} |