blob: 246ac36133ed5da81ac0fbec8d8a2bb273462433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# New ports collection makefile for: aespipe
# Date created: 20 February 1007
# Whom: Ekkehard 'Ekki' Gehm <gehm@physik.tu-berlin.de>
#
# $FreeBSD$
#
PORTNAME= aespipe
DISTVERSION= v2.3d
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://loop-aes.sourceforge.net/${PORTNAME}/ \
http://koti.tnnet.fi/jari.ruusu/linux/
MAINTAINER= gehm@physik.tu-berlin.de
COMMENT= An AES encrypting or decrypting pipe
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
MAN1= aespipe.1
USE_BZIP2= yes
GNU_CONFIGURE= yes
PLIST_FILES= bin/aespipe
.include <bsd.port.pre.mk>
ALL_TARGET=
.if ${ARCH} == amd64
MAKE_ARGS= amd64
.endif
.if ${ARCH} == i386
MAKE_ARGS= x86
.endif
post-build:
cd ${WRKSRC} && make tests
.include <bsd.port.post.mk>
|