You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-video/bino/bino-1.3.0.ebuild

48 lines
1.1 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/bino/bino-1.3.0.ebuild,v 1.2 2012/10/23 17:19:16 mr_bones_ Exp $
EAPI=3
inherit eutils
DESCRIPTION="Stereoscopic and multi-display media player"
HOMEPAGE="http://bino3d.org/"
SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="lirc"
RDEPEND=">=media-libs/glew-1.5.0
media-libs/openal
x11-libs/qt-gui:4
x11-libs/qt-core:4
x11-libs/qt-opengl:4
>=media-libs/libass-0.9.9
>=virtual/ffmpeg-0.6.90
lirc? ( app-misc/lirc )"
DEPEND="${RDEPEND}"
src_configure() {
if use lirc; then
export liblircclient_CFLAGS="-I/usr/include/lirc" liblircclient_LIBS="-llirc_client"
fi
default
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
# remove installed doc
rm -rf "${D}/usr/share/doc/bino"
# documentation
dodoc AUTHORS ChangeLog INSTALL NEWS README doc/*.png doc/*.jpg
dohtml doc/bino.html
doman doc/bino.1
doinfo doc/bino.info
}