mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: gtkwave
|
|
# Date created: May 10, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gtkwave
|
|
PORTVERSION= 2.0.0.p5
|
|
PORTREVISION= 2
|
|
PORTEPOCH= 2
|
|
CATEGORIES= cad
|
|
MASTER_SITES= ftp://ftp.cs.man.ac.uk/pub/amulet/gtkwave/2.0/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.p/pre/}
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= Electronic Waveform Viewer
|
|
|
|
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2
|
|
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_GNOME= gtk12
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
USE_LDCONFIG= yes
|
|
LDCONFIG_DIRS= ${PREFIX}/lib/gtkwave
|
|
|
|
DOCS= doc/*.html doc/*.png doc/*.ps
|
|
EXAMPLES= examples/*.gz examples/*.vcd
|
|
|
|
post-patch:
|
|
@${GREP} -lR "heapsort" ${WRKSRC}/src | ${XARGS} \
|
|
${REINPLACE_CMD} -e "s/heapsort/hsort/g"
|
|
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|