diff options
author | Hanno Boeck <hanno@gentoo.org> | 2010-12-06 23:46:17 +0000 |
---|---|---|
committer | Hanno Boeck <hanno@gentoo.org> | 2010-12-06 23:46:17 +0000 |
commit | 97af540c2b5d304c1287e9bf0ced5dffd72da92e (patch) | |
tree | ffbb2b5d3fcf40dead84b4422cbc6d5e2c24fb49 /media-video/ogmrip/ogmrip-0.13.6.ebuild | |
parent | Add ALSA_CARDS. (diff) | |
download | historical-97af540c2b5d304c1287e9bf0ced5dffd72da92e.tar.gz historical-97af540c2b5d304c1287e9bf0ced5dffd72da92e.tar.bz2 historical-97af540c2b5d304c1287e9bf0ced5dffd72da92e.zip |
ogmrip bump
Package-Manager: portage-2.1.9.25/cvs/Linux x86_64
Diffstat (limited to 'media-video/ogmrip/ogmrip-0.13.6.ebuild')
-rw-r--r-- | media-video/ogmrip/ogmrip-0.13.6.ebuild | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/media-video/ogmrip/ogmrip-0.13.6.ebuild b/media-video/ogmrip/ogmrip-0.13.6.ebuild new file mode 100644 index 000000000000..9d3e93985a5a --- /dev/null +++ b/media-video/ogmrip/ogmrip-0.13.6.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/ogmrip/ogmrip-0.13.6.ebuild,v 1.1 2010/12/06 23:46:17 hanno Exp $ + +EAPI=2 +GCONF_DEBUG=no +inherit eutils gnome2 + +DESCRIPTION="Graphical frontend and libraries for ripping DVDs and encoding to AVI/OGM/MKV/MP4" +HOMEPAGE="http://ogmrip.sourceforge.net/" +SRC_URI="mirror://sourceforge/ogmrip/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="aac dbus dts gtk libnotify matroska mp3 mp4 nls ogm spell srt theora vorbis x264 xvid" + +COMMON_DEPEND=">=dev-libs/glib-2.16:2 + >=app-i18n/enca-1.9 + dev-libs/libxml2 + media-libs/libdvdread + >=media-video/mplayer-1.0_rc2[dvd,encode,xvid?,dts?,x264?] + aac? ( >=media-libs/faac-1.24 ) + gtk? ( + >=x11-libs/gtk+-2.12:2 + gnome-base/libglade + gnome-base/gconf + dbus? ( dev-libs/dbus-glib ) + libnotify? ( >=x11-libs/libnotify-0.4.3 ) + media-video/mplayer[jpeg] + ) + matroska? ( media-video/mkvtoolnix ) + mp3? ( media-sound/lame ) + mp4? ( >=media-video/gpac-0.4.2 ) + ogm? ( media-sound/ogmtools ) + spell? ( >=app-text/enchant-1.1.0 ) + srt? ( || + ( + ( >=app-text/tesseract-2 media-libs/tiff ) + >=app-text/gocr-0.39 + >=app-text/ocrad-0.15 + ) + media-libs/libpng ) + theora? ( media-libs/libtheora ) + vorbis? ( media-sound/vorbis-tools )" +RDEPEND="${COMMON_DEPEND} + gnome-base/gvfs" +DEPEND="${COMMON_DEPEND} + nls? ( sys-devel/gettext + dev-util/intltool ) + dev-util/pkgconfig" + +pkg_setup() { + DOCS="AUTHORS ChangeLog README TODO" + + G2CONF="--disable-dependency-tracking + --disable-static + $(use_enable gtk gtk-support) + $(use_enable dbus dbus-support) + $(use_enable spell enchant-support) + $(use_enable ogm ogm-support) + $(use_enable matroska mkv-support) + $(use_enable mp4 mp4-support) + $(use_enable xvid xvid-support) + $(use_enable x264 x264-support) + $(use_enable theora theora-support) + $(use_enable vorbis vorbis-support) + $(use_enable mp3 mp3-support) + $(use_enable aac aac-support) + $(use_enable srt srt-support) + $(use_enable libnotify libnotify-support) + $(use_enable nls) + --with-html-dir=/usr/share/doc/${PF}/html" +} + +src_prepare() { + sed -i \ + -e '/DISABLE_DEPRECATED/d' \ + configure || die + + gnome2_src_prepare +} + +src_install() { + # bug #317607 + MAKEOPTS="${MAKEOPTS} -j1" \ + gnome2_src_install + find "${D}" -name '*.la' -delete +} |