mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# Created by: Bruce M Simpson <bms@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gtkwave
|
|
PORTVERSION= 3.3.101
|
|
PORTREVISION= 1
|
|
CATEGORIES= cad
|
|
MASTER_SITES= http://gtkwave.sourceforge.net/
|
|
|
|
MAINTAINER= zeising@FreeBSD.org
|
|
COMMENT= Electronic Waveform Viewer
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libfreetype.so:print/freetype2 \
|
|
libfontconfig.so:x11-fonts/fontconfig
|
|
|
|
USES= compiler:c++11-lang desktop-file-utils gettext gmake \
|
|
gnome gperf pkgconfig shared-mime-info
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-mime-update
|
|
USE_GNOME= cairo gtk20
|
|
INSTALLS_ICONS= yes
|
|
|
|
OPTIONS_DEFINE= TCL GCONF DOCS EXAMPLES
|
|
TCL_DESC= Enable support for TCL/TK
|
|
TCL_USES= tcl tk
|
|
TCL_CONFIGURE_ON= --with-tcl=${TCL_LIBDIR} \
|
|
--with-tk=${TK_LIBDIR}
|
|
TCL_CONFIGURE_OFF= --disable-tcl
|
|
|
|
GCONF_CONFIGURE_WITH= gconf
|
|
GCONF_USE= GNOME=gconf2
|
|
|
|
PORTDOCS= gtkwave.odt
|
|
|
|
post-patch-EXAMPLES-off:
|
|
${REINPLACE_CMD} '/^SUBDIRS/s|examples||' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|