diff options
author | David Seifert <soap@gentoo.org> | 2017-11-19 13:34:48 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-11-19 13:36:56 +0100 |
commit | 074b18b6e99bc9b28de60a96504acfddf915819e (patch) | |
tree | 35d40bc5ea13550c8f0e58a957abbcabca7a3c93 /games-arcade/opensonic | |
parent | games-arcade/opensonic: Update to EAPI 6 (diff) | |
download | gentoo-074b18b6e99bc9b28de60a96504acfddf915819e.tar.gz gentoo-074b18b6e99bc9b28de60a96504acfddf915819e.tar.bz2 gentoo-074b18b6e99bc9b28de60a96504acfddf915819e.zip |
games-arcade/opensonic: Remove old
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'games-arcade/opensonic')
-rw-r--r-- | games-arcade/opensonic/opensonic-0.1.4-r1.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/games-arcade/opensonic/opensonic-0.1.4-r1.ebuild b/games-arcade/opensonic/opensonic-0.1.4-r1.ebuild deleted file mode 100644 index 95eb7ebac18a..000000000000 --- a/games-arcade/opensonic/opensonic-0.1.4-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit cmake-utils eutils games - -MY_PN=opensnc -MY_P=${MY_PN}-src-${PV} - -DESCRIPTION="A free open-source game based on the Sonic the Hedgehog universe" -HOMEPAGE="http://opensnc.sourceforge.net/" -SRC_URI="https://sourceforge.net/projects/opensnc/files/Open%20Sonic/${PV}/opensnc-src-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -RESTRICT="mirror" # unsure about legality of graphics - -DEPEND="media-libs/allegro:0[X,jpeg,png,vorbis] - media-libs/libogg - media-libs/libpng:0 - media-libs/libvorbis - sys-libs/zlib - virtual/jpeg:0" -RDEPEND=${DEPEND} - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${PF}-cmake.patch -} - -src_configure() { - local mycmakeargs=( - -DGAME_INSTALL_DIR="${GAMES_DATADIR}"/${PN} - -DGAME_FINAL_DIR="${GAMES_BINDIR}" - -DGAME_LIBDIR="$(games_get_libdir)/${PN}" - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - local i - for i in $(ls "${D}${GAMES_DATADIR}/${PN}") ; do - dosym "${GAMES_DATADIR}/${PN}/${i}" \ - "$(games_get_libdir)/${PN}/${i}" - done - prepgamesdirs -} |