diff options
author | Naohiro Aota <naota@gentoo.org> | 2011-12-01 23:04:46 +0000 |
---|---|---|
committer | Naohiro Aota <naota@gentoo.org> | 2011-12-01 23:04:46 +0000 |
commit | afd9c9b935d9b514aea663ce143854217e326b9a (patch) | |
tree | feecb6f48cadba76211bb5ca69639bbd0a234039 /app-i18n | |
parent | Drop obsolete introspection mask entries, requested by darkside. (diff) | |
download | gentoo-2-afd9c9b935d9b514aea663ce143854217e326b9a.tar.gz gentoo-2-afd9c9b935d9b514aea663ce143854217e326b9a.tar.bz2 gentoo-2-afd9c9b935d9b514aea663ce143854217e326b9a.zip |
Version bump. Updated by MyeongCheol Kim. Bug #391873
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/nabi/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/nabi/nabi-0.99.10.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/app-i18n/nabi/ChangeLog b/app-i18n/nabi/ChangeLog index c46eb71d7b48..827d89040be3 100644 --- a/app-i18n/nabi/ChangeLog +++ b/app-i18n/nabi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/nabi # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.29 2011/09/30 00:49:36 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.30 2011/12/01 23:04:46 naota Exp $ + +*nabi-0.99.10 (01 Dec 2011) + + 01 Dec 2011; Naohiro Aota <naota@gentoo.org> +nabi-0.99.10.ebuild: + Version bump. Updated by MyeongCheol Kim 30 Sep 2011; Naohiro Aota <naota@gentoo.org> nabi-0.15.ebuild, +files/nabi-0.15-asneeded.patch, nabi-0.17.ebuild: diff --git a/app-i18n/nabi/nabi-0.99.10.ebuild b/app-i18n/nabi/nabi-0.99.10.ebuild new file mode 100644 index 000000000000..e7411390ca4c --- /dev/null +++ b/app-i18n/nabi/nabi-0.99.10.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/nabi-0.99.10.ebuild,v 1.1 2011/12/01 23:04:46 naota Exp $ + +EAPI=3 + +DESCRIPTION="Simple Hanguk X Input Method" +HOMEPAGE="http://nabi.kldp.net/" +SRC_URI="http://kldp.net/frs/download.php/6003/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +IUSE="debug nls" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=x11-libs/gtk+-2.4:2 + >=app-i18n/libhangul-0.1.0 + virtual/libintl" +DEPEND="${RDEPEND} + dev-util/pkgconfig + sys-devel/gettext" + +src_configure() { + local myconf= + + # Broken configure: --disable-debug also enables debug + use debug && \ + myconf="${myconf} --enable-debug" + + econf ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + sed -e "s:@EPREFIX@:${EPREFIX}:g" "${FILESDIR}/xinput-${PN}" > "${T}/${PN}.conf" || die + insinto /etc/X11/xinit/xinput.d + doins "${T}/${PN}.conf" || die + + dodoc AUTHORS ChangeLog* NEWS README TODO || die +} + +pkg_postinst() { + elog "You MUST add environment variable..." + elog + elog "export XMODIFIERS=\"@im=nabi\"" + elog +} |