1998-01-09 23:23:58 +00:00
|
|
|
# New ports collection makefile for: skip
|
|
|
|
# Version required: 1.0
|
|
|
|
# Date created: 26 November 1997
|
|
|
|
# Whom: Archie L. Cobbs <archie@whistle.com>
|
|
|
|
#
|
1999-08-31 01:53:22 +00:00
|
|
|
# $FreeBSD$
|
1998-01-09 23:23:58 +00:00
|
|
|
|
|
|
|
DISTNAME= skip-1.0
|
|
|
|
CATEGORIES= security
|
|
|
|
|
1998-11-17 03:27:52 +00:00
|
|
|
# Note: the original source comes from Sun, via this web page:
|
|
|
|
# http://skip.incog.com/src-form.html
|
|
|
|
# The site below is outside of the U.S.
|
|
|
|
|
1999-02-26 01:01:19 +00:00
|
|
|
MASTER_SITES= ftp://ftp.replay.com/pub/replay/crypto/APPS/skip/ \
|
1999-02-03 06:57:16 +00:00
|
|
|
ftp://ftp.internat.freebsd.org/pub/FreeBSD/distfiles/
|
1998-11-17 03:27:52 +00:00
|
|
|
|
1998-01-09 23:23:58 +00:00
|
|
|
DISTFILES= skipsrc-1.0.tar.Z
|
|
|
|
EXTRACT_SUFX= tar.Z
|
|
|
|
|
|
|
|
MAINTAINER= archie@whistle.com
|
|
|
|
|
1999-05-04 23:18:39 +00:00
|
|
|
BUILD_DEPENDS= ${X11BASE}/lib/libxview.a:${PORTSDIR}/x11-toolkits/xview \
|
|
|
|
${X11BASE}/lib/X11/config/XView.cf:${PORTSDIR}/x11-toolkits/xview
|
|
|
|
LIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview
|
1998-01-09 23:23:58 +00:00
|
|
|
|
|
|
|
# The SKIP code is restricted from export from the United States and Canada.
|
|
|
|
# See the file doc/00README for legal details.
|
|
|
|
RESTRICTED= Contains strong crypto; no export from U.S./Canada
|
|
|
|
NO_PACKAGE= ${RESTRICTED}
|
|
|
|
NO_CDROM= ${RESTRICTED}
|
|
|
|
|
|
|
|
IS_INTERACTIVE= yes
|
|
|
|
NO_WRKSUBDIR= defined
|
|
|
|
PATCH_STRIP= -p1
|
|
|
|
HAS_CONFIGURE= defined
|
|
|
|
CONFIGURE_SCRIPT= Configure
|
|
|
|
CONFIGURE_ARGS= freebsd
|
|
|
|
USE_GMAKE= defined
|
|
|
|
|
|
|
|
MTREE_FILE= ${FILESDIR}/skip.mtree
|
|
|
|
MAN1= certreq.1 skiphost.1 skipstat.1 skiptool.1 skipd.1 \
|
|
|
|
skipdb.1 skipca.1 skiplocal.1 install_skip_keys.1 \
|
|
|
|
skipd_restart.1 skipif.1 skip_conf.1 skiplog.1 \
|
|
|
|
print_cert.1
|
|
|
|
MAN4= skipd.conf.4 raw_keys.4
|
|
|
|
|
|
|
|
# SKIP has a lot of hard coded paths in it. Our patches replace
|
|
|
|
# them with @@PREFIX@@, which we then replace with ${PREFIX}.
|
|
|
|
post-patch:
|
|
|
|
@find ${WRKSRC} -name '*.orig' -print | xargs rm
|
|
|
|
@cd ${WRKSRC}; \
|
1999-08-23 04:23:59 +00:00
|
|
|
FILES=`find . -type f -print | xargs ${GREP} -l @@PREFIX@@`; \
|
1998-01-09 23:23:58 +00:00
|
|
|
for FILE in $$FILES; do \
|
1999-08-28 02:17:34 +00:00
|
|
|
${SED} 's!@@PREFIX@@!${PREFIX}!g' < $$FILE > $$FILE.new ; \
|
1999-08-28 02:42:41 +00:00
|
|
|
${MV} $$FILE.new $$FILE; \
|
1998-01-09 23:23:58 +00:00
|
|
|
done
|
|
|
|
|
1999-07-31 21:48:34 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
1999-07-22 18:37:09 +00:00
|
|
|
|
1999-07-31 21:48:34 +00:00
|
|
|
.if ${OSVERSION} >= 400006
|
|
|
|
BROKEN= New character device registration issues
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|