diff options
author | 2015-03-27 16:39:42 +0000 | |
---|---|---|
committer | 2015-03-27 16:39:42 +0000 | |
commit | 90a08edf9e8a84d5268b0b09d7d5e059ae576e29 (patch) | |
tree | 06b5d4ec70fa2fd12e676fc168c39c2ecd10db2e /games-roguelike/FTL | |
parent | Initial commit. Ebuild by Kent Fedric, stolen from the perl-experimental over... (diff) | |
download | gentoo-2-90a08edf9e8a84d5268b0b09d7d5e059ae576e29.tar.gz gentoo-2-90a08edf9e8a84d5268b0b09d7d5e059ae576e29.tar.bz2 gentoo-2-90a08edf9e8a84d5268b0b09d7d5e059ae576e29.zip |
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-roguelike/FTL')
-rw-r--r-- | games-roguelike/FTL/ChangeLog | 5 | ||||
-rw-r--r-- | games-roguelike/FTL/FTL-1.03.3.ebuild | 67 |
2 files changed, 4 insertions, 68 deletions
diff --git a/games-roguelike/FTL/ChangeLog b/games-roguelike/FTL/ChangeLog index 2eb87483e52a..aea0c2cfd6ea 100644 --- a/games-roguelike/FTL/ChangeLog +++ b/games-roguelike/FTL/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-roguelike/FTL # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/FTL/ChangeLog,v 1.21 2015/03/27 16:16:11 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/FTL/ChangeLog,v 1.22 2015/03/27 16:39:42 mr_bones_ Exp $ + + 27 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> -FTL-1.03.3.ebuild: + old 27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> FTL-1.5.13.ebuild: Stable for amd64/x86, wrt bug #518238 diff --git a/games-roguelike/FTL/FTL-1.03.3.ebuild b/games-roguelike/FTL/FTL-1.03.3.ebuild deleted file mode 100644 index e953ef0d2f5c..000000000000 --- a/games-roguelike/FTL/FTL-1.03.3.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/FTL/FTL-1.03.3.ebuild,v 1.5 2014/05/15 16:56:17 ulm Exp $ - -EAPI=5 - -inherit eutils games - -DESCRIPTION="Faster Than Light: A spaceship simulation real-time roguelike-like game" -HOMEPAGE="http://www.ftlgame.com/" -SRC_URI="FTL.Linux.${PV}.tar.gz" - -LICENSE="all-rights-reserved Boost-1.0 free-noncomm MIT bundled-libs? ( FTL LGPL-2.1 ZLIB libpng )" -SLOT="0" -KEYWORDS="-* amd64 x86" -IUSE="bundled-libs" -RESTRICT="fetch bindist splitdebug" - -RDEPEND=" - sys-devel/gcc[cxx] - virtual/opengl - !bundled-libs? ( - media-libs/devil[png,opengl] - media-libs/freetype:2 - media-libs/libsdl[X,sound,joystick,opengl,video] - sys-libs/zlib - )" - -QA_PREBUILT="${GAMES_PREFIX_OPT#/}/${PN}/bin/${PN} - ${GAMES_PREFIX_OPT#/}/${PN}/lib/*" - -S=${WORKDIR}/${PN} - -pkg_nofetch() { - einfo "Please buy & download ${SRC_URI} from:" - einfo " ${HOMEPAGE}" - einfo "and move it to ${DISTDIR}" - einfo -} - -src_prepare() { - if ! use bundled-libs ; then - # no system lib for libbass available - find data/${ARCH}/lib -type f \! -name "libbass*" -delete || die - fi -} - -src_install() { - local dir=${GAMES_PREFIX_OPT}/${PN} - - insinto "${dir}" - doins -r data/resources - doins data/exe_icon.bmp - - exeinto "${dir}"/bin - doexe data/${ARCH}/bin/${PN} - exeinto "${dir}"/lib - doexe data/${ARCH}/lib/*.so* - - games_make_wrapper ${PN} "${dir}/bin/${PN}" "${dir}" "${dir}/lib" - make_desktop_entry ${PN} "Faster Than Light" "/usr/share/pixmaps/FTL.bmp" - - newicon data/exe_icon.bmp FTL.bmp - dohtml ${PN}_README.html - - prepgamesdirs -} |