diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-03-02 05:25:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-03-02 05:25:57 +0000 |
commit | 6bb27ae9648cea3b7d1a0b84d4c7448e356c2d8a (patch) | |
tree | f3419be1069fc753b27be54432b876df9e8d2420 /app-emulation | |
parent | Version Bump, see Bug #6291 (diff) | |
download | gentoo-2-6bb27ae9648cea3b7d1a0b84d4c7448e356c2d8a.tar.gz gentoo-2-6bb27ae9648cea3b7d1a0b84d4c7448e356c2d8a.tar.bz2 gentoo-2-6bb27ae9648cea3b7d1a0b84d4c7448e356c2d8a.zip |
initial ebuild #7827
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/qmamecat/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/qmamecat/files/digest-qmamecat-0.44.45 | 1 | ||||
-rw-r--r-- | app-emulation/qmamecat/qmamecat-0.44.45.ebuild | 31 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-emulation/qmamecat/ChangeLog b/app-emulation/qmamecat/ChangeLog new file mode 100644 index 000000000000..25f3b26dbc4e --- /dev/null +++ b/app-emulation/qmamecat/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-emulation/qmamecat +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qmamecat/ChangeLog,v 1.1 2003/03/02 05:25:57 vapier Exp $ + +*qmamecat-0.44.45 (02 Mar 2003) + + 02 Mar 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Paulo Ferreira <pmpf@ist.utl.pt> #7827. diff --git a/app-emulation/qmamecat/files/digest-qmamecat-0.44.45 b/app-emulation/qmamecat/files/digest-qmamecat-0.44.45 new file mode 100644 index 000000000000..12aaf1ed5167 --- /dev/null +++ b/app-emulation/qmamecat/files/digest-qmamecat-0.44.45 @@ -0,0 +1 @@ +MD5 90aa9fde4186ae5b1412de388d33a0ee qmamecat-0.44.b45.tar.bz2 282748 diff --git a/app-emulation/qmamecat/qmamecat-0.44.45.ebuild b/app-emulation/qmamecat/qmamecat-0.44.45.ebuild new file mode 100644 index 000000000000..7ca520859d0e --- /dev/null +++ b/app-emulation/qmamecat/qmamecat-0.44.45.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qmamecat/qmamecat-0.44.45.ebuild,v 1.1 2003/03/02 05:25:57 vapier Exp $ + +MY_PV="${PV/45/b45}" +DESCRIPTION="mame catalog and frontend" +SRC_URI="http://www.mameworld.net/mamecat/snapshots/qmamecat-${MY_PV}.tar.bz2" +HOMEPAGE="http://www.mameworld.net/mamecat/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" + +DEPEND="virtual/glibc + virtual/x11 + x11-libs/qt" + +S=${WORKDIR}/${PN} + +src_compile() { + # emake is horribly broken + make COPTIM="${CFLAGS}" || die +} + +src_install() { + rm bin/{Makefile,make.cfg} + dobin bin/* + doman doc/*.6 + rm doc/*.6 + dodoc doc/* +} |