blob: 7476452c18b818cca3c11fb21ad5cfccb6e587dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ryan Tolboom <ryan@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-emulation/dn9b/dn9b-0401-r1.ebuild,v 1.1 2002/06/05 22:53:50 peitolm 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"
DEPEND=">=media-libs/svgalib-1.4.2
X? ( virtual/x11 )
gtk? ( =x11-libs/gtk+-1.2* )"
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\":"\
> cd_unix.c
cp Makefile Makefile.orig
if [ "`use X`" ]
then
if [ "`use gtk`" ]
then
cat Makefile.orig | sed "s:^TARGET?=Linux_X$:TARGET?=Linux_GTK:" \
> Makefile
fi
try make
fi
cat Makefile.orig | sed "s:^TARGET?=Linux_X$:TARGET?=Linux_svgalib:" \
> Makefile
try make
}
src_install () {
exeinto /usr/bin
doexe sdarcnes
if [ "`use X`" ]
then
exeinto /usr/bin
doexe darcnes
fi
dodoc readme
}
|