View | Details | Raw Unified | Return to bug 260398
Collapse All | Expand All

(-)b/ports-mgmt/portconfig/Makefile (-2 / +2 lines)
Lines 1-5 Link Here
1
PORTNAME=	portconfig
1
PORTNAME=	portconfig
2
PORTVERSION=	0.1.1
2
PORTVERSION=	0.2
3
CATEGORIES=	ports-mgmt
3
CATEGORIES=	ports-mgmt
4
4
5
MAINTAINER=	bapt@FreeBSD.org
5
MAINTAINER=	bapt@FreeBSD.org
Lines 9-15 LICENSE= BSD2CLAUSE Link Here
9
9
10
USE_GITLAB=	yes
10
USE_GITLAB=	yes
11
GL_ACCOUNT=	alfix
11
GL_ACCOUNT=	alfix
12
GL_COMMIT=	222ee8a8f6a790fe6a9c72f7b615e47ecdb56399
12
GL_COMMIT=	9103a17b253ead68937bfffdf9135cd6ada8a538
13
13
14
USES=		localbase:ldflags
14
USES=		localbase:ldflags
15
BUILD_DEPENDS=	${LOCALBASE}/lib/libbsddialog.a:devel/bsddialog
15
BUILD_DEPENDS=	${LOCALBASE}/lib/libbsddialog.a:devel/bsddialog
(-)b/ports-mgmt/portconfig/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1638783870
1
TIMESTAMP = 1639427344
2
SHA256 (alfix-portconfig-222ee8a8f6a790fe6a9c72f7b615e47ecdb56399_GL0.tar.gz) = 20e0ccbe417607502a37c0cd86e04a5cf5c5d54577549f0448cf585e2458bff0
2
SHA256 (alfix-portconfig-9103a17b253ead68937bfffdf9135cd6ada8a538_GL0.tar.gz) = 5908d23ad0680e2ae38aa3e1f21af265b2b981989333c205c86badb53a27896f
3
SIZE (alfix-portconfig-222ee8a8f6a790fe6a9c72f7b615e47ecdb56399_GL0.tar.gz) = 202181
3
SIZE (alfix-portconfig-9103a17b253ead68937bfffdf9135cd6ada8a538_GL0.tar.gz) = 202379
(-)a/ports-mgmt/portconfig/files/patch-portconfig.c (-25 lines)
Removed Link Here
1
--- portconfig.c.orig	2021-11-29 17:22:25 UTC
2
+++ portconfig.c
3
@@ -253,9 +253,6 @@ main(int argc, char *argv[])
4
 			theme = BSDDIALOG_THEME_DIALOG;
5
 			newstr = "+";
6
 		}
7
-		else if (strcasecmp(env, "magenta") == 0) {
8
-			theme = BSDDIALOG_THEME_MAGENTA;
9
-		}
10
 		else if (strcasecmp(env, "blackwhite") == 0) {
11
 			theme = BSDDIALOG_THEME_BLACKWHITE;
12
 		}
13
@@ -290,10 +287,10 @@ main(int argc, char *argv[])
14
 	confhelp.title = "HELP";
15
 	confhelp.hfile = NULL;
16
 	for (;;) {
17
-		output = bsddialog_mixedlist(conf, helpmsg, h, w, 0, ngroups,
18
+		output = bsddialog_mixedlist(&conf, helpmsg, h, w, 0, ngroups,
19
 		    groups, NULL, NULL);
20
 		if (output == BSDDIALOG_HELP) {
21
-			output = bsddialog_textbox(confhelp, conf.hfile, 0, 0);
22
+			output = bsddialog_textbox(&confhelp, conf.hfile, 0, 0);
23
 			if(output == BSDDIALOG_ERROR)
24
 				break;
25
 		}

Return to bug 260398