freebsd-ports/security/trousers/Makefile
Hiroki Sato 1ad6282266 - Unbreak clang build.
- Remove PORTEXAMPLES.  pkg-plist was broken due to it[*].
- Add extra patches for EMULATOR option.
- Create /var/run/{tpm,ima} in rc.d/tcsd script.

Spotted by:	antoine [*]
2013-07-31 13:59:04 +00:00

71 lines
1.9 KiB
Makefile

# Created by: Sebastian Schuetz <sschuetz@fhm.edu>
# $FreeBSD$
PORTNAME= trousers
PORTVERSION= 0.3.10
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
MAINTAINER= hrs@FreeBSD.org
COMMENT= The open-source TCG Software Stack
LICENSE= CPL
LICENSE_NAME= Common Public License
LICENSE_FILE= ${WRKSRC}/LICENSE
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
USES= gmake iconv pkgconfig
USE_OPENSSL= YES
USE_LDCONFIG= YES
USE_AUTOTOOLS= autoconf automake libtool
USE_RC_SUBR= tcsd
WRKSRC= ${WRKDIR}/${DISTNAME}
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --with-gui=none --enable-static \
--localstatedir=${PREFIX}/var \
--with-tssuser=${USERS} --with-tssgroup=${GROUPS}
SUB_FILES= pkg-message
SUB_LIST= USERS=${USERS} GROUPS=${GROUPS}
USERS= _tss
GROUPS= _tss
OPTIONS_DEFINE= EMULATOR DEBUG
EMULATOR_DESC= Build for use with the tpm-emulator
.include "Makefile.man"
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MEMULATOR}
PKGNAMESUFFIX+= -no_tddl
LIB_DEPENDS+= tddl.1:${PORTSDIR}/emulators/tpm-emulator
EXTRA_PATCHES= ${FILESDIR}/extra-patch-src-tcs-Makefile.am \
${FILESDIR}/extra-patch-src-tcsd-Makefile.am \
${FILESDIR}/extra-patch-src-tddl-Makefile.am
# The emulator has already a libttddl.so, so comment out trousers' libtddl in the pkg-plist
PLIST_SUB+= TDDL="@comment "
.else
PKGNAMESUFFIX+= -tddl
CONFLICTS+= tpm-emulator-[0-9]*
PLIST_SUB+= TDDL=""
.endif
.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+=--enable-debug
.endif
run-autotools: run-autotools-autoreconf
run-autotools-autoreconf:
@cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTORECONF} -i
post-install:
${INSTALL_DATA} -o ${USERS} -g ${GROUPS} -m 0600 \
${WRKSRC}/dist/tcsd.conf ${PREFIX}/etc/tcsd.conf.dist
@[ -f ${PREFIX}/etc/tcsd.conf ] || \
${INSTALL_DATA} -o ${USERS} -g ${GROUPS} -m 0600 \
${WRKSRC}/dist/tcsd.conf ${PREFIX}/etc/tcsd.conf
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>