diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-10-17 01:13:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-10-17 01:13:54 +0000 |
commit | 1e2e73f358031f8872e513cce062781ac5ed98ef (patch) | |
tree | be526ad0eec95648073e5b126a2cbf03e4c68e5d /app-emulation/zinc | |
parent | Moved the comment'd 'java?' out of the depend line. (diff) | |
download | historical-1e2e73f358031f8872e513cce062781ac5ed98ef.tar.gz historical-1e2e73f358031f8872e513cce062781ac5ed98ef.tar.bz2 historical-1e2e73f358031f8872e513cce062781ac5ed98ef.zip |
Updated DEPEND
Diffstat (limited to 'app-emulation/zinc')
-rw-r--r-- | app-emulation/zinc/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/zinc/zinc-0.9.ebuild | 20 |
2 files changed, 11 insertions, 16 deletions
diff --git a/app-emulation/zinc/ChangeLog b/app-emulation/zinc/ChangeLog index 126ed2281211..804f0a7e33d9 100644 --- a/app-emulation/zinc/ChangeLog +++ b/app-emulation/zinc/ChangeLog @@ -1,14 +1,17 @@ # ChangeLog for app-emulation/zinc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-emulation/zinc/ChangeLog,v 1.2 2002/08/06 18:37:20 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/zinc/ChangeLog,v 1.3 2002/10/17 01:13:54 vapier Exp $ *zinc-0.9 (9 Jul 2002) + 16 Oct 2002; Mike Frysinger <vapier@gentoo.org> : + removed src_unpack check for ARCH since we have KEYWORDS now + updated the DEPEND variable + 06 Aug 2002; Mark Guertin <gerk@gentoo.org> : Added -ppc -sparc -sparc64 to keywords 9 Jul 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : - Added initial ChangeLog which should be updated whenever the package is updated in any way. This changelog is targetted to users. This means that the comments should well explained and written in clean English. The details about diff --git a/app-emulation/zinc/zinc-0.9.ebuild b/app-emulation/zinc/zinc-0.9.ebuild index e9afd7b0cac6..689af9e0329d 100644 --- a/app-emulation/zinc/zinc-0.9.ebuild +++ b/app-emulation/zinc/zinc-0.9.ebuild @@ -1,29 +1,21 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/zinc/zinc-0.9.ebuild,v 1.2 2002/08/06 18:37:20 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/zinc/zinc-0.9.ebuild,v 1.3 2002/10/17 01:13:54 vapier Exp $ S="${WORKDIR}/zinc" -A="${P}-linux.tar.bz2" DESCRIPTION="ZiNc is an x86 binary-only emulator for the Sony ZN-1, ZN-2, and Namco System 11 arcade systems." -SRC_URI="http://www.emuhype.com/files/${A}" -HOMEPAGE="http://www.emuhype.com" -DEPEND="=sys-apps/baselayout-1.8.0" +SRC_URI="http://www.emuhype.com/files/${P}-linux.tar.bz2" +HOMEPAGE="http://www.emuhype.com/" +DEPEND="virtual/glibc + virtual/x11 + virtual/opengl" RDEPEND="${DEPEND}" KEYWORDS="x86 -ppc -sparc -sparc64" LICENSE="proprietary" SLOT="0" -src_unpack() { - if [ ${ARCH} != "x86" ]; then - echo "Binary-only x86 package" && die - fi - unpack ${A} - cd ${S} -} - src_install() { exeinto /opt/bin doexe zinc dolib.so libcontrolznc.so librendererznc.so libsoundznc.so } - |