diff options
author | hamajima <hamajima@pkgsrc.org> | 2004-03-07 08:13:55 +0000 |
---|---|---|
committer | hamajima <hamajima@pkgsrc.org> | 2004-03-07 08:13:55 +0000 |
commit | 9cb5fffe7452c83daa51d607b6328b6f91c7c5c1 (patch) | |
tree | 01f96f09d2a5f80a2762310331a60cd53c1b6b3a /graphics/cnxtview | |
parent | f2239c4f6230f1aa4e283dd46231a6868b5e0a22 (diff) | |
download | pkgsrc-9cb5fffe7452c83daa51d607b6328b6f91c7c5c1.tar.gz |
New package for cnxtview-0.00a, software for use with Creative WEBCAM Notebook
Diffstat (limited to 'graphics/cnxtview')
-rw-r--r-- | graphics/cnxtview/DESCR | 4 | ||||
-rw-r--r-- | graphics/cnxtview/Makefile | 18 | ||||
-rw-r--r-- | graphics/cnxtview/PLIST | 3 | ||||
-rw-r--r-- | graphics/cnxtview/distinfo | 5 | ||||
-rw-r--r-- | graphics/cnxtview/patches/patch-aa | 26 |
5 files changed, 56 insertions, 0 deletions
diff --git a/graphics/cnxtview/DESCR b/graphics/cnxtview/DESCR new file mode 100644 index 00000000000..3f52c7d0e42 --- /dev/null +++ b/graphics/cnxtview/DESCR @@ -0,0 +1,4 @@ +Creative WEBCAM Notebook Utility Programs for NetBSD + +cnxtshot ... simple image capture program ( output stdout JPEG file ) +cnxtview ... sequential image viewer program ( about 20fps ) diff --git a/graphics/cnxtview/Makefile b/graphics/cnxtview/Makefile new file mode 100644 index 00000000000..0f043172a9c --- /dev/null +++ b/graphics/cnxtview/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/03/07 08:13:55 hamajima Exp $ +# + +DISTNAME= cnxtutil-0.00-alpha +PKGNAME= cnxtview-0.00a +CATEGORIES= graphics x11 +MASTER_SITES= http://www2.starcat.ne.jp/~takam/bsd/ + +MAINTAINER= hamajima@NetBSD.org +HOMEPAGE= http://www2.starcat.ne.jp/~takam/bsd/NetBSD.html#webcamnote +COMMENT= Creative WEBCAM Notebook Utility Programs + +USE_BUILDLINK3= # defined + +.include "../../graphics/imlib/buildlink3.mk" +.include "../../x11/gtk/buildlink3.mk" + +.include "../../mk/bsd.pkg.mk" diff --git a/graphics/cnxtview/PLIST b/graphics/cnxtview/PLIST new file mode 100644 index 00000000000..cdae3cd8b14 --- /dev/null +++ b/graphics/cnxtview/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2004/03/07 08:13:56 hamajima Exp $ +bin/cnxtshot +bin/cnxtview diff --git a/graphics/cnxtview/distinfo b/graphics/cnxtview/distinfo new file mode 100644 index 00000000000..86c50fa90ad --- /dev/null +++ b/graphics/cnxtview/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2004/03/07 08:13:56 hamajima Exp $ + +SHA1 (cnxtutil-0.00-alpha.tar.gz) = bd151410026a307562ed928d72feb8aa57b2cb51 +Size (cnxtutil-0.00-alpha.tar.gz) = 21087 bytes +SHA1 (patch-aa) = 18829cc00accda0e31144def1e6180f981cfb500 diff --git a/graphics/cnxtview/patches/patch-aa b/graphics/cnxtview/patches/patch-aa new file mode 100644 index 00000000000..5c52b6acbd4 --- /dev/null +++ b/graphics/cnxtview/patches/patch-aa @@ -0,0 +1,26 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/03/07 08:13:56 hamajima Exp $ + +--- cnxtshot.c.orig 2004-01-14 02:16:20.000000000 +0900 ++++ cnxtshot.c 2004-03-07 08:21:38.000000000 +0900 +@@ -61,7 +61,7 @@ + { + int i; + int ret; +- int fd = NULL, efd = NULL; ++ int fd = 0, efd = 0; + + /* check option */ + if (argc == 1) { +--- cnxtview.c.orig 2004-01-14 02:20:15.000000000 +0900 ++++ cnxtview.c 2004-03-07 08:22:03.000000000 +0900 +@@ -78,8 +78,8 @@ + int i; + int ret; + +- fd = NULL; +- efd = NULL; ++ fd = 0; ++ efd = 0; + + gtk_init(&argc, &argv); + gdk_imlib_init(); |