openbsd-ports/misc/gpsd/Makefile
2008-07-25 20:25:59 +00:00

83 lines
2.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.25 2008/07/25 20:25:59 sthen 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.37
DISTNAME= gpsd-${VERSION}
PKGNAME-main= gpsd-${VERSION}p2
PKGNAME-motif= gpsd-motif-${VERSION}
PKGNAME-php= gpsd-php-${VERSION}
PKGNAME-python= gpsd-python-${VERSION}p0
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 Xaw Xau Xdmcp Xext Xft Xmu Xp Xrender X11 SM Xt \
c m pthread expat fontconfig freetype iconv z
LIB_DEPENDS-motif= Xm::x11/openmotif gps::misc/gpsd
USE_X11= Yes
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.endif
.if ${FLAVOR:L:Mno_python}
CONFIGURE_ARGS+= --disable-python
.else
MULTI_PACKAGES+= -python
MODULES= lang/python
LIB_DEPENDS-python= gps::misc/gpsd
WANTLIB-python= c m pthread
RUN_DEPENDS-main=
RUN_DEPENDS-motif=
CONFIGURE_ENV+= PYTHON="${MODPY_BIN}"
.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/
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>