blob: 19db91d93bca96c9bdd37cf7ad6c65dc6a81956c (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/stickers/stickers-0.1.3.ebuild,v 1.1 2003/09/10 04:51:18 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Stickers Book for small children"
SRC_URI="http://users.powernet.co.uk/kienzle/stickers/${P}.tar.gz"
HOMEPAGE="http://users.powernet.co.uk/kienzle/stickers/"
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/x11
media-libs/imlib
x11-libs/gtk+"
src_compile() {
./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man || die
emake || die
}
src_install () {
make prefix=${D}/usr infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man install || die
}
|