summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2008-12-28 00:32:11 +0000
committerCaleb Tennis <caleb@gentoo.org>2008-12-28 00:32:11 +0000
commit8ddf0cf098971c102a9c6cd25ce98b25f8d075c0 (patch)
treeac935d726460a4a0dc9a220bb13352b3b65b98e5 /app-benchmarks
parentFix "DB_CREATE must be specified to create databases." message with recent db... (diff)
downloadgentoo-2-8ddf0cf098971c102a9c6cd25ce98b25f8d075c0.tar.gz
gentoo-2-8ddf0cf098971c102a9c6cd25ce98b25f8d075c0.tar.bz2
gentoo-2-8ddf0cf098971c102a9c6cd25ce98b25f8d075c0.zip
stabilize amd64, and fix some unquoted variables
(Portage version: 2.2_rc18/cvs/Linux 2.6.18-xenU-ec2-v1.0 i686)
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/siege/ChangeLog5
-rw-r--r--app-benchmarks/siege/siege-2.66.ebuild14
2 files changed, 11 insertions, 8 deletions
diff --git a/app-benchmarks/siege/ChangeLog b/app-benchmarks/siege/ChangeLog
index a4ac28277d8f..a32537464ada 100644
--- a/app-benchmarks/siege/ChangeLog
+++ b/app-benchmarks/siege/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-benchmarks/siege
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.44 2008/07/05 09:11:37 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.45 2008/12/28 00:32:11 caleb Exp $
+
+ 28 Dec 2008; Caleb Tennis <caleb@gentoo.org> siege-2.66.ebuild:
+ amd64 stable
05 Jul 2008; Peter Alfredsen <loki_val@gentoo.org> -siege-2.60.ebuild,
-siege-2.61-r1.ebuild, -siege-2.64-r1.ebuild, -siege-2.65.ebuild,
diff --git a/app-benchmarks/siege/siege-2.66.ebuild b/app-benchmarks/siege/siege-2.66.ebuild
index 9b07a972de84..d414eda5dee4 100644
--- a/app-benchmarks/siege/siege-2.66.ebuild
+++ b/app-benchmarks/siege/siege-2.66.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild,v 1.5 2008/07/05 09:11:37 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild,v 1.6 2008/12/28 00:32:11 caleb Exp $
WANT_AUTOMAKE=1.9
@@ -11,7 +11,7 @@ HOMEPAGE="http://www.joedog.org/JoeDog/Siege"
SRC_URI="ftp://sid.joedog.org/pub/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~hppa ~mips ppc x86"
+KEYWORDS="amd64 ~hppa ~mips ppc x86"
SLOT="0"
IUSE="debug ssl"
@@ -19,9 +19,9 @@ DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )"
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
- epatch ${FILESDIR}/${PN}-2.60-gentoo.diff
+ epatch "${FILESDIR}/${PN}"-2.60-gentoo.diff
# use of \b causes the T in "Transactions" to be displayed
# on the last column of the previous line.
@@ -48,13 +48,13 @@ src_install() {
# interpreted by bash sending the contents to stderr
# instead of ${HOME}/.siegerc
sed -i -e 's|\${}|\\${}|' -e 's|\$(HOME)|\\$(HOME)|' \
- ${D}/usr/bin/siege.config
+ "${D}"/usr/bin/siege.config
dodoc AUTHORS ChangeLog INSTALL MACHINES README* KNOWNBUGS \
siegerc-example urls.txt || die "dodoc failed"
- dobashcompletion ${FILESDIR}/${PN}.bash-completion
+ dobashcompletion "${FILESDIR}/${PN}".bash-completion
- for x in $(find ${D}/usr/bin -name '*.pl') ; do mv "${x}" "${x%.*}" ; done
+ for x in $(find "${D}"/usr/bin -name '*.pl') ; do mv "${x}" "${x%.*}" ; done
}
pkg_postinst() {