diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-10-01 00:39:04 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-10-01 00:39:04 +0000 |
commit | 37b3119de22a4d7546567dbbda5c4384fe8384cd (patch) | |
tree | 7da319406f456a16c6099528db427924ac74bb3a /games-arcade/apricots | |
parent | BUG #53857 solved. (diff) | |
download | historical-37b3119de22a4d7546567dbbda5c4384fe8384cd.tar.gz historical-37b3119de22a4d7546567dbbda5c4384fe8384cd.tar.bz2 historical-37b3119de22a4d7546567dbbda5c4384fe8384cd.zip |
fix cfg file support; docs++ (bug #64325 again)
Diffstat (limited to 'games-arcade/apricots')
-rw-r--r-- | games-arcade/apricots/ChangeLog | 5 | ||||
-rw-r--r-- | games-arcade/apricots/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/apricots/apricots-0.2.6.ebuild | 9 |
3 files changed, 13 insertions, 5 deletions
diff --git a/games-arcade/apricots/ChangeLog b/games-arcade/apricots/ChangeLog index 2628c94dc4f7..750dd6ec0cd7 100644 --- a/games-arcade/apricots/ChangeLog +++ b/games-arcade/apricots/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/apricots # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/ChangeLog,v 1.1 2004/09/19 08:32:39 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/ChangeLog,v 1.2 2004/10/01 00:39:04 mr_bones_ Exp $ + + 30 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> apricots-0.2.6.ebuild: + fix cfg file support; docs++ (bug #64325 again) *apricots-0.2.6 (19 Sep 2004) diff --git a/games-arcade/apricots/Manifest b/games-arcade/apricots/Manifest index 9c7b1257dce4..42d31f0e22ba 100644 --- a/games-arcade/apricots/Manifest +++ b/games-arcade/apricots/Manifest @@ -1,4 +1,4 @@ -MD5 86e0e20a9fd6ae72fb77e230ac84484b apricots-0.2.6.ebuild 1334 +MD5 b9ec3acb9cca0ba48d2d2f9ce16b162f apricots-0.2.6.ebuild 1463 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 6315d28ef8e33e46597edc9d85f738ef ChangeLog 412 +MD5 21e222c2066fb0ce8481a767c0c5c419 ChangeLog 541 MD5 239a513f7d4e611a239619886fc9f692 files/digest-apricots-0.2.6 66 diff --git a/games-arcade/apricots/apricots-0.2.6.ebuild b/games-arcade/apricots/apricots-0.2.6.ebuild index 5e54d04aef57..f3e8aaa3eca7 100644 --- a/games-arcade/apricots/apricots-0.2.6.ebuild +++ b/games-arcade/apricots/apricots-0.2.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/apricots-0.2.6.ebuild,v 1.1 2004/09/19 08:32:39 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/apricots-0.2.6.ebuild,v 1.2 2004/10/01 00:39:04 mr_bones_ Exp $ inherit games @@ -25,13 +25,18 @@ src_unpack() { || die "sed failed" sed -i \ + -e "s:filename(AP_PATH):filename(\"${GAMES_SYSCONFDIR}/${PN}/\"):" \ + ${PN}/init.cpp \ + || die "sed failed" + sed -i \ -e "s:apricots.cfg:${GAMES_SYSCONFDIR}/${PN}/apricots.cfg:" \ - ${PN}/init.cpp README apricots.html \ + README apricots.html \ || die "sed failed" } src_install() { dodoc AUTHORS INSTALL README TODO ChangeLog + dohtml apricots.html cd ${PN} dogamesbin apricots || die "dogamesbin failed" insinto "${GAMES_DATADIR}/${PN}" |