Files
ports/editors/le/Makefile
T
Dima Panov 4b830a95f9 editors/le: fix build on recent FreeBSD releases without alloca.h
Backport patch from upstream repo

Approved by:	portmgr blanket
2025-10-22 04:19:23 +03:00

47 lines
1.4 KiB
Makefile

PORTNAME= le
PORTVERSION= 1.16.8
PORTREVISION= 2
CATEGORIES= editors
MASTER_SITES= http://lav.yar.ru/download/${PORTNAME}/ \
ZI
MASTER_SITE_SUBDIR= . old
PATCH_SITES+= https://github.com/lavv17/le/commit/
PATCHFILES+= 73976a23d5d7d4f5d6bfb3b8e797361be5613a6a.diff:-p1
MAINTAINER= zi@FreeBSD.org
COMMENT= Text editor with block and binary operations
WWW= https://github.com/lavv17/le
LICENSE= GPLv3
USES= localbase ncurses perl5 tar:bzip2
USE_PERL5= build
GNU_CONFIGURE= yes
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
MAKE_JOBS_UNSAFE= yes
post-patch:
@${FIND} ${WRKSRC} -type f \( -name '*.[ch]' -o -name '*.cc' \) | \
${XARGS} ${GREP} -l '[[:<:]]hex[[:>:]]' | \
${XARGS} ${REINPLACE_CMD} -e 's/[[:<:]]hex[[:>:]]/is_hex/g'
derp-do-install:
@${MKDIR} ${STAGEDIR}${DATADIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/src && ${INSTALL_PROGRAM} le ${STAGEDIR}${PREFIX}/bin)
(cd ${WRKSRC}/doc && ${INSTALL_MAN} le.1 ${STAGEDIR}${PREFIX}/man/man1)
.for file in ${STAGEDIR}${MISC_DATA}
(cd ${WRKSRC}/misc && ${INSTALL_DATA} ${file} ${STAGEDIR}${DATADIR})
.endfor
(cd ${WRKSRC}/misc && ${COPYTREE_SHARE} syntax.d ${STAGEDIR}${DATADIR})
.for file in ${SRC_DATA}
(cd ${WRKSRC}/src && ${INSTALL_DATA} ${file} ${STAGEDIR}${DATADIR})
.endfor
.for file in FEATURES HISTORY NEWS README TODO
cd ${WRKSRC} && ${INSTALL_DATA} ${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>