blob: c83583e81f251564fa13d7326096b295c5a5d97e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/xsfcave/xsfcave-0.5.ebuild,v 1.3 2007/04/24 16:00:21 drizzt Exp $
inherit games
DESCRIPTION="A X11 sfcave clone"
HOMEPAGE="http://xsfcave.idios.org"
SRC_URI="mirror://sourceforge/scrap/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 x86 ~x86-fbsd"
IUSE=""
DEPEND="x11-libs/libXext
x11-libs/libSM"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog THANKS TODO
prepgamesdirs
}
|