diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-02-17 02:24:45 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-02-17 02:24:45 +0000 |
commit | 60ed6de3db6eeb8d929986347e562ce642593c45 (patch) | |
tree | 37a7186677ffb7ffc1aaa8cc65ac5bcd4ecb9733 | |
parent | Version bump, implement src_test(). (diff) | |
download | gentoo-2-60ed6de3db6eeb8d929986347e562ce642593c45.tar.gz gentoo-2-60ed6de3db6eeb8d929986347e562ce642593c45.tar.bz2 gentoo-2-60ed6de3db6eeb8d929986347e562ce642593c45.zip |
remove p.masked ebuild
(Portage version: 2.2.0_alpha162/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
-rw-r--r-- | games-roguelike/tomenet/ChangeLog | 5 | ||||
-rw-r--r-- | games-roguelike/tomenet/tomenet-100310.ebuild | 60 |
2 files changed, 4 insertions, 61 deletions
diff --git a/games-roguelike/tomenet/ChangeLog b/games-roguelike/tomenet/ChangeLog index e96a99b66f99..f2aadc348c98 100644 --- a/games-roguelike/tomenet/ChangeLog +++ b/games-roguelike/tomenet/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-roguelike/tomenet # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/tomenet/ChangeLog,v 1.12 2013/01/31 22:47:17 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/tomenet/ChangeLog,v 1.13 2013/02/17 02:24:45 hasufell Exp $ + + 17 Feb 2013; Julian Ospald <hasufell@gentoo.org> -tomenet-100310.ebuild: + remove p.masked ebuild *tomenet-4.5.3 (31 Jan 2013) diff --git a/games-roguelike/tomenet/tomenet-100310.ebuild b/games-roguelike/tomenet/tomenet-100310.ebuild deleted file mode 100644 index 221716d6370d..000000000000 --- a/games-roguelike/tomenet/tomenet-100310.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/tomenet/tomenet-100310.ebuild,v 1.2 2010/04/26 14:52:24 phajdan.jr Exp $ - -EAPI=2 -inherit games - -DESCRIPTION="A MMORPG based on the works of J.R.R. Tolkien" -HOMEPAGE="http://www.tomenet.net/" -SRC_URI="http://angband.oook.cz/${PN}-nightly/${PN}-cvs-snapshot-${PV}.tar.bz2" - -LICENSE="Moria" -SLOT="0" -KEYWORDS="x86" -IUSE="X Xaw3d" - -DEPEND="sys-libs/ncurses - X? ( x11-libs/libX11 ) - Xaw3d? ( x11-libs/libXaw )" - -S=${WORKDIR}/${PN}/src - -src_prepare() { - sed -i \ - -e '/^CC =/d' \ - makefile \ - || die "sed failed" -} - -src_compile() { - local GENTOO_DEFINES="-DUSE_GCU " - local GENTOO_LIBS="-lncurses -lcrypt -lm" - - if use Xaw3d; then - GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_XAW" - elif use X; then - GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_X11" - fi - if use X; then - GENTOO_LIBS="${GENTOO_LIBS} -lX11" - fi - if use Xaw3d; then - GENTOO_LIBS="${GENTOO_LIBS} -lXaw" - fi - emake CFLAGS="${CFLAGS} ${GENTOO_DEFINES} -Iserver -Iserver/lua" \ - LIBS="${GENTOO_LIBS}" tomenet \ - || die "emake failed" -} - -src_install() { - dogamesbin ${PN} || die "dogamesbin failed" - dodoc ../{ChangeLog,TomeNET-Guide.txt,changes.txt} - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - elog "To start playing right away:" - elog "$ tomenet totem.ielf.org" -} |