# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: dev-embedded/gnusim8085-1.2.3.ebuild 2003/26/11 $ inherit eutils DESCRIPTION="A GTK2 8085 Simulator" HOMEPAGE="http://sourceforge.net/projects/gnusim8085" SRC_URI="mirror://sourceforge/gnusim8085/GNUSim8085-${PV}.tar.bz2" LICENSE="GPL" SLOT="0" KEYWORDS="~x86" IUSE="nls" DEPEND=">=x11-libs/gtk+-2.0 >=dev-libs/glib-2.0" DEPEND="${DEPEND} virtual/x11" S=${WORKDIR}/GNUSim8085-${PV} src_compile() { local myconf use nls || myconf="${myconf} --disable-nls" econf ${myconf} || die "Configuration failed" emake || MAKEOPTS="${MAKEOPTS} -j1" emake || die "Make failed" } src_install() { einstall || die "Install Failed!" dodoc ABOUT-NLS COPYING INSTALL README asm_reference.txt readme.txt AUTHORS ChangeLog NEWS TODO }