mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
b0823ae396
Approved by:adamw (mentor)
45 lines
786 B
Makefile
45 lines
786 B
Makefile
# New ports collection makefile for: exiv2
|
|
# Date created: 2004-09-24
|
|
# Whom: Michael Johnson <ahze@ahze.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= exiv2
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://home.arcor.de/ahuggel/exiv2/
|
|
|
|
MAINTAINER= ahze@FreeBSD.org
|
|
COMMENT= Exif and Iptc metadata manipulation library and tools
|
|
|
|
.if defined(PORTDOCS)
|
|
BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
PORTDOCS= *
|
|
PLIST_FILES= bin/exiv2 \
|
|
lib/libexiv2.so
|
|
|
|
.if defined(PORTDOCS)
|
|
ALLTARGET= all doc
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
USE_GCC= 3.4
|
|
.endif
|
|
|
|
post-install:
|
|
.if defined(PORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|