diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-10-04 01:33:01 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-10-04 01:33:01 +0000 |
commit | b16aa5f49d8dec2a4a6795d83bb244351e14e767 (patch) | |
tree | bd49fbd681e4b01da5257214e8837f9e4e49c046 /games-fps | |
parent | old (diff) | |
download | gentoo-2-b16aa5f49d8dec2a4a6795d83bb244351e14e767.tar.gz gentoo-2-b16aa5f49d8dec2a4a6795d83bb244351e14e767.tar.bz2 gentoo-2-b16aa5f49d8dec2a4a6795d83bb244351e14e767.zip |
old
(Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/duke3d-data/ChangeLog | 6 | ||||
-rw-r--r-- | games-fps/duke3d-data/duke3d-data-1.0-r1.ebuild | 70 |
2 files changed, 5 insertions, 71 deletions
diff --git a/games-fps/duke3d-data/ChangeLog b/games-fps/duke3d-data/ChangeLog index 63327b9ff728..33a9af0b2758 100644 --- a/games-fps/duke3d-data/ChangeLog +++ b/games-fps/duke3d-data/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-fps/duke3d-data # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/duke3d-data/ChangeLog,v 1.14 2014/09/22 23:10:20 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/duke3d-data/ChangeLog,v 1.15 2014/10/04 01:33:01 mr_bones_ Exp $ + + 04 Oct 2014; Michael Sterrett <mr_bones_@gentoo.org> + -duke3d-data-1.0-r1.ebuild: + old 22 Sep 2014; Julian Ospald <hasufell@gentoo.org> duke3d-data-1.0-r1.ebuild, duke3d-data-1.0-r2.ebuild: diff --git a/games-fps/duke3d-data/duke3d-data-1.0-r1.ebuild b/games-fps/duke3d-data/duke3d-data-1.0-r1.ebuild deleted file mode 100644 index d1179388c949..000000000000 --- a/games-fps/duke3d-data/duke3d-data-1.0-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/duke3d-data/duke3d-data-1.0-r1.ebuild,v 1.5 2014/09/22 23:10:20 hasufell Exp $ - -EAPI=5 - -CDROM_OPTIONAL="yes" -inherit eutils cdrom games - -DESCRIPTION="Duke Nukem 3D data files" -HOMEPAGE="http://www.3drealms.com/" -SRC_URI="gog? ( setup_duke3d_2.0.0.84.exe )" - -LICENSE="DUKE3D gog? ( GOG-EULA )" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~x86" -IUSE="gog" -REQUIRED_USE="^^ ( cdinstall gog )" -RESTRICT="mirror bindist gog? ( fetch )" - -DEPEND="gog? ( app-arch/innoextract )" -RDEPEND="|| ( games-fps/eduke32 games-fps/duke3d )" - -S=${WORKDIR} - -pkg_nofetch() { - einfo "Please download ${A} from your GOG.com account after buying Duke Nukem 3d" - einfo "and put it into ${DISTDIR}." -} - -src_unpack() { - if use cdinstall ; then - export CDROM_NAME_SET=( - "Existing Install" - "Duke Nukem 3D CD" - "Duke Nukem 3D Atomic Edition CD" - ) - cdrom_get_cds duke3d.grp:dvd/dn3dinst/duke3d.grp:atominst/duke3d.grp - - if [[ ${CDROM_SET} -ne 0 - && ${CDROM_SET} -ne 1 - && ${CDROM_SET} -ne 2 ]] - then - die "Error locating data files."; - fi - else - innoextract --lowercase "${DISTDIR}"/setup_duke3d_2.0.0.84.exe - fi -} - -src_install() { - local DATAROOT - - insinto "${GAMES_DATADIR}"/duke3d - - if use cdinstall ; then - case ${CDROM_SET} in - 0) DATAROOT="" ;; - 1) DATAROOT="dn3dinst/" ;; - 2) DATAROOT="atominst/" ;; - esac - - # avoid double slash - doins "${CDROM_ROOT}"/${DATAROOT}{duke3d.grp,duke.rts,game.con,user.con,demo?.dmo,defs.con} - else - doins app/{duke3d.grp,duke.rts,game.con,user.con,demo?.dmo,defs.con} - fi - - prepgamesdirs -} |