# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="F4L is an open source development environment for Macromedia Flash" HOMEPAGE="http://f4l.sourceforge.net/" SRC_URI="http://heanet.dl.sourceforge.net/sourceforge/f4l/F4L-BETA-${PV}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="xinerama" DEPEND=">=x11-libs/qt-3.3.3" S=${WORKDIR}/F4L-BETA src_compile() { local myconf= cd ${S} #Nuking config.cache is needed, otherwise too much trouble rm -f config.cache myconf="${myconf} $(use_with xinerama)" econf ${myconf} || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die }