mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
444b74f1ca
Approved by: portmgr (bdrewery)
38 lines
876 B
Makefile
38 lines
876 B
Makefile
# Created by: Steve Franks <stevefranks@ieee.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= roadnav
|
|
PORTVERSION= 0.19
|
|
PORTREVISION= 4
|
|
CATEGORIES= astro geography
|
|
MASTER_SITES= SF/${PORTNAME}/Roadnav/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= 3D GPS mapping program
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libroadnav.a:${PORTSDIR}/astro/libroadnav
|
|
|
|
USE_WX= 2.6+
|
|
WX_COMPS= wx contrib
|
|
USES= gmake
|
|
NO_STAGE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-wx-prefix=${LOCALBASE} --with-wx-config=${WX_CONFIG}
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PORTDOCS= *
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|g' \
|
|
${WRKSRC}/Makefile.in ${WRKSRC}/src/Makefile.in
|
|
.if ! ${PORT_OPTIONS:MDOCS}
|
|
@${REINPLACE_CMD} -e '/^install-data-am:/s|install-roadnavdocDATA||' \
|
|
${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|