head	1.5;
access;
symbols
	RELEASE_7_4_0:1.4
	RELEASE_8_2_0:1.4
	RELEASE_6_EOL:1.4
	RELEASE_8_1_0:1.4
	RELEASE_7_3_0:1.4
	RELEASE_8_0_0:1.4
	RELEASE_7_2_0:1.4
	RELEASE_7_1_0:1.4
	RELEASE_6_4_0:1.4
	RELEASE_5_EOL:1.4
	RELEASE_7_0_0:1.4
	RELEASE_6_3_0:1.4
	PRE_XORG_7:1.4
	RELEASE_4_EOL:1.4
	RELEASE_6_2_0:1.4
	RELEASE_6_1_0:1.4
	RELEASE_5_5_0:1.4
	RELEASE_6_0_0:1.4
	RELEASE_5_4_0:1.4
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.3
	RELEASE_4_8_0:1.3
	RELEASE_5_0_0:1.3
	RELEASE_4_7_0:1.2
	RELEASE_4_6_2:1.2
	RELEASE_4_6_1:1.2
	RELEASE_4_6_0:1.2
	RELEASE_5_0_DP1:1.2
	RELEASE_4_5_0:1.2
	RELEASE_4_4_0:1.2
	RELEASE_4_3_0:1.2;
locks; strict;
comment	@# @;


1.5
date	2011.05.01.20.14.20;	author bapt;	state dead;
branches;
next	1.4;

1.4
date	2005.02.19.16.16.34;	author thierry;	state Exp;
branches;
next	1.3;

1.3
date	2002.10.27.23.15.10;	author adamw;	state Exp;
branches;
next	1.2;

1.2
date	2001.01.12.10.52.01;	author obrien;	state Exp;
branches;
next	1.1;

1.1
date	2000.12.19.19.10.09;	author obrien;	state Exp;
branches;
next	;


desc
@@


1.5
log
@Remove unmaintained expired ports from security

2011-05-01 security/aafid2: Upstream disapear and distfile is no more available
2011-05-01 security/bjorb: Upstream disapear and distfile is no more available
2011-05-01 security/borzoi: Upstream disapear and distfile is no more available
2011-05-01 security/cmd5checkpw: Upstream disapear and distfile is no more available
2011-05-01 security/cops: Upstream disapear and distfile is no more available
2011-05-01 security/find_ddos: Upstream disapear and distfile is no more available
2011-05-01 security/ftpmap: Upstream disapear and distfile is no more available
2011-05-01 security/hafiye: Upstream disapear and distfile is no more available
2011-05-01 security/ident2: Upstream disapear and distfile is no more available
2011-05-01 security/liedentd: Upstream disapear and distfile is no more available
2011-05-01 security/pam_pop3: Upstream disapear and distfile is no more available
2011-05-01 security/poc: Upstream disapear and distfile is no more available
2011-05-01 security/portscanner: Upstream disapear and distfile is no more available
2011-05-01 security/ppgen: Upstream disapear and distfile is no more available
2011-05-01 security/qident: Upstream disapear and distfile is no more available
2011-05-01 security/quintuple-agent: Upstream disapear and distfile is no more available
2011-05-01 security/rc5pipe: Upstream disapear and distfile is no more available
2011-05-01 security/rid: Upstream disapear and distfile is no more available
2011-05-01 security/ssh: Upstream disapear and distfile is no more available
2011-05-01 security/tea-total: Upstream disapear and distfile is no more available
2011-05-01 security/uberkey: Upstream disapear and distfile is no more available
@
text
@--- Makefile.orig	Tue Jan  2 22:04:34 2001
+++ Makefile	Fri Oct 25 03:32:00 2002
@@@@ -1,6 +1,6 @@@@
 include config.inc
 
-CC = $(CROSS_PREFIX)gcc
+#CC = $(CROSS_PREFIX)gcc
 CP = cp -f
 RM = rm -f
 LN = ln -sf
@@@@ -8,7 +8,7 @@@@
 CD = cd
 MKDIR = mkdir -p
 CMP = cmp
-CFLAGS = -O2 -Wall -DARCH_$(ARCH)
+CFLAGS += -DARCH_FREEBSD
 LDFLAGS =
 BINDIR = $(PREFIX)/bin
 TEATOTAL = teatotal
@@@@ -26,6 +26,9 @@@@
 ifeq ($(ARCH), OPENBSD)
 MANDIR = $(PREFIX)/share/man/man1
 RANDOM_DEVICE = \"/dev/srandom\"
+else
+MANDIR = $(PREFIX)/man/man1
+RANDOM_DEVICE = \"/dev/random\"
 endif
 endif
 
@@@@ -115,12 +120,12 @@@@
 
 install: all
 	$(MKDIR) $(BINDIR)
-	$(CP) $(TEATOTAL) $(BINDIR)
+	${BSD_INSTALL_PROGRAM} $(TEATOTAL) $(BINDIR)
 	$(LN) $(TEATOTAL) $(BINDIR)/$(TEA)
 	$(LN) $(TEATOTAL) $(BINDIR)/$(UNTEA)
 	$(LN) $(TEATOTAL) $(BINDIR)/$(TEA-KGEN)
 	$(MKDIR) $(MANDIR)
-	$(CP) $(MANPAGES) $(MANDIR)
+	${BSD_INSTALL_MAN} $(MANPAGES) $(MANDIR)
 
 clean:
 	$(RM) core *.o $(PROGRAMS) testout.tea test.out test2.key test3.key \
@


1.4
log
@Fix for compilation on 5.x.

PR:		ports/76320
Submitted by:	Johan van Selst
@
text
@@


1.3
log
@Fix MASTER_SITES, add CFLAGS support, and allow use of the INSTALL*
macros.

PR:		44488
Submitted by:	KATO Tsuguru <tkato@@prontomail.com>
Approved by:	pat
@
text
@d16 1
a16 1
+CFLAGS += -DARCH_$(ARCH)
d20 1
a20 1
@@@@ -26,6 +26,11 @@@@
a24 1
+ifeq ($(ARCH), FREEBSD)
a26 1
+endif
@


1.2
log
@Update to version 0.4.
@
text
@d1 3
a3 3
--- Makefile.orig	Tue Jan  2 05:04:34 2001
+++ Makefile	Fri Jan 12 02:18:24 2001
@@@@ -1,5 +1,5 @@@@
d10 3
a12 1
@@@@ -9,5 +9,5 @@@@
d16 1
a16 1
+CFLAGS += -O2 -Wall -DARCH_$(ARCH)
d19 3
a21 1
@@@@ -27,4 +27,9 @@@@
d31 16
@


1.1
log
@TEA Total is an extremely small 128 bit private key based
encryption/decryption system which uses the new variant of TEA (Tiny
Encryption Algorithm) by David Wheeler and Roger Needham of the Cambridge
Computer Laboratory.  TEA is said to be several times faster than DES, as
well as being much smaller and more secure.  It also isn't encumbered by any
patents and the reference implementation is in the public domain.
@
text
@d1 26
a26 10
--- Makefile.orig	Thu Dec 14 14:40:37 2000
+++ Makefile	Tue Dec 19 10:49:35 2000
@@@@ -1 +1 @@@@
-CC = gcc
+#CC = gcc
@@@@ -5,2 +5,2 @@@@
-MD5SUM = md5sum
-CFLAGS = -O3 -Wall
+MD5SUM ?= /sbin/md5 -r
+CFLAGS += -Wall
@

