mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
58c9262b54
This version is not archived by the authors, so this is a snapshot of the SVN repository as of revision 3135. The archive is put on the freebsd.org cluster.
75 lines
2.9 KiB
Makefile
75 lines
2.9 KiB
Makefile
# New ports collection makefile for: hugin
|
|
# Date created: 26 august 2004
|
|
# Whom: cartola (Carlos E. G. Carvalho)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hugin
|
|
PORTVERSION= 0.7.r3135
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= vd/hugin
|
|
|
|
MAINTAINER= vd@FreeBSD.org
|
|
COMMENT= A GUI for Panorama Tools, to stitch panoramic images
|
|
|
|
LIB_DEPENDS= tiff:${PORTSDIR}/graphics/tiff \
|
|
jpeg:${PORTSDIR}/graphics/jpeg \
|
|
png:${PORTSDIR}/graphics/png \
|
|
IlmImf:${PORTSDIR}/graphics/OpenEXR \
|
|
exiv2:${PORTSDIR}/graphics/exiv2 \
|
|
pano13:${PORTSDIR}/graphics/libpano13 \
|
|
boost_date_time:${PORTSDIR}/devel/boost
|
|
RUN_DEPENDS= enblend>=3.1.r20080615:${PORTSDIR}/graphics/enblend \
|
|
exiftool:${PORTSDIR}/graphics/p5-Image-ExifTool
|
|
|
|
# TODO add autopano-sift-C to the ports collection and hook it here as
|
|
# an optional dependency
|
|
|
|
OPTIONS= PANOMATIC "Install graphics/panomatic" on \
|
|
AUTOPANOSIFT "Install graphics/autopano-sift" on
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_CMAKE= yes
|
|
|
|
CMAKE_ARGS= -DwxWidgets_CONFIG_EXECUTABLE=${WX_CONFIG}
|
|
CMAKE_VERBOSE= yes
|
|
CMAKE_USE_PTHREAD= yes
|
|
|
|
USE_WX= 2.8+
|
|
|
|
USE_GETTEXT= yes
|
|
|
|
MAN1= fulla.1
|
|
|
|
#DOCSDIR= ${PREFIX}/share/hugin/xrc/data
|
|
|
|
# workaround a bug in cmake (?). Without this we get an error like:
|
|
# cd /usr/ports/graphics/hugin/work/hugin-0.7.r3135/src/hugin1/base_wx && /usr/bin/c++ -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -D_THREAD_SAFE -O2 -fno-strict-aliasing -pipe -pthread;-D_THREAD_SAFE -O3 -DNDEBUG -I/usr/ports/graphics/hugin/work/hugin-0.7.r3135/src -I/usr/ports/graphics/hugin/work/hugin-0.7.r3135/src/hugin_base -I/usr/ports/graphics/hugin/work/hugin-0.7.r3135/src/foreign -I/usr/ports/graphics/hugin/work/hugin-0.7.r3135/src/foreign/vigra -I/usr/local/include -I/usr/local/include/OpenEXR -isystem /usr/local/lib/wx/include/gtk2-ansi-release-2.8 -isystem /usr/local/include/wx-2.8 -I/usr/ports/graphics/hugin/work/hugin-0.7.r3135/src/hugin1 -o CMakeFiles/huginbasewx.dir/ImageCache.o -c /usr/ports/graphics/hugin/work/hugin-0.7.r3135/src/hugin1/base_wx/ImageCache.cpp
|
|
# c++: No input files specified
|
|
# with cmake 2.6.0. It works with cmake 2.4.8.
|
|
post-configure:
|
|
${REINPLACE_CMD} \
|
|
's/-pthread;-D_THREAD_SAFE/-pthread -D_THREAD_SAFE/g' \
|
|
${WRKSRC}/src/hugin1/base_wx/CMakeFiles/huginbasewx.dir/flags.make \
|
|
${WRKSRC}/src/hugin1/hugin/CMakeFiles/hugin.dir/flags.make \
|
|
${WRKSRC}/src/hugin1/hugin/CMakeFiles/hugin.dir/link.txt \
|
|
${WRKSRC}/src/hugin1/nona_gui/CMakeFiles/nona_gui.dir/flags.make \
|
|
${WRKSRC}/src/hugin1/nona_gui/CMakeFiles/nona_gui.dir/link.txt \
|
|
${WRKSRC}/src/hugin1/stitch_project/CMakeFiles/hugin_stitch_project.dir/flags.make \
|
|
${WRKSRC}/src/hugin1/stitch_project/CMakeFiles/hugin_stitch_project.dir/link.txt
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PANOMATIC)
|
|
RUN_DEPENDS+= panomatic:${PORTSDIR}/graphics/panomatic
|
|
.endif
|
|
|
|
.if defined(WITH_AUTOPANOSIFT)
|
|
RUN_DEPENDS+= autopanog:${PORTSDIR}/graphics/autopano-sift
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|