Gentoo Archives: gentoo-commits

From: "Dominik Kapusta (ayoy)" <ayoy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/cb2bib: ChangeLog cb2bib-1.4.0.ebuild
Date: Thu, 29 Apr 2010 06:21:54
Message-Id: 20100429062151.898BE2C04C@corvid.gentoo.org
1 ayoy 10/04/29 06:21:51
2
3 Modified: ChangeLog
4 Added: cb2bib-1.4.0.ebuild
5 Log:
6 Version bump. Thanks to Samuli Suominen (ssuominen@g.o) for reporting (bug #317137).
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 app-text/cb2bib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/cb2bib/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/cb2bib/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/cb2bib/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/cb2bib/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 4 Mar 2010 09:27:19 -0000 1.4
23 +++ ChangeLog 29 Apr 2010 06:21:51 -0000 1.5
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-text/cb2bib
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/ChangeLog,v 1.4 2010/03/04 09:27:19 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/ChangeLog,v 1.5 2010/04/29 06:21:51 ayoy Exp $
29 +
30 +*cb2bib-1.4.0 (29 Apr 2010)
31 +
32 + 29 Apr 2010; Dominik Kapusta <ayoy@g.o> +cb2bib-1.4.0.ebuild:
33 + Version bump. Thanks to Samuli Suominen (ssuominen@g.o) for reporting (bug
34 + #317137).
35
36 04 Mar 2010; Christian Faulhammer <fauli@g.o> cb2bib-1.3.6.ebuild:
37 stable x86, bug 306379
38
39
40
41 1.1 app-text/cb2bib/cb2bib-1.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/cb2bib/cb2bib-1.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/cb2bib/cb2bib-1.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cb2bib-1.4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/cb2bib-1.4.0.ebuild,v 1.1 2010/04/29 06:21:51 ayoy Exp $
51
52 EAPI="2"
53
54 inherit qt4-r2
55
56 DESCRIPTION="Tool for extracting unformatted bibliographic references"
57 HOMEPAGE="http://www.molspaces.com/cb2bib/"
58 SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz"
59
60 SLOT="0"
61 LICENSE="GPL-3"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="debug +lzo +poll"
64
65 DEPEND="x11-libs/qt-webkit:4
66 lzo? ( dev-libs/lzo )"
67 RDEPEND="${DEPEND}"
68
69 src_prepare() {
70 echo "CONFIG += ordered" >> "${PN}.pro" || die "patching project file failed"
71 sed -i 's:\.\./COPYRIGHT \.\.\/LICENSE::' src/src.pro || die "sed src.pro failed"
72 }
73
74 src_configure() {
75 # Custom configure script has only few options, so call ./configure manually...
76 # We need to unset QTDIR here, else we may end up with qt3 if it is installed.
77 # TODO: remove QTDIR when qt3 goes away
78 QTDIR="" ./configure \
79 $(use_enable lzo) \
80 $(use_enable poll cbpoll) \
81 --disable-qmake-call \
82 --qmakepath /usr/bin/qmake \
83 --prefix /usr \
84 --bindir /usr/bin \
85 --datadir /usr/share \
86 --desktopdatadir /usr/share/applications \
87 --icondir /usr/share/pixmaps \
88 || die "cb2bib-provided configure failed"
89
90 eqmake4 $(cat qmake-additional-args)
91 }
92
93 pkg_postinst() {
94 elog "For best functionality, emerge the following packages:"
95 elog " app-text/poppler-utils - for data import from PDF files"
96 elog " app-text/dvipdfm - for data import from DVI files"
97 elog " app-text/bibutils - for data import from ISI, endnote format"
98 elog " media-fonts/jsmath - for displaying mathematical notation"
99 elog " media-libs/exiftool - for proper UTF-8 metadata writing in PDF"
100 elog " text strings"
101 elog " virtual/latex-base - to check for BibTeX file correctness and to get"
102 elog " nice printing through the shell script bib2pdf"
103 }