diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-02-04 16:02:25 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-02-04 18:48:13 +0100 |
commit | 8dfcfee656e991d4b01d9e73cf18bd9431918b32 (patch) | |
tree | fc0433c0b9e03e2aee90f48c9e2113e2cd1194aa /app-emulation/pcem | |
parent | app-emulation/pcem: add dep on tiff for x11-libs/wxGTK (diff) | |
download | gentoo-8dfcfee656e991d4b01d9e73cf18bd9431918b32.tar.gz gentoo-8dfcfee656e991d4b01d9e73cf18bd9431918b32.tar.bz2 gentoo-8dfcfee656e991d4b01d9e73cf18bd9431918b32.zip |
app-emulation/pcem: drop old version
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-emulation/pcem')
-rw-r--r-- | app-emulation/pcem/pcem-15.ebuild | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/app-emulation/pcem/pcem-15.ebuild b/app-emulation/pcem/pcem-15.ebuild deleted file mode 100644 index cf76b44d1f9c..000000000000 --- a/app-emulation/pcem/pcem-15.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools desktop wxwidgets - -WX_GTK_VER="3.0" - -DESCRIPTION="A PC emulator that specializes in running old operating systems and software" -HOMEPAGE=" - https://pcem-emulator.co.uk/ - https://bitbucket.org/pcem_emulator/pcem/ -" -SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="alsa networking" - -S="${WORKDIR}" - -RDEPEND=" - alsa? ( media-libs/alsa-lib ) - media-libs/libsdl2 - media-libs/openal - x11-libs/wxGTK:${WX_GTK_VER}[X] -" - -DEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" ) - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - local myeconfargs=( - --enable-release-build - $(use_enable alsa) - $(use_enable networking) - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - insinto /usr/share/pcem - doins -r configs nvr roms - - newicon src/icons/32x32/motherboard.png pcem.png - make_desktop_entry "pcem" "PCem" pcem "Development;Utility" - - dodoc readme.txt -} - -pkg_postinst() { - elog "In order to use PCem, you will need some roms for various emulated systems." - elog "You can either install globally for all users or locally for yourself." - elog "" - elog "To install globally, put your ROM file into '${ROOT}/usr/share/pcem/roms/<system>'." - elog "To install locally, put your ROM file into '~/.pcem/roms/<system>'." -} |