48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.21 2019/07/12 20:49:05 sthen Exp $
|
|
|
|
COMMENT= Open Crypto Development Kit
|
|
|
|
VERSION= 0.6.6
|
|
DISTNAME= opencdk-${VERSION}
|
|
CATEGORIES= security
|
|
SHARED_LIBS= opencdk 9.0 # .10.5
|
|
|
|
REVISION= 3
|
|
|
|
HOMEPAGE= http://www.gnutls.org/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB= gcrypt>=13 gpg-error iconv intl z
|
|
|
|
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/opencdk/ \
|
|
http://sunsite.dk/pub/security/gcrypt/alpha/gnutls/opencdk/ \
|
|
http://ftp.linux.it/pub/mirrors/gnupg/alpha/gnutls/opencdk/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
LIB_DEPENDS= security/libgcrypt
|
|
|
|
# for !shared...
|
|
LIB_DEPENDS += security/libgpg-error
|
|
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --enable-static \
|
|
--with-libgcrypt-prefix=${LOCALBASE}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/opencdk
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/opencdk
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/opencdk
|
|
${INSTALL_DATA} ${WRKSRC}/doc/opencdk-api.html \
|
|
${PREFIX}/share/doc/opencdk
|
|
${INSTALL_DATA} ${WRKSRC}/tests/*.c \
|
|
${PREFIX}/share/examples/opencdk
|
|
${INSTALL_DATA} ${WRKSRC}/tests/*.gpg \
|
|
${PREFIX}/share/examples/opencdk
|
|
|
|
.include <bsd.port.mk>
|