mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
98d451887b
* Update to 0.6.21 * Add LICENSE * Switch to OptionsNG and PORTDOCS - Document libexif 2012-07-12 vulnerabilty - Bump PORTREVISION for libexif related ports - Trim headers while here PR: ports/175910 Approved by: swills (mentor) Security: d881d254-70c6-11e2-862d-080027a5ec9a
34 lines
745 B
Makefile
34 lines
745 B
Makefile
# Created by: Pav Lucistnik <pav@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= exif
|
|
PORTVERSION= 0.6.20
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/lib${PORTNAME}/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= pav@FreeBSD.org
|
|
COMMENT= Command line utility to read and manipulate EXIF data
|
|
|
|
LIB_DEPENDS= exif.12:${PORTSDIR}/graphics/libexif \
|
|
popt.0:${PORTSDIR}/devel/popt
|
|
|
|
USE_GMAKE= yes
|
|
USE_PKGCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
CONFIGURE_ENV+= POPT_CFLAGS=-I${LOCALBASE}/include POPT_LIBS="-L${LOCALBASE}/lib -lpopt"
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
CONFIGURE_ARGS+= --disable-nls --without-libiconv-prefix
|
|
PLIST_SUB+= NLS="@comment "
|
|
.else
|
|
USE_ICONV= yes
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.endif
|
|
|
|
MAN1= exif.1
|
|
|
|
.include <bsd.port.mk>
|