head	1.2;
access;
symbols
	RELEASE_7_0_0:1.1
	RELEASE_6_3_0:1.1
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1
	RELEASE_6_2_0:1.1
	RELEASE_6_1_0:1.1
	RELEASE_5_5_0:1.1
	RELEASE_6_0_0:1.1
	RELEASE_5_4_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2008.05.01.04.28.31;	author mi;	state dead;
branches;
next	1.1;

1.1
date	2005.02.18.21.46.59;	author sem;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Unbreak, upgrade to the most recent version 20071227. Instead of
patching the vendor's Makefile, provide our own -- it is smaller
than the patch...

Address all of the compiler-warnings brought up by WARNS=3. Two
of them appear to be genuine error... The patch-warnings sent to
the vendor.

Manual page is no longer part of the distribution, although it is
still mentioned in the vendor's Makefile. Hopefully, this will be
addressed by the next release (along with the warnings).
@
text
@$FreeBSD: ports/security/sscep/files/patch-aa,v 1.1 2005/02/18 21:46:59 sem Exp $

--- Makefile.orig	Wed Jan 22 08:23:18 2003
+++ Makefile	Tue Feb 15 13:32:02 2005
@@@@ -2,22 +2,26 @@@@
 # $Id: Makefile,v 1.0 2003/01/12 13:17:37 jt Exp $
 #
 
-BINDIR = /usr/local/bin
-MANDIR = /usr/local/man/man8
+BINDIR  ?= /usr/local/bin
+CONFDIR ?= /usr/local/etc
 
-CC	= gcc
-CFLAGS	= -Wall -O 
+CC      ?= gcc
+CFLAGS  ?= -Wall -O
 
-MAN	= sscep.8
-PROG	= sscep
+PROG    = sscep
+MKREQ   = mkrequest
 OBJS    = sscep.o init.o net.o sceputils.o pkcs7.o ias.o fileutils.o
+CONF    = sscep.conf
+
+all: $(PROG)
 
 $(PROG): $(OBJS)
-	$(CC) $(CFLAGS) -lcrypto -o $(PROG) $(OBJS) 
+	$(CC) $(CFLAGS) -lcrypto -o $(PROG) $(OBJS)
 
 clean:
-	rm -f $(PROG) $(OBJS) $(MAN) core
+	rm -f $(PROG) $(OBJS) core
 
 install:
-	./install-sh $(PROG) $(BINDIR)
-	./install-sh $(MAN) $(MANDIR)
+	cp $(PROG) $(BINDIR)
+	cp $(MKREQ) $(BINDIR)
+	cp $(CONF) $(CONFDIR)/sscep.conf.sample
@


1.1
log
@SSCEP is a client-only implementation of the SCEP (Cisco System's Simple
Certificate Enrollment Protocol). SSCEP is designed for OpenBSD's isakmpd,
but it will propably work with any Unix system with a recent compiler and
OpenSSL toolkit libraries installed.

PR:		ports/77595
Submitted by:	Vsevolod Stakhov <vsevolod(at)highsecure.ru>
@
text
@d1 1
a1 1
$FreeBSD$
@

