mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
f5848234a1
server system for web-based streamed viewing and zooming of ultra high-resolution images with low processor and memory requirements. The system can handle gigapixel size images as well as advanced image features such as 8/16/32 bits per channel, CIELAB colorimetric images and scientific imagery such as multispectral images and digital elevation maps. WWW: http://iipimage.sourceforge.net/ PR: 210437 Submitted by: me@skylord.ru
39 lines
762 B
Makefile
39 lines
762 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= iipsrv
|
|
PORTVERSION= 1.0
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= me@skylord.ru
|
|
COMMENT= IIP (Internet Imaging Protocol) FastCGI server
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libtiff.so:graphics/tiff
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ruven
|
|
|
|
USES= autoreconf jpeg libtool
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/iipsrv.fcgi \
|
|
man/man8/iipsrv.8.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|noinst_PROGRAMS|bin_PROGRAMS|g' \
|
|
${WRKSRC}/src/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|include_HEADERS|noinst_HEADERS|g' \
|
|
${WRKSRC}/fcgi/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|include_HEADERS|noinst_HEADERS|g' \
|
|
${WRKSRC}/fcgi/include/Makefile.am
|
|
|
|
pre-configure:
|
|
@(cd ${WRKSRC} && ./autogen.sh)
|
|
|
|
.include <bsd.port.mk>
|