diff options
author | John P. Davis <zhen@gentoo.org> | 2002-11-26 06:22:30 +0000 |
---|---|---|
committer | John P. Davis <zhen@gentoo.org> | 2002-11-26 06:22:30 +0000 |
commit | 1cecbb564f2e075c280eaf2aa39a74703cb7e43e (patch) | |
tree | 535430d85f7325bc57fb954fd6691dd17a3c6f5d /media-video/camsource | |
parent | the new digests for rc5, the updated packages. also change arts ebuild to use... (diff) | |
download | historical-1cecbb564f2e075c280eaf2aa39a74703cb7e43e.tar.gz historical-1cecbb564f2e075c280eaf2aa39a74703cb7e43e.tar.bz2 historical-1cecbb564f2e075c280eaf2aa39a74703cb7e43e.zip |
new webcam software
Diffstat (limited to 'media-video/camsource')
-rw-r--r-- | media-video/camsource/camsource-0.5.1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-video/camsource/camsource-0.5.1.ebuild b/media-video/camsource/camsource-0.5.1.ebuild new file mode 100644 index 000000000000..3a99a24e2998 --- /dev/null +++ b/media-video/camsource/camsource-0.5.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +DESCRIPTION="Camsource grabs images from a video4linux device and makes them available + to various plugins for processing or handling. Camsource can also be used + as a streaming webcam server." + +HOMEPAGE="http://camsource.sourceforge.net/" +SRC_URI="ftp://ftp.sf.net/pub/sourceforge/camsource/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~sparc ~sparc64 ~ppc ~alpha" +IUSE="" + +DEPEND=">=dev-libs/libxml2-2.4.22 + >=media-libs/imlib-1.9.13-r2" + +RDEPEND="" +S=${WORKDIR}/${P} + +src_compile() { + + econf || die + emake || die +} + +src_install() { + + einstall +} + +pkg_postinst() { + + einfo "Please edit the configuration file: " + einfo "/etc/camsource.conf.example" + einfo "to your liking." + +} |