diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-03-15 15:04:15 +0800 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-03-15 15:04:15 +0800 |
commit | 5d12d1b768a8356c3e60961078e324368e691c7c (patch) | |
tree | bf0b10b1d3601576637bd8db0642005546833f2c /media-libs | |
parent | [dev-python/pygtk-shell] Unfetchable, upstream gone (diff) | |
download | sunrise-5d12d1b768a8356c3e60961078e324368e691c7c.tar.gz sunrise-5d12d1b768a8356c3e60961078e324368e691c7c.tar.bz2 sunrise-5d12d1b768a8356c3e60961078e324368e691c7c.zip |
Punting unicap and related things as they are broken
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/ucil/ChangeLog | 15 | ||||
-rw-r--r-- | media-libs/ucil/Manifest | 5 | ||||
-rw-r--r-- | media-libs/ucil/files/libpng14.patch | 39 | ||||
-rw-r--r-- | media-libs/ucil/metadata.xml | 7 | ||||
-rw-r--r-- | media-libs/ucil/ucil-0.9.8.ebuild | 51 | ||||
-rw-r--r-- | media-libs/unicap/ChangeLog | 23 | ||||
-rw-r--r-- | media-libs/unicap/Manifest | 4 | ||||
-rw-r--r-- | media-libs/unicap/metadata.xml | 11 | ||||
-rw-r--r-- | media-libs/unicap/unicap-0.9.8.ebuild | 48 | ||||
-rw-r--r-- | media-libs/unicapgtk/ChangeLog | 15 | ||||
-rw-r--r-- | media-libs/unicapgtk/Manifest | 4 | ||||
-rw-r--r-- | media-libs/unicapgtk/metadata.xml | 6 | ||||
-rw-r--r-- | media-libs/unicapgtk/unicapgtk-0.9.8.ebuild | 35 |
13 files changed, 0 insertions, 263 deletions
diff --git a/media-libs/ucil/ChangeLog b/media-libs/ucil/ChangeLog deleted file mode 100644 index 2a1f8f8ad..000000000 --- a/media-libs/ucil/ChangeLog +++ /dev/null @@ -1,15 +0,0 @@ -# ChangeLog for media-libs/ucil -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 10 Jul 2010; Michał Górny (sedzimir) <mgorny.3ehbo@mailnull.com> - metadata.xml: - Update <herd/>. - - 22 May 2010; Matt Whitlock (whitslack) <matt@whitlock.name> - +files/libpng14.patch, +ucil-0.9.8.ebuild, +metadata.xml: - new ebuild: media-libs/ucil-0.9.8 (bug 175881) - - Note: Upstream split the unicap library into three parts. This is one of - them, along with media-libs/unicap and media-libs/unicapgtk. - diff --git a/media-libs/ucil/Manifest b/media-libs/ucil/Manifest deleted file mode 100644 index ab4e44331..000000000 --- a/media-libs/ucil/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX libpng14.patch 1382 RMD160 d5b3e435a3c98060a85c2fe9d6f6568044a7bd9b SHA1 370d3dbc4c6473627e87222523a3b6549f02b0d9 SHA256 b15de9ac7affae133cc68482145ca3fc383cc58b7e8abc5232d95215ccd091a9 -DIST libucil-0.9.8.tar.gz 450809 RMD160 03c416388f302c1d260fc77edaa6d00e8ef177d3 SHA1 1a03ba08e511a379e59ff38350f6075a87daf30c SHA256 1d3b73bb7a88084b4eea92f2e1c57b36159a66aef68098e9cbe19f98910d1018 -EBUILD ucil-0.9.8.ebuild 1297 RMD160 87ee306f25b66d95bff7e845dfe3cd14b9d596ab SHA1 2764b93d2e6accf2941715480020d3919551dcf0 SHA256 cb5d08f0edd6161b54d376214da5c766cf28deeadd80b90a06a5c9810def0dbd -MISC ChangeLog 533 RMD160 dcfe78b7191dbb48a859e4d98ba253a8befe621a SHA1 77fe7c311a56507e0e623106fd18a6f6bfdb2fc9 SHA256 7cc1d0333b4f8cf16280e48f97a9c5e9a8281a5fb9d58d7287116ebc1e048076 -MISC metadata.xml 349 RMD160 94b02fb09d6d860ae21965ee7cf952038e80f455 SHA1 3ee23490584fc71621198fe51bce06450224ee88 SHA256 0f5a1f4856a24217d05931650891637eaeae1e2eb5de799b65a19dbfd68008db diff --git a/media-libs/ucil/files/libpng14.patch b/media-libs/ucil/files/libpng14.patch deleted file mode 100644 index c579c9dcf..000000000 --- a/media-libs/ucil/files/libpng14.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -Naur src.old/ucil_png.c src/ucil_png.c ---- src.old/ucil_png.c 2010-01-17 07:49:29.000000000 +0000 -+++ src/ucil_png.c 2010-05-22 10:35:55.090733124 +0000 -@@ -77,7 +77,7 @@ - if (info_ptr == NULL) - { - fclose(fp); -- png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL); -+ png_destroy_read_struct(&png_ptr, NULL, NULL); - return( -1 ); - } - -@@ -89,7 +89,7 @@ - if (setjmp(png_jmpbuf(png_ptr))) - { - /* Free all of the memory associated with the png_ptr and info_ptr */ -- png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); -+ png_destroy_read_struct(&png_ptr, &info_ptr, NULL); - fclose(fp); - /* If we get here, we had a problem reading the file */ - return( -1 ); -@@ -109,7 +109,7 @@ - * adjustment), then you can read the entire image (including - * pixels) into the info structure with this call: - */ -- png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, png_voidp_NULL); -+ png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL); - - /* At this point you have read the entire image */ - -@@ -174,7 +174,7 @@ - } - - /* clean up after the read, and free any memory allocated - REQUIRED */ -- png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); -+ png_destroy_read_struct(&png_ptr, &info_ptr, NULL); - - /* close the file */ - fclose(fp); diff --git a/media-libs/ucil/metadata.xml b/media-libs/ucil/metadata.xml deleted file mode 100644 index 4b839da19..000000000 --- a/media-libs/ucil/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer> - <longdescription>The ucil library provides easy-to-use functions to render - text and graphic overlays onto video images.</longdescription> -</pkgmetadata> diff --git a/media-libs/ucil/ucil-0.9.8.ebuild b/media-libs/ucil/ucil-0.9.8.ebuild deleted file mode 100644 index cf461120b..000000000 --- a/media-libs/ucil/ucil-0.9.8.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 - -inherit eutils - -DESCRIPTION="Overlays text and graphics on video images" -HOMEPAGE="http://unicap-imaging.org/" -SRC_URI="http://unicap-imaging.org/downloads/lib${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="alsa debug doc nls png theora" - -RDEPEND="dev-libs/glib:2 - ~media-libs/unicap-${PV} - x11-libs/pango - alsa? ( media-libs/alsa-lib ) - nls? ( virtual/libintl ) - png? ( media-libs/libpng ) - theora? ( media-libs/libtheora )" -DEPEND="${RDEPEND} - doc? ( dev-util/gtk-doc )" - -S=${WORKDIR}/lib${P} - -src_prepare() { - # patch submitted upstream at https://bugs.launchpad.net/unicap/+bug/584164 - epatch "${FILESDIR}/libpng14.patch" -} - -src_configure() { - # The Unicap author recommended leaving avcodec (ffmpeg) support disabled: - # http://unicap-imaging.org/blog/index.php?/archives/20-Unicap-0.9.3-and-UCView-0.22-released.html#c46 - - econf --disable-ucil-avcodec \ - $(use_enable alsa ucil-alsa) \ - $(use_enable debug debug-ucil) \ - $(use_enable doc gtk-doc) \ - $(use_enable nls) \ - $(use_enable png ucil-png) \ - $(use_enable theora ucil-theora) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README || die -} diff --git a/media-libs/unicap/ChangeLog b/media-libs/unicap/ChangeLog deleted file mode 100644 index dbc6ba84e..000000000 --- a/media-libs/unicap/ChangeLog +++ /dev/null @@ -1,23 +0,0 @@ -# ChangeLog for media-libs/unicap -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 03 Dec 2011; Markos Chandras <hwoarang@gentoo.org> ChangeLog: - Drop v4l2 useflag and make v4l behave like v4l2 - - 22 May 2010; Matt Whitlock (whitslack) <matt@whitlock.name> - -unicap-0.9.7.ebuild, +unicap-0.9.8.ebuild, metadata.xml: - new version: media-libs/unicap-0.9.8 (bug 175881) - - Note: Upstream split the unicap library into three parts. This is one of - them, along with media-libs/unicapgtk and media-libs/ucil. - - 14 Oct 2009; Matt Whitlock (whitslack) <matt@whitlock.name> - -unicap-0.9.3.ebuild, +unicap-0.9.7.ebuild: - version bump to media-libs/unicap-0.9.7, added doc USE flag, added missing - dependencies - - 03 Mar 2009; Matt Whitlock (whitslack) <matt@whitlock.name> - +unicap-0.9.3.ebuild, +metadata.xml: - New ebuild for media-libs/unicap-0.9.3 (bug #175881) - diff --git a/media-libs/unicap/Manifest b/media-libs/unicap/Manifest deleted file mode 100644 index 30cd420e0..000000000 --- a/media-libs/unicap/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST libunicap-0.9.8.tar.gz 567118 RMD160 ef823e8ee639a3ef1c76e58627dc3b0c4a2af4e9 SHA1 4d3b46c454a362d1894ddb8cfaee4129072f9c60 SHA256 3057867c7259b500c058fe9ee8dd44adebed3241bdaf6ff0114b9627602f7860 -EBUILD unicap-0.9.8.ebuild 1240 RMD160 0f276a707629e3674786da15123c946911d95556 SHA1 5b7b031188a5561179bfcf35a8998a962ab5e0ab SHA256 b3b13f13f1836e68385273d320c552bd5cd7300a046ad5384827b880f910493a -MISC ChangeLog 905 RMD160 e68915b344f2eb6121a6c72caa90f11d937c52ca SHA1 8e59c5460cec9154406b974f19b2cfbdd53366e3 SHA256 00fe65397900feccf16b4b71553def47ae0870127a85dc5321a223c8176bdfa0 -MISC metadata.xml 480 RMD160 457deafee2b775229214b67f6924271d5a3e28ac SHA1 40b98e8db84715d9962556e8f20f31a3e8827621 SHA256 a4df5abe7495193788df715c3e8747796c58085acc5d84dedbfb1ab2d2832cb6 diff --git a/media-libs/unicap/metadata.xml b/media-libs/unicap/metadata.xml deleted file mode 100644 index f1ad57f22..000000000 --- a/media-libs/unicap/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer> - <longdescription>unicap provides a uniform interface to video capture - devices. It allows applications to use any supported video capture device - via a single API.</longdescription> - <use> - <flag name="libv4l">Use libv4l to communicate with v4l2 devices</flag> - </use> -</pkgmetadata> diff --git a/media-libs/unicap/unicap-0.9.8.ebuild b/media-libs/unicap/unicap-0.9.8.ebuild deleted file mode 100644 index 1d644e84a..000000000 --- a/media-libs/unicap/unicap-0.9.8.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 - -DESCRIPTION="The uniform API for image acquisition devices" -HOMEPAGE="http://unicap-imaging.org/" -SRC_URI="http://unicap-imaging.org/downloads/lib${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc ieee1394 libv4l nls threads v4l" - -RDEPEND="ieee1394? ( sys-libs/libraw1394 ) - nls? ( virtual/libintl ) - v4l? ( libv4l? ( media-libs/libv4l ) )" -DEPEND="${RDEPEND} - doc? ( dev-util/gtk-doc )" - -S=${WORKDIR}/lib${P} - -src_configure() { - local -a myconf - - if use debug ; then - # thing is presently broken (sloppy upstream) - #myconf=( --enable-thing ) - myconf+=( --enable-debug-unicap --enable-debug-ucil --enable-debug-thing ) - use ieee1394 && myconf+=( --enable-debug-dcam --enable-debug-vid21394 ) - use v4l && myconf+=( --enable-debug-v4l2 ) - fi - - econf "${myconf[@]}" \ - $(use_enable doc gtk-doc) \ - $(use_enable ieee1394 dcam) \ - $(use_enable ieee1394 vid21394) \ - $(use_enable libv4l ) \ - $(use_enable nls) \ - $(use_enable threads unicap-threads) \ - $(use_enable v4l v4l2) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README || die -} diff --git a/media-libs/unicapgtk/ChangeLog b/media-libs/unicapgtk/ChangeLog deleted file mode 100644 index ccdf36d7a..000000000 --- a/media-libs/unicapgtk/ChangeLog +++ /dev/null @@ -1,15 +0,0 @@ -# ChangeLog for media-libs/unicapgtk -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 10 Jul 2010; Michał Górny (sedzimir) <mgorny.3ehbo@mailnull.com> - metadata.xml: - Update <herd/>. - - 22 May 2010; Matt Whitlock (whitslack) <matt@whitlock.name> - +unicapgtk-0.9.8.ebuild, +metadata.xml: - new ebuild: media-libs/unicapgtk-0.9.8 (bug 175881) - - Note: Upstream split the unicap library into three parts. This is one of - them, along with media-libs/unicap and media-libs/ucil. - diff --git a/media-libs/unicapgtk/Manifest b/media-libs/unicapgtk/Manifest deleted file mode 100644 index d0d925a61..000000000 --- a/media-libs/unicapgtk/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST libunicapgtk-0.9.8.tar.gz 444190 RMD160 edcb8424a7f9e49894a126744e2baef26ccfa02d SHA1 03ccc74f605a8b9b4dd360f6f67f08db00627611 SHA256 fc6249058279adde3a20aab6e506463baf1d1f05cf5369ad4a858a3c5b5885a6 -EBUILD unicapgtk-0.9.8.ebuild 745 RMD160 65cd5fa687da120206563b01233c3a7772a2091d SHA1 c3332fbf608a7c64f10422c8ea3237bf9a99eedc SHA256 fa03337c8fbddfa1f9ad991d15c7afd2e07e9ba0a57bafc341de72d97ba91be3 -MISC ChangeLog 520 RMD160 4203f8a0936bfdedd122ca618667a6f82495397c SHA1 07f46b3741e66cbb6d31385674a569255b45765f SHA256 f4bf0178922359d540a8e5125e482f66e5edcee98dc9224597d5195197c5aea9 -MISC metadata.xml 294 RMD160 fdf9a66fcbd458e7270afb39206e6e6f6eed82e6 SHA1 856b32af5ec29b90b5a2bf1e6c8cebe0fbadfdd3 SHA256 b5cfccc1539ce63c3e33d3799f801df92742f90ea298239d7954021d647e8d48 diff --git a/media-libs/unicapgtk/metadata.xml b/media-libs/unicapgtk/metadata.xml deleted file mode 100644 index 426cbe664..000000000 --- a/media-libs/unicapgtk/metadata.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer> - <longdescription>GTK2 widget for the unicap video capture library</longdescription> -</pkgmetadata> diff --git a/media-libs/unicapgtk/unicapgtk-0.9.8.ebuild b/media-libs/unicapgtk/unicapgtk-0.9.8.ebuild deleted file mode 100644 index e08237bbf..000000000 --- a/media-libs/unicapgtk/unicapgtk-0.9.8.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 - -DESCRIPTION="GTK2 widget for the unicap video capture library" -HOMEPAGE="http://unicap-imaging.org/" -SRC_URI="http://unicap-imaging.org/downloads/lib${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc nls" - -RDEPEND="~media-libs/unicap-${PV} - x11-libs/gtk+:2 - x11-libs/libXv - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - doc? ( dev-util/gtk-doc )" - -S=${WORKDIR}/lib${P} - -src_configure() { - econf \ - $(use_enable debug debug-unicapgtk) \ - $(use_enable doc gtk-doc) \ - $(use_enable nls) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README || die -} |