summaryrefslogtreecommitdiff
path: root/media-video/sonic-snap
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-12-03 16:17:22 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-12-03 16:17:22 +0000
commit4cd2370bed609c118b6edfde5d3f116e5c35b897 (patch)
treeec58f2c41f49754e41521d5ebc9dce4597ddd0a5 /media-video/sonic-snap
parentf443475c824b4b5c086e6d040961cb35ad81bc60 (diff)
gentoo resync : 03.12.2017
Diffstat (limited to 'media-video/sonic-snap')
-rw-r--r--media-video/sonic-snap/Manifest1
-rw-r--r--media-video/sonic-snap/sonic-snap-1.7.ebuild65
2 files changed, 0 insertions, 66 deletions
diff --git a/media-video/sonic-snap/Manifest b/media-video/sonic-snap/Manifest
index 23aa71985c3a..9e132977edb6 100644
--- a/media-video/sonic-snap/Manifest
+++ b/media-video/sonic-snap/Manifest
@@ -1,4 +1,3 @@
DIST sonic-snap-1.7.tar.gz 16760 SHA256 013a1f480d2f205caa2d2ceb8fe82e2af9ed6c86ecca4124760322e4b3dd9e9c SHA512 0c2fe5a7403ac003aad308d064a4d981a25f52e478943125090cb96d337aebe0a9fef160217b4f37cfd1991c0517f5f869f60f4c93a6abe9a127821f7906a664 WHIRLPOOL da2b6dfd37ce5f182619d3f8141cd4d888b26b36ee06b7f7152d3497ab6fd3f54834370cebf58c1422705420bde3d647966ab5860cc542ea52af86060c82e26e
EBUILD sonic-snap-1.7-r1.ebuild 1720 BLAKE2B b17b6d4c5648b77d843fa6eba630a0a3ab51870a87d9fae3edbb886800342e8cc6c2c5c62446094c9a368b9c4cd9008d36175a6f75126cd1fd6c8eb8e2b01d57 SHA512 b986c0b5656afa101fab3254559c0243a583720884300b7be7896a2acd6d0051afcc5f95445ec97a2d2b79cf8fef76bcdb5f7b5573bf2c90a1d3e62786bfbf39
-EBUILD sonic-snap-1.7.ebuild 1676 BLAKE2B 6da3c6a457121ecae71c18083c76a53c6471240e9b0b1235d0aff0f06d3e5b83777206f3c24061e0a2e81165da9b963597849ebd1503f11152ad8795603ed2d6 SHA512 b18244ba1d135865ba5fe647344b7e4c3322b8d013754b311ffbb71a456b23d199e991c43c7e2fddf00ea68e869a5ab9320d239082e7f515d91609494e8fbcbc
MISC metadata.xml 389 BLAKE2B c2aa867a3cfeccc38b53de2725cf6eb4d19732253a83838b7873e59c37ecb115940dc019ef20d0415b54655693a498754a7d2a8b2a56d767f934a906459fc367 SHA512 231e6383dd068d1b4a52f8cee7293a4adb9c7f527f16c1023fb9cb8f8407c758cb694c4166c55b5494eb9ed5fef7a368ed1ccde52210d77cae4cb71901fcbcd8
diff --git a/media-video/sonic-snap/sonic-snap-1.7.ebuild b/media-video/sonic-snap/sonic-snap-1.7.ebuild
deleted file mode 100644
index 48a5f4180085..000000000000
--- a/media-video/sonic-snap/sonic-snap-1.7.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-inherit eutils linux-info multilib toolchain-funcs
-
-DESCRIPTION="Webcam app for sn9c10x based camera controllers (with optional MPEG4 support)"
-HOMEPAGE="http://www.stolk.org/sonic-snap/"
-SRC_URI="http://www.stolk.org/${PN}/downloads/${P}.tar.gz"
-
-LICENSE="GPL-1"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="mpeg"
-
-DEPEND="x11-libs/fltk:1
- mpeg? ( >=media-libs/libfame-0.9.1 )
- sys-libs/zlib
- x11-libs/libXdmcp
- x11-libs/libXau
- x11-libs/libXrender
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXft"
-
-CONFIG_CHECK="~USB_SN9C102"
-ERROR_USB_SN9C102="Please make sure the SN9C1xx PC Camera Controller driver is \
-enabled, under V4L USB devices, as a module in your kernel."
-
-src_prepare() {
- # fix bad assumptions
- sed -i \
- -e "s|\$(HOME)/include|/usr/include|" \
- -e "s|\$(HOME)/lib|/usr/$(get_libdir)|" \
- -e "s|CFLAGS=|CFLAGS= ${CXXFLAGS} |" \
- -e "s|LFLAGS=|LFLAGS= ${LDFLAGS} |" \
- -e "s/g++-4.0 -O3/$(tc-getCXX)/" \
- Makefile
-
- use mpeg || sed -i -e "s?USE_FAME=1?USE_FAME=0?g" Makefile
-}
-
-src_compile() {
- make || die '"make" failed.'
-}
-
-src_install() {
- dodir /usr/bin
- make DESTDIR="${D}" install || die '"make install" failed.'
-
- dodoc ChangeLog README
- doman debian/sonic-snap.1
-}
-
-pkg_postinst() {
-
- elog
- elog "This driver is V4L v2 only, so V4L v1 apps will not work."
- elog "Finally, only a few image sensors are supported, eg, PAS106B"
- elog "so (check dmesg or /var/log/messages for USB device info when"
- elog "you plug the cam in)."
- elog
- elog "Now try sonic-snap-gui /dev/videoX (where X is 0, 1 , etc)."
- elog
-}