From 6a2592dbf777795600cd2961391667df39641c65 Mon Sep 17 00:00:00 2001 From: Muhammad Moinur Rahman Date: Mon, 28 Apr 2025 03:14:57 +0200 Subject: [PATCH] editors/mg: Unhook static version --- editors/mg/Makefile | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/editors/mg/Makefile b/editors/mg/Makefile index 8b34f3985b7d..5288b70224b5 100644 --- a/editors/mg/Makefile +++ b/editors/mg/Makefile @@ -10,36 +10,20 @@ WWW= https://man.openbsd.org/mg LICENSE= PD -FLAVORS= dynamic static -FLAVOR?= ${FLAVORS:[1]} -static_PKGNAMESUFFIX= -static - USES= ncurses uidfix -.if ${FLAVOR} == static -COMMENT+= (rescue(8) version) -MAKE_ARGS+= NO_SHARED=yes -PLIST_FILES= /rescue/mg -.else PLIST_FILES= bin/mg \ share/man/man1/mg.1.gz PORTDOCS= README tutorial OPTIONS_DEFINE= DOCS -.endif MAKE_ARGS+= BINDIR=${PREFIX}/bin \ MANDIR=${PREFIX}/share/man/man \ NCURSESINC=${NCURSESINC} \ NCURSESLIB=${NCURSESLIB} -.if ${FLAVOR} == static -do-install: - @${MKDIR} ${STAGEDIR}/rescue - ${INSTALL_PROGRAM} ${WRKSRC}/mg ${STAGEDIR}/rescue -.else post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.endif .include