Portage is a package management system used by Gentoo Linux
# ChangeLog for games-misc/yadex
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/yadex/ChangeLog,v 1.7 2006/09/27 14:06:44 nyhm Exp $
27 Sep 2006; Tristan Heaven
Add inherit eutils
25 Jun 2006; Michael Sterrett
Patch from Tristan Heaven to avoid broken test and tidy (bug #137892)
03 Apr 2006;
+files/yadex-1.7.0-NULL-is-not-zero.patch, yadex-1.7.0.ebuild:
gcc-4 patch, bug #120866 by Joshua Baergen
29 Jan 2006; Joshua Baergen
Add modular X dependencies.
10 Jun 2005; David Holm
Added to ~ppc.
*yadex-1.7.0 (13 Jan 2004)
13 Jan 2004; Michael Sterrett
yadex-1.7.0.ebuild:
initial commit; ebuild based on the one provided by Daniel Fullmer via bug
37753
AUX yadex-1.7.0-NULL-is-not-zero.patch 406 RMD160 9ee842efd8b00fb1c8170b050da0aff4a8030339 SHA1 d6580b6ddd2c8baf37898ee74a2f23c3d3df93c3 SHA256 08d881eef844a7a7417feffdab473b557b43c6c240905cf05ea917504213c2dc
DIST yadex-1.7.0.tar.gz 551318 RMD160 6f86e6aa1fd9c9241a883f03fd9567eac8d83887 SHA1 561709fccf5a700fcf42ad1b0d065daf2872baf4 SHA256 316aca295b647b45d6d0d359fd7bba0448e7e114d295347add7ac0e87aa0f446
EBUILD yadex-1.7.0.ebuild 1249 RMD160 2868a47069106128f20b73f50589bde6dcf1fcec SHA1 56f69935cdf1a7715b932161896af83e7411ce83 SHA256 16b28a560e3c67d571c313eeff360dec6fbcb99eeaf8f93de1e521d5baca4a72
MISC ChangeLog 983 RMD160 e6ec162eb4a37a15aba043397add0701efc817e6 SHA1 1b37ba4fddc5dc6497024c24118d2d1ef5f3567d SHA256 f951d58fc2673c783d6ac25bc2ded0717dbe685e6b047745ff1582a66fa89344
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/yadex/yadex-1.7.0.ebuild,v 1.9 2006/12/06 00:03:18 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="A Doom level (wad) editor"
HOMEPAGE="http://www.teaser.fr/~amajorel/yadex/"
SRC_URI="http://www.teaser.fr/~amajorel/yadex/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
RESTRICT="test"
DEPEND="x11-libs/libX11"
src_unpack() {
unpack ${A}
sed -i \
-e '/iwad/s/local\///' \
"${S}"/yadex.cfg \
|| die "sed yadex.cfg failed"
epatch "${FILESDIR}/${P}"-NULL-is-not-zero.patch
# Force the patched file to be old, otherwise the compile fails
touch -t 196910101010 "${S}"/src/wadlist.cc
}
src_compile() {
# not an autoconf script
./configure --prefix="/usr" || die "configure failed"
emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die "emake failed"
}
src_install() {
dogamesbin obj/0/yadex || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}/${PV}"
doins ygd/* || die "doins failed (data)"
doman doc/yadex.6
dodoc CHANGES FAQ README TODO VERSION
dohtml doc/*
insinto /etc/yadex/${PV}
doins yadex.cfg || die "doins failed (cfg)"
prepgamesdirs
}