diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:07 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:29:16 +0100 |
commit | f812bf512cef5b0c6a558475ba37af27cf23ca8a (patch) | |
tree | 2d858abbbc40911be00322dafcd2541b438bbeab /games-action/chickens | |
parent | games-action/bzflag: Remove old (diff) | |
download | gentoo-f812bf512cef5b0c6a558475ba37af27cf23ca8a.tar.gz gentoo-f812bf512cef5b0c6a558475ba37af27cf23ca8a.tar.bz2 gentoo-f812bf512cef5b0c6a558475ba37af27cf23ca8a.zip |
games-action/chickens: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-action/chickens')
-rw-r--r-- | games-action/chickens/chickens-0.2.4.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/games-action/chickens/chickens-0.2.4.ebuild b/games-action/chickens/chickens-0.2.4.ebuild deleted file mode 100644 index 1d7bbee21d0c..000000000000 --- a/games-action/chickens/chickens-0.2.4.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -MY_P="ChickensForLinux-Linux-${PV}" -DESCRIPTION="Target chickens with rockets and shotguns. Funny" -HOMEPAGE="http://www.chickensforlinux.com/" -SRC_URI="http://www.chickensforlinux.com/${MY_P}.tar.gz" - -LICENSE="all-rights-reserved" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -RESTRICT="mirror bindist" - -DEPEND="<media-libs/allegro-5" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${PN} - -src_prepare() { - sed -i \ - -e "s:HighScores:${GAMES_STATEDIR}/${PN}/HighScores:" \ - -e "s:....\(.\)\(_\)\(.*.4x0\)\(.\):M\4\2\x42\x6Fn\1s\2:" \ - highscore.cpp HighScores || die - sed -i \ - -e "s:options.cfg:${GAMES_SYSCONFDIR}/${PN}/options.cfg:" \ - -e "s:\"sound/:\"${GAMES_DATADIR}/${PN}/sound/:" \ - -e "s:\"dat/:\"${GAMES_DATADIR}/${PN}/dat/:" \ - main.cpp README || die - sed -i \ - -e '/^CPPFLAGS/d' \ - -e 's:g++:\\$(CXX) \\$(CXXFLAGS) \\$(LDFLAGS):' \ - configure || die -} - -src_configure() { - bash ./configure || die -} - -src_install() { - dogamesbin ${PN} - insinto "${GAMES_DATADIR}"/${PN} - doins -r dat sound - dodoc AUTHOR README - insinto "${GAMES_STATEDIR}"/${PN} - doins HighScores - insinto "${GAMES_SYSCONFDIR}"/${PN} - doins options.cfg - fperms g+w "${GAMES_STATEDIR}"/${PN}/HighScores - make_desktop_entry ${PN} Chickens - prepgamesdirs -} |