mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +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
40 lines
926 B
Makefile
40 lines
926 B
Makefile
# Created by: Jason Evans <jasone@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zile
|
|
PORTVERSION= 2.4.14
|
|
PORTREVISION= 7
|
|
CATEGORIES= editors
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= culot@FreeBSD.org
|
|
COMMENT= Small emacs-like text editor
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libgc.so:devel/boehm-gc
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/help2man:misc/help2man
|
|
|
|
USES= gmake ncurses perl5 pkgconfig compiler:c++11-lang
|
|
USE_PERL5= build
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --without-included-regex
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man1/${PORTNAME}.1.gz \
|
|
%%DOCSDIR%%/AUTHORS \
|
|
%%DOCSDIR%%/FAQ \
|
|
%%DOCSDIR%%/NEWS \
|
|
%%DOCSDIR%%/dotzile.sample
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -isystem /usr/include/gnu
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lgnuregex
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/need_charset_alias=/s|true|false|g' ${WRKSRC}/lib/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|@pkgdatadir@|${DOCSDIR}|' ${WRKSRC}/doc/man-extras
|
|
|
|
.include <bsd.port.mk>
|