diff options
author | Naohiro Aota <naota@gentoo.org> | 2013-05-02 10:43:27 +0000 |
---|---|---|
committer | Naohiro Aota <naota@gentoo.org> | 2013-05-02 10:43:27 +0000 |
commit | c79d0de377d160e33d025a2caeda13f5453ee666 (patch) | |
tree | 676263b44650c7e046562982affc731af185c054 /app-i18n | |
parent | Version bump, hddled-0.3 is in the public domain. Otherwise, no changes from ... (diff) | |
download | gentoo-2-c79d0de377d160e33d025a2caeda13f5453ee666.tar.gz gentoo-2-c79d0de377d160e33d025a2caeda13f5453ee666.tar.bz2 gentoo-2-c79d0de377d160e33d025a2caeda13f5453ee666.zip |
Version bump wrt #448658
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key F8551514)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/nabi/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/nabi/nabi-0.99.11.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/app-i18n/nabi/ChangeLog b/app-i18n/nabi/ChangeLog index cabad0f22981..dcbb9373cce7 100644 --- a/app-i18n/nabi/ChangeLog +++ b/app-i18n/nabi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/nabi # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.32 2013/03/10 06:29:11 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/ChangeLog,v 1.33 2013/05/02 10:43:27 naota Exp $ + +*nabi-0.99.11 (02 May 2013) + + 02 May 2013; Naohiro Aota <naota@gentoo.org> +nabi-0.99.11.ebuild: + Version bump wrt #448658 10 Mar 2013; Naohiro Aota <naota@gentoo.org> nabi-0.15.ebuild, nabi-0.17.ebuild, nabi-0.99.10.ebuild, nabi-0.99.3.ebuild, nabi-0.99.8.ebuild: diff --git a/app-i18n/nabi/nabi-0.99.11.ebuild b/app-i18n/nabi/nabi-0.99.11.ebuild new file mode 100644 index 000000000000..c397febb1154 --- /dev/null +++ b/app-i18n/nabi/nabi-0.99.11.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/nabi-0.99.11.ebuild,v 1.1 2013/05/02 10:43:27 naota Exp $ + +EAPI=5 + +DESCRIPTION="Simple Hanguk X Input Method" +HOMEPAGE="https://code.google.com/p/nabi/" +SRC_URI="http://nabi.googlecode.com/files/${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} + virtual/pkgconfig + sys-devel/gettext" + +DOCS=( AUTHORS ChangeLog ChangeLog.0 NEWS README TODO ) + +src_configure() { + local myconf= + + # Broken configure: --disable-debug also enables debug + use debug && \ + myconf="${myconf} --enable-debug" + + econf ${myconf} +} + +src_install() { + default + + insinto /etc/X11/xinit/xinput.d + sed -e "s:@EPREFIX@:${EPREFIX}:g" "${FILESDIR}/xinput-${PN}" | newins - "${PN}.conf" +} + +pkg_postinst() { + elog "You MUST add environment variable..." + elog + elog "export XMODIFIERS=\"@im=nabi\"" + elog +} |