pkgsrc/sysutils/radmind/Makefile

37 lines
1.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.27 2010/12/14 16:27:29 hauke Exp $
#
DISTNAME= radmind-1.14.1
Package upgraded to 1.14.0rc1 - essentially bug fixes assembled in the last two years. From the git commit log: 2010-06-23 Create longest possible path first in mkdirs routine. radmind-1.14.0rc1 2010-05-28 Updated radmind man page with CRL documentation. 2010-05-28 [Patch 2930172]: Add support for CRLs 2010-02-03 Fix: check argument count when encountering a minus... 2010-01-28 [Bug 2927309]: ktcheck cores with recursive command... 2010-01-20 Fix: -r (use randfile) was being ignored. 2010-01-13 [Patch 2931438]: Change port back to standard on failur... 2009-12-15 node_create sometimes takes a NULL transcript name. 2009-12-06 [Bug 1816150]: Can't replace dir with file. 2009-11-19 Accidentally placed dns_sd check in the PAM if-block. 2009-11-19 Pull Wes's path repetition dectection patch from CVS. 2009-11-19 Add --with-pam. 2009-11-17 [Patch 2899332] Fix and document -p option to ra.sh. 2009-11-11 [Patch 2524867] Add -p option for ra.sh (for port). 2009-11-11 [Patch 2877346] Add a copy mode to lmerge. 2009-11-11 Fix: missing closing quotation mark in lcksum error... 2009-10-28 [Bug 2887658]: fsdiff prints multiple lines for changin... 2009-10-15 Fix: lcksum crashes when given a minus (-) line with... 2009-10-15 Accept 2845279: Updated rash manpage 2009-09-11 Quick fix for pam_conv struct compiler nagging. 2009-09-11 Fix empty prepath check in lapply and lcksum 2009-08-18 Exclude leftovers from autoconf and git when making... 2009-08-18 Do not track configure script. 2009-08-01 Eliminate old workaround for broken mkdir on old versio... origin 2009-02-23 Only use $USERNAME if $USERAUTH is enabled. 2009-01-29 Fix bug 2541171. Patch from bawood at umich dot edu. 2008-12-11 Proof-of-concept code using Apple's FSEvents API. Can...
2010-09-09 15:58:00 +02:00
#PKGREVISION= 1
CATEGORIES= sysutils
Update to 1.6.1, provided by the maintainer Hauke Fath in PR 33938. Changes from 1.6.0: - Fixed non OS X compile bug Major changes from 1.5.1: - Added support for network communication compression ( patch #1348172 ) Thanks Maarten Thibaut for the original code - OS X Package contains universal binaries. Other Changes - config file now supports optional comment in third column - lapply fix for OS X symlink permission bug ( bug #1441965 ) - Fixes for AppleSingle support on i386. ( bug #1438290 ) - lmerge -f no longer duplicates some minus lines ( bug 1346368 ) - Server logs child process stats including blocks in and out - specify user to ra.sh with -U ( patch #1435665 ) Thanks Sean Sweda - ra.sh prompt for username when USER=root ( patch #1420980 ) Thanks Sean Sweda - ra.sh uses $SUDO_USER if set - fixed errno assignment if FD_ISSET fails ( libsnet bug #1436043 ) Thanks Matt Selsky - ktcheck not sending quit if special file is created ( bug #1429169 ) - twhich can deal with null/empty transcript ( bug 1372729 ) - Pass correct configure args to libsnet for ssl and sasl ( bug #1435999 ) Thanks Matt Selsky - ./configure now warns if tmp exists ( patch #1384558 ) Thanks Jose Calhariz - ./configure now supports DISTDIR ( patch #1384555 ) Thanks Jose Calhariz - Explaining the numeric range in radmind.8 ( patch #1408441 ) Thanks David Coulthart - moved MIN and MAX to config.h - Added COMP info to SPEC - Apple package will install /var/radmind/client, preapply and postapply - make dist now follows symlinks
2006-07-17 19:59:05 +02:00
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=radmind/}
MAINTAINER= hauke@NetBSD.org
HOMEPAGE= http://rsug.itd.umich.edu/software/radmind/
COMMENT= Remote file administration and integrity tool
LICENSE= modified-bsd
2008-06-20 03:09:05 +02:00
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
CONFIGURE_ARGS+= --with-radminddir=${RADMINDDIR}
CONFIGURE_ENV+= diffpath=${TOOLS_DIFF:Q}
# XXX configure script checks for path to echo, which pkgsrc does not
# provide, so we need to side-step {echopath}.
CONFIGURE_ENV+= ac_cv_path_echopath=${TOOLS_ECHO:Q}
BUILD_TARGET= all man rash
RADMINDDIR= ${VARBASE}/radmind
BUILD_DEFS+= VARBASE
2010-02-19 21:48:44 +01:00
OWN_DIRS_PERMS+= ${RADMINDDIR} ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0750
OWN_DIRS_PERMS+= ${RADMINDDIR}/client ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0750
OWN_DIRS_PERMS+= ${RADMINDDIR}/preapply ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0750
OWN_DIRS_PERMS+= ${RADMINDDIR}/postapply ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0750
OWN_DIRS_PERMS+= ${RADMINDDIR}/cert ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0700
RCD_SCRIPTS= radmind
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"