mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
40 lines
745 B
Makefile
40 lines
745 B
Makefile
# 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>
|