blob: 4f21ec94a8d87cc085a098fe230b75ddedc45240 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild,v 1.10 2004/07/21 20:14:47 mr_bones_ Exp $
DESCRIPTION="DFBPoint is presentation program based on DirectFB"
HOMEPAGE="http://www.directfb.org/dfbpoint.xml"
SRC_URI="http://www.directfb.org/download/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 -sparc"
IUSE=""
DEPEND="virtual/libc
dev-libs/DirectFB"
src_install () {
make DESTDIR=${D} install || die "make install failed"
dodir /usr/share/DFBPoint/
cp dfbpoint.dtd ${D}/usr/share/DFBPoint/ || die "cp failed"
dodoc AUTHORS ChangeLog INSTALL README NEWS
dodir /usr/share/DFBPoint/examples/
cd examples
cp bg.png bullet.png decker.ttf test.xml wilber_stoned.png \
${D}/usr/share/DFBPoint/examples/ || die "cp failed"
cp -R guadec/ ${D}/usr/share/DFBPoint/examples/ || die "cp failed"
}
|