summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2012-06-18 12:45:23 +0000
committerDavide Pesavento <pesa@gentoo.org>2012-06-18 12:45:23 +0000
commit06b9ea5b80a654af065f082096f461f1f7fec271 (patch)
tree4e452e88d4aeaeebd50b2ff9bd6b717246c58288 /app-text/cb2bib
parentVersion bump to latest. (diff)
downloadgentoo-2-06b9ea5b80a654af065f082096f461f1f7fec271.tar.gz
gentoo-2-06b9ea5b80a654af065f082096f461f1f7fec271.tar.bz2
gentoo-2-06b9ea5b80a654af065f082096f461f1f7fec271.zip
old
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'app-text/cb2bib')
-rw-r--r--app-text/cb2bib/ChangeLog5
-rw-r--r--app-text/cb2bib/cb2bib-1.4.7.ebuild60
2 files changed, 4 insertions, 61 deletions
diff --git a/app-text/cb2bib/ChangeLog b/app-text/cb2bib/ChangeLog
index 77893362e618..12bed6d3dc94 100644
--- a/app-text/cb2bib/ChangeLog
+++ b/app-text/cb2bib/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/cb2bib
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/ChangeLog,v 1.14 2012/06/18 11:05:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/ChangeLog,v 1.15 2012/06/18 12:45:23 pesa Exp $
+
+ 18 Jun 2012; Davide Pesavento <pesa@gentoo.org> -cb2bib-1.4.7.ebuild:
+ old
18 Jun 2012; Agostino Sarubbo <ago@gentoo.org> cb2bib-1.4.8.ebuild:
Stable for amd64, wrt bug #421675
diff --git a/app-text/cb2bib/cb2bib-1.4.7.ebuild b/app-text/cb2bib/cb2bib-1.4.7.ebuild
deleted file mode 100644
index 754d26d80606..000000000000
--- a/app-text/cb2bib/cb2bib-1.4.7.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/cb2bib-1.4.7.ebuild,v 1.4 2012/05/18 23:27:10 pesa Exp $
-
-EAPI=4
-
-inherit cmake-utils qt4-r2
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="http://www.molspaces.com/cb2bib/"
-SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="amd64 x86"
-IUSE="debug +lzo +poll"
-
-DEPEND="
- x11-libs/libX11
- x11-libs/qt-core:4
- x11-libs/qt-gui:4
- x11-libs/qt-webkit:4
- lzo? ( dev-libs/lzo )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- if use !lzo; then
- mycmakeargs+=( -DC2B_USE_LZO=OFF )
- fi
-
- if use !poll; then
- mycmakeargs+=( -DC2B_USE_POLL=OFF )
- fi
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-}
-
-src_install() {
- cmake-utils_src_install
-
- rm "${D}"/usr/share/${PN}/COPYRIGHT || die "rm COPYRIGHT failed"
- rm "${D}"/usr/share/${PN}/LICENSE || die "rm LICENSE failed"
-}
-
-pkg_postinst() {
- 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"
-}