Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (fauli)" <fauli@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/dvipng: dvipng-1.13.ebuild ChangeLog
Date: Thu, 22 Apr 2010 13:12:40
Message-Id: 20100422131230.3D17028D6D@corvid.gentoo.org
1 fauli 10/04/22 13:12:29
2
3 Modified: ChangeLog
4 Added: dvipng-1.13.ebuild
5 Log:
6 version bump for bug 316329, thanks to ssuominen for all the work
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.66 app-text/dvipng/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/dvipng/ChangeLog?rev=1.66&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/dvipng/ChangeLog?rev=1.66&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/dvipng/ChangeLog?r1=1.65&r2=1.66
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/dvipng/ChangeLog,v
19 retrieving revision 1.65
20 retrieving revision 1.66
21 diff -u -r1.65 -r1.66
22 --- ChangeLog 15 Feb 2010 21:07:35 -0000 1.65
23 +++ ChangeLog 22 Apr 2010 13:12:29 -0000 1.66
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/dvipng
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/dvipng/ChangeLog,v 1.65 2010/02/15 21:07:35 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/dvipng/ChangeLog,v 1.66 2010/04/22 13:12:29 fauli Exp $
29 +
30 +*dvipng-1.13 (22 Apr 2010)
31 +
32 + 22 Apr 2010; Christian Faulhammer <fauli@g.o> +dvipng-1.13.ebuild:
33 + version bump for bug 316329, thanks to ssuominen for all the work
34
35 15 Feb 2010; Ulrich Mueller <ulm@g.o> -dvipng-1.12.ebuild:
36 Remove old.
37
38
39
40 1.1 app-text/dvipng/dvipng-1.13.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/dvipng/dvipng-1.13.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/dvipng/dvipng-1.13.ebuild?rev=1.1&content-type=text/plain
44
45 Index: dvipng-1.13.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-text/dvipng/dvipng-1.13.ebuild,v 1.1 2010/04/22 13:12:29 fauli Exp $
50
51 EAPI="2"
52 inherit eutils
53
54 DESCRIPTION="Translate DVI files into PNG or GIF graphics"
55 HOMEPAGE="http://dvipng.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
57
58 LICENSE="LGPL-3"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
61 IUSE="t1lib truetype test"
62
63 RDEPEND="media-libs/gd[jpeg,png]
64 media-libs/libpng
65 virtual/latex-base
66 sys-libs/zlib
67 t1lib? ( media-libs/t1lib )
68 truetype? ( >=media-libs/freetype-2.1.5 )"
69 DEPEND="${RDEPEND}
70 virtual/texi2dvi
71 test? ( || ( dev-texlive/texlive-fontsrecommended app-text/ptex ) )"
72
73 src_configure() {
74 if ! use t1lib; then
75 # The build system autodetects libt1. We don't want that if the
76 # USE flag is not set, so confuse it with a wrong name.
77 sed -i -e 's/T1_InitLib/dIsAbLe&/' configure || die "sed failed"
78 fi
79
80 if ! use truetype; then
81 sed -i -e 's/FT_Init_FreeType/dIsAbLe&/' configure || die "sed failed"
82 fi
83
84 export VARTEXFONTS="${T}/fonts"
85 econf
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90 dodoc ChangeLog README RELEASE || die "dodoc failed"
91 }