slightly modified by me. Crypto++ Library is a free C++ class library of cryptographic schemes. One purpose of Crypto++ is to act as a repository of public domain (not copyrighted) source code. Although the library is copyrighted as a compilation, the individual files in it (except for a few exceptions listed in the license) are in the public domain.
19 lines
563 B
Makefile
19 lines
563 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2004/07/26 15:18:44 minskim Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
CRYPTO++_BUILDLINK3_MK:= ${CRYPTO++_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= cryptopp
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Ncryptopp}
|
|
BUILDLINK_PACKAGES+= cryptopp
|
|
|
|
.if !empty(CRYPTO++_BUILDLINK3_MK:M+)
|
|
BUILDLINK_DEPENDS.cryptopp+= crypto++>=5.1
|
|
BUILDLINK_DEPMETHOD.cryptopp?= build
|
|
BUILDLINK_PKGSRCDIR.cryptopp?= ../../wip/cryptopp
|
|
.endif # CRYPTO++_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|