Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: dev-libs/m17n-lib/m17n-lib-1.6.2.ebuild

Issue 6717026: Update m17n packages from Gentoo's main tree. (Closed) Base URL: http://git.chromium.org/git/portage-stable.git@master
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dev-libs/m17n-lib/files/m17n-lib-1.6.2-parallel-make.patch ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 1999-2011 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Header: /var/cvsroot/gentoo-x86/dev-libs/m17n-lib/m17n-lib-1.6.2.ebuild,v 1.1 2011/04/04 01:04:40 flameeyes Exp $
4
5 EAPI=4
6
7 inherit eutils autotools
8
9 DESCRIPTION="Multilingual Library for Unix/Linux"
10 HOMEPAGE="http://www.m17n.org/m17n-lib/"
11 SRC_URI="http://www.m17n.org/m17n-lib-download/${P}.tar.gz"
12
13 LICENSE="LGPL-2.1"
14 SLOT="0"
15 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
16 #IUSE="anthy gd ispell"
17 IUSE="gd X"
18
19 RDEPEND="
20 X? (
21 x11-libs/libXaw
22 x11-libs/libXft
23 x11-libs/libX11
24 gd? ( media-libs/gd[png] )
25 dev-libs/fribidi
26 >=media-libs/freetype-2.1
27 media-libs/fontconfig
28 >=dev-libs/libotf-0.9.4
29 )
30 dev-libs/libxml2
31 ~dev-db/m17n-db-${PV}"
32 # linguas_th? ( || ( app-i18n/libthai app-i18n/wordcut ) )
33 # anthy? ( app-i18n/anthy )
34 # ispell? ( app-text/ispell )
35
36 DEPEND="${RDEPEND}
37 dev-util/pkgconfig"
38
39 src_prepare() {
40 epatch \
41 "${FILESDIR}"/${P}-gui.patch \
42 "${FILESDIR}"/${P}-parallel-make.patch \
43 "${FILESDIR}"/${P}-candidates-list.patch
44
45 eautoreconf
46 }
47
48 src_configure() {
49 local myconf=
50
51 if use X; then
52 myconf+=" --enable-gui $(use_with gd)"
53 else
54 myconf+=" --disable-gui --without-gd"
55 fi
56
57 econf ${myconf} || die
58 }
59
60 src_install() {
61 emake DESTDIR="${D}" install || die
62
63 dodoc AUTHORS ChangeLog NEWS README TODO
64 }
OLDNEW
« no previous file with comments | « dev-libs/m17n-lib/files/m17n-lib-1.6.2-parallel-make.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698