blob: e0c18976c807b08bf78b2e5b38c07b37e99e859f (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/flam3/flam3-2.7.17.ebuild,v 1.2 2009/05/04 06:56:33 mr_bones_ Exp $
DESCRIPTION="Tools and a library for creating flame fractal images"
HOMEPAGE="http://flam3.com/"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/libxml2
media-libs/libpng
media-libs/jpeg
!<=x11-misc/electricsheep-2.6.8-r2"
RDEPEND="${DEPEND}"
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc README.txt *.flam3 || die "dodoc failed"
}
|