diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2008-03-07 01:25:47 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2008-03-07 01:25:47 +0000 |
commit | 2ffa416ef49debfd39966d3358d0cd5f0a098986 (patch) | |
tree | 340fc233b59ddd971199694ab3c5cb820f2d21aa /games-mud/circlemud | |
parent | QA cleanup: Shorten DESCRIPTION. (diff) | |
download | historical-2ffa416ef49debfd39966d3358d0cd5f0a098986.tar.gz historical-2ffa416ef49debfd39966d3358d0cd5f0a098986.tar.bz2 historical-2ffa416ef49debfd39966d3358d0cd5f0a098986.zip |
QA cleanup: Fix quoting.
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'games-mud/circlemud')
-rw-r--r-- | games-mud/circlemud/ChangeLog | 7 | ||||
-rw-r--r-- | games-mud/circlemud/circlemud-3.1.ebuild | 16 |
2 files changed, 13 insertions, 10 deletions
diff --git a/games-mud/circlemud/ChangeLog b/games-mud/circlemud/ChangeLog index 137dfde70de6..37bad33e9da0 100644 --- a/games-mud/circlemud/ChangeLog +++ b/games-mud/circlemud/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-mud/circlemud -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-mud/circlemud/ChangeLog,v 1.7 2007/02/08 21:09:44 wolf31o2 Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-mud/circlemud/ChangeLog,v 1.8 2008/03/07 01:24:58 wolf31o2 Exp $ + + 07 Mar 2008; Chris Gianelloni <wolf31o2@gentoo.org> circlemud-3.1.ebuild: + QA cleanup: Fix quoting. 08 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/games-mud/circlemud/circlemud-3.1.ebuild b/games-mud/circlemud/circlemud-3.1.ebuild index 23e3d8809052..536601eaed88 100644 --- a/games-mud/circlemud/circlemud-3.1.ebuild +++ b/games-mud/circlemud/circlemud-3.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-mud/circlemud/circlemud-3.1.ebuild,v 1.9 2004/12/21 11:43:09 absinthe Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-mud/circlemud/circlemud-3.1.ebuild,v 1.10 2008/03/07 01:24:58 wolf31o2 Exp $ inherit games @@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.circlemud.org/pub/CircleMUD/${PV/.*}.x/circle-${PV}.tar.bz2" LICENSE="circlemud" SLOT="0" -KEYWORDS="x86 ppc ~amd64" +KEYWORDS="~amd64 ppc x86" IUSE="" DEPEND="virtual/libc @@ -20,7 +20,7 @@ S="${WORKDIR}/circle-${PV}" src_unpack() { unpack ${A} - cd ${S}/src + cd "${S}"/src touch .accepted sed -i \ -e 's:^read.*::' licheck || die @@ -52,13 +52,13 @@ src_install() { done dogamesbin bin/circle - dodir ${GAMES_DATADIR}/${PN} - cp -r lib/* ${D}/${GAMES_DATADIR}/${PN}/ || die + dodir "${GAMES_DATADIR}/${PN}" + cp -r lib/* "${D}/${GAMES_DATADIR}/${PN}" || die - insinto ${GAMES_SYSCONFDIR}/${PN} + insinto "${GAMES_SYSCONFDIR}/${PN}" doins lib/etc/* dodoc doc/{README.UNIX,*.pdf,*.txt} ChangeLog FAQ README release_notes.${PV}.txt prepgamesdirs - fperms 770 ${GAMES_SYSCONFDIR}/${PN}/players + fperms 770 "${GAMES_SYSCONFDIR}/${PN}/players" } |