diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-01-30 22:56:14 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-01-30 22:56:14 +0000 |
commit | 797ea5e46798ba5795ea3898ee0a3901ebcf56e1 (patch) | |
tree | 5ceba1055e8ad2ac0db51c53ff7d2b52571b6e06 /media-video/mediainfo | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-797ea5e46798ba5795ea3898ee0a3901ebcf56e1.tar.gz gentoo-2-797ea5e46798ba5795ea3898ee0a3901ebcf56e1.tar.bz2 gentoo-2-797ea5e46798ba5795ea3898ee0a3901ebcf56e1.zip |
Version bump and remove old. Bump to EAPI 3 and remove static USE flag until static linking is fixed.
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'media-video/mediainfo')
-rw-r--r-- | media-video/mediainfo/ChangeLog | 11 | ||||
-rw-r--r-- | media-video/mediainfo/mediainfo-0.7.41.ebuild (renamed from media-video/mediainfo/mediainfo-0.7.37.ebuild) | 33 |
2 files changed, 21 insertions, 23 deletions
diff --git a/media-video/mediainfo/ChangeLog b/media-video/mediainfo/ChangeLog index 422cf35f16cb..d2de3139587b 100644 --- a/media-video/mediainfo/ChangeLog +++ b/media-video/mediainfo/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-video/mediainfo -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/ChangeLog,v 1.9 2010/12/02 12:50:42 hwoarang Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/ChangeLog,v 1.10 2011/01/30 22:56:14 radhermit Exp $ + +*mediainfo-0.7.41 (30 Jan 2011) + + 30 Jan 2011; Tim Harder <radhermit@gentoo.org> -mediainfo-0.7.37.ebuild, + +mediainfo-0.7.41.ebuild: + Version bump and remove old. Bump to EAPI 3 and remove static USE flag until + static linking is fixed. 02 Dec 2010; Markos Chandras <hwoarang@gentoo.org> mediainfo-0.7.36.ebuild: Stable on amd64 wrt bug #347037 diff --git a/media-video/mediainfo/mediainfo-0.7.37.ebuild b/media-video/mediainfo/mediainfo-0.7.41.ebuild index 285c449d8fc7..7ee5d6dee1b3 100644 --- a/media-video/mediainfo/mediainfo-0.7.37.ebuild +++ b/media-video/mediainfo/mediainfo-0.7.41.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/mediainfo-0.7.37.ebuild,v 1.2 2010/11/28 22:01:10 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/mediainfo-0.7.41.ebuild,v 1.1 2011/01/30 22:56:14 radhermit Exp $ -EAPI="2" +EAPI="3" WX_GTK_VER="2.8" inherit autotools wxwidgets multilib @@ -11,26 +11,19 @@ DESCRIPTION="MediaInfo supplies technical and tag information about media files" HOMEPAGE="http://mediainfo.sourceforge.net" SRC_URI="mirror://sourceforge/${PN}/source/${PN}/${PV}/${PN}_${PV}.tar.bz2" -S="${WORKDIR}/MediaInfo" - LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="curl debug libmms static wxwidgets" +IUSE="curl debug libmms wxwidgets" -RDEPEND=" - sys-libs/zlib - !static? ( - media-libs/libzen - ~media-libs/lib${P}[curl=,libmms=] - ) +RDEPEND="sys-libs/zlib + media-libs/libzen + ~media-libs/lib${P}[curl=,libmms=] wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )" DEPEND="${RDEPEND} - dev-util/pkgconfig - static? ( - media-libs/libzen[static-libs] - ~media-libs/lib${P}[curl=,libmms=,static-libs] - )" + dev-util/pkgconfig" + +S="${WORKDIR}/MediaInfo" pkg_setup() { TARGETS="CLI" @@ -52,10 +45,8 @@ src_configure() { econf \ ${myconf} \ --disable-dependency-tracking \ - $(use_enable debug) \ - $(use_enable !static shared) \ - $(use_enable static static) \ - $(use_enable static staticlibs) + --enable-shared \ + $(use_enable debug) done } |