diff options
author | 2009-06-28 11:18:54 +0000 | |
---|---|---|
committer | 2009-06-28 11:18:54 +0000 | |
commit | fc1d77bb941fca24d8e7b252e8e84e6e546f1a8e (patch) | |
tree | 73059c025300fe6ebe126af25a165e158d00e4a3 /media-gfx | |
parent | Stable on alpha, bug #270243 (diff) | |
download | gentoo-2-fc1d77bb941fca24d8e7b252e8e84e6e546f1a8e.tar.gz gentoo-2-fc1d77bb941fca24d8e7b252e8e84e6e546f1a8e.tar.bz2 gentoo-2-fc1d77bb941fca24d8e7b252e8e84e6e546f1a8e.zip |
Bump to 0.9.0, fixes #274190
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/swftools/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/swftools/swftools-0.9.0.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/media-gfx/swftools/ChangeLog b/media-gfx/swftools/ChangeLog index 1a65dd459225..805b3dc31b7a 100644 --- a/media-gfx/swftools/ChangeLog +++ b/media-gfx/swftools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/swftools # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/swftools/ChangeLog,v 1.31 2009/05/17 13:57:46 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/swftools/ChangeLog,v 1.32 2009/06/28 11:18:54 patrick Exp $ + +*swftools-0.9.0 (28 Jun 2009) + + 28 Jun 2009; Patrick Lauer <patrick@gentoo.org> +swftools-0.9.0.ebuild: + Bump to 0.9.0, fixes #274190 17 May 2009; Peter Alfredsen <loki_val@gentoo.org> swftools-0.8.1.ebuild: Add blocker w.r.t. bug 230507 diff --git a/media-gfx/swftools/swftools-0.9.0.ebuild b/media-gfx/swftools/swftools-0.9.0.ebuild new file mode 100644 index 000000000000..be6e690daffb --- /dev/null +++ b/media-gfx/swftools/swftools-0.9.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/swftools/swftools-0.9.0.ebuild,v 1.1 2009/06/28 11:18:54 patrick Exp $ + +inherit eutils + +DESCRIPTION="SWF Tools is a collection of SWF manipulation and generation utilities" +HOMEPAGE="http://www.swftools.org/" +SRC_URI="http://www.swftools.org/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=media-libs/t1lib-1.3.1 + media-libs/freetype + media-libs/jpeg + !<media-libs/ming-0.4.0_rc2" +RDEPEND="" + +src_compile() { + econf + + # disable the python interface; there's no configure switch; bug 118242 + echo "all install uninstall clean:" > lib/python/Makefile + + emake +} + +src_install() { + einstall || die "Install died." + dodoc AUTHORS ChangeLog FAQ TODO +} + +pkg_postinst() { + elog + elog "avifile is currently not supported." + elog "Therefore, avi2swf was not installed." + elog +} |