diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-09-25 12:58:47 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-09-25 12:58:47 +0000 |
commit | 39a59793a93ccd4e6eb8a665d74683bef355682f (patch) | |
tree | 5d18f3d49867fafd238bbb0d713c49f1e54cc7a4 /dev-ruby | |
parent | remove old versions (diff) | |
download | gentoo-2-39a59793a93ccd4e6eb8a665d74683bef355682f.tar.gz gentoo-2-39a59793a93ccd4e6eb8a665d74683bef355682f.tar.bz2 gentoo-2-39a59793a93ccd4e6eb8a665d74683bef355682f.zip |
Fix up quoting a bit
(Portage version: 2.1.3.9)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/IceRuby/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ruby/IceRuby/IceRuby-3.2.1-r1.ebuild | 32 |
2 files changed, 19 insertions, 18 deletions
diff --git a/dev-ruby/IceRuby/ChangeLog b/dev-ruby/IceRuby/ChangeLog index 91dc90fbd1b4..db9373bfb1e0 100644 --- a/dev-ruby/IceRuby/ChangeLog +++ b/dev-ruby/IceRuby/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/IceRuby # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/IceRuby/ChangeLog,v 1.9 2007/09/25 12:53:26 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/IceRuby/ChangeLog,v 1.10 2007/09/25 12:58:47 caleb Exp $ + + 25 Sep 2007; Caleb Tennis <caleb@gentoo.org> IceRuby-3.2.1-r1.ebuild: + Fix up quoting a bit 25 Sep 2007; Caleb Tennis <caleb@gentoo.org> -files/IceRuby-3.2.0-Makefile.patch, -files/cached_connection.patch, diff --git a/dev-ruby/IceRuby/IceRuby-3.2.1-r1.ebuild b/dev-ruby/IceRuby/IceRuby-3.2.1-r1.ebuild index 2f46843eae51..9c534299679c 100644 --- a/dev-ruby/IceRuby/IceRuby-3.2.1-r1.ebuild +++ b/dev-ruby/IceRuby/IceRuby-3.2.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/IceRuby/IceRuby-3.2.1-r1.ebuild,v 1.1 2007/08/27 11:26:53 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/IceRuby/IceRuby-3.2.1-r1.ebuild,v 1.2 2007/09/25 12:58:47 caleb Exp $ inherit eutils @@ -20,43 +20,41 @@ DEPEND="${RDEPEND} test? ( >=dev-lang/python-2.4 )" src_unpack() { -# export ICE_HOME=/usr - unpack ${A} + unpack "${A}" cd "${S}" - epatch ${FILESDIR}/${P}-Makefile.patch - epatch ${FILESDIR}/${P}-ice_type.patch + epatch "${FILESDIR}/${P}-Makefile.patch" + epatch "${FILESDIR}/${P}-ice_type.patch" - mkdir -p ${S}/bin - mkdir -p ${S}/lib + MAKE_RULES="${S}/config/Make.rules" + + mkdir -p "${S}/bin" + mkdir -p "${S}/lib" if use amd64; then - sed -i -e "s:^#LP64:LP64:g" ${S}/config/Make.rules \ + sed -i -e "s:^#LP64:LP64:g" "${MAKE_RULES}" \ || die "Failed to set lib64 directory" fi if ! use debug; then sed -i -e "s:#OPTIMIZE:OPTIMIZE:" \ - ${S}/config/Make.rules || die "Failed to remove debug" + "${MAKE_RULES}" || die "Failed to remove debug" fi sed -i -e \ "s:.*CXXFLAGS[^\+]*\=\s:CXXFLAGS = ${CXXFLAGS} :g" \ - ${S}/config/Make.rules.Linux || die "CXXFLAGS patching failed!" + "${MAKE_RULES}.Linux" || die "CXXFLAGS patching failed!" } src_compile() { - cd ${S} -# export ICE_HOME=/usr - make || die "Died during make" + cd "${S}" + emake || die "Died during make" } src_install() { -# export ICE_HOME=/usr - make DESTDIR="${D}" install || die "Install Failed!" + emake DESTDIR="${D}" install || die "Install Failed!" } src_test() { -# export ICE_HOME=/usr - make test || die "Test failed" + emake test || die "Test failed" } |