# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="A C++ Library and a script language tool to create Flash (SWF) movies up to version 8." HOMEPAGE="http://sswf.sourceforge.net" SRC_URI="ftp://ftp.m2osw.com/${PN}/beta/${P}-src.tar.bz2" LICENSE="as-is" SLOT="0" KEYWORDS="~x86 ~ppc ~amd64" IUSE="debug examples" RDEPEND="sys-libs/zlib media-libs/jpeg media-libs/freetype sys-devel/flex sys-devel/bison" DEPEND="${RDEPEND} dev-util/pkgconfig" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-int64_t.patch } src_compile() { econf --disable-docs $(use_enable debug) emake || die "emake failed." } src_install () { emake DESTDIR="${D}" install || die "emake install failed." dodoc README.txt doc/{NOTES,TODO,LINKS,AUTHORS,ASC-TODO,CHANGES}.txt rm -f "${D}"/usr/share/${PN}/*.txt use examples || rm -rf "${D}"/usr/share/${PN}/samples }