freebsd-ports/graphics/aaphoto/Makefile

55 lines
1.2 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: aaphoto
# Date created: 2009-12-24
# Whom: Andras Horvath <han@log69.com>
#
# $FreeBSD$
#
PORTNAME= aaphoto
PORTVERSION= 0.41
2012-06-01 01:26:28 -04:00
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= http://log69.com/downloads/
DISTNAME= ${PORTNAME}_sources_v${PORTVERSION}
MAINTAINER= han@log69.com
COMMENT= Auto Adjust Photo, automatic color correction of photos
LIB_DEPENDS= jasper:${PORTSDIR}/graphics/jasper \
jpeg:${PORTSDIR}/graphics/jpeg \
2012-06-01 01:26:28 -04:00
png15:${PORTSDIR}/graphics/png
LICENSE= GPLv3
2010-12-04 02:34:27 -05:00
USE_AUTOTOOLS= autoheader
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
PLIST_FILES= bin/aaphoto
PORTDOCS= AUTHORS ChangeLog COPYING COPYRIGHT INSTALL LICENSE \
NEWS README TODO
.include <bsd.port.pre.mk>
.if (${ARCH} == "amd64" || ${ARCH} == "i386") && ${OSVERSION} >= 700000
CFLAGS+= -fopenmp -D__OPENMP__
.endif
do-install:
.for FILE in aaphoto
${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/bin
.endfor
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>