git: 583dcbe668b7 - main - devel/stdman: Improve port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 08 Mar 2026 23:34:47 UTC
The branch main has been updated by diizzy:
URL: https://cgit.FreeBSD.org/ports/commit/?id=583dcbe668b7c591f8cc10e4465e7204586f418d
commit 583dcbe668b7c591f8cc10e4465e7204586f418d
Author: Daniel Engberg <diizzy@FreeBSD.org>
AuthorDate: 2026-03-08 22:10:25 +0000
Commit: Daniel Engberg <diizzy@FreeBSD.org>
CommitDate: 2026-03-08 23:16:58 +0000
devel/stdman: Improve port
As files are prerendered we just need to copy them to the correct
location. Instead of pulling in bash, gmake and addition dependencies
utilize the framework instead.
Approved by: jbo (via Matrix)
---
devel/stdman/Makefile | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/devel/stdman/Makefile b/devel/stdman/Makefile
index c5e8b2d1187d..990d8e79261d 100644
--- a/devel/stdman/Makefile
+++ b/devel/stdman/Makefile
@@ -9,15 +9,13 @@ WWW= https://github.com/jeaye/stdman
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
-BUILD_DEPENDS= bash:shells/bash
-
-USES= gmake
-
USE_GITHUB= yes
GH_ACCOUNT= jeaye
-HAS_CONFIGURE= yes
NO_ARCH= yes
NO_BUILD= yes
+do-install:
+ ${INSTALL_MAN} ${WRKSRC}/man/*.3 ${STAGEDIR}${PREFIX}/share/man/man3
+
.include <bsd.port.mk>