Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/texlive-core: texlive-core-2008.ebuild ChangeLog
Date: Thu, 02 Oct 2008 18:58:34
Message-Id: E1KlTNf-0003RB-7h@stork.gentoo.org
1 aballier 08/10/02 18:58:31
2
3 Modified: texlive-core-2008.ebuild ChangeLog
4 Log:
5 Add tk useflag and don't install texdoctk if its off, bug #234604
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.26.5 x86_64)
7
8 Revision Changes Path
9 1.3 app-text/texlive-core/texlive-core-2008.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/texlive-core-2008.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/texlive-core-2008.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/texlive-core-2008.ebuild?r1=1.2&r2=1.3
14
15 Index: texlive-core-2008.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2008.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- texlive-core-2008.ebuild 18 Sep 2008 08:16:59 -0000 1.2
22 +++ texlive-core-2008.ebuild 2 Oct 2008 18:58:30 -0000 1.3
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2008.ebuild,v 1.2 2008/09/18 08:16:59 aballier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2008.ebuild,v 1.3 2008/10/02 18:58:30 aballier Exp $
28
29 EAPI=1
30
31 @@ -33,7 +33,7 @@
32 mirror://gentoo/${PN}-2008-texmf.d-${TEXMFD_VERSION}.tar.lzma"
33
34 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
35 -IUSE="X doc source"
36 +IUSE="X doc source tk"
37
38 MODULAR_X_DEPEND="X? (
39 x11-libs/libXmu
40 @@ -45,7 +45,7 @@
41 x11-libs/libXfont
42 )"
43
44 -RDEPEND="${MODULAR_X_DEPEND}
45 +COMMON_DEPEND="${MODULAR_X_DEPEND}
46 !app-text/ptex
47 !app-text/tetex
48 !<app-text/texlive-2007
49 @@ -58,11 +58,14 @@
50 media-libs/freetype:2
51 media-libs/fontconfig"
52
53 -DEPEND="${RDEPEND}
54 +DEPEND="${COMMON_DEPEND}
55 sys-apps/ed
56 sys-devel/flex
57 app-arch/lzma-utils"
58
59 +RDEPEND="${COMMON_DEPEND}
60 + tk? ( dev-perl/perl-tk )"
61 +
62 # texdoc needs luatex.
63 PDEPEND="dev-tex/luatex"
64
65 @@ -251,6 +254,11 @@
66 # Keep it as that's where the formats will go
67 keepdir /var/lib/texmf
68
69 + # Remove texdoctk if we don't want it
70 + if ! use tk ; then
71 + rm -f "${D}/usr/bin/texdoctk" "${D}/usr/share/texmf/scripts/tetex/texdoctk.pl" "${D}/usr/share/man/man1/texdoctk.1" || die "failed to remove texdoc tk!"
72 + fi
73 +
74 # Rename mpost to leave room for mplib
75 mv "${D}/usr/bin/mpost" "${D}/usr/bin/mpost-${P}"
76 dosym "mpost-${P}" /usr/bin/mpost
77
78
79
80 1.73 app-text/texlive-core/ChangeLog
81
82 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.73&view=markup
83 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.73&content-type=text/plain
84 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/ChangeLog?r1=1.72&r2=1.73
85
86 Index: ChangeLog
87 ===================================================================
88 RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v
89 retrieving revision 1.72
90 retrieving revision 1.73
91 diff -u -r1.72 -r1.73
92 --- ChangeLog 18 Sep 2008 08:16:59 -0000 1.72
93 +++ ChangeLog 2 Oct 2008 18:58:30 -0000 1.73
94 @@ -1,6 +1,10 @@
95 # ChangeLog for app-text/texlive-core
96 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
97 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.72 2008/09/18 08:16:59 aballier Exp $
98 +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.73 2008/10/02 18:58:30 aballier Exp $
99 +
100 + 02 Oct 2008; Alexis Ballier <aballier@g.o>
101 + texlive-core-2008.ebuild:
102 + Add tk useflag and don't install texdoctk if its off, bug #234604
103
104 18 Sep 2008; Alexis Ballier <aballier@g.o>
105 texlive-core-2008.ebuild: