blob: ff738d0b39057e9ce05107d673e80c4a56b91c24 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.11 2004/03/19 03:37:06 mr_bones_ Exp $
inherit eutils
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"
KEYWORDS="x86"
SLOT="0"
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() {
emake DEBUG="${CFLAGS}" CC="${CC}" || 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"
}
|