blob: 84664f0ea620b2fb342e4633e5df172f8b5ddb6e (
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
48
49
50
51
52
53
54
55
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/simh/simh-3.8.1.ebuild,v 1.2 2010/11/21 19:54:26 xmw Exp $
inherit eutils toolchain-funcs versionator
MY_P="${PN}v$(get_version_component_range 1)$(get_version_component_range 2)-$(get_version_component_range 3)"
DESCRIPTION="a simulator for historical computers such as Vax, PDP-11 etc.)"
HOMEPAGE="http://simh.trailing-edge.com/"
SRC_URI="http://simh.trailing-edge.com/sources/${MY_P}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""
RDEPEND="net-libs/libpcap"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}
MAKEOPTS="USE_NETWORK=1 ${MAKEOPTS}"
src_unpack() {
mkdir "${WORKDIR}/BIN"
unpack ${A}
# convert makefile from dos format to unix format
edos2unix makefile
epatch "${FILESDIR}/${P}-makefile.patch" \
"${FILESDIR}/${P}-asneeded.patch"
# fix linking on Darwin
[[ ${CHOST} == *-darwin* ]] && sed -i 's/-lrt//g' makefile
}
src_compile() {
tc-export CC
emake || die "make failed"
}
src_install() {
cd "${S}/BIN"
for BINFILE in *; do
newbin ${BINFILE} "simh-${BINFILE}"
done
cd "${S}"
dodir /usr/share/simh
insinto /usr/share/simh
doins VAX/*.bin
dodoc *.txt */*.txt
}
|