blob: 99bab7caf1861d8f0204c0bf03236b1cadde54ac (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/swftools/swftools-0.5.0-r1.ebuild,v 1.3 2004/04/27 21:49:06 agriffis Exp $
inherit eutils
DESCRIPTION="SWF Tools is a collection of SWF manipulation and generation utilities"
HOMEPAGE="http://www.quiss.org/swftools/"
SRC_URI="http://www.quiss.org/swftools/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="avi"
DEPEND=">=media-libs/t1lib-1.3.1
media-libs/freetype
media-libs/jpeg
avi? ( =avifile-0.7.37.20030522-r2 )"
RDEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/swftools-0.5.0-font.patch
}
src_compile() {
econf || die "Configure failed."
emake || die "Make failed."
}
src_install() {
einstall || die "Install died."
dodoc AUTHORS COPYING ChangeLog FAQ INSTALL TODO
}
|