blob: 94790ce0376a4b88e82d4caa1810399fe2e2a166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# 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
}
|