diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-03-09 17:00:41 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-03-09 17:00:41 +0800 |
commit | a7d89c74a9864d18f29d247697a7cb0ae5880eb3 (patch) | |
tree | 6ed4de37dcc747a4982e06a7b8af65e269756cc2 /graphics | |
parent | 9a578c6b35fd29ee32c1de4a0a56aef8494aeb27 (diff) | |
download | freebsd-ports-gnome-a7d89c74a9864d18f29d247697a7cb0ae5880eb3.tar.gz freebsd-ports-gnome-a7d89c74a9864d18f29d247697a7cb0ae5880eb3.tar.zst freebsd-ports-gnome-a7d89c74a9864d18f29d247697a7cb0ae5880eb3.zip |
- Add my LOCAL to MASTER_SITES
- Update COMMENT
- Take maintainership
- Update pkg-descr
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/jhead/Makefile | 18 | ||||
-rw-r--r-- | graphics/jhead/pkg-descr | 28 |
2 files changed, 22 insertions, 24 deletions
diff --git a/graphics/jhead/Makefile b/graphics/jhead/Makefile index cc25f58d4725..dd45807223e2 100644 --- a/graphics/jhead/Makefile +++ b/graphics/jhead/Makefile @@ -6,29 +6,29 @@ PORTVERSION= 2.97 CATEGORIES= graphics MASTER_SITES= http://www.sentex.net/~mwandel/jhead/ -MAINTAINER= ports@FreeBSD.org -COMMENT= Exif Jpeg camera setting parser, rotator, and much more +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= EXIF JPEG header manipulation tool RUN_DEPENDS= jpegtran:${PORTSDIR}/graphics/jpeg -MAKEFILE= makefile MAKE_JOBS_SAFE= yes +MAKEFILE= makefile -MAN1= jhead.1 PORTDOCS= usage.html PLIST_FILES= bin/jhead +MAN1= jhead.1 .include <bsd.port.options.mk> post-patch: - @${REINPLACE_CMD} -e 's|^CFLAGS|#CFLAGS|' ${WRKSRC}/makefile + @${REINPLACE_CMD} -e '/^CFLAGS=/d' ${WRKSRC}/makefile do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} jhead ${PREFIX}/bin) - (cd ${WRKSRC} && ${INSTALL_MAN} jhead.1 ${MANPREFIX}/man/man1) + ${INSTALL_PROGRAM} ${WRKSRC}/jhead ${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/jhead.1 ${PREFIX}/man/man1/ .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} usage.html ${DOCSDIR}) + ${MKDIR} ${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/usage.html ${DOCSDIR}/ .endif .include <bsd.port.mk> diff --git a/graphics/jhead/pkg-descr b/graphics/jhead/pkg-descr index f06bdf27cefd..575af126f2e7 100644 --- a/graphics/jhead/pkg-descr +++ b/graphics/jhead/pkg-descr @@ -1,18 +1,16 @@ -'jhead' is a program to parse through the little file system in the Exif -headers and extract digital camera settings. +Jhead is a command line driven program for manipulating the non-image parts of +Exif flavour JPEG files that most digital cameras produce. -Information that the 'jhead' program can extract from an Exif file: - - Integral low-res Exif thumbnail - Shutter speed - Camera F-stop number - Flash used (yes/no) - Focus distance (some digital cameras store this element) - Focal length (most zoom cameras store their zoomed-to focal length) - Equivalent 35mm focal length (Calculated from focal length, CCD - size, and CCD resolution) - Image resolution - Time and date picture was taken - Camera make and model +It has the following features: +- Extracting camera settings from Exif image files +- Able to set and/or adjust the Exif time field +- Manipulation (extract, replace, regenerate) of Exif integral thumbnails +- Transplant Exif image header from one JPEG to another +- Edit JPEG comment fields +- Automatically rotate images upright (using jpegtran) according to + "orientation" tag. +- Manage running programs on large batches of Jpegs and restoring Exif header + information afterwards. +- Display embedded GPS info (if present) WWW: http://www.sentex.net/~mwandel/jhead/ |