Update to rdist-6.1.3. The only major thing changed seems to be two
buffer overflow problems, which shouldn't be an issue since it's not setuid. While here, do not hardcode /usr/local, use $(PREFIX). Do not patch the install target so that 'make install' does the man pages, add install.man to the ${INSTALL_TARGET} variable so that both "install" and "install.man" are done. This reduces the diff to the base source a little, but has the same overall effect.
This commit is contained in:
parent
d6763d278d
commit
e7ca1c5ef2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3828
3 changed files with 9 additions and 7 deletions
|
@ -1,17 +1,19 @@
|
|||
# New ports collection makefile for: rdist
|
||||
# Version required: rdist-6.1.2
|
||||
# Version required: rdist-6.1.3
|
||||
# Date created: 19 August 1995
|
||||
# Whom: peter
|
||||
#
|
||||
# $Id: Makefile,v 1.5 1995/11/27 04:05:25 asami Exp $
|
||||
# $Id: Makefile,v 1.6 1996/05/17 11:14:53 peter Exp $
|
||||
#
|
||||
|
||||
DISTNAME= rdist-6.1.2
|
||||
DISTNAME= rdist-6.1.3
|
||||
CATEGORIES+= net
|
||||
MASTER_SITES= ftp://usc.edu/pub/rdist/
|
||||
|
||||
MAINTAINER= peter@FreeBSD.org
|
||||
|
||||
INSTALL_TARGET+=install.man
|
||||
|
||||
post-install:
|
||||
strip ${PREFIX}/bin/rdist6
|
||||
strip ${PREFIX}/bin/rdistd
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (rdist-6.1.2.tar.gz) = e3311c4f3d9e9de1bfcb04862563c683
|
||||
MD5 (rdist-6.1.3.tar.gz) = 8a76b880b023c5e648b7cb77b9608b9f
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
# BIN_DIR variable, you would uncomment the following line
|
||||
# or add your own line.
|
||||
#
|
||||
! BIN_DIR = /usr/local/bin
|
||||
! BIN_DIR = $(PREFIX)/bin
|
||||
! OPT = -O -s
|
||||
! CLIENT = rdist6
|
||||
|
||||
|
@ -33,8 +33,8 @@
|
|||
#
|
||||
# Site specific Man Page configuration.
|
||||
#
|
||||
! MAN_1_DIR = /usr/local/man/man1
|
||||
! MAN_8_DIR = /usr/local/man/man8
|
||||
! MAN_1_DIR = $(PREFIX)/man/man1
|
||||
! MAN_8_DIR = $(PREFIX)/man/man8
|
||||
! MAN_OWNER = bin
|
||||
! MAN_GROUP = bin
|
||||
#MAN_MODE = 644
|
||||
|
|
Loading…
Reference in a new issue