mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
- update to 0.2.4:
1) added -ip "ignore port" command line option and the same for pm-020.conf 2) if a port fails to build, port manager now instead of failing, adds it to ignore.db then continues PR: ports/76529 Submitted by: maintainer
This commit is contained in:
parent
b356746d58
commit
9f3d099422
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=127021
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= portmanager
|
||||
PORTVERSION= 0.2.3
|
||||
PORTVERSION= 0.2.4
|
||||
PORTREVISION= 0
|
||||
#-----------------------------------------
|
||||
#for local use, remove before submitting PR
|
||||
@ -14,9 +14,8 @@ CATEGORIES= sysutils
|
||||
#CATEGORIES= local/sysutils
|
||||
#VALID_CATEGORIES+= ${CATEGORIES} # for FreeBSD to accept our local category
|
||||
#-----------------------------------------
|
||||
#MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
#MASTER_SITE_SUBDIR= portmanager
|
||||
MASTER_SITES= http://www.pkix.net/mirror/sf.net/
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= portmanager
|
||||
|
||||
MAINTAINER= reso3w83@verizon.net
|
||||
COMMENT= FreeBSD port management software
|
||||
@ -30,6 +29,7 @@ BUILD_DEPENDS= autoheader259:${PORTSDIR}/devel/autoconf259 \
|
||||
MAN1= portmanager.1
|
||||
MAN3= libMG.3 \
|
||||
MGdbCreate.3 \
|
||||
MGdbDelete.3 \
|
||||
MGdbGetRecordQty.3 \
|
||||
MGdbGoTop.3 \
|
||||
MGdbSeek.3
|
||||
@ -40,11 +40,11 @@ CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_REINPLACE= yes
|
||||
# Need INSTALL_TARGET to install /usr/local/etc/portmanager/pm-020.conf.SAMPLE
|
||||
INSTALL_TARGET= install info
|
||||
INSTALL_TARGET= install info
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
|
||||
s|0.2.3|${PORTVERSION}_${PORTREVISION}|g ; \
|
||||
s|0.2.4|${PORTVERSION}_${PORTREVISION}|g ; \
|
||||
s|%%PORTSDIR%%|${PORTSDIR}|g ; \
|
||||
s|%%PKG_DBDIR%%|${PKG_DBDIR}|g' ${WRKSRC}/libPMGR/src/libPMGR.h
|
||||
|
||||
@ -58,21 +58,20 @@ post-configure:
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${ECHO} "******************************************************"
|
||||
@${ECHO} "* to compile with debug support try: *"
|
||||
@${ECHO} "* make WITH_DEBUG=yes install clean *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* portmanager commands: *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* portmanager -h brief help screen *"
|
||||
@${ECHO} "* -s list status of installed ports *"
|
||||
@${ECHO} "* -u upgrade installed ports *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* see man portmanager(1) or *"
|
||||
@${ECHO} "* /usr/local/etc/portmanager/pm-020.conf *"
|
||||
@${ECHO} "* for config options *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* all feedback is welcome, send to: *"
|
||||
@${ECHO} "* Michael C. Shultz reso3w83@verizon.net *"
|
||||
@${ECHO} "******************************************************"
|
||||
@${ECHO} "***********************************************************************"
|
||||
@${ECHO} "* to compile with debug support try: *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* make WITH_DEBUG=yes install clean *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* to upgrade ports example: *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* portmanager -u -ip editors/nedit editors/openoffice *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* upgrades evrything except nedit, open office and their dependencies *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* see man portmanager(1) for more information *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* all feedback is welcome, send to: *"
|
||||
@${ECHO} "* Michael C. Shultz reso3w83@verizon.net *"
|
||||
@${ECHO} "***********************************************************************"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (portmanager-0.2.3.tar.gz) = 5c69d3489a0b65222063dc78947781b1
|
||||
SIZE (portmanager-0.2.3.tar.gz) = 391773
|
||||
MD5 (portmanager-0.2.4.tar.gz) = 2264d957c50070045c1da17184435a51
|
||||
SIZE (portmanager-0.2.4.tar.gz) = 393458
|
||||
|
@ -1,3 +1,4 @@
|
||||
@unexec rm -f %D/share/portmanager/commandLine.db 2>/dev/null || true
|
||||
@unexec rm -f %D/share/portmanager/configure.db 2>/dev/null || true
|
||||
@unexec rm -f %D/share/portmanager/configure.db.temp 2>/dev/null || true
|
||||
@unexec rm -f %D/share/portmanager/ignore.db 2>/dev/null || true
|
||||
|
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= portmanager
|
||||
PORTVERSION= 0.2.3
|
||||
PORTVERSION= 0.2.4
|
||||
PORTREVISION= 0
|
||||
#-----------------------------------------
|
||||
#for local use, remove before submitting PR
|
||||
@ -14,9 +14,8 @@ CATEGORIES= sysutils
|
||||
#CATEGORIES= local/sysutils
|
||||
#VALID_CATEGORIES+= ${CATEGORIES} # for FreeBSD to accept our local category
|
||||
#-----------------------------------------
|
||||
#MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
#MASTER_SITE_SUBDIR= portmanager
|
||||
MASTER_SITES= http://www.pkix.net/mirror/sf.net/
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= portmanager
|
||||
|
||||
MAINTAINER= reso3w83@verizon.net
|
||||
COMMENT= FreeBSD port management software
|
||||
@ -30,6 +29,7 @@ BUILD_DEPENDS= autoheader259:${PORTSDIR}/devel/autoconf259 \
|
||||
MAN1= portmanager.1
|
||||
MAN3= libMG.3 \
|
||||
MGdbCreate.3 \
|
||||
MGdbDelete.3 \
|
||||
MGdbGetRecordQty.3 \
|
||||
MGdbGoTop.3 \
|
||||
MGdbSeek.3
|
||||
@ -40,11 +40,11 @@ CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_REINPLACE= yes
|
||||
# Need INSTALL_TARGET to install /usr/local/etc/portmanager/pm-020.conf.SAMPLE
|
||||
INSTALL_TARGET= install info
|
||||
INSTALL_TARGET= install info
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
|
||||
s|0.2.3|${PORTVERSION}_${PORTREVISION}|g ; \
|
||||
s|0.2.4|${PORTVERSION}_${PORTREVISION}|g ; \
|
||||
s|%%PORTSDIR%%|${PORTSDIR}|g ; \
|
||||
s|%%PKG_DBDIR%%|${PKG_DBDIR}|g' ${WRKSRC}/libPMGR/src/libPMGR.h
|
||||
|
||||
@ -58,21 +58,20 @@ post-configure:
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${ECHO} "******************************************************"
|
||||
@${ECHO} "* to compile with debug support try: *"
|
||||
@${ECHO} "* make WITH_DEBUG=yes install clean *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* portmanager commands: *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* portmanager -h brief help screen *"
|
||||
@${ECHO} "* -s list status of installed ports *"
|
||||
@${ECHO} "* -u upgrade installed ports *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* see man portmanager(1) or *"
|
||||
@${ECHO} "* /usr/local/etc/portmanager/pm-020.conf *"
|
||||
@${ECHO} "* for config options *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* all feedback is welcome, send to: *"
|
||||
@${ECHO} "* Michael C. Shultz reso3w83@verizon.net *"
|
||||
@${ECHO} "******************************************************"
|
||||
@${ECHO} "***********************************************************************"
|
||||
@${ECHO} "* to compile with debug support try: *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* make WITH_DEBUG=yes install clean *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* to upgrade ports example: *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* portmanager -u -ip editors/nedit editors/openoffice *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* upgrades evrything except nedit, open office and their dependencies *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* see man portmanager(1) for more information *"
|
||||
@${ECHO} "* *"
|
||||
@${ECHO} "* all feedback is welcome, send to: *"
|
||||
@${ECHO} "* Michael C. Shultz reso3w83@verizon.net *"
|
||||
@${ECHO} "***********************************************************************"
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (portmanager-0.2.3.tar.gz) = 5c69d3489a0b65222063dc78947781b1
|
||||
SIZE (portmanager-0.2.3.tar.gz) = 391773
|
||||
MD5 (portmanager-0.2.4.tar.gz) = 2264d957c50070045c1da17184435a51
|
||||
SIZE (portmanager-0.2.4.tar.gz) = 393458
|
||||
|
@ -1,3 +1,4 @@
|
||||
@unexec rm -f %D/share/portmanager/commandLine.db 2>/dev/null || true
|
||||
@unexec rm -f %D/share/portmanager/configure.db 2>/dev/null || true
|
||||
@unexec rm -f %D/share/portmanager/configure.db.temp 2>/dev/null || true
|
||||
@unexec rm -f %D/share/portmanager/ignore.db 2>/dev/null || true
|
||||
|
Loading…
Reference in New Issue
Block a user