70 lines
1.6 KiB
Bash
70 lines
1.6 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-video/mediainfo/mediainfo-0.7.63.ebuild,v 1.1 2013/06/01 02:00:57 radhermit Exp $
|
|
|
|
EAPI=5
|
|
WX_GTK_VER="2.8"
|
|
|
|
inherit eutils autotools wxwidgets multilib
|
|
|
|
DESCRIPTION="MediaInfo supplies technical and tag information about media files"
|
|
HOMEPAGE="http://mediainfo.sourceforge.net"
|
|
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.bz2"
|
|
|
|
LICENSE="BSD-2"
|
|
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"
|
|
|
|
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
|
|
cd "${S}"/Project/GNU/${target}
|
|
local args=""
|
|
[[ ${target} == "GUI" ]] && args="--with-wxwidgets --with-wx-gui"
|
|
econf ${args}
|
|
done
|
|
}
|
|
|
|
src_compile() {
|
|
local target
|
|
for target in ${TARGETS}; do
|
|
cd "${S}"/Project/GNU/${target}
|
|
default
|
|
done
|
|
}
|
|
src_install() {
|
|
local target
|
|
for target in ${TARGETS}; do
|
|
cd "${S}"/Project/GNU/${target}
|
|
default
|
|
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
|
|
}
|