summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Loeser <halcy0n@gentoo.org>2007-12-23 05:53:24 +0000
committerMark Loeser <halcy0n@gentoo.org>2007-12-23 05:53:24 +0000
commit88fa0c37d41d754a9bf72359f6e72e921422efc0 (patch)
treef5a151e31a70e93f0d047999a002e2f7d53c501e /app-text/rhyme
parentMasked www-servers/jboss (diff)
downloadgentoo-2-88fa0c37d41d754a9bf72359f6e72e921422efc0.tar.gz
gentoo-2-88fa0c37d41d754a9bf72359f6e72e921422efc0.tar.bz2
gentoo-2-88fa0c37d41d754a9bf72359f6e72e921422efc0.zip
Remove call to prepallman bug #140697; fix some quoting
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'app-text/rhyme')
-rw-r--r--app-text/rhyme/ChangeLog5
-rw-r--r--app-text/rhyme/rhyme-0.9.ebuild16
2 files changed, 11 insertions, 10 deletions
diff --git a/app-text/rhyme/ChangeLog b/app-text/rhyme/ChangeLog
index 29c08d971de0..7b8428ab19bb 100644
--- a/app-text/rhyme/ChangeLog
+++ b/app-text/rhyme/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/rhyme
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/rhyme/ChangeLog,v 1.8 2007/02/09 01:05:58 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/rhyme/ChangeLog,v 1.9 2007/12/23 05:53:24 halcy0n Exp $
+
+ 23 Dec 2007; Mark Loeser <halcy0n@gentoo.org> rhyme-0.9.ebuild:
+ Remove call to prepallman bug #140697; fix some quoting
09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
diff --git a/app-text/rhyme/rhyme-0.9.ebuild b/app-text/rhyme/rhyme-0.9.ebuild
index 2506ffc31515..af0e3388075b 100644
--- a/app-text/rhyme/rhyme-0.9.ebuild
+++ b/app-text/rhyme/rhyme-0.9.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/rhyme/rhyme-0.9.ebuild,v 1.8 2005/10/07 16:05:37 taviso Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/rhyme/rhyme-0.9.ebuild,v 1.9 2007/12/23 05:53:24 halcy0n Exp $
inherit ccc
@@ -22,10 +22,10 @@ src_compile() {
replace-cc-hardcode
# CFLAGS are hardcoded, replace with user specified flags
- sed -i "s#\(^FLAGS =\).*#\1 ${CFLAGS}#g" ${S}/Makefile
+ sed -i "s#\(^FLAGS =\).*#\1 ${CFLAGS}#g" "${S}"/Makefile
# termcap is used by default, switch to ncurses
- sed -i 's/-ltermcap/-lncurses/g' ${S}/Makefile
+ sed -i 's/-ltermcap/-lncurses/g' "${S}"/Makefile
# works fine with parallel build
emake || die
@@ -35,9 +35,7 @@ src_install() {
# author doesnt use -D for install
dodir /usr/share/rhyme /usr/bin /usr/share/man/man1
- einstall BINPATH=${D}/usr/bin \
- MANPATH=${D}/usr/share/man/man1 \
- RHYMEPATH=${D}/usr/share/rhyme
-
- prepallman
+ einstall BINPATH="${D}"/usr/bin \
+ MANPATH="${D}"/usr/share/man/man1 \
+ RHYMEPATH="${D}"/usr/share/rhyme
}