openbsd-ports/misc/gpsd/Makefile

91 lines
2.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.34 2010/08/30 17:11:35 fgsch Exp $
COMMENT-main= service daemon that monitors one or more GPSes
COMMENT-motif= motif-based test apps using gpsd
COMMENT-php= web-based gpsd monitor in php
COMMENT-python= python bindings for gpsd
VERSION= 2.38
DISTNAME= gpsd-${VERSION}
REVISION-main = 1
PKGNAME-motif= gpsd-motif-${VERSION}
REVISION-motif = 4
PKGNAME-php= gpsd-php-${VERSION}
PKGNAME-python= gpsd-python-${VERSION}
REVISION-python = 3
SHARED_LIBS= gps 18.0
CATEGORIES= misc geo
HOMEPAGE= http://gpsd.berlios.de/
MAINTAINER= Chris Kuethe <ckuethe@openbsd.org>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_BERLIOS:=gpsd/}
USE_LIBTOOL= yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --disable-ntpshm \
--enable-gpsd-user=_gpsd \
--disable-garmintxt
PSEUDO_FLAVORS= no_motif no_python
FLAVOR?=
MULTI_PACKAGES= -main -php
BUILD_DEPENDS= ::textproc/libxslt \
::textproc/docbook \
::textproc/docbook-xsl
.if ${FLAVOR:L:Mno_motif}
CONFIGURE_ARGS+= --without-x
.else
MULTI_PACKAGES+= -motif
WANTLIB-motif= ICE Xaw7 Xau Xdmcp Xext Xft Xmu Xpm Xrender X11 SM Xt \
c m pthread expat fontconfig freetype iconv jpeg png \
pthread-stubs xcb z
LIB_DEPENDS-motif= Xm::x11/openmotif gps::misc/gpsd
USE_X11= Yes
CONFIGURE_ENV+= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib -lm"
.endif
.if ${FLAVOR:L:Mno_python}
CONFIGURE_ARGS+= --disable-python
.else
MULTI_PACKAGES+= -python
MODULES= lang/python
RUN_DEPENDS-python= ::misc/gpsd
WANTLIB-python=
RUN_DEPENDS-main=
RUN_DEPENDS-motif=
.endif
WANTLIB-main= m ncurses c pthread
# the php display script doesn't depend on having any of gpsd around,
# it just sits there and looks pretty.
PKG_ARCH-php= *
RUN_DEPENDS-php= :php5-gd-*:www/php5/extensions,-gd
PREFIX-php= /var/www/
PYTHON_SCRIPTS= gpsprof gps.py gpsfake gpscat
pre-configure:
.for file in ${PYTHON_SCRIPTS}
perl -pi -e 's,/usr/bin/env python,${MODPY_BIN},g' ${WRKSRC}/${file}
.endfor
post-install:
${INSTALL_DATA_DIR} ${WRKINST}/var/www/gpsd
${INSTALL_SCRIPT} ${WRKSRC}/gpsd.php ${WRKINST}/var/www/gpsd
${INSTALL_DATA} ${WRKSRC}/gpsd_config.h ${PREFIX}/include
.include <bsd.port.mk>