69cbb39071
package's prefix would not work as part of the environment specification via MAKE_ENV (as it would not be executed in the correct directory). Fix this by invoking pkg_info(1) directly, not via an intermediate make(1) step - this is not as clean, but more effective (i.e. it works).
30 lines
1 KiB
Makefile
30 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.13 2000/07/14 16:04:25 agc Exp $
|
|
#
|
|
|
|
DISTNAME= xtraceroute-0.8.14
|
|
CATEGORIES= net x11
|
|
MASTER_SITES= http://www.dtek.chalmers.se/~d3august/xt/dl/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
ndg_files.tar.gz
|
|
|
|
MAINTAINER= hubertf@netbsd.org
|
|
HOMEPAGE= http://www.dtek.chalmers.se/~d3august/xt/index.html
|
|
|
|
DEPENDS+= gtkglarea-1.2.1:../../x11/gtkglarea
|
|
DEPENDS+= tiff-*:../../graphics/tiff
|
|
|
|
USE_X11= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-gtk-prefix="`${SHOW_PREFIX1} gtk+ ${SHOW_PREFIX2}`"
|
|
# XXX Actually, Mesa's in X11PREFIX too, but as our tiff is in LOCALBASE
|
|
# and xtraceroute doesn't have a switch to tell it so (yet?), we abuse
|
|
# the --with-GL-prefix switch for this.
|
|
CONFIGURE_ARGS+= --with-GL-prefix=${LOCALBASE}
|
|
CONFIGURE_ARGS+= --with-lib-MesaGL
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/xtraceroute
|
|
${INSTALL_DATA} ${WRKDIR}/hosts.cache ${PREFIX}/share/xtraceroute/hosts.cache
|
|
${INSTALL_DATA} ${WRKDIR}/networks.cache ${PREFIX}/share/xtraceroute/networks.cache
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|