diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-02-19 00:03:21 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-02-19 00:03:21 +0000 |
commit | 02fbe7df41ef387983072ff5a87da39a4cd6b9f5 (patch) | |
tree | 21e4dfe18ebb6700f83e5e74310dccc0325baecc /media-video/qce-ga | |
parent | Inital import. (diff) | |
download | historical-02fbe7df41ef387983072ff5a87da39a4cd6b9f5.tar.gz historical-02fbe7df41ef387983072ff5a87da39a4cd6b9f5.tar.bz2 historical-02fbe7df41ef387983072ff5a87da39a4cd6b9f5.zip |
new ebuild for #7918
Diffstat (limited to 'media-video/qce-ga')
-rw-r--r-- | media-video/qce-ga/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/qce-ga/files/digest-qce-ga-0.40d | 1 | ||||
-rw-r--r-- | media-video/qce-ga/qce-ga-0.40d.ebuild | 39 |
3 files changed, 48 insertions, 0 deletions
diff --git a/media-video/qce-ga/ChangeLog b/media-video/qce-ga/ChangeLog new file mode 100644 index 000000000000..4be5c1c796b5 --- /dev/null +++ b/media-video/qce-ga/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for media-video/qce-ga +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/qce-ga/ChangeLog,v 1.1 2003/02/19 00:03:21 liquidx Exp $ + +*qce-ga-0.40d (18 Feb 2003) + + 18 Feb 2003: Alastair Tse <liquidx@gentoo.org> qce-ga-0.40d.ebuild: + Initial Import. Resolves bug #7918. diff --git a/media-video/qce-ga/files/digest-qce-ga-0.40d b/media-video/qce-ga/files/digest-qce-ga-0.40d new file mode 100644 index 000000000000..0401e634ab94 --- /dev/null +++ b/media-video/qce-ga/files/digest-qce-ga-0.40d @@ -0,0 +1 @@ +MD5 afd7895c90aef62c29d2ffa7beb63961 qce-ga-0.40d.tar.gz 40715 diff --git a/media-video/qce-ga/qce-ga-0.40d.ebuild b/media-video/qce-ga/qce-ga-0.40d.ebuild new file mode 100644 index 000000000000..0c62c5d6e770 --- /dev/null +++ b/media-video/qce-ga/qce-ga-0.40d.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/qce-ga/qce-ga-0.40d.ebuild,v 1.1 2003/02/19 00:03:21 liquidx Exp $ + +IUSE="" +DESCRIPTION="Logitech USB Quickcam Express Linux Driver Modules" +HOMEPAGE="http://qce-ga.sourceforge.net/" +SRC_URI="mirror://sourceforge/qce-ga/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +DEPEND="virtual/linux-sources" +S="${WORKDIR}/${P}" + +pkg_setup() { + [ -z "$KV" ] && die "Couldn't detect kernel version. Does /usr/src/linux exist?" + return 0 +} + +src_compile() { + # namespace conflict in makefile + unset DEBUG + emake || die +} + +src_install () { + # install the driver in the right palce + insinto "/lib/modules/${KV}/misc" + doins mod_quickcam.o + + # install the READMEs and License + dodoc README License +} + +pkg_postinst() { + if [ "${ROOT}" = "/" ]; then + /sbin/update-modules + fi +} |