diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-08-04 19:55:06 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-08-04 19:55:06 +0000 |
commit | bed050e323a99c4c25f7cfbe0234beacfc4d125f (patch) | |
tree | e9a27fca2514ff5d63ae12904e0f307d23328076 /media-video/mediainfo | |
parent | Remove old. (diff) | |
download | gentoo-2-bed050e323a99c4c25f7cfbe0234beacfc4d125f.tar.gz gentoo-2-bed050e323a99c4c25f7cfbe0234beacfc4d125f.tar.bz2 gentoo-2-bed050e323a99c4c25f7cfbe0234beacfc4d125f.zip |
Remove old.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'media-video/mediainfo')
-rw-r--r-- | media-video/mediainfo/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/mediainfo/mediainfo-0.7.56.ebuild | 71 |
2 files changed, 4 insertions, 72 deletions
diff --git a/media-video/mediainfo/ChangeLog b/media-video/mediainfo/ChangeLog index 2591f584e219..963d1607b582 100644 --- a/media-video/mediainfo/ChangeLog +++ b/media-video/mediainfo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/mediainfo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/ChangeLog,v 1.55 2012/08/04 10:50:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/ChangeLog,v 1.56 2012/08/04 19:55:06 radhermit Exp $ + + 04 Aug 2012; Tim Harder <radhermit@gentoo.org> -mediainfo-0.7.56.ebuild: + Remove old. 04 Aug 2012; Agostino Sarubbo <ago@gentoo.org> mediainfo-0.7.58.ebuild: Stable for amd64, wrt bug #427592 diff --git a/media-video/mediainfo/mediainfo-0.7.56.ebuild b/media-video/mediainfo/mediainfo-0.7.56.ebuild deleted file mode 100644 index 47e1c91beba1..000000000000 --- a/media-video/mediainfo/mediainfo-0.7.56.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/mediainfo-0.7.56.ebuild,v 1.5 2012/06/18 06:32:32 jdhore Exp $ - -EAPI="4" -WX_GTK_VER="2.8" - -inherit eutils autotools-utils wxwidgets multilib - -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" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="curl mms wxwidgets" - -RDEPEND="sys-libs/zlib - media-libs/libzen - ~media-libs/lib${P}[curl=,mms=] - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -AUTOTOOLS_IN_SOURCE_BUILD=1 - -S="${WORKDIR}/MediaInfo" - -pkg_setup() { - TARGETS="CLI" - use wxwidgets && TARGETS+=" GUI" -} - -src_prepare() { - local target - for target in ${TARGETS}; do - cd "${S}/Project/GNU/${target}" - sed -i -e "s:-O2::" configure.ac - eautoreconf - done -} - -src_configure() { - local target - for target in ${TARGETS}; do - ECONF_SOURCE="${S}/Project/GNU/${target}" - [[ ${target} == "GUI" ]] && local myeconfargs=( --with-wxwidgets --with-wx-gui ) - autotools-utils_src_configure - done -} - -src_compile() { - local target - for target in ${TARGETS}; do - ECONF_SOURCE="${S}/Project/GNU/${target}" - autotools-utils_src_compile - done -} -src_install() { - local target - for target in ${TARGETS}; do - ECONF_SOURCE="${S}/Project/GNU/${target}" - autotools-utils_src_install - dodoc "${S}"/History_${target}.txt - if [[ ${target} == "GUI" ]]; then - newicon "${S}"/Source/Resource/Image/MediaInfo.png ${PN}.png - make_desktop_entry ${PN}-gui MediaInfo ${PN} "AudioVideo;GTK" - fi - done -} |