1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-31 05:41:08 +00:00
freebsd-ports/astro/gpstk/Makefile
Pav Lucistnik efa63f6ba4 - Remove USE_GCC where it can be satisfied with base compiler on following
FreeBSD versions: 5.3 and up, 6.x, 7.x, 8-CURRENT
2008-07-25 14:34:52 +00:00

36 lines
769 B
Makefile

# New ports collection makefile for: gpstk
# Date created: 12 May 2004
# Whom: bms@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= gpstk
PORTVERSION= 1.3
CATEGORIES= astro devel
MASTER_SITES= SF
DISTNAME= ${PORTNAME}${PORTVERSION}.src
MAINTAINER= bms@FreeBSD.org
COMMENT= Toolkit for developing GPS applications
BUILD_DEPENDS= ${LOCALBASE}/bin/jam:${PORTSDIR}/devel/jam
USE_LDCONFIG= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
JAM= ${LOCALBASE}/bin/jam
JAM_ENV= BINDIR=${PREFIX}/bin \
INCDIR=${PREFIX}/include/$(PORTNAME) \
LIBDIR=${PREFIX}/lib \
CC=${CC} C++=${CXX}
do-build:
cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM}
do-install:
${MKDIR} ${PREFIX}/include/${PORTNAME}
cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM} install
.include <bsd.port.mk>