freebsd-ports/graphics/curator/Makefile

34 lines
765 B
Makefile
Raw Normal View History

# Created by: Stefan Walter <sw@gegenunendlich.de>
# $FreeBSD$
PORTNAME= curator
PORTVERSION= 2.1
2012-06-01 07:26:28 +02:00
PORTREVISION= 5
CATEGORIES= graphics www python
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Static Image Gallery Generator for web or CD-ROM galleries
USE_PYTHON= yes
USE_PYDISTUTILS=yes
2014-01-21 20:40:13 +01:00
PYDISTUTILS_AUTOPLIST= yes
2012-06-12 23:42:32 +02:00
OPTIONS_DEFINE= PIL
PIL_DESC= Use Python Imaging Library instead of ImageMagick
2014-01-21 20:40:13 +01:00
PLIST_FILES= man/man1/curator.1.gz
2012-06-12 23:42:32 +02:00
.include <bsd.port.options.mk>
2012-06-12 23:42:32 +02:00
.if ${PORT_OPTIONS:MPIL}
2014-01-21 20:40:13 +01:00
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging
.else
RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick
.endif
post-install:
2014-01-21 20:40:13 +01:00
${INSTALL_MAN} ${FILESDIR}/curator.1 ${STAGEDIR}${PREFIX}/man/man1/curator.1
2012-06-12 23:42:32 +02:00
.include <bsd.port.mk>