1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Update to 4.0

PR:		ports/117533
Submitted by:	Dominic Fandrey <lon_kamikaze@gmx.de> (maintainer)
This commit is contained in:
Pav Lucistnik 2007-12-14 16:18:22 +00:00
parent ce4b529805
commit 67864fce86
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=203553
3 changed files with 23 additions and 8 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= bsdadminscripts
PORTVERSION= 3.0
PORTVERSION= 4.0
CATEGORIES= sysutils ports-mgmt
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -14,10 +14,11 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= lon_kamikaze@gmx.de
COMMENT= A small collection of administration scripts
OPTIONS+= RCSTART "Use rc scripts based on PROVIDE" On
OPTIONS+= PORTCONFIG "Depends on portupgrade" On
OPTIONS+= BUILDFLAGS "Build configuration system" On
OPTIONS+= PKG_LIBCHK "Check for links against missing libraries" On
OPTIONS+= PKG_VALIDATE "Check for broken and missing files" On
OPTIONS+= PORTCONFIG "Depends on portupgrade" On
OPTIONS+= RCSTART "Use rc scripts based on PROVIDE" On
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
NO_BUILD= yes
@ -58,6 +59,11 @@ PLIST_FILES+= sbin/pkg_validate
MAN1+= pkg_validate.1
.endif
.if !defined(WITHOUT_PKG_VALIDATE)
PLIST_FILES+= sbin/pkg_libchk
MAN1+= pkg_libchk.1
.endif
PLIST_FILES+= ${ETC_FILES:S,^,etc/,}
do-install:
@ -85,6 +91,10 @@ do-install:
@${INSTALL_SCRIPT} ${WRKSRC}/${_file} ${DATADIR}
.endfor
.endif
.if !defined(WITHOUT_PKG_LIBCHK)
@${ECHO_MSG} "===> Installing pkg_libchk."
@${INSTALL_SCRIPT} ${WRKSRC}/pkg_libchk ${PREFIX}/sbin/
.endif
.if !defined(WITHOUT_PKG_VALIDATE)
@${ECHO_MSG} "===> Installing pkg_validate."
@${INSTALL_SCRIPT} ${WRKSRC}/pkg_validate ${PREFIX}/sbin/
@ -95,10 +105,14 @@ do-install:
@${INSTALL_DATA} ${WRKSRC}/${_conf} ${PREFIX}/etc
.endfor
.endif
.if defined(NOPORTDOCS)
.undef MAN1
.else
@${ECHO_MSG} "===> Installing man pages."
.for _manpage in ${MAN1}
@${INSTALL_MAN} ${WRKSRC}/${_manpage} ${MANPREFIX}/man/man1/
.endfor
.endif
message:
@${CAT} ${PKGMESSAGE}

View File

@ -1,3 +1,3 @@
MD5 (bsdadminscripts-3.0.tar.gz) = 894dd8bcd3a6012cfec877fd11afac67
SHA256 (bsdadminscripts-3.0.tar.gz) = c06c41a6b41b85b4daee0031f201920a5ff00b4ed48e020c0cda7388071a3ee1
SIZE (bsdadminscripts-3.0.tar.gz) = 15705
MD5 (bsdadminscripts-4.0.tar.gz) = ff5228702bd7efb21e673ded35184965
SHA256 (bsdadminscripts-4.0.tar.gz) = a8bcc5c67e2cbc3a9104e06b1721fb6135532335054b302ac391b0b46e36f4c1
SIZE (bsdadminscripts-4.0.tar.gz) = 18594

View File

@ -1,7 +1,8 @@
This is a collection of administration scripts. At the moment it
consists of a script to control rc.d scripts at runtime, a
script that adds functionality to portupgrade. And scripts to set variables
for make jobs (like portconf, but with more possibilities).
script that adds functionality to portupgrade, scripts to set variables
for make jobs (like portconf, but with more possibilities). And scripts
to check for broken packages.
WWW: http://sourceforge.net/projects/bsdadminscripts/