Portage is a package management system used by Gentoo Linux
# ChangeLog for games-action/xpilot
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-action/xpilot/ChangeLog,v 1.10 2006/12/01 20:17:34 wolf31o2 Exp $
01 Dec 2006; Chris Gianelloni
Removing old virtual/x11 dependency.
01 Dec 2006; Chris Gianelloni
Removing old virtual/x11 dependency.
25 Jan 2006; Chris Gianelloni
Added modular X and closing bug #119986.
31 May 2005; Marcus D. Hanwell
Stable on amd64.
06 Mar 2005; Danny van Dyk
Marked ~amd64.
28 Dec 2004; Ciaran McCreesh
Change encoding to UTF-8 for GLEP 31 compliance
02 Jun 2004; Michael Sterrett
die backticks
30 Mar 2004; Michael Sterrett
sed in unpack; IUSE; virtual/x11
17 Jun 2003; msterret xpilot-4.5.4.ebuild:
use sed -i and emake
*xpilot-4.5.4 (15 Dec 2002)
15 Dec 2002; Maik Schreiber
30 Nov 2002; Jon Nall
keyworded as ~ppc
17 Jul 2002; Jose Alberto Suárez López
Added KEYWORDS.
*xpilot-4.5.3 (21 Jun 2002)
21 Jun 2002; Ryan Phillips
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
DIST xpilot-4.5.4.tar.gz 1384615 RMD160 db8e62fbfa7a7ba19abeb41da651ae4b0298bbc2 SHA1 d295977be8c27c3b9aecf8e69061a451bf8d7e4b SHA256 2545953726f5eeba3d628970db13c9e1d1d6f14302420e0e74d4ee0ea72e3008
EBUILD xpilot-4.5.4.ebuild 1342 RMD160 74d1c3c0a40aaf548fb6c767c9bbae592ea15cf3 SHA1 7313fc6d0c223334d118e278ca0522ceb5fe49a5 SHA256 da6407c87fbb5208f28641a40a538d66b2d6cd76d31321eb1f87a74c7f0f3926
MISC ChangeLog 1875 RMD160 546513b93f9df887c6bd7c0c50b4d01fffa7ce7c SHA1 320493eb3aa04d80b5e0117cdac867f16a209ecc SHA256 384fee0af8c8613afbd32edc64cb793e1907db774fc39355dcd2effba22beac5
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-action/xpilot/xpilot-4.5.4.ebuild,v 1.11 2006/12/01 20:17:34 wolf31o2 Exp $
DESCRIPTION="A multi-player 2D client/server space game"
HOMEPAGE="http://www.xpilot.org/"
SRC_URI="http://xpilot.org/pub/xpilot/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXext"
DEPEND="${RDEPEND}
x11-proto/xextproto
x11-proto/xproto
x11-misc/gccmakedep
x11-misc/imake
app-text/rman"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:/usr/local:/usr:" \
-e "s:/man/man:/share/man/man:" \
Local.config \
|| die "sed failed"
}
src_compile() {
# the stuff xpilot puts it /usr/lib should go
# in /usr/share , but I'm leaving it for now.
xmkmf || die "xmkmf Makefile creation failed"
make Makefiles || die "Makefiles problem"
local f
for f in $(find . -type f -regex .*Makefile); do
sed -i \
-e "s:CDEBUGFLAGS = -O:CDEBUGFLAGS = ${CFLAGS}:" $f \
|| die "sed $f failed"
done
make includes || die "includes problem"
make depend || die "depend problem"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "install problem"
make DESTDIR="${D}" install.man || die "install.man problem"
}