You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-emulation/simh/simh-3.5.2.ebuild,v 1.3 2008/02/05 21:30:34 grobian Exp $
|
|
|
|
inherit eutils 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 ~x86"
|
|
|
|
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
|
|
sed -i 's/.$//' makefile
|
|
|
|
epatch "${FILESDIR}/makefile.patch"
|
|
}
|
|
|
|
src_compile() {
|
|
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
|
|
}
|