diff options
author | Zack Welch <zwelch@gentoo.org> | 2002-10-23 09:29:03 +0000 |
---|---|---|
committer | Zack Welch <zwelch@gentoo.org> | 2002-10-23 09:29:03 +0000 |
commit | 3a167f508a772b6aa5af94c98ba2a32b7c429507 (patch) | |
tree | 6241d9218c1e94a854fd7e04bf558ffba0334654 /media-video/usb-pwcx | |
parent | valgrind version bump (diff) | |
download | gentoo-2-3a167f508a772b6aa5af94c98ba2a32b7c429507.tar.gz gentoo-2-3a167f508a772b6aa5af94c98ba2a32b7c429507.tar.bz2 gentoo-2-3a167f508a772b6aa5af94c98ba2a32b7c429507.zip |
add new ebuild, media-video/usb-pwcx, see bug 7086
Diffstat (limited to 'media-video/usb-pwcx')
-rw-r--r-- | media-video/usb-pwcx/ChangeLog | 11 | ||||
-rw-r--r-- | media-video/usb-pwcx/files/digest-usb-pwcx-8.2.2 | 1 | ||||
-rw-r--r-- | media-video/usb-pwcx/files/usb-pwcx | 4 | ||||
-rw-r--r-- | media-video/usb-pwcx/usb-pwcx-8.2.2.ebuild | 31 |
4 files changed, 47 insertions, 0 deletions
diff --git a/media-video/usb-pwcx/ChangeLog b/media-video/usb-pwcx/ChangeLog new file mode 100644 index 000000000000..1451109718d8 --- /dev/null +++ b/media-video/usb-pwcx/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for media-video/w3cam +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/usb-pwcx/ChangeLog,v 1.1 2002/10/23 09:29:03 zwelch Exp $ + +*usb-pwcx-8.2.2 (25 Aug 2002) + + 25 Aug 2002; Burton Samograd <kruhft@kruhft.dyndns.org> ChangeLog, + usb-pwcx-8.2.2.ebuild, files/digest-usb-pwcx-8.2.2 : + New ebuild. usb-pwcx is a set of binary only drivers for Phillips + USB webcams that allows for higher resolution and frame rates. + diff --git a/media-video/usb-pwcx/files/digest-usb-pwcx-8.2.2 b/media-video/usb-pwcx/files/digest-usb-pwcx-8.2.2 new file mode 100644 index 000000000000..ca507279cddc --- /dev/null +++ b/media-video/usb-pwcx/files/digest-usb-pwcx-8.2.2 @@ -0,0 +1 @@ +MD5 ea881b3fcef06acacd98054a65cb41d8 usb-pwcx-8.2.2.tar.gz 22540 diff --git a/media-video/usb-pwcx/files/usb-pwcx b/media-video/usb-pwcx/files/usb-pwcx new file mode 100644 index 000000000000..f988394ed819 --- /dev/null +++ b/media-video/usb-pwcx/files/usb-pwcx @@ -0,0 +1,4 @@ +# USB pwcx-i386 kernel modules configuration file + +post-install pwc /sbin/insmod --force /lib/modules/usb/pwcx-i386.o >& /dev/null 2>&1 || : + diff --git a/media-video/usb-pwcx/usb-pwcx-8.2.2.ebuild b/media-video/usb-pwcx/usb-pwcx-8.2.2.ebuild new file mode 100644 index 000000000000..21ccdfbe1e7d --- /dev/null +++ b/media-video/usb-pwcx/usb-pwcx-8.2.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/usb-pwcx/usb-pwcx-8.2.2.ebuild,v 1.1 2002/10/23 09:29:03 zwelch Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Optional closed source drivers for phillips webcams to allow for higher resoltions and framerates " +SRC_URI="http://www.smcc.demon.nl/webcam/usb-pwcx-8.2.2.tar.gz" +HOMEPAGE="http://www.smcc.demon.nl/webcam/" +SLOT="0" +LICENSE="freedist" +KEYWORDS="~x86 -ppc -sparc -sparc64 -alpha" +DEPEND="" + +src_install() { + insinto "/lib/modules/usb" + doins pwcx-i386.o + + insinto /etc/modules.d + doins "${FILESDIR}"/usb-pwcx + + dodoc install.html readme.html webcam.css +} + +pkg_postinst() { + if [ "${ROOT}" = "/" ] + then + # Update module dependancy + [ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules + fi +} + |