f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
# New ports collection makefile for: tkgeomap
|
|
# Date created: 25 August 2006
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tkgeomap
|
|
PORTVERSION= 2.11.4
|
|
CATEGORIES= astro tk84
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Read, manipulate and display geo data
|
|
|
|
LIB_DEPENDS= tclgeomap.0:${PORTSDIR}/astro/tclgeomap
|
|
|
|
CONFIGURE_ARGS= --with-tclgeomap-include=${LOCALBASE}/include/tclgeomap --with-x \
|
|
--with-tcl=${TCL_LIBDIR} --with-tclinclude=${TCL_INCLUDEDIR} \
|
|
--with-tk=${TK_LIBDIR} --with-tkinclude=${TK_INCLUDEDIR} \
|
|
--x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include
|
|
CONFIGURE_ENV= TCLGEOMAP_LIB=${LOCALBASE}/lib/tclgeomap
|
|
USE_TK= 82+
|
|
GNU_CONFIGURE= yes
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/unix
|
|
TKPKG= ${PORTNAME}
|
|
PLIST_SUB= INC=include/${TKPKG} LIB=lib/${TKPKG}
|
|
USE_LDCONFIG= yes
|
|
|
|
MANN= igeomap.n tkgeomap.n tkgeomap_procs.n wdgeomap.n
|
|
|
|
post-install:
|
|
@${LN} -sf ${PREFIX}/lib/lib${TKPKG}.so ${PREFIX}/lib/lib${PORTNAME}.so.0
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/=.*PACKAGE_VERSION/s|$${PACKAGE_VERSION}||g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|@PACKAGE_VERSION@||g' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e '/^package/!s|@PACKAGE_VERSION@||g' ${WRKSRC}/pkgIndex.tcl.in
|
|
@${REINPLACE_CMD} -e '2s|.*|exit 0|' ${WRKSRC}/mkLinks
|
|
|
|
.include <bsd.port.mk>
|