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-3.0.1.ebuild
Date: Tue, 29 Jun 2010 16:23:25
Message-Id: 20100629162320.132112C621@corvid.gentoo.org
1 matsuu 10/06/29 16:23:19
2
3 Modified: ChangeLog
4 Added: mlterm-3.0.1.ebuild
5 Log:
6 Version bumped, bug #326051. Fixed dependency.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.73 x11-terms/mlterm/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/mlterm/ChangeLog?rev=1.73&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/mlterm/ChangeLog?rev=1.73&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/mlterm/ChangeLog?r1=1.72&r2=1.73
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v
19 retrieving revision 1.72
20 retrieving revision 1.73
21 diff -u -r1.72 -r1.73
22 --- ChangeLog 10 Oct 2009 15:12:14 -0000 1.72
23 +++ ChangeLog 29 Jun 2010 16:23:19 -0000 1.73
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-terms/mlterm
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v 1.72 2009/10/10 15:12:14 armin76 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/mlterm/ChangeLog,v 1.73 2010/06/29 16:23:19 matsuu Exp $
30 +
31 +*mlterm-3.0.1 (29 Jun 2010)
32 +
33 + 29 Jun 2010; MATSUU Takuto <matsuu@g.o> +mlterm-3.0.1.ebuild:
34 + Version bumped, bug #326051. Fixed dependency.
35
36 10 Oct 2009; Raúl Porcel <armin76@g.o> mlterm-2.9.4-r4.ebuild:
37 sparc stable wrt #282924
38
39
40
41 1.1 x11-terms/mlterm/mlterm-3.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/mlterm/mlterm-3.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/mlterm/mlterm-3.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mlterm-3.0.1.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/x11-terms/mlterm/mlterm-3.0.1.ebuild,v 1.1 2010/06/29 16:23:19 matsuu Exp $
51
52 EAPI="2"
53 inherit eutils
54
55 IUSE="bidi imlib gtk m17n-lib nls scim truetype uim"
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/imlib2 ) )
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_prepare() {
83 epatch "${FILESDIR}"/${PN}-2.9.4-uim15-fix.patch
84 cd "${S}"/xwindow
85 epatch "${FILESDIR}"/${PN}-2.9.1-gentoo.diff
86 }
87
88 src_configure() {
89 local myconf
90
91 if use gtk ; then
92 myconf="${myconf} --with-imagelib=gdk-pixbuf"
93 else
94 if use imlib ; then
95 myconf="${myconf} --with-imagelib=imlib2"
96 else
97 myconf="${myconf} --with-imagelib=''"
98 fi
99 myconf="${myconf} --with-tools=mlclient,mlcc"
100 fi
101
102 # iiimf isn't stable enough
103 #myconf="${myconf} $(use_enable iiimf)"
104
105 econf --enable-utmp \
106 $(use_enable truetype anti-alias) \
107 $(use_enable bidi fribidi) \
108 $(use_enable nls) \
109 $(use_enable uim) \
110 $(use_enable scim) \
111 $(use_enable m17n-lib m17nlib) \
112 ${myconf} || die "econf failed"
113 }
114
115 src_install () {
116 emake DESTDIR="${D}" install || die
117
118 doicon contrib/icon/mlterm* || die
119 make_desktop_entry mlterm mlterm mlterm-icon TerminalEmulator || die
120
121 dodoc ChangeLog README || die
122
123 docinto ja
124 dodoc doc/ja/* || die
125 docinto en
126 dodoc doc/en/* || die
127 }