Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ptexenc: ChangeLog ptexenc-1.2.0_p20110705.ebuild
Date: Wed, 27 Jul 2011 13:02:05
Message-Id: 20110727125921.3F51F20035@flycatcher.gentoo.org
1 aballier 11/07/27 12:59:21
2
3 Modified: ChangeLog
4 Added: ptexenc-1.2.0_p20110705.ebuild
5 Log:
6 bump to ptexenc from TeX Live 2011
7
8 (Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 dev-libs/ptexenc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 7 Jul 2011 14:01:04 -0000 1.9
24 +++ ChangeLog 27 Jul 2011 12:59:21 -0000 1.10
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/ptexenc
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v 1.9 2011/07/07 14:01:04 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ChangeLog,v 1.10 2011/07/27 12:59:21 aballier Exp $
30 +
31 +*ptexenc-1.2.0_p20110705 (27 Jul 2011)
32 +
33 + 27 Jul 2011; Alexis Ballier <aballier@g.o>
34 + +ptexenc-1.2.0_p20110705.ebuild:
35 + bump to ptexenc from TeX Live 2011
36
37 07 Jul 2011; Alexis Ballier <aballier@g.o>
38 ptexenc-1.1.0_p20100722.ebuild:
39
40
41
42 1.1 dev-libs/ptexenc/ptexenc-1.2.0_p20110705.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ptexenc-1.2.0_p20110705.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ptexenc/ptexenc-1.2.0_p20110705.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ptexenc-1.2.0_p20110705.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ptexenc-1.2.0_p20110705.ebuild,v 1.1 2011/07/27 12:59:21 aballier Exp $
52
53 EAPI=3
54
55 DESCRIPTION="Library for Japanese pTeX providing a better way of handling character encodings"
56 HOMEPAGE="http://tutimura.ath.cx/ptexlive/?ptexenc"
57 SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
58 # http://tutimura.ath.cx/~nob/tex/ptexlive/ptexenc/${P}.tar.xz
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ppc-macos"
63 IUSE="iconv static-libs"
64
65 DEPEND="iconv? ( virtual/libiconv )"
66 RDEPEND="${DEPEND}"
67
68 S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN}
69 #S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${P}
70 #src_unpack() {
71 # unpack ${A}
72 # mv "${WORKDIR}/${P}" "${S}"
73 #}
74
75 src_configure() {
76 econf \
77 $(use_enable static-libs static) \
78 $(use_enable iconv kanji-iconv)
79 }
80
81 src_install() {
82 emake DESTDIR="${D}" install || die
83 find "${D}" -name '*.la' -delete
84
85 dodoc ChangeLog README || die
86 }