summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@gentoo.org>2006-12-21 03:19:38 +0000
committerSaleem Abdulrasool <compnerd@gentoo.org>2006-12-21 03:19:38 +0000
commit2dd118d3dab3171e9d63af81bed4cd9192c1692c (patch)
treea6de00112497830d0fd2d793d05798635fe13739 /games-strategy/xarchon/xarchon-0.60.ebuild
parentgnome 1.x removal (diff)
downloadgentoo-2-2dd118d3dab3171e9d63af81bed4cd9192c1692c.tar.gz
gentoo-2-2dd118d3dab3171e9d63af81bed4cd9192c1692c.tar.bz2
gentoo-2-2dd118d3dab3171e9d63af81bed4cd9192c1692c.zip
gnome 1.x removal
Diffstat (limited to 'games-strategy/xarchon/xarchon-0.60.ebuild')
-rw-r--r--games-strategy/xarchon/xarchon-0.60.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/games-strategy/xarchon/xarchon-0.60.ebuild b/games-strategy/xarchon/xarchon-0.60.ebuild
deleted file mode 100644
index 25a562569c6f..000000000000
--- a/games-strategy/xarchon/xarchon-0.60.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/xarchon/xarchon-0.60.ebuild,v 1.9 2006/03/12 23:43:50 mr_bones_ Exp $
-
-inherit eutils games
-
-DESCRIPTION="modelled after the golden oldie Archon game"
-HOMEPAGE="http://xarchon.seul.org/"
-SRC_URI="ftp://ftp.seul.org/pub/xarchon/${P}.tar.gz
- http://xarchon.seul.org/${P}.tar.gz
- mirror://gentoo/${P}-gtk.patch.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="ppc x86"
-IUSE="esd joystick" # also has qt support but it fails :/
-
-DEPEND="=x11-libs/gtk+-1*
- <dev-util/glade-2
- esd? ( media-sound/esound )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${WORKDIR}/${P}-gtk.patch"
- sed -i \
- -e 's:gtk12-config:gtk-config:' configure \
- || die "sed configure failed"
-}
-
-src_compile() {
- local mysndconf
- use esd \
- && mysndconf="--with-esd-prefix=/usr" \
- || mysndconf="--disable-sound"
- egamesconf \
- --enable-network \
- $(use_enable joystick) \
- --with-default-gtk \
- ${mysndconf} \
- || die
- emake || die "emake failed"
-}
-
-src_install() {
- egamesinstall || die
- dodoc AUTHORS ChangeLog NEWS README
- prepgamesdirs
-}