blob: 6a88fa1653136172cd1394c73e23616f73ab4cad (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xtrs/xtrs-4.9.ebuild,v 1.16 2005/05/04 18:58:11 dholm Exp $
inherit eutils gcc
DESCRIPTION="RadioShack TRS80 Emulator, inc. FreeWare ROM & LDOS Image"
HOMEPAGE="http://www.tim-mann.org/trs80.html"
SRC_URI="http://home.gwi.net/~plemon/sources/${P}.tar.gz
http://home.gwi.net/~plemon/support/disks/xtrs/ld4-631.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
DEPEND="sys-libs/ncurses
sys-libs/readline
virtual/x11"
src_unpack() {
### make doesn't play nicely with the usual ${PREFIX} behaviour, but relies
### on an external Makefile.local to set compiletime options, and default
### behavious. we'll patch it here, to make our install sane.
unpack ${P}.tar.gz
cd ${WORKDIR}
epatch "${FILESDIR}/${P}-gentoo.diff"
}
src_compile() {
use ppc && echo "ENDIAN = -Dbig_endian" >> Makefile.local
emake DEBUG="${CFLAGS}" CC="$(gcc-getCC)" || die "emake failed"
}
src_install() {
dodir /usr/bin /usr/share/xtrs/disks /usr/share/man/man1
make install || die "make install failed"
dodoc README xtrsrom4p.README
# OSS rom images & an lsdos image
tar \
-C ${D}/usr/share/xtrs/ \
--no-same-owner \
-zxvf "${DISTDIR}/ld4-631.tar.gz" || die "tar failed"
}
|