mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
a3f1f29556
This may be a qmake conversion fallout Updating '/wrkdirs/usr/ports/astro/merkaartor/work/merkaartor-0.18.1/src/../translations/merkaartor_pt_BR.qm'... Generated 1215 translation(s) (1212 finished and 3 unfinished) Ignored 91 untranslated source text(s) make[1]: cannot open Makefile. make[1]: stopped in /wrkdirs/usr/ports/astro/merkaartor/work/merkaartor-0.18.1 *** Error code 1 Reported by: pkg-fallout since november 2013
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
# Created by: slaven@rezic.de
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= merkaartor
|
|
PORTVERSION= 0.18.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= astro
|
|
MASTER_SITES= http://merkaartor.be/attachments/download/301/ \
|
|
https://secure.ohos.nl/downloads/
|
|
|
|
MAINTAINER= dev2@heesakkers.info
|
|
COMMENT= Openstreetmap mapping program
|
|
|
|
BROKEN= Does not build
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libgdal.so:${PORTSDIR}/graphics/gdal \
|
|
libproj.so:${PORTSDIR}/graphics/proj
|
|
|
|
USE_BZIP2= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_QT4= uic_build moc_build rcc_build \
|
|
gui network svg webkit xml imageformats script scripttools
|
|
|
|
OPTIONS_DEFINE= GEOIMAGE ZBAR DEBUG NLS
|
|
OPTIONS_DEFAULT= GEOIMAGE
|
|
|
|
GEOIMAGE_DESC= Enable geotagged images (needs exiv2)
|
|
GEOIMAGE_QMAKE_ON= GEOIMAGE=1
|
|
GEOIMAGE_LIB_DEPENDS= libexiv2.so:${PORTSDIR}/graphics/exiv2
|
|
|
|
ZBAR_DESC= Read barcodes from walking papers
|
|
ZBAR_QMAKE_ON= ZBAR=1
|
|
ZBAR_LIB_DEPENDS= libzbar.so:${PORTSDIR}/graphics/zbar
|
|
|
|
DEBUG_QMAKE_OFF= NODEBUG=1 RELEASE=1
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if empty(PORT_OPTIONS:MNLS)
|
|
PLIST_SUB+= NLS="@comment "
|
|
.else
|
|
PLIST_SUB+= NLS=""
|
|
USE_QT4+= linguist_build
|
|
|
|
pre-build:
|
|
@cd ${WRKSRC}/translations && ${LRELEASE} ../src/src.pro
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|