82 lines
2.0 KiB
Makefile
82 lines
2.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.44 2011/09/16 10:31:23 espie Exp $
|
|
|
|
COMMENT-main= service daemon that monitors one or more GPSes
|
|
COMMENT-x11= GUI test apps using gpsd
|
|
COMMENT-php= web-based gpsd monitor in php
|
|
|
|
VERSION= 2.95
|
|
DISTNAME= gpsd-${VERSION}
|
|
PKGNAME-main= gpsd-${VERSION}
|
|
PKGNAME-x11= gpsd-x11-${VERSION}
|
|
PKGNAME-php= gpsd-php-${VERSION}
|
|
SHARED_LIBS= gps 19.0 \
|
|
gpsd 0.0
|
|
CATEGORIES= misc geo
|
|
|
|
REVISION-main= 1
|
|
REVISION-php= 1
|
|
|
|
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/}
|
|
|
|
MODULES += lang/python lang/php
|
|
USE_LIBTOOL= yes
|
|
USE_GROFF = Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --disable-ntpshm \
|
|
--enable-gpsd-user=_gpsd \
|
|
--enable-tnt \
|
|
--enable-oceanserver
|
|
|
|
PSEUDO_FLAVORS = no_x11
|
|
FLAVOR?=
|
|
|
|
MULTI_PACKAGES= -main -php
|
|
|
|
BUILD_DEPENDS= textproc/libxslt \
|
|
textproc/docbook \
|
|
textproc/docbook-xsl
|
|
|
|
RUN_DEPENDS-main= ${MODPY_RUN_DEPENDS}
|
|
|
|
.if ${FLAVOR:L:Mno_x11}
|
|
CONFIGURE_ARGS+= --without-x
|
|
CONFIGURE_ENV += LDFLAGS="-lm -pthread -lutil"
|
|
.else
|
|
MULTI_PACKAGES += -x11
|
|
RUN_DEPENDS-x11 = ${BASE_PKGPATH}
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib -lm -pthread -lutil"
|
|
.endif
|
|
|
|
WANTLIB-main= m ncurses c pthread stdc++ util
|
|
|
|
# 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= lang/php/${MODPHP_VERSION},-gd
|
|
PREFIX-php= /var/www/
|
|
|
|
PYTHON_SCRIPTS= gpsprof gps/gps.py gpsfake gpscat xgps gpsspeed
|
|
|
|
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>
|