summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-03-29 20:30:02 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-03-29 20:30:02 +0000
commit0b5f99ca956f0e4e12314f18ace4c8f2e2c764f3 (patch)
tree2cf01356a46a0d70dc6ad616f01bdbc0b5946061 /dev-games
parentRemoved app-vim/curcmdmode block as requested by ciaranm. (diff)
downloadgentoo-2-0b5f99ca956f0e4e12314f18ace4c8f2e2c764f3.tar.gz
gentoo-2-0b5f99ca956f0e4e12314f18ace4c8f2e2c764f3.tar.bz2
gentoo-2-0b5f99ca956f0e4e12314f18ace4c8f2e2c764f3.zip
old
(Portage version: 2.1_pre7-r2)
Diffstat (limited to 'dev-games')
-rw-r--r--dev-games/guichan/files/digest-guichan-0.3.01
-rw-r--r--dev-games/guichan/files/digest-guichan-0.4.01
-rw-r--r--dev-games/guichan/guichan-0.3.0.ebuild34
-rw-r--r--dev-games/guichan/guichan-0.4.0.ebuild39
4 files changed, 0 insertions, 75 deletions
diff --git a/dev-games/guichan/files/digest-guichan-0.3.0 b/dev-games/guichan/files/digest-guichan-0.3.0
deleted file mode 100644
index 641cd95a4bc1..000000000000
--- a/dev-games/guichan/files/digest-guichan-0.3.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8e921d6456bcb972ce59cb34f38cd7f9 guichan-0.3.0-src.tar.gz 1261045
diff --git a/dev-games/guichan/files/digest-guichan-0.4.0 b/dev-games/guichan/files/digest-guichan-0.4.0
deleted file mode 100644
index 89ad66fd542c..000000000000
--- a/dev-games/guichan/files/digest-guichan-0.4.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 f68b6c603c4fb3d70a8737f916214a35 guichan-0.4.0-src.tar.gz 1274735
diff --git a/dev-games/guichan/guichan-0.3.0.ebuild b/dev-games/guichan/guichan-0.3.0.ebuild
deleted file mode 100644
index 94790ce0376a..000000000000
--- a/dev-games/guichan/guichan-0.3.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.3.0.ebuild,v 1.1 2005/05/05 00:40:43 vapier Exp $
-
-DESCRIPTION="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL"
-HOMEPAGE="http://guichan.sourceforge.net/"
-SRC_URI="mirror://sourceforge/guichan/${P}-src.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="sdl opengl allegro"
-
-DEPEND="opengl? ( virtual/opengl )
- sdl? ( media-libs/libsdl media-libs/sdl-image )
- allegro? ( media-libs/allegro )"
-
-S=${WORKDIR}/${P}-src
-
-src_compile() {
- # --enable-X causes failures :(
- # $(use_with X x) $(use_enable X x)
- econf \
- $(use_enable allegro) \
- $(use_enable sdl) \
- $(use_enable sdl sdlimage) \
- $(use_enable opengl) \
- || die "Configuration failed"
- emake || die "Build failed"
-}
-src_install() {
- make install DESTDIR="${D}" || die "Installation failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
-}
diff --git a/dev-games/guichan/guichan-0.4.0.ebuild b/dev-games/guichan/guichan-0.4.0.ebuild
deleted file mode 100644
index 6c7b6d357185..000000000000
--- a/dev-games/guichan/guichan-0.4.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.4.0.ebuild,v 1.3 2005/09/10 05:35:37 vapier Exp $
-
-DESCRIPTION="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL"
-HOMEPAGE="http://guichan.sourceforge.net/"
-SRC_URI="mirror://sourceforge/guichan/${P}-src.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="sdl opengl allegro"
-
-DEPEND="opengl? ( virtual/opengl )
- sdl? ( media-libs/libsdl media-libs/sdl-image )
- allegro? ( media-libs/allegro )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e '/^CXXFLAGS=/s:-Werror::' \
- configure || die "sed configure failed"
-}
-
-src_compile() {
- econf \
- $(use_enable allegro) \
- $(use_enable sdl) \
- $(use_enable sdl sdlimage) \
- $(use_enable opengl) \
- || die "Configuration failed"
- emake || die "Build failed"
-}
-
-src_install() {
- make install DESTDIR="${D}" || die "Installation failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
-}