diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/CRWInfo/DESCR | 4 | ||||
-rw-r--r-- | graphics/CRWInfo/Makefile | 22 | ||||
-rw-r--r-- | graphics/CRWInfo/PLIST | 4 | ||||
-rw-r--r-- | graphics/CRWInfo/distinfo | 5 | ||||
-rw-r--r-- | graphics/CRWInfo/patches/patch-aa | 19 |
5 files changed, 54 insertions, 0 deletions
diff --git a/graphics/CRWInfo/DESCR b/graphics/CRWInfo/DESCR new file mode 100644 index 00000000000..3f9f1d77f61 --- /dev/null +++ b/graphics/CRWInfo/DESCR @@ -0,0 +1,4 @@ +CRW Info is a program to extract exposure information and thumbnails from +Canon RAW files. It has been tested so far only with the CRW files from +the Canon D60 camera. Owners of other camera models are encouraged to try +the program and give feedback to the original authors. diff --git a/graphics/CRWInfo/Makefile b/graphics/CRWInfo/Makefile new file mode 100644 index 00000000000..92948577319 --- /dev/null +++ b/graphics/CRWInfo/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/01/14 16:02:09 jmmv Exp $ +# + +DISTNAME= CRWInfo-0.2 +CATEGORIES= graphics +MASTER_SITES= http://neuemuenze.heim1.tu-clausthal.de/~sven/crwinfo/ + +MAINTAINER= kirtai@users.sourceforge.net +HOMEPAGE= http://neuemuenze.heim1.tu-clausthal.de/~sven/crwinfo/ +COMMENT= Extracts exposure information and thumbnails from Canon RAW files + +NO_CONFIGURE= yes +USE_BUILDLINK3= yes + +INSTALLATION_DIRS= bin + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/crwinfo ${PREFIX}/bin/ + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/crwinfo/ + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/crwinfo/ + +.include "../../mk/bsd.pkg.mk" diff --git a/graphics/CRWInfo/PLIST b/graphics/CRWInfo/PLIST new file mode 100644 index 00000000000..9be03b453cf --- /dev/null +++ b/graphics/CRWInfo/PLIST @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/01/14 16:02:09 jmmv Exp $ +bin/crwinfo +share/doc/crwinfo/README +@dirrm share/doc/crwinfo diff --git a/graphics/CRWInfo/distinfo b/graphics/CRWInfo/distinfo new file mode 100644 index 00000000000..7973e1333e2 --- /dev/null +++ b/graphics/CRWInfo/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/01/14 16:02:09 jmmv Exp $ + +SHA1 (CRWInfo-0.2.tar.gz) = 6c3df0378cd9eaa74dad19b5c1661e63afe6c264 +Size (CRWInfo-0.2.tar.gz) = 10717 bytes +SHA1 (patch-aa) = 451336207dd6ada7934e6dd35eff4b206974f287 diff --git a/graphics/CRWInfo/patches/patch-aa b/graphics/CRWInfo/patches/patch-aa new file mode 100644 index 00000000000..b7129fbc118 --- /dev/null +++ b/graphics/CRWInfo/patches/patch-aa @@ -0,0 +1,19 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/01/14 16:02:09 jmmv Exp $ + +--- crwinfo.c.orig 2002-07-30 18:17:03.000000000 +0100 ++++ crwinfo.c +@@ -95,10 +95,10 @@ void print_help(char *progname) + fprintf( stderr, "-m show misc. information (whitepoint, AF mode etc)\n" ); + fprintf( stderr, "-f show flash information (flash mode etc)\n" ); + fprintf( stderr, "-cf show custom function settings\n" ); +- fprintf( stderr, "-t extract the thumbnail to the optional filename. +- If no filename for the thumbnail is given, the +- name of the CRW-file is used with a .jpg +- extension\n" ); ++ fprintf( stderr, "-t extract the thumbnail to the optional filename.\n" ++ " If no filename for the thumbnail is given, the\n" ++ " name of the CRW-file is used with a .jpg\n" ++ " extension\n" ); + fprintf( stderr, "-x show experimental information (don't rely on it)\n" ); + exit(0); + } |