diff --git a/ports-mgmt/portconfig/Makefile b/ports-mgmt/portconfig/Makefile index 78762485322f..78222c11de12 100644 --- a/ports-mgmt/portconfig/Makefile +++ b/ports-mgmt/portconfig/Makefile @@ -1,26 +1,26 @@ PORTNAME= portconfig -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= ports-mgmt MAINTAINER= bapt@FreeBSD.org COMMENT= Utility to set up FreeBSD port options WWW= https://gitlab.com/alfix/portconfig LICENSE= BSD2CLAUSE BUILD_DEPENDS= ${LOCALBASE}/lib/libbsddialog.a:devel/bsddialog USES= localbase:ldflags USE_GITLAB= yes GL_ACCOUNT= alfix -GL_COMMIT= d8863468ba3f5927a6f27180ec18b21724a24fcf +GL_COMMIT= 120109308b3c15a4570e65ea91bfba6426b37193 PLIST_FILES= bin/${PORTNAME} \ - man/man1/${PORTNAME}.1.gz \ + man/man1/${PORTNAME}.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ .include diff --git a/ports-mgmt/portconfig/distinfo b/ports-mgmt/portconfig/distinfo index 904747bd230f..3850fbdc8394 100644 --- a/ports-mgmt/portconfig/distinfo +++ b/ports-mgmt/portconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1649368024 -SHA256 (alfix-portconfig-d8863468ba3f5927a6f27180ec18b21724a24fcf_GL0.tar.gz) = 67d758969e970ffc046d332bb8c817d6c5ae9eefb1aecedb2070312cee067431 -SIZE (alfix-portconfig-d8863468ba3f5927a6f27180ec18b21724a24fcf_GL0.tar.gz) = 203339 +TIMESTAMP = 1661946735 +SHA256 (alfix-portconfig-120109308b3c15a4570e65ea91bfba6426b37193_GL0.tar.gz) = 591f6a36502846c0f5b2f778165268327d8ac4e321f87eb53cb87840f573bedc +SIZE (alfix-portconfig-120109308b3c15a4570e65ea91bfba6426b37193_GL0.tar.gz) = 121236 diff --git a/ports-mgmt/portconfig/files/patch-Makefile b/ports-mgmt/portconfig/files/patch-Makefile deleted file mode 100644 index abb28e6bd82b..000000000000 --- a/ports-mgmt/portconfig/files/patch-Makefile +++ /dev/null @@ -1,27 +0,0 @@ ---- Makefile.orig 2022-04-07 23:53:42 UTC -+++ Makefile -@@ -6,21 +6,16 @@ - OUTPUT= portconfig - SOURCES= portconfig.c - OBJECTS= ${SOURCES:.c=.o} --LIBPATH= ${.CURDIR}/bsddialog/lib --LIBBSDDIALOG= ${LIBPATH}/libbsddialog.so - --CFLAGS+= -I${LIBPATH} -std=gnu99 -Wall -Wextra --LDFLAGS+= -Wl,-rpath=${LIBPATH} -L${LIBPATH} -lbsddialog -+CFLAGS+= -std=gnu99 -Wall -Wextra -+LDFLAGS+= -L/usr/lib -Wl,-Bstatic -v -Wl,-whole-archive -lbsddialog -Wl,-no-whole-archive -lformw -lncursesw -ltinfow -Wl,-Bdynamic -Wl,--export-dynamic - - RM= rm -f - - all : ${OUTPUT} - --${OUTPUT}: ${LIBBSDDIALOG} ${OBJECTS} -+${OUTPUT}: ${OBJECTS} - ${CC} ${LDFLAGS} ${OBJECTS} -o ${.PREFIX} -- --${LIBBSDDIALOG}: -- make -C ${LIBPATH} - - .c.o: - ${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}