diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-09 01:01:02 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-09 01:01:02 +0000 |
commit | 12d61a12cd85b997aa2dab65dc7cc7ad2ae25898 (patch) | |
tree | 541cde315fd451167ddeea46aa6e342064281cb7 /media-libs/fmod | |
parent | manifest (Manifest recommit) (diff) | |
download | gentoo-2-12d61a12cd85b997aa2dab65dc7cc7ad2ae25898.tar.gz gentoo-2-12d61a12cd85b997aa2dab65dc7cc7ad2ae25898.tar.bz2 gentoo-2-12d61a12cd85b997aa2dab65dc7cc7ad2ae25898.zip |
tidy; error check file io
Diffstat (limited to 'media-libs/fmod')
-rw-r--r-- | media-libs/fmod/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/fmod/fmod-3.74.ebuild | 13 |
2 files changed, 10 insertions, 8 deletions
diff --git a/media-libs/fmod/ChangeLog b/media-libs/fmod/ChangeLog index 0b25f2075fb1..ebe52861a1ff 100644 --- a/media-libs/fmod/ChangeLog +++ b/media-libs/fmod/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/fmod # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fmod/ChangeLog,v 1.16 2004/10/31 14:38:47 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/fmod/ChangeLog,v 1.17 2004/11/09 01:01:02 mr_bones_ Exp $ + + 08 Nov 2004; Michael Sterrett <mr_bones_@gentoo.org> fmod-3.74.ebuild: + tidy; error check file io *fmod-3.74 (31 Oct 2004) diff --git a/media-libs/fmod/fmod-3.74.ebuild b/media-libs/fmod/fmod-3.74.ebuild index 7aeae37fd41b..c8a554958441 100644 --- a/media-libs/fmod/fmod-3.74.ebuild +++ b/media-libs/fmod/fmod-3.74.ebuild @@ -1,18 +1,17 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fmod/fmod-3.74.ebuild,v 1.1 2004/10/31 14:38:47 chainsaw Exp $ - -IUSE="" +# $Header: /var/cvsroot/gentoo-x86/media-libs/fmod/fmod-3.74.ebuild,v 1.2 2004/11/09 01:01:02 mr_bones_ Exp $ MY_P="fmodapi${PV/.}linux" S=${WORKDIR}/${MY_P} DESCRIPTION="music and sound effects library, and a sound processing system" -SRC_URI="http://www.fmod.org/files/${MY_P}.tar.gz" HOMEPAGE="http://www.fmod.org/" +SRC_URI="http://www.fmod.org/files/${MY_P}.tar.gz" -SLOT="0" LICENSE="fmod" +SLOT="0" KEYWORDS="-* ~x86 ~amd64" +IUSE="" DEPEND="virtual/libc" RDEPEND="${DEPEND} @@ -26,8 +25,8 @@ src_install() { doins api/inc/* insinto /usr/share/${PN}/media - doins media/* - cp -r samples ${D}/usr/share/${PN}/ + doins media/* || die "doins failed" + cp -r samples "${D}/usr/share/${PN}/" || die "cp failed" dohtml -r documentation/* dodoc README.TXT documentation/Revision.txt |