- Updated to 4.2.1
- Passed to new maintainer - Option added to enable OpenMP PR: ports/139556 Submitted by: Charlie Kester <corky1951@comcast.net> (new maintainer) Feature safe: yes
This commit is contained in:
parent
81f7f34749
commit
21495a0daa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=250239
3 changed files with 25 additions and 9 deletions
|
@ -7,19 +7,27 @@
|
|||
#
|
||||
|
||||
PORTNAME= beecrypt
|
||||
PORTVERSION= 4.1.2
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 4.2.1
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= SF
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= corky1951@comcast.net
|
||||
COMMENT= BeeCrypt is an open source cryptography library
|
||||
|
||||
USE_AUTOTOOLS= libtool:22
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS+=--without-java
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e "s|-pthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure
|
||||
.if defined(WITH_OPENMP)
|
||||
@${ECHO_MSG} "Configuring for OpenMP support"
|
||||
@${ECHO_MSG} "Any ports depending on beecrypt must be configured for OpenMP too."
|
||||
|
||||
CONFIGURE_ARGS+= --enable-openmp
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-openmp
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (beecrypt-4.1.2.tar.gz) = 820d26437843ab0a6a8a5151a73a657c
|
||||
SHA256 (beecrypt-4.1.2.tar.gz) = f29eb246947677a9e7870521e3d576fd0d91a7072210a4404ed137e40cfc18fd
|
||||
SIZE (beecrypt-4.1.2.tar.gz) = 774280
|
||||
MD5 (beecrypt-4.2.1.tar.gz) = 8441c014170823f2dff97e33df55af1e
|
||||
SHA256 (beecrypt-4.2.1.tar.gz) = 286f1f56080d1a6b1d024003a5fa2158f4ff82cae0c6829d3c476a4b5898c55d
|
||||
SIZE (beecrypt-4.2.1.tar.gz) = 882758
|
||||
|
|
|
@ -7,7 +7,7 @@ include/beecrypt/blockmode.h
|
|||
include/beecrypt/blockpad.h
|
||||
include/beecrypt/blowfish.h
|
||||
include/beecrypt/blowfishopt.h
|
||||
include/beecrypt/dhaes.h
|
||||
include/beecrypt/dhies.h
|
||||
include/beecrypt/dldp.h
|
||||
include/beecrypt/dlkp.h
|
||||
include/beecrypt/dlpk.h
|
||||
|
@ -21,9 +21,11 @@ include/beecrypt/gnu.h
|
|||
include/beecrypt/hmac.h
|
||||
include/beecrypt/hmacmd5.h
|
||||
include/beecrypt/hmacsha1.h
|
||||
include/beecrypt/hmacsha224.h
|
||||
include/beecrypt/hmacsha256.h
|
||||
include/beecrypt/hmacsha384.h
|
||||
include/beecrypt/hmacsha512.h
|
||||
include/beecrypt/md4.h
|
||||
include/beecrypt/md5.h
|
||||
include/beecrypt/memchunk.h
|
||||
include/beecrypt/mp.h
|
||||
|
@ -34,19 +36,25 @@ include/beecrypt/mpprime.h
|
|||
include/beecrypt/mtprng.h
|
||||
include/beecrypt/pkcs1.h
|
||||
include/beecrypt/pkcs12.h
|
||||
include/beecrypt/ripemd128.h
|
||||
include/beecrypt/ripemd160.h
|
||||
include/beecrypt/ripemd256.h
|
||||
include/beecrypt/ripemd320.h
|
||||
include/beecrypt/rsa.h
|
||||
include/beecrypt/rsakp.h
|
||||
include/beecrypt/rsapk.h
|
||||
include/beecrypt/sha1.h
|
||||
include/beecrypt/sha1opt.h
|
||||
include/beecrypt/sha224.h
|
||||
include/beecrypt/sha256.h
|
||||
include/beecrypt/sha2k32.h
|
||||
include/beecrypt/sha2k64.h
|
||||
include/beecrypt/sha384.h
|
||||
include/beecrypt/sha512.h
|
||||
include/beecrypt/sha_k.h
|
||||
include/beecrypt/timestamp.h
|
||||
include/beecrypt/win.h
|
||||
lib/libbeecrypt.a
|
||||
lib/libbeecrypt.la
|
||||
lib/libbeecrypt.so
|
||||
lib/libbeecrypt.so.10
|
||||
lib/libbeecrypt.so.7
|
||||
@dirrm include/beecrypt
|
||||
|
|
Loading…
Reference in a new issue