Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-terms/mlterm: ChangeLog mlterm-2.9.4-r3.ebuild mlterm-2.9.4-r1.ebuild
Date: Tue, 30 Sep 2008 16:24:08
Message-Id: E1Kki16-0003v9-VZ@stork.gentoo.org
1 matsuu 08/09/30 16:24:04
2
3 Modified: ChangeLog
4 Added: mlterm-2.9.4-r3.ebuild
5 Removed: mlterm-2.9.4-r1.ebuild
6 Log:
7 Fixed emake issue with USE='-gtk -imlib'. Fixed CC.
8 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
9
10 Revision Changes Path
11 1.64 x11-terms/mlterm/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/mlterm/ChangeLog?rev=1.64&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/mlterm/ChangeLog?rev=1.64&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/mlterm/ChangeLog?r1=1.63&r2=1.64
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v
20 retrieving revision 1.63
21 retrieving revision 1.64
22 diff -u -r1.63 -r1.64
23 --- ChangeLog 24 Sep 2008 13:03:22 -0000 1.63
24 +++ ChangeLog 30 Sep 2008 16:24:04 -0000 1.64
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-terms/mlterm
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v 1.63 2008/09/24 13:03:22 matsuu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v 1.64 2008/09/30 16:24:04 matsuu Exp $
30 +
31 +*mlterm-2.9.4-r3 (30 Sep 2008)
32 +
33 + 30 Sep 2008; MATSUU Takuto <matsuu@g.o> -mlterm-2.9.4-r1.ebuild,
34 + +mlterm-2.9.4-r3.ebuild:
35 + Fixed emake issue with USE='-gtk -imlib'. Fixed CC. Removed old version.
36
37 *mlterm-2.9.4-r2 (24 Sep 2008)
38
39
40
41
42 1.1 x11-terms/mlterm/mlterm-2.9.4-r3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/mlterm/mlterm-2.9.4-r3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/mlterm/mlterm-2.9.4-r3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mlterm-2.9.4-r3.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/mlterm-2.9.4-r3.ebuild,v 1.1 2008/09/30 16:24:04 matsuu Exp $
52
53 inherit eutils toolchain-funcs
54
55 IUSE="truetype gtk imlib bidi nls uim scim m17n-lib"
56 #IUSE="${IUSE} iiimf"
57
58 DESCRIPTION="A multi-lingual terminal emulator"
59 HOMEPAGE="http://mlterm.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/mlterm/${P}.tar.gz"
61
62 SLOT="0"
63 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
64 LICENSE="BSD"
65
66 RDEPEND="virtual/utempter
67 x11-libs/libX11
68 x11-libs/libICE
69 x11-libs/libSM
70 gtk? ( >=x11-libs/gtk+-2 )
71 !gtk? ( imlib? ( >=media-libs/imlib-1.9.14 ) )
72 truetype? ( x11-libs/libXft )
73 bidi? ( >=dev-libs/fribidi-0.10.4 )
74 nls? ( virtual/libintl )
75 uim? ( >=app-i18n/uim-1.0 )
76 scim? ( >=app-i18n/scim-1.4 )
77 m17n-lib? ( >=dev-libs/m17n-lib-1.2.0 )"
78 DEPEND="${RDEPEND}
79 dev-util/pkgconfig
80 nls? ( sys-devel/gettext )"
81
82 src_unpack() {
83 unpack ${A}
84 cd "${S}"
85 epatch "${FILESDIR}"/${P}-uim15-fix.patch
86 cd "${S}"/xwindow
87 epatch "${FILESDIR}"/${PN}-2.9.1-gentoo.diff
88 epatch "${FILESDIR}"/${PN}-2.9.3-asneeded.diff
89 }
90
91 src_compile() {
92 local myconf
93
94 if use gtk ; then
95 myconf="${myconf} --with-imagelib=gdk-pixbuf"
96 else
97 if use imlib ; then
98 myconf="${myconf} --with-imagelib=imlib"
99 else
100 myconf="${myconf} --with-imagelib=''"
101 fi
102 myconf="${myconf} --with-tools=mlclient,mlcc"
103 fi
104
105 # iiimf isn't stable enough
106 #myconf="${myconf} $(use_enable iiimf)"
107
108 econf --enable-utmp \
109 $(use_enable truetype anti-alias) \
110 $(use_enable bidi fribidi) \
111 $(use_enable nls) \
112 $(use_enable uim) \
113 $(use_enable scim) \
114 $(use_enable m17n-lib m17nlib) \
115 ${myconf} || die "econf failed"
116 emake CC="$(tc-getCC)" || die "emake failed"
117 }
118
119 src_install () {
120 emake DESTDIR="${D}" install || die
121
122 dodoc ChangeLog README
123
124 docinto ja
125 dodoc doc/ja/*
126 docinto en
127 dodoc doc/en/*
128 }