diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-12-23 17:51:14 +0800 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-12-23 17:51:14 +0800 |
commit | ee70836de46d8058489dca1b27687780ee1c03c3 (patch) | |
tree | a371ab2d3d4d406ff3390626dbe3d78063c867b3 /editors | |
parent | 8a646f669b12ed3111d6ec088127aa8f7a36bfc6 (diff) | |
download | freebsd-ports-gnome-ee70836de46d8058489dca1b27687780ee1c03c3.tar.gz freebsd-ports-gnome-ee70836de46d8058489dca1b27687780ee1c03c3.tar.zst freebsd-ports-gnome-ee70836de46d8058489dca1b27687780ee1c03c3.zip |
Fix build on 5-stable/6-current
PR: ports/75396
Submitted by: Ports Fury
Diffstat (limited to 'editors')
-rw-r--r-- | editors/hte/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/editors/hte/Makefile b/editors/hte/Makefile index a5f67a44d95a..f2305f7f4709 100644 --- a/editors/hte/Makefile +++ b/editors/hte/Makefile @@ -28,10 +28,6 @@ PLIST_FILES= bin/ht .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502126 -BROKEN= "Does not build on FreeBSD >= 5.x" -.endif - .if ${OSVERSION} < 400000 LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses .endif @@ -57,7 +53,8 @@ post-patch: @${REINPLACE_CMD} -e \ 's|#include <malloc.h>||g' ${WRKSRC}/cp-demangle.c -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ht ${PREFIX}/bin .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} |