Path to this page:
./
graphics/cambevao,
Grabs jpg images from bktr and ov511+ based USB webcams
Branch: CURRENT,
Version: 2.2nb7,
Package name: cambevao-2.2nb7,
Maintainer: abscambevao grabs images from NetBSD's or FreeBSD's /dev/bktr and ov511+ based
USB webcams and saves them as jpegs. It can be used as a console based webcam
program.
This project started as bktr2jpeg and was (for several years) a single
C-source file that supported bktr-based devices only. After adding support
for USB webcams further features got added and the list includes now an
XML-based config file and a built-in mini webserver for static and streaming
images. There is a nice interface between the camera driver and the rest of
the program, so adding new devices is not hard (beside writing the driver).
Includes rc-scripts for NetBSD's rc.d startup and shutdown scripts.
Required to run:[
graphics/jpeg]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 154.841 KB
Version history: (Expand)
- (2017-11-23) Package has been reborn
- (2010-09-13) Updated to version: cambevao-2.2nb7
- (2010-01-18) Updated to version: cambevao-2.2nb6
- (2009-08-27) Updated to version: cambevao-2.2nb5
- (2009-02-10) Updated to version: cambevao-2.2nb4
- (2006-02-06) Updated to version: cambevao-2.2nb3
CVS history: (Expand)
2021-10-26 12:47:26 by Nia Alarie | Files touched by this commit (800) |
Log message:
graphics: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
|
2021-10-07 16:13:27 by Nia Alarie | Files touched by this commit (800) |
Log message:
graphics: Remove SHA1 hashes for distfiles
|
2018-01-14 15:58:41 by Roland Illig | Files touched by this commit (36) |
Log message:
graphics/*: remove redundant :Q modifiers
pkgsrc doesn't support PREFIX with spaces or other special characters.
Therefore it is not necessary to add the :Q modifier to this variable
and several others.
|
2017-08-01 18:47:46 by Thomas Klausner | Files touched by this commit (88) |
Log message:
Comment out dead sites (DNS problems).
|
2015-11-03 22:34:36 by Alistair G. Crooks | Files touched by this commit (610) |
Log message:
Add SHA512 digests for distfiles for graphics category
Problems found with existing digests:
Package fotoxx distfile fotoxx-14.03.1.tar.gz
ac2033f87de2c23941261f7c50160cddf872c110 [recorded]
118e98a8cc0414676b3c4d37b8df407c28a1407c [calculated]
Package ploticus-examples distfile ploticus-2.00/plnode200.tar.gz
34274a03d0c41fae5690633663e3d4114b9d7a6d [recorded]
da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated]
Problems found locating distfiles:
Package AfterShotPro: missing distfile AfterShotPro-1.1.0.30/AfterShotPro_i386.deb
Package pgraf: missing distfile pgraf-20010131.tar.gz
Package qvplay: missing distfile qvplay-0.95.tar.gz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
2014-03-11 15:05:19 by Jonathan Perkin | Files touched by this commit (350) |
Log message:
Remove example rc.d scripts from PLISTs.
These are now handled dynamically if INIT_SYSTEM is set to "rc.d", or
ignored otherwise.
|
2012-10-06 16:11:27 by Aleksej Saushev | Files touched by this commit (427) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
|
2010-12-23 12:45:04 by David Sainty | Files touched by this commit (254) |
Log message:
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" \
"$i"
fi
done
done
|