diff options
author | Naohiro Aota <naota@gentoo.org> | 2011-09-30 00:49:36 +0000 |
---|---|---|
committer | Naohiro Aota <naota@gentoo.org> | 2011-09-30 00:49:36 +0000 |
commit | 331e47483e30358d69e0dd1f2c70440d0e9043e1 (patch) | |
tree | 6124cb1ce4632fe1a4cda569d526aa39796b5bb3 /app-i18n/nabi/nabi-0.17.ebuild | |
parent | Clean up codes; Fix pkg_config. Patch-By: thomasg. Bug #384699 (diff) | |
download | gentoo-2-331e47483e30358d69e0dd1f2c70440d0e9043e1.tar.gz gentoo-2-331e47483e30358d69e0dd1f2c70440d0e9043e1.tar.bz2 gentoo-2-331e47483e30358d69e0dd1f2c70440d0e9043e1.zip |
Fix --as-needed failure. Bug #384697
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n/nabi/nabi-0.17.ebuild')
-rw-r--r-- | app-i18n/nabi/nabi-0.17.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/app-i18n/nabi/nabi-0.17.ebuild b/app-i18n/nabi/nabi-0.17.ebuild index 2a0ce7aa94ce..18150accf7ab 100644 --- a/app-i18n/nabi/nabi-0.17.ebuild +++ b/app-i18n/nabi/nabi-0.17.ebuild @@ -1,8 +1,10 @@ # 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.17.ebuild,v 1.3 2011/03/27 10:54:45 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nabi/nabi-0.17.ebuild,v 1.4 2011/09/30 00:49:36 naota Exp $ -EAPI="1" +EAPI="4" + +inherit eutils autotools DESCRIPTION="Simple Hanguk X Input Method" HOMEPAGE="http://nabi.kldp.net/" @@ -18,6 +20,11 @@ RDEPEND=">=x11-libs/gtk+-2.2:2 DEPEND="${RDEPEND} dev-util/pkgconfig" +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.99.3-asneeded.patch + eautoreconf +} + src_install() { emake DESTDIR="${D}" install || die "emake install failed" |