mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
34 lines
765 B
Makefile
34 lines
765 B
Makefile
# Created by: Stefan Walter <sw@gegenunendlich.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= curator
|
|
PORTVERSION= 2.1
|
|
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
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
OPTIONS_DEFINE= PIL
|
|
PIL_DESC= Use Python Imaging Library instead of ImageMagick
|
|
|
|
PLIST_FILES= man/man1/curator.1.gz
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPIL}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging
|
|
.else
|
|
RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${FILESDIR}/curator.1 ${STAGEDIR}${PREFIX}/man/man1/curator.1
|
|
|
|
.include <bsd.port.mk>
|