mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
sysutils/minipro: Update to latest snapshot
- Add missing files [1] PR: 264459 Reported by: jeffpc@josefsipek.net
This commit is contained in:
parent
ba5fd311e8
commit
435bcd2161
3 changed files with 16 additions and 15 deletions
|
@ -1,5 +1,6 @@
|
||||||
PORTNAME= minipro
|
PORTNAME= minipro
|
||||||
PORTVERSION= 0.5
|
DISTVERSION= 0.5
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= sysutils
|
CATEGORIES= sysutils
|
||||||
|
|
||||||
MAINTAINER= bofh@freebsd.org
|
MAINTAINER= bofh@freebsd.org
|
||||||
|
@ -11,20 +12,18 @@ LICENSE= GPLv3
|
||||||
BUILD_DEPENDS= gsed:textproc/gsed
|
BUILD_DEPENDS= gsed:textproc/gsed
|
||||||
RUN_DEPENDS= bash:shells/bash
|
RUN_DEPENDS= bash:shells/bash
|
||||||
|
|
||||||
USES= compiler:c11 gmake pkgconfig shebangfix
|
USES= compiler:c11 gmake pkgconfig
|
||||||
USE_GITLAB= yes
|
USE_GITLAB= yes
|
||||||
GL_ACCOUNT= DavidGriffith
|
GL_ACCOUNT= DavidGriffith
|
||||||
GL_PROJECT= ${PORTNAME}
|
GL_PROJECT= ${PORTNAME}
|
||||||
GL_TAGNAME= 8be592c954264afdc3a2cb596ee45517cc5dc621
|
GL_TAGNAME= e8244313c2558b41a390824e1f847f449ebd7fce
|
||||||
|
|
||||||
SHEBANG_FILES= miniprohex
|
|
||||||
|
|
||||||
BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed
|
BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed
|
||||||
|
|
||||||
PLIST_FILES= bin/minipro \
|
PLIST_FILES= bin/minipro \
|
||||||
bin/miniprohex \
|
|
||||||
man/man1/minipro.1.gz \
|
man/man1/minipro.1.gz \
|
||||||
share/minipro/infoic.xml
|
share/minipro/infoic.xml \
|
||||||
|
share/minipro/logicic.xml
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
@${GZIP_CMD} ${STAGEDIR}${PREFIX}/man/man1/minipro.1
|
@${GZIP_CMD} ${STAGEDIR}${PREFIX}/man/man1/minipro.1
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
TIMESTAMP = 1648345702
|
TIMESTAMP = 1704228872
|
||||||
SHA256 (DavidGriffith-minipro-8be592c954264afdc3a2cb596ee45517cc5dc621_GL0.tar.gz) = 4b0381949b1ac335132fd4ee6560fe8cfa6320edaaa1f7473ebec03dce2fa907
|
SHA256 (DavidGriffith-minipro-e8244313c2558b41a390824e1f847f449ebd7fce_GL0.tar.gz) = 674ea630d7685bf22e87b6ddaaf837191de8d9a2705f83eed7ce5cf0dd819a74
|
||||||
SIZE (DavidGriffith-minipro-8be592c954264afdc3a2cb596ee45517cc5dc621_GL0.tar.gz) = 388948
|
SIZE (DavidGriffith-minipro-e8244313c2558b41a390824e1f847f449ebd7fce_GL0.tar.gz) = 495793
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- Makefile.orig 2022-03-27 01:54:42 UTC
|
--- Makefile.orig 2023-12-03 05:11:49 UTC
|
||||||
+++ Makefile
|
+++ Makefile
|
||||||
@@ -1,16 +1,16 @@
|
@@ -1,18 +1,18 @@
|
||||||
# Install Configuration
|
# Install Configuration
|
||||||
|
|
||||||
# Your C compiler
|
# Your C compiler
|
||||||
|
@ -9,8 +9,10 @@
|
||||||
#CC=clang
|
#CC=clang
|
||||||
|
|
||||||
# Compiler options
|
# Compiler options
|
||||||
-CFLAGS = -g -O0 -Wall -DSHARE_INSTDIR="\"$(SHARE_INSTDIR)\""
|
-CFLAGS = -g -O0 -Wall -Wextra -W -Wno-sign-compare -Wno-unused-parameter
|
||||||
+CFLAGS += -g -O0 -Wall -DSHARE_INSTDIR="\"$(SHARE_INSTDIR)\""
|
+CFLAGS += -g -O0 -Wall -Wextra -W -Wno-sign-compare -Wno-unused-parameter
|
||||||
|
CPPFLAGS = -DSHARE_INSTDIR="\"$(SHARE_INSTDIR)\""
|
||||||
|
LDFLAGS =
|
||||||
|
|
||||||
# Normally minipro is installed to /usr/local. If you want to put it
|
# Normally minipro is installed to /usr/local. If you want to put it
|
||||||
# somewhere else, define that location here.
|
# somewhere else, define that location here.
|
||||||
|
@ -20,7 +22,7 @@
|
||||||
|
|
||||||
# Some older releases of MacOS need some extra library flags.
|
# Some older releases of MacOS need some extra library flags.
|
||||||
#EXTRA_LIBS += "-framework Foundation -framework IOKit"
|
#EXTRA_LIBS += "-framework Foundation -framework IOKit"
|
||||||
@@ -70,7 +70,7 @@ INCLUDE_INSTDIR=$(DESTDIR)$(PREFIX)/include/libminipro
|
@@ -73,7 +73,7 @@ INCLUDE_INSTDIR=$(DESTDIR)$(PREFIX)/include/libminipro
|
||||||
LIB_INSTDIR=$(DESTDIR)$(PREFIX)/lib
|
LIB_INSTDIR=$(DESTDIR)$(PREFIX)/lib
|
||||||
SHARE_INSTDIR=$(DESTDIR)$(PREFIX)/share/minipro
|
SHARE_INSTDIR=$(DESTDIR)$(PREFIX)/share/minipro
|
||||||
INCLUDE_INSTDIR=$(DESTDIR)$(PREFIX)/include/libminipro
|
INCLUDE_INSTDIR=$(DESTDIR)$(PREFIX)/include/libminipro
|
||||||
|
|
Loading…
Add table
Reference in a new issue