git: 9d5dcef33c6f - main - editors/bvi: Use DISTNAME/WRKSRC instead of EXTRACT_SUFX
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 02 Jun 2025 21:57:33 UTC
The branch main has been updated by bofh:
URL: https://cgit.FreeBSD.org/ports/commit/?id=9d5dcef33c6fdb1c9a3ef4cdfa54a6677f3e513f
commit 9d5dcef33c6fdb1c9a3ef4cdfa54a6677f3e513f
Author: Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2025-06-02 21:40:12 +0000
Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2025-06-02 21:56:58 +0000
editors/bvi: Use DISTNAME/WRKSRC instead of EXTRACT_SUFX
Approved by: portmgr (blanket)
---
editors/bvi/Makefile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/editors/bvi/Makefile b/editors/bvi/Makefile
index 2172af1dbe72..ccebf9fd186a 100644
--- a/editors/bvi/Makefile
+++ b/editors/bvi/Makefile
@@ -3,7 +3,7 @@ DISTVERSION= 1.4.2
PORTREVISION= 1
CATEGORIES= editors
MASTER_SITES= SF
-EXTRACT_SUFX= .src.tar.gz
+DISTNAME= ${PORTNAME}-${DISTVERSION}.src
MAINTAINER= naddy@FreeBSD.org
COMMENT= Vi-like binary file (hex)editor
@@ -13,6 +13,9 @@ LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
USES= ncurses
+
GNU_CONFIGURE= yes
+WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
+
.include <bsd.port.mk>