diff options
author | 2002-11-09 05:20:42 +0000 | |
---|---|---|
committer | 2002-11-09 05:20:42 +0000 | |
commit | 38bdcb83ab2e5af48cd7ffe886091be6ad617f7c (patch) | |
tree | 0cdc0321f4efaed65fdc746a75dfbf0935d9acfc /x11-misc/ami/ami-1.0.11-r1.ebuild | |
parent | moving ami from sys-apps to x11-misc (diff) | |
download | historical-38bdcb83ab2e5af48cd7ffe886091be6ad617f7c.tar.gz historical-38bdcb83ab2e5af48cd7ffe886091be6ad617f7c.tar.bz2 historical-38bdcb83ab2e5af48cd7ffe886091be6ad617f7c.zip |
moving ami from sys-apps to x11-misc
Diffstat (limited to 'x11-misc/ami/ami-1.0.11-r1.ebuild')
-rw-r--r-- | x11-misc/ami/ami-1.0.11-r1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-misc/ami/ami-1.0.11-r1.ebuild b/x11-misc/ami/ami-1.0.11-r1.ebuild new file mode 100644 index 000000000000..48c8cc52e7bc --- /dev/null +++ b/x11-misc/ami/ami-1.0.11-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ami/ami-1.0.11-r1.ebuild,v 1.1 2002/11/09 05:20:42 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Korean IMS Ami" +SRC_URI="http://www.kr.freebsd.org/~hwang/ami/${P}.tar.gz + http://www.kr.freebsd.org/~hwang/ami/hanja.dic.gz + ftp://ftp.nnongae.com/pub/gentoo/${P}.patch" +HOMEPAGE="http://www.kr.freebsd.org/~hwang/ami/index.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND=">=media-libs/gdk-pixbuf-0.7.0" + +src_unpack() { + unpack ${A} + patch -p0 < ${DISTDIR}/${P}.patch || die +} + +src_compile() { + local config + + use gnome && config="--enable-gnome-applet" + + econf --with-hangul-keyboard=2 + + emake || die + + cd ${S}/hanjadic + emake || die +} + +src_install() { + einstall || die + + gzip -d -c ${DISTDIR}/hanja.dic.gz > ${D}/usr/share/ami/hanja.dic + + dobin ${S}/hanjadic/hanja-hwp2ami + dodoc AUTHORS COPYING* ChangeLog INSTALL README README.en NEWS THANKS +} |