-DIST gnonlin-0.10.17.tar.bz2 468711 BLAKE2B 2546b27bb4ad6750a57797491e5244adeead493515e1057382f59291fbb9470d89021217a3a2a9f440eec7ad459db4741e8fb3067f821f3ba9d9baa5f0117614 SHA512 e7e7c7999a1886641cf327ad75ba63171c2f9e74fe7a18c4e7c0a5ca69ea3926d4de21f92b01c7896591d2fb48a5c040be2fe05d4d8d43237948c9fe8e4d0f74
DIST gnonlin-1.4.0.tar.xz 404096 BLAKE2B 858f6813470893dfdd9c92d8ea84d11c511e92033588e9de2e849806727b80b9be84f0fa08265f5cd98bd701108c18f3f4fc423cc74aa4426cd2e221222a1443 SHA512 22734a8cbc648811467a3a161fdf86997fff682007b57849b253618663d30996a787734df8caff56f0b4b24e98f8cbd073d4c48557b8d09091ab27b72851b055
+++ /dev/null
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-DESCRIPTION="Gnonlin is a set of GStreamer elements to ease the creation of non-linear multimedia editors"
-HOMEPAGE="http://gnonlin.sourceforge.net"
-SRC_URI="https://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0.10"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-
-RDEPEND=">=media-libs/gstreamer-0.10.30:0.10
- >=media-libs/gst-plugins-base-0.10.30:0.10"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( || (
- >=dev-util/gtk-doc-am-1.13
- >=dev-util/gtk-doc-1.3 ) )
- test? ( dev-libs/check
- media-libs/gst-plugins-good:0.10 )" # videomixer
-
-src_configure() {
- econf \
- $(use_enable doc gtk-doc) \
- $(use_enable doc docbook)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
- dodoc AUTHORS ChangeLog NEWS README RELEASE
-
- # For some reason, make install doesn't do this
- if use doc; then
- local htmldir="/usr/share/gtk-doc/html"
- cd "${S}/docs/libs/html"
- gtkdoc-rebase --html-dir=${htmldir} || die "gtkdoc-rebase failed"
- insinto "${htmldir}/gnonlin"
- doins "${S}"/docs/libs/html/* || die "doins docs failed"
- fi
-}