blob: 76a1a3a0280945c52eab3467cc54a1c287021378 (
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
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/ace/ace-1.2-r1.ebuild,v 1.2 2004/02/03 01:04:05 mr_bones_ Exp $
inherit games
DESCRIPTION="DJ Delorie's Ace of Penguins solitaire games"
HOMEPAGE="http://www.delorie.com/store/ace/"
SRC_URI="http://www.delorie.com/store/ace/${P}.tar.gz"
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND="x11-base/xfree
>=sys-apps/sed-4
media-libs/libpng
sys-libs/zlib
>=sys-devel/libtool-1.3.4"
src_compile() {
egamesconf || die
for f in `grep 1.3.4 * -l` ; do
sed -i -e 's:1.3.4::' ${f} || die "sed ${f} failed"
done
emake || die "emake died (first pass)"
./ltconfig ltmain.sh || die "./ltconfig failed"
emake || die "emake died (second pass)"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog INSTALL NEWS README
rm docs/COPYING
dohtml docs/*
prepgamesdirs
}
|