diff options
author | 2005-04-06 23:58:51 +0000 | |
---|---|---|
committer | 2005-04-06 23:58:51 +0000 | |
commit | 5f258bb08428e199d4e57238f840064114b86723 (patch) | |
tree | d672df1818823d4f9eb96454f8959effc973ed9d /app-emulation/softgun | |
parent | filter mtune -> mcpu with gcc2 #88147 (diff) | |
download | gentoo-2-5f258bb08428e199d4e57238f840064114b86723.tar.gz gentoo-2-5f258bb08428e199d4e57238f840064114b86723.tar.bz2 gentoo-2-5f258bb08428e199d4e57238f840064114b86723.zip |
Version bump, thanks to Mr_Bones.
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-emulation/softgun')
-rw-r--r-- | app-emulation/softgun/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/softgun/files/digest-softgun-0.09 | 1 | ||||
-rw-r--r-- | app-emulation/softgun/softgun-0.09.ebuild | 40 |
3 files changed, 47 insertions, 1 deletions
diff --git a/app-emulation/softgun/ChangeLog b/app-emulation/softgun/ChangeLog index 122cae9b919a..b44bd6f618c0 100644 --- a/app-emulation/softgun/ChangeLog +++ b/app-emulation/softgun/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/softgun # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/ChangeLog,v 1.3 2005/03/04 16:18:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/ChangeLog,v 1.4 2005/04/06 23:58:51 vapier Exp $ + +*softgun-0.09 (06 Apr 2005) + + 06 Apr 2005; Mike Frysinger <vapier@gentoo.org> +softgun-0.09.ebuild: + Version bump, thanks to Mr_Bones. *softgun-0.08 (04 Mar 2005) diff --git a/app-emulation/softgun/files/digest-softgun-0.09 b/app-emulation/softgun/files/digest-softgun-0.09 new file mode 100644 index 000000000000..29fb003b3667 --- /dev/null +++ b/app-emulation/softgun/files/digest-softgun-0.09 @@ -0,0 +1 @@ +MD5 8546400134125730d12a2d86ae3068f2 softgun-0.09.tgz 166634 diff --git a/app-emulation/softgun/softgun-0.09.ebuild b/app-emulation/softgun/softgun-0.09.ebuild new file mode 100644 index 000000000000..c561fe0af9fd --- /dev/null +++ b/app-emulation/softgun/softgun-0.09.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.09.ebuild,v 1.1 2005/04/06 23:58:51 vapier Exp $ + +inherit toolchain-funcs + +DESCRIPTION="ARM software emulator" +HOMEPAGE="http://softgun.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + -e 's:/usr/local:$(DESTDIR)/usr:' \ + Makefile || die "sed Makefile failed" + sed -i \ + -e "/^CFLAGS/s:-O9.*-fomit-frame-pointer:${CFLAGS}:" \ + config.mk || die "sed config.mk failed" +} + +src_compile() { + emake CC="$(tc-getCC)" || die "Make feiled" +} + +src_install() { + dodir /usr/bin + make install DESTDIR="${D}" || die "Install failed" + dodoc README defaultconfig +} + +pkg_postinst() { + einfo "To create a configuration file, run as user:" + einfo " gzcat /usr/share/doc/${PF}/defaultconfig.gz > ~/.emuconfig" +} |