1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/graphics/curator/Makefile
Dirk Meyer de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00

37 lines
802 B
Makefile

# New ports collection makefile for: curator
# Date created: 03 Jul 2004
# Whom: Stefan Walter <sw@gegenunendlich.de>
#
# $FreeBSD$
#
PORTNAME= curator
PORTVERSION= 2.1
PORTREVISION= 4
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
OPTIONS= PIL "Use Python Imaging Library instead of ImageMagick" off
PLIST_FILES= bin/curator
MAN1= curator.1
.include <bsd.port.pre.mk>
.if defined(WITH_PIL)
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging
.else
RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick
.endif
post-install:
${INSTALL_MAN} ${FILESDIR}/curator.1 ${PREFIX}/man/man1/curator.1
.include <bsd.port.post.mk>