diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-31 21:03:14 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-31 21:03:14 +0000 |
commit | 1f912ce5eb24c1fca8805bb70e97a412e1082517 (patch) | |
tree | 518b992dc71429c667bb727a176ff4c440fdcd14 /app-i18n/scim-wnn | |
parent | Don't dodoc LICENSE. (diff) | |
download | gentoo-2-1f912ce5eb24c1fca8805bb70e97a412e1082517.tar.gz gentoo-2-1f912ce5eb24c1fca8805bb70e97a412e1082517.tar.bz2 gentoo-2-1f912ce5eb24c1fca8805bb70e97a412e1082517.zip |
Fix quoting
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n/scim-wnn')
-rw-r--r-- | app-i18n/scim-wnn/scim-wnn-0.2.4.ebuild | 8 | ||||
-rw-r--r-- | app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/app-i18n/scim-wnn/scim-wnn-0.2.4.ebuild b/app-i18n/scim-wnn/scim-wnn-0.2.4.ebuild index 736e2a86a94b..c21d23aaf58f 100644 --- a/app-i18n/scim-wnn/scim-wnn-0.2.4.ebuild +++ b/app-i18n/scim-wnn/scim-wnn-0.2.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wnn/scim-wnn-0.2.4.ebuild,v 1.4 2007/01/05 16:32:48 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wnn/scim-wnn-0.2.4.ebuild,v 1.5 2009/12/31 21:03:14 ssuominen Exp $ DESCRIPTION="Japanese input method Wnn IMEngine for SCIM" HOMEPAGE="http://nop.net-p.org/modules/pukiwiki/index.php?%5B%5Bscim-wnn%5D%5D" @@ -19,13 +19,13 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S}/src + cd "${S}"/src sed -i -e "s:/usr/lib/wnn7:/usr/lib/wnn:g" \ scim_wnn_def.h wnnconversion.cpp || die "sed failed" } src_install() { - make DESTDIR=${D} install || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS THANKS README } 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 0846fe523f04..894d6840cfe8 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-2007 Gentoo Foundation +# Copyright 1999-2009 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.3 2007/01/05 16:32:48 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wnn/scim-wnn-1.0.0.ebuild,v 1.4 2009/12/31 21:03:14 ssuominen Exp $ DESCRIPTION="Japanese input method Wnn IMEngine for SCIM" HOMEPAGE="http://nop.net-p.org/modules/pukiwiki/index.php?%5B%5Bscim-wnn%5D%5D" @@ -19,16 +19,16 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + 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 + cd "${S}"/src sed -i -e "s:/usr/lib/wnn7:/usr/lib/wnn:g" \ scim_wnn_def.h wnnconversion.cpp || die "sed failed" } src_install() { - make DESTDIR=${D} install || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS THANKS README } |