diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-05-18 23:27:10 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-05-18 23:27:10 +0000 |
commit | 7f86663047a8434ca6113503aa893bd0fd6aa9e2 (patch) | |
tree | ea8d166e94723a9835de204a77846fb90b508424 /app-text/cb2bib | |
parent | app-portage/overlint: 0.5.1 (diff) | |
download | gentoo-2-7f86663047a8434ca6113503aa893bd0fd6aa9e2.tar.gz gentoo-2-7f86663047a8434ca6113503aa893bd0fd6aa9e2.tar.bz2 gentoo-2-7f86663047a8434ca6113503aa893bd0fd6aa9e2.zip |
Version bump, fixes build with gcc-4.7. Simplify ebuild and correct references to app-text/poppler-utils.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'app-text/cb2bib')
-rw-r--r-- | app-text/cb2bib/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/cb2bib/cb2bib-1.4.7.ebuild | 4 | ||||
-rw-r--r-- | app-text/cb2bib/cb2bib-1.4.8.ebuild | 51 |
3 files changed, 61 insertions, 3 deletions
diff --git a/app-text/cb2bib/ChangeLog b/app-text/cb2bib/ChangeLog index 6046110a092a..3308dc9f4df3 100644 --- a/app-text/cb2bib/ChangeLog +++ b/app-text/cb2bib/ChangeLog @@ -1,6 +1,13 @@ # 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.11 2012/04/10 10:18:45 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/ChangeLog,v 1.12 2012/05/18 23:27:10 pesa Exp $ + +*cb2bib-1.4.8 (18 May 2012) + + 18 May 2012; Davide Pesavento <pesa@gentoo.org> +cb2bib-1.4.8.ebuild, + cb2bib-1.4.7.ebuild: + Version bump, fixes build with gcc-4.7. Simplify ebuild and correct references + to app-text/poppler-utils. 10 Apr 2012; Davide Pesavento <pesa@gentoo.org> -cb2bib-1.3.6.ebuild, -cb2bib-1.4.2.ebuild, metadata.xml: diff --git a/app-text/cb2bib/cb2bib-1.4.7.ebuild b/app-text/cb2bib/cb2bib-1.4.7.ebuild index 2cc6d66766fa..754d26d80606 100644 --- a/app-text/cb2bib/cb2bib-1.4.7.ebuild +++ b/app-text/cb2bib/cb2bib-1.4.7.ebuild @@ -1,6 +1,6 @@ # 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.3 2012/04/10 08:15:06 ago Exp $ +# $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 @@ -49,7 +49,7 @@ src_install() { pkg_postinst() { elog "For best functionality, emerge the following packages:" - elog " app-text/poppler-utils - for data import from PDF files" + 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" diff --git a/app-text/cb2bib/cb2bib-1.4.8.ebuild b/app-text/cb2bib/cb2bib-1.4.8.ebuild new file mode 100644 index 000000000000..4227919a0cbc --- /dev/null +++ b/app-text/cb2bib/cb2bib-1.4.8.ebuild @@ -0,0 +1,51 @@ +# 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.8.ebuild,v 1.1 2012/05/18 23:27:10 pesa Exp $ + +EAPI=4 + +inherit cmake-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" + +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 +} + +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 +} |