blob: b435b0f3b947bed775851a0e355ba403bbbb2cd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ami/ami-1.2.3.ebuild,v 1.7 2005/01/01 14:24:57 eradicator Exp $
inherit eutils
IUSE="gtk2"
DESCRIPTION="Korean IMS Ami"
SRC_URI="http://download.kldp.net/ami/${P}.tar.gz
http://ami.kldp.net/hanja.dic.gz"
HOMEPAGE="http://ami.kldp.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc ~sparc"
DEPEND="!gtk2? ( >=media-libs/gdk-pixbuf-0.7.0 )"
src_unpack() {
unpack ${P}.tar.gz
use gtk2 && epatch ${FILESDIR}/${P}-imhangul_status.patch
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die
gzip -d -c ${DISTDIR}/hanja.dic.gz > ${D}/usr/share/ami/hanja.dic
dodoc AUTHORS COPYING* ChangeLog INSTALL README README.en NEWS THANKS
}
|