mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
36 lines
954 B
Makefile
36 lines
954 B
Makefile
# Created by: Sebastian Schuetz <sschuetz@fhm.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tpm-tools
|
|
PORTVERSION= 1.3.9.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/trousers/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Provides a basic set of TPM tools
|
|
|
|
LICENSE= CPL
|
|
LICENSE_NAME= Common Public License
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
LIB_DEPENDS= libtspi.so:security/trousers
|
|
BUILD_DEPENDS= ${LOCALBASE}/sbin/pkcsconf:security/opencryptoki
|
|
RUN_DEPENDS= ${LOCALBASE}/sbin/tcsd:security/trousers \
|
|
${LOCALBASE}/lib/pkcs11/libopencryptoki.so:security/opencryptoki
|
|
|
|
USES= autoreconf gettext gmake iconv libtool ssl
|
|
USE_LDCONFIG= YES
|
|
|
|
NO_WRKSUBDIR= YES
|
|
GNU_CONFIGURE= YES
|
|
LIBS+= -L${LOCALBASE}/lib -lintl
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} '/^libtpm_unseal_la_LIBADD =/s/$$/ -lcrypto/' \
|
|
${WRKSRC}/lib/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|