diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-07-23 14:15:28 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-07-23 14:15:28 +0000 |
commit | 4fdb1a6f4e6c8839742ecf1f1cf7f84e1ac2d873 (patch) | |
tree | cb761c155e7592fa2a9d804da40d8a06700049ed /app-emulation/darcnes | |
parent | repoman'd (diff) | |
download | gentoo-2-4fdb1a6f4e6c8839742ecf1f1cf7f84e1ac2d873.tar.gz gentoo-2-4fdb1a6f4e6c8839742ecf1f1cf7f84e1ac2d873.tar.bz2 gentoo-2-4fdb1a6f4e6c8839742ecf1f1cf7f84e1ac2d873.zip |
added LICENSE info for QA
Diffstat (limited to 'app-emulation/darcnes')
-rw-r--r-- | app-emulation/darcnes/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/darcnes/darcnes-0401-r1.ebuild | 50 |
2 files changed, 36 insertions, 23 deletions
diff --git a/app-emulation/darcnes/ChangeLog b/app-emulation/darcnes/ChangeLog index 088d00db40a0..442fb10d55a2 100644 --- a/app-emulation/darcnes/ChangeLog +++ b/app-emulation/darcnes/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emulation/darcnes # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-emulation/darcnes/ChangeLog,v 1.2 2002/06/05 23:22:51 peitolm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/darcnes/ChangeLog,v 1.3 2002/07/23 14:15:28 stubear Exp $ + +*darcnes-0401-r1 (23 Jul 2002) + + 23 Jul 2002; Stuart Bouyer <stubear@gentoo.org> darcnes-0401-r1.ebuild: + + Added LICENSE info to bring make repoman and lintool happy. + * darcnes-0401-r1 (1 Feb 2002) 5 Jun 2002 Moved ebuild from dn9b-0401-r1.ebuild to darcnes-0401-r1.ebuild diff --git a/app-emulation/darcnes/darcnes-0401-r1.ebuild b/app-emulation/darcnes/darcnes-0401-r1.ebuild index 37f033ea26aa..706bdf09417a 100644 --- a/app-emulation/darcnes/darcnes-0401-r1.ebuild +++ b/app-emulation/darcnes/darcnes-0401-r1.ebuild @@ -1,46 +1,52 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-emulation/darcnes/darcnes-0401-r1.ebuild,v 1.2 2002/07/11 06:30:12 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/darcnes/darcnes-0401-r1.ebuild,v 1.3 2002/07/23 14:15:28 stubear Exp $ S=${WORKDIR}/darcnes DESCRIPTION="A multi-system emulator" SRC_URI="http://www.dridus.com/~nyef/darcnes/download/dn9b0401.tgz" HOMEPAGE="http://www.netway.com/~nyef" +LICENSE="" +SLOT="0" +KEYWORDS="x86" +LICENSE="GPL" DEPEND=">=media-libs/svgalib-1.4.2 X? ( virtual/x11 ) gtk? ( =x11-libs/gtk+-1.2* )" +RDEPEND="${DEPEND}" + src_compile() { - cp cd_unix.c cd_unix.c.orig - cat cd_unix.c.orig | sed "s:CDROM_DEVICE \"/dev/cdrom\"$:CDROM_DEVICE \"/dev/cdroms/cdrom0\":"\ + cp cd_unix.c cd_unix.c.orig + cat cd_unix.c.orig | sed "s:CDROM_DEVICE \"/dev/cdrom\"$:CDROM_DEVICE \"/dev/cdroms/cdrom0\":"\ > cd_unix.c - cp Makefile Makefile.orig - if [ "`use X`" ] - then - if [ "`use gtk`" ] + cp Makefile Makefile.orig + if [ "`use X`" ] then - cat Makefile.orig | sed "s:^TARGET?=Linux_X$:TARGET?=Linux_GTK:" \ - > Makefile + if [ "`use gtk`" ] + then + cat Makefile.orig | sed "s:^TARGET?=Linux_X$:TARGET?=Linux_GTK:" \ + > Makefile + fi + make || die fi - try make - fi - cat Makefile.orig | sed "s:^TARGET?=Linux_X$:TARGET?=Linux_svgalib:" \ - > Makefile - try make + cat Makefile.orig | sed "s:^TARGET?=Linux_X$:TARGET?=Linux_svgalib:" \ + > Makefile + make || die } src_install () { - exeinto /usr/bin - doexe sdarcnes - if [ "`use X`" ] - then exeinto /usr/bin - doexe darcnes - fi - dodoc readme + doexe sdarcnes + if [ "`use X`" ] + then + exeinto /usr/bin + doexe darcnes + fi + dodoc readme } |