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
32 lines
863 B
Makefile
32 lines
863 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wxhexeditor
|
|
PORTVERSION= 0.24
|
|
PORTREVISION= 2
|
|
CATEGORIES= editors
|
|
MASTER_SITES= SF/${PORTNAME}/wxHexEditor/v${PORTVERSION}%20Beta/
|
|
DISTNAME= wxHexEditor-v${PORTVERSION}-src
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Graphical hex editor for big files with x86 disassembly support
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libudis86.so:devel/udis86 \
|
|
libmhash.so:security/mhash
|
|
|
|
USES= compiler:c++11-lang gettext-tools gmake tar:xz
|
|
USE_WX= 3.0+
|
|
MAKE_ARGS= WXCONFIG="${WX_CONFIG}"
|
|
|
|
WRKSRC= ${WRKDIR}/wxHexEditor
|
|
|
|
# Follow the ${MTREE_FILE} which specifies simple, unsuffixed names
|
|
# for these particular locales
|
|
post-patch:
|
|
@${MV} ${WRKSRC}/locale/hu_HU ${WRKSRC}/locale/hu
|
|
@${MV} ${WRKSRC}/locale/ja_JP ${WRKSRC}/locale/ja
|
|
@${MV} ${WRKSRC}/locale/nl_NL ${WRKSRC}/locale/nl
|
|
|
|
.include <bsd.port.mk>
|