diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-11-06 10:16:16 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-11-06 10:16:16 +0000 |
commit | 9b68d0736f6a2e3d2bea57bc138139ea1ceb05f7 (patch) | |
tree | 53e72bbeaa310d575f9779a5c01884a70a154cb5 /app-text/cb2bib | |
parent | Add back ruby19 target now that all dependencies are ready for ruby19. This a... (diff) | |
download | gentoo-2-9b68d0736f6a2e3d2bea57bc138139ea1ceb05f7.tar.gz gentoo-2-9b68d0736f6a2e3d2bea57bc138139ea1ceb05f7.tar.bz2 gentoo-2-9b68d0736f6a2e3d2bea57bc138139ea1ceb05f7.zip |
Version bump. Made qt-webkit optional.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 17A85C72)
Diffstat (limited to 'app-text/cb2bib')
-rw-r--r-- | app-text/cb2bib/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/cb2bib/cb2bib-1.4.9.ebuild | 48 |
2 files changed, 54 insertions, 2 deletions
diff --git a/app-text/cb2bib/ChangeLog b/app-text/cb2bib/ChangeLog index 12bed6d3dc94..18b93613f87d 100644 --- a/app-text/cb2bib/ChangeLog +++ b/app-text/cb2bib/ChangeLog @@ -1,6 +1,11 @@ # 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.15 2012/06/18 12:45:23 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/ChangeLog,v 1.16 2012/11/06 10:16:16 pesa Exp $ + +*cb2bib-1.4.9 (06 Nov 2012) + + 06 Nov 2012; Davide Pesavento <pesa@gentoo.org> +cb2bib-1.4.9.ebuild: + Version bump. Made qt-webkit optional. 18 Jun 2012; Davide Pesavento <pesa@gentoo.org> -cb2bib-1.4.7.ebuild: old @@ -66,4 +71,3 @@ +metadata.xml: Initial commit of cb2bib. Thanks to Hugo Mildenberger and Andreas K. Huettel (dilfridge) - bug #123627 - diff --git a/app-text/cb2bib/cb2bib-1.4.9.ebuild b/app-text/cb2bib/cb2bib-1.4.9.ebuild new file mode 100644 index 000000000000..21b9d69f387b --- /dev/null +++ b/app-text/cb2bib/cb2bib-1.4.9.ebuild @@ -0,0 +1,48 @@ +# 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.9.ebuild,v 1.1 2012/11/06 10:16:16 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 +webkit" + +DEPEND=" + x11-libs/libX11 + x11-libs/qt-core:4 + x11-libs/qt-gui:4 + lzo? ( dev-libs/lzo:2 ) + webkit? ( x11-libs/qt-webkit:4 ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DC2B_USE_LZO=$(use lzo && echo ON || echo OFF) + -DC2B_USE_WEBKIT=$(use webkit && echo ON || echo OFF) + ) + + 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 +} |