public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/ming: ChangeLog ming-0.4.0_beta5.ebuild
@ 2008-06-25 17:25 Peter Alfredsen (loki_val)
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-06-25 17:25 UTC (permalink / raw
  To: gentoo-commits

loki_val    08/06/25 17:25:38

  Modified:             ChangeLog
  Added:                ming-0.4.0_beta5.ebuild
  Log:
  Bump, solving 222321. This version radically improves Flash compilation. Dropped keywords for arm, mips, sh and s390 due to new swig dep, see bug 229423.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)

Revision  Changes    Path
1.36                 media-libs/ming/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	9 Jun 2008 07:32:07 -0000	1.35
+++ ChangeLog	25 Jun 2008 17:25:37 -0000	1.36
@@ -1,6 +1,14 @@
 # ChangeLog for media-libs/ming
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.35 2008/06/09 07:32:07 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.36 2008/06/25 17:25:37 loki_val Exp $
+
+*ming-0.4.0_beta5 (25 Jun 2008)
+
+  25 Jun 2008; Peter Alfredsen <loki_val@gentoo.org>
+  +ming-0.4.0_beta5.ebuild:
+  Bump, solving 222321. This version radically improves Flash compilation.
+  Dropped keywords for arm, mips, sh and s390 due to new swig dep, see bug
+  229423.
 
 *ming-0.3.0-r1 (09 Jun 2008)
 



1.1                  media-libs/ming/ming-0.4.0_beta5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?rev=1.1&content-type=text/plain

Index: ming-0.4.0_beta5.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild,v 1.1 2008/06/25 17:25:37 loki_val Exp $

EAPI=1

PHP_EXT_NAME=ming

inherit eutils multilib php-ext-source-r1 perl-module distutils python

KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
DESCRIPTION="An Open Source library for Flash movie generation."
HOMEPAGE="http://ming.sourceforge.net/"
SRC_URI="mirror://sourceforge/ming/${P/_/.}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="+perl +python php"
RDEPEND="perl? ( dev-lang/perl )
	python? ( virtual/python )
	media-libs/freetype
	media-libs/libpng
	media-libs/giflib
	sys-libs/zlib
	!media-libs/libswf"
DEPEND="${DEPEND}
	>=dev-lang/swig-1.3.35
	sys-devel/flex"

S=${WORKDIR}/${P/_/.}

src_unpack() {
	unpack ${A}
	cd "${S}"

	#We need to do this with Swig >=1.3.35, or the tests will
	#fail for the python extension using gcc-4.3.
	#probably some aliasing issue with gcc-4.3*

	pushd py_ext &> /dev/null
	swig -I.. -python ming.i
	popd &> /dev/null

	#Let's get rid of the TEXTRELS, link dynamic.
	sed -i \
		-e 's/libming.a/libming.so/' \
		perl_ext/Makefile.PL
}

src_compile() {
	econf	$(use_enable perl) \
		$(use_enable python) || die "econf failed"
	emake -j1 DESTDIR="${D}" || die "emake failed"
	if use php
	then
		cd "${S}"/php_ext
		myconf="--disable-rpath
			--disable-static
			--with-ming"
		php-ext-source-r1_src_compile
	fi

}

src_test() {
	make check || die "tests failed"
}

src_install() {
	make DESTDIR="${D}" install

	fixlocalpod

	#Get rid of the precompiled stuff, we generate it later.
	rm -f $(find "${D}" -name '*.pyc')

	if use php
	then
		cd "${S}"/php_ext
		php-ext-source-r1_src_install
	fi
}

pkg_postinst() {
	if use perl
	then
		perl-module_pkg_postinst
	fi
	if use python
	then
		ebegin "Compiling ming.py"
		python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/ming.py || die "ming.py failed"
		eend $?
		ebegin "Compiling mingc.py"
		python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/mingc.py || die "mingc.py failed"
		eend $?
	fi
}

pkg_prerm() {
	if use perl
	then
		perl-module_pkg_prerm
	fi
}

pkg_postrm() {
	if use perl
	then
		perl-module_pkg_postrm
	fi
	if use python
	then
		distutils_pkg_postrm
	fi
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/ming: ChangeLog ming-0.4.0_beta5.ebuild
@ 2008-06-27 23:06 Peter Alfredsen (loki_val)
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-06-27 23:06 UTC (permalink / raw
  To: gentoo-commits

loki_val    08/06/27 23:06:52

  Modified:             ChangeLog ming-0.4.0_beta5.ebuild
  Log:
  Eautoreconf to fix as-needed issues. Bug 229777.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)

Revision  Changes    Path
1.38                 media-libs/ming/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	25 Jun 2008 17:29:42 -0000	1.37
+++ ChangeLog	27 Jun 2008 23:06:52 -0000	1.38
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/ming
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.37 2008/06/25 17:29:42 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.38 2008/06/27 23:06:52 loki_val Exp $
+
+  27 Jun 2008; Peter Alfredsen <loki_val@gentoo.org>
+  ming-0.4.0_beta5.ebuild:
+  Eautoreconf to fix as-needed issues. Bug 229777.
 
   25 Jun 2008; Peter Alfredsen <loki_val@gentoo.org> metadata.xml:
   Adding myself as maintainer. I seem to care most.



1.2                  media-libs/ming/ming-0.4.0_beta5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?r1=1.1&r2=1.2

Index: ming-0.4.0_beta5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ming-0.4.0_beta5.ebuild	25 Jun 2008 17:25:37 -0000	1.1
+++ ming-0.4.0_beta5.ebuild	27 Jun 2008 23:06:52 -0000	1.2
@@ -1,12 +1,12 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild,v 1.1 2008/06/25 17:25:37 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild,v 1.2 2008/06/27 23:06:52 loki_val Exp $
 
 EAPI=1
 
 PHP_EXT_NAME=ming
 
-inherit eutils multilib php-ext-source-r1 perl-module distutils python
+inherit eutils autotools multilib php-ext-source-r1 perl-module distutils python
 
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 DESCRIPTION="An Open Source library for Flash movie generation."
@@ -44,6 +44,7 @@
 	sed -i \
 		-e 's/libming.a/libming.so/' \
 		perl_ext/Makefile.PL
+	eautoreconf
 }
 
 src_compile() {



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/ming: ChangeLog ming-0.4.0_beta5.ebuild
@ 2008-06-29 16:51 Peter Alfredsen (loki_val)
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-06-29 16:51 UTC (permalink / raw
  To: gentoo-commits

loki_val    08/06/29 16:51:01

  Modified:             ChangeLog ming-0.4.0_beta5.ebuild
  Log:
  AT_M4DIR needs to be set for those who do not have autoconf-archive installed....
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)

Revision  Changes    Path
1.40                 media-libs/ming/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	29 Jun 2008 10:16:53 -0000	1.39
+++ ChangeLog	29 Jun 2008 16:51:01 -0000	1.40
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/ming
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.39 2008/06/29 10:16:53 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.40 2008/06/29 16:51:01 loki_val Exp $
+
+  29 Jun 2008; Peter Alfredsen <loki_val@gentoo.org>
+  ming-0.4.0_beta5.ebuild:
+  AT_M4DIR needs to be set for those who do not have autoconf-archive
+  installed....
 
   29 Jun 2008; Torsten Veller <tove@gentoo.org> ming-0.3.0-r1.ebuild:
   Add missing die: || "..." -> || die "..."



1.3                  media-libs/ming/ming-0.4.0_beta5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild?r1=1.2&r2=1.3

Index: ming-0.4.0_beta5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ming-0.4.0_beta5.ebuild	27 Jun 2008 23:06:52 -0000	1.2
+++ ming-0.4.0_beta5.ebuild	29 Jun 2008 16:51:01 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild,v 1.2 2008/06/27 23:06:52 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.0_beta5.ebuild,v 1.3 2008/06/29 16:51:01 loki_val Exp $
 
 EAPI=1
 
@@ -44,7 +44,7 @@
 	sed -i \
 		-e 's/libming.a/libming.so/' \
 		perl_ext/Makefile.PL
-	eautoreconf
+	AT_M4DIR="macros" eautoreconf
 }
 
 src_compile() {



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-06-29 16:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-29 16:51 [gentoo-commits] gentoo-x86 commit in media-libs/ming: ChangeLog ming-0.4.0_beta5.ebuild Peter Alfredsen (loki_val)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-27 23:06 Peter Alfredsen (loki_val)
2008-06-25 17:25 Peter Alfredsen (loki_val)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox