diff options
author | Mamoru Komachi <usata@gentoo.org> | 2006-12-30 13:01:20 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2006-12-30 13:01:20 +0000 |
commit | 43e329a2c9c3e6e053abd26a1de2a8fe29332fc9 (patch) | |
tree | a2a8c4e9389b8b860778c90975e7fe4659e62b23 /app-i18n/scim-wnn | |
parent | document stages bootstrap/build are for (diff) | |
download | gentoo-2-43e329a2c9c3e6e053abd26a1de2a8fe29332fc9.tar.gz gentoo-2-43e329a2c9c3e6e053abd26a1de2a8fe29332fc9.tar.bz2 gentoo-2-43e329a2c9c3e6e053abd26a1de2a8fe29332fc9.zip |
Fixed --as-needed bug. Thanks to Gilles Dartiguelongue <dartigug@esiee.fr> for the patch. This closes bug #140794. Added to ~amd64.
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-i18n/scim-wnn')
-rw-r--r-- | app-i18n/scim-wnn/ChangeLog | 6 | ||||
-rw-r--r-- | app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app-i18n/scim-wnn/ChangeLog b/app-i18n/scim-wnn/ChangeLog index 0d35114bd01c..a15b72747643 100644 --- a/app-i18n/scim-wnn/ChangeLog +++ b/app-i18n/scim-wnn/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-i18n/scim-wnn # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wnn/ChangeLog,v 1.8 2006/06/29 00:37:34 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wnn/ChangeLog,v 1.9 2006/12/30 13:01:20 usata Exp $ + + 30 Dec 2006; Mamoru KOMACHI <usata@gentoo.org> scim-wnn-1.0.0.ebuild: + Fixed --as-needed bug. Thanks to Gilles Dartiguelongue <dartigug@esiee.fr> + for the patch. This closes bug #140794. Added to ~amd64. *scim-wnn-1.0.0 (29 Jun 2006) diff --git a/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild b/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild index d8626f808080..f74d71358140 100644 --- a/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild +++ b/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild,v 1.1 2006/06/29 00:37:34 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild,v 1.2 2006/12/30 13:01:20 usata Exp $ DESCRIPTION="Japanese input method Wnn IMEngine for SCIM" HOMEPAGE="http://nop.net-p.org/modules/pukiwiki/index.php?%5B%5Bscim-wnn%5D%5D" @@ -8,7 +8,7 @@ SRC_URI="http://nop.net-p.org/files/scim-wnn/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="freewnn" RDEPEND="|| ( >=app-i18n/scim-1.0 >=app-i18n/scim-cvs-1.0 ) @@ -19,6 +19,9 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} + cd ${S} + sed -i -e 's:$LDFLAGS conftest.$ac_ext $LIBS:conftest.$ac_ext $LIBS $LDFLAGS:g' \ + configure || die "ldflags sed failed" cd ${S}/src sed -i -e "s:/usr/lib/wnn7:/usr/lib/wnn:g" \ scim_wnn_def.h wnnconversion.cpp || die "sed failed" |