diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2003-11-03 20:14:18 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2003-11-03 20:14:18 +0000 |
commit | 1cd3137184627130c3e5b896b8f6c37013b2c50a (patch) | |
tree | 2d62dfa08ff9594a487976b3105496559e79d9b7 /app-emulation | |
parent | bump (diff) | |
download | gentoo-2-1cd3137184627130c3e5b896b8f6c37013b2c50a.tar.gz gentoo-2-1cd3137184627130c3e5b896b8f6c37013b2c50a.tar.bz2 gentoo-2-1cd3137184627130c3e5b896b8f6c37013b2c50a.zip |
DESTDIR fix for bug 32544; add prepgamesdirs
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/vice/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/vice/Manifest | 4 | ||||
-rw-r--r-- | app-emulation/vice/vice-1.13.ebuild | 9 |
3 files changed, 14 insertions, 4 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index 2150afe86ee5..950fdfed7bb2 100644 --- a/app-emulation/vice/ChangeLog +++ b/app-emulation/vice/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/vice # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.7 2003/10/03 09:21:29 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.8 2003/11/03 20:14:16 mr_bones_ Exp $ + + 03 Nov 2003; Michael Sterrett <mr_bones_@gentoo.org> vice-1.13.ebuild: + DESTDIR fix for bug 32544; add prepgamesdirs *vice-1.13 (03 Oct 2003) diff --git a/app-emulation/vice/Manifest b/app-emulation/vice/Manifest index 551ce971bb2c..ec61263012e6 100644 --- a/app-emulation/vice/Manifest +++ b/app-emulation/vice/Manifest @@ -1,6 +1,6 @@ -MD5 c2dde3c4129dce08fcdd9e42c5555e2d ChangeLog 1087 +MD5 d7bd9d52c38e0ede583b6d9460d320ee ChangeLog 1208 MD5 2d67e5e861a63fa88799c01cafc5d4f1 vice-1.12-r1.ebuild 1278 -MD5 03b4482743102ec036d57cf141893e0c vice-1.13.ebuild 1446 +MD5 f46e38030e97b8045d1794a31fe06974 vice-1.13.ebuild 1666 MD5 da8fb0cf91447be13099e23ffc1dec9a files/digest-vice-1.13 62 MD5 bee1c24b1742b33f95f243358383697e files/1.12-po-Makefile.patch 555 MD5 6b44b25bb31dd21195c5bb6ac016d49d files/digest-vice-1.12-r1 62 diff --git a/app-emulation/vice/vice-1.13.ebuild b/app-emulation/vice/vice-1.13.ebuild index 883157d64158..a5e6e683d4a5 100644 --- a/app-emulation/vice/vice-1.13.ebuild +++ b/app-emulation/vice/vice-1.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.13.ebuild,v 1.1 2003/10/03 09:21:29 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.13.ebuild,v 1.2 2003/11/03 20:14:16 mr_bones_ Exp $ inherit games eutils @@ -30,6 +30,12 @@ src_unpack() { -e '/^SUBDIRS =/s:po::' ${S}/Makefile.in || \ die "sed Makefile.in failed" fi + # DESTDIR fix for bug 32544 + sed -i \ + -e '/^install:/ s/$/ install-am/' \ + -e 's:cd $(prefix):cd $(DESTDIR)$(prefix):' \ + ${S}/data/fonts/Makefile.in || \ + die "sed data/fonts/Makefile.in failed" } src_compile() { @@ -55,4 +61,5 @@ src_install() { ${docdir}/{cbm_basic_tokens.txt,drive_info.txt,mon.txt,serial.txt} || \ die "dodoc failed" rm -rf ${docdir} + prepgamesdirs } |