diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-26 20:16:34 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-26 20:16:34 +0000 |
commit | 38622e4e9d1cd78c320e8180948930014474d495 (patch) | |
tree | 1e8d8eaa381120db10946cdfb3f239af366c42ef | |
parent | adding gstreamer to portage (diff) | |
download | gentoo-2-38622e4e9d1cd78c320e8180948930014474d495.tar.gz gentoo-2-38622e4e9d1cd78c320e8180948930014474d495.tar.bz2 gentoo-2-38622e4e9d1cd78c320e8180948930014474d495.zip |
gst-plugins, plugins for gstreamer
-rw-r--r-- | media-libs/gst-plugins/ChangeLog | 16 | ||||
-rw-r--r-- | media-libs/gst-plugins/files/digest-gst-plugins-0.3.4 | 1 | ||||
-rw-r--r-- | media-libs/gst-plugins/gst-plugins-0.3.4.ebuild | 34 |
3 files changed, 51 insertions, 0 deletions
diff --git a/media-libs/gst-plugins/ChangeLog b/media-libs/gst-plugins/ChangeLog new file mode 100644 index 000000000000..4eca32f49203 --- /dev/null +++ b/media-libs/gst-plugins/ChangeLog @@ -0,0 +1,16 @@ +# ChangeLog for media-libs/gstreamer-plugins + +* gst-plugins-0.3.4 (26 Apr 2002) + 26 apr 2002; Spider <spider@gentoo.org> gst-plugins-0.3.4.ebuild : + update configure + version + libtoolize + + beware of breakage with avifile 0.7 + + +* gst-plugins-0.3.3-r1 (28 Mar 2002) + + 28 Mar 2002; A. Baguinski <artm@v2.nl> gst-plugins-0.3.3-r1.ebuild ChangeLog + + Just started diff --git a/media-libs/gst-plugins/files/digest-gst-plugins-0.3.4 b/media-libs/gst-plugins/files/digest-gst-plugins-0.3.4 new file mode 100644 index 000000000000..33244823550e --- /dev/null +++ b/media-libs/gst-plugins/files/digest-gst-plugins-0.3.4 @@ -0,0 +1 @@ +MD5 9b5c4c987864148a8c37cae076414cef gst-plugins-0.3.4.tar.gz 1519505 diff --git a/media-libs/gst-plugins/gst-plugins-0.3.4.ebuild b/media-libs/gst-plugins/gst-plugins-0.3.4.ebuild new file mode 100644 index 000000000000..ff958c8624f0 --- /dev/null +++ b/media-libs/gst-plugins/gst-plugins-0.3.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Artem Baguinski <artm@v2.nl> +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.4 2002/03/12 16:05:09 tod Exp + +S=${WORKDIR}/${P} +DESCRIPTION="Additional plugins for gstreamer - streaming media framework" +SRC_URI="http://prdownloads.sourceforge.net/gstreamer/${P}.tar.gz" +HOMEPAGE="http://gstreamer.sourceforge.net" + +# required packages +# there are many many optional libraries. features are compiled if the libraries +# are present. most optional libraries are from gnome. +DEPEND=">=media-libs/gstreamer-0.3.4" + +src_compile() { + libtoolize --copy --force + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --sysconfdir=/etc \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING INSTALL README RELEASE TODO +} + +pkg_postinst () { + gst-register +} |