1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

A command line idea encryption and decryption utility written by

Dr. Richard De Moliner.

Permission by the Author Dr. Richard De Moliner has been granted.

PR:		ports/72337
Submitted by:	Emanuel Haupt <ehaupt@critical.ch>
This commit is contained in:
Sergey Matveychuk 2004-12-06 20:47:17 +00:00
parent 375c458dbd
commit a7667cb24d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=123333
7 changed files with 81 additions and 0 deletions

2
LEGAL
View File

@ -279,6 +279,8 @@ ICON-Slick.* ports/x11-themes/gnome-icons-slick Author rights unclear
ICON-Snow-Apple.* ports/x11-themes/gnome-icons-snow-apple Author rights unclear
ICON-Stylish.* ports/x11-themes/gnome-icons-stylish Author rights unclear
ICON-Ximian-South-* ports/x11-themes/gnome-icons-ximian-south Author rights unclear
idea.V*.tar.Z ports/security/idea a patented algorithm that
requires proper licensing
idled-*.tar.gz ports/sysutils/idled non-profit use and distribution
only
invitationtoruby.tgz ports/devel/invitation_to_ruby no commercial use

View File

@ -132,6 +132,7 @@
SUBDIR += hpn-ssh
SUBDIR += hunch
SUBDIR += hydra
SUBDIR += idea
SUBDIR += ident2
SUBDIR += identify
SUBDIR += ifd-devkit

48
security/idea/Makefile Normal file
View File

@ -0,0 +1,48 @@
# New ports collection makefile for: idea
# Date created: 4 September 2004
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= idea
PORTVERSION= 1.2
CATEGORIES= security
MASTER_SITES= http://www.funet.fi/pub/org/CERT/ftp.cert.dfn.de/pub/tools/crypt/idea/ \
http://www.de-moliner.ch/richard/downloads/ \
http://ftp.at.linuxfromscratch.org/infosys/security/dfn/tools/crypt/idea/
DISTNAME= ${PORTNAME}.V${PORTVERSION}
EXTRACT_SUFX= .tar.Z
MAINTAINER= ehaupt@critical.ch
COMMENT= A command line idea encryption and decryption utility
RESTRICTED= "Crypto; IDEA is a patented algorithm that requires proper licensing"
WRKSRC= ${WRKDIR}/${PORTNAME}
MANL= idea.l
MANCOMPRESSED= no
.if !defined(MAKE_IDEA) || ${MAKE_IDEA} == "no" || ${MAKE_IDEA} == "NO"
IGNORE= "you chose not to use idea related code"
.endif
do-build:
${CC} ${WRKSRC}/idea.c ${WRKSRC}/idea_cmd.c ${CFLAGS} -o ${WRKSRC}/${PORTNAME}
do-install:
${INSTALL_MAN} ${WRKSRC}/manl/idea.l ${PREFIX}/man/manl
${INSTALL_PROGRAM} -m 0555 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/Examples ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/byte_ord.ps ${WRKSRC}/idea_cmd.txt ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

2
security/idea/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (idea.V1.2.tar.Z) = 2aacefa036c7df2144ae8aa5a0e413fe
SIZE (idea.V1.2.tar.Z) = 142835

11
security/idea/pkg-descr Normal file
View File

@ -0,0 +1,11 @@
A command line idea encryption and decryption utility written by
Dr. Richard De Moliner.
IDEA (International Data Encryption Algorithm) is a block cipher devel-
oped by Dr. Xuejia Lai and Prof. Dr. J. L. Massey at the Swiss Federal
Institute of Technology.
WWW: http://www.de-moliner.ch/richard/
- ehaupt
ehaupt@critical.ch

11
security/idea/pkg-message Normal file
View File

@ -0,0 +1,11 @@
==========================================================================
IDEA is registered as the international patent WO 91/18459 "Device for
Converting a Digital Block and the Use thereof". For commercial use of
IDEA, one should contact
ASCOM TECH AG
Freiburgstrasse 370
CH-3018 Bern, Switzerland
==========================================================================

6
security/idea/pkg-plist Normal file
View File

@ -0,0 +1,6 @@
bin/idea
%%PORTDOCS%%%%DOCSDIR%%/idea_cmd.txt
%%PORTDOCS%%%%DOCSDIR%%/byte_ord.ps
%%EXAMPLESDIR%%/Examples
%%PORTDOCS%%@dirrm %%DOCSDIR%%
@dirrm %%EXAMPLESDIR%%