freebsd-ports/graphics/curator/Makefile
Pav Lucistnik 69735cb265 Add curator, a powerful script that allows one to generate web page image
galleries with the intent of displaying photographic images on the Web, or for
a CD-ROM presentation or archiving.

PR:		ports/68624
Submitted by:	Stefan Walter <sw@gegenunendlich.de>
2004-11-04 18:29:56 +00:00

36 lines
854 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
CATEGORIES= graphics www python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= sw@gegenunendlich.de
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>