Merge pull request #3334 from Vaelatern/trousers

Trousers
This commit is contained in:
Juan RP 2016-01-08 08:33:58 +01:00
commit 686ed4b874
10 changed files with 128 additions and 0 deletions

View File

@ -2310,6 +2310,7 @@ libcryptmount.so.0 libpam-mount-2.15_1
libglob.so.0 libglob-1.0_1
libepub.so.0 ebook-tools-0.2.2_1
libosmgpsmap-1.0.so.1 libosmgpsmap-1.1.0_1
libtspi.so.1 trousers-0.3.13_1
libflickcurl.so.0 flickcurl-1.26_1
libpsiconv.so.6 psiconv-0.9.9_1
libshout.so.3 libshout-2.4.1_1

View File

@ -0,0 +1,16 @@
# Template file for 'tpm-tools'
pkgname=tpm-tools
version=1.3.8
revision=1
build_style=gnu-configure
makedepends="libressl-devel trousers-devel"
short_desc="Manage and diagnose tools for a Trusted Platform Module (TPM)"
maintainer="Toyam Cox <Vaelatern@gmail.com>"
license="CPL"
homepage="http://trousers.sourceforge.net"
distfiles="${SOURCEFORGE_SITE}/trousers/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=66eb4ff095542403db6b4bd4b574e8a5c08084fe4e9e5aa9a829ee84e20bea83
post_install() {
vlicense LICENSE
}

1
srcpkgs/trousers-devel Symbolic link
View File

@ -0,0 +1 @@
trousers

8
srcpkgs/trousers/INSTALL Normal file
View File

@ -0,0 +1,8 @@
# INSTALL
case "$ACTION" in
post)
if [ "$UPDATE" != "yes" ]; then
chown tss:tss /etc/tcsd.conf
fi
;;
esac

5
srcpkgs/trousers/REMOVE Normal file
View File

@ -0,0 +1,5 @@
case "$ACTION" in
purge)
[ -d var/lib/tpm ] && rm -rf var/lib/tpm
;;
esac

View File

@ -0,0 +1,2 @@
#!/bin/sh
exec logger -p daemon.info -t tcsd

View File

@ -0,0 +1,4 @@
#!/bin/sh
exec 2>&1
[ -d /var/lib/tpm ] || install -m 0700 -o tss -g tss -d /var/lib/tpm
exec chpst -u tss:tss tcsd -f

View File

@ -0,0 +1,47 @@
--- src/tspi/ps/tspps.c.orig 2015-11-18 12:45:47.585113542 +0100
+++ src/tspi/ps/tspps.c 2015-11-18 12:46:37.605577956 +0100
@@ -45,7 +45,7 @@
static int user_ps_fd = -1;
static MUTEX_DECLARE_INIT(user_ps_lock);
-#if (defined (__FreeBSD__) || defined (__OpenBSD__))
+#if !defined(__GLIBC__)
static MUTEX_DECLARE_INIT(user_ps_path);
#endif
static struct flock fl;
@@ -60,7 +60,7 @@
TSS_RESULT result;
char *file_name = NULL, *home_dir = NULL;
struct passwd *pwp;
-#if (defined (__linux) || defined (linux) || defined(__GLIBC__))
+#if defined(__GLIBC__)
struct passwd pw;
#endif
struct stat stat_buf;
@@ -72,7 +72,7 @@
*file = strdup(file_name);
return (*file) ? TSS_SUCCESS : TSPERR(TSS_E_OUTOFMEMORY);
}
-#if (defined (__FreeBSD__) || defined (__OpenBSD__))
+#if !defined(__GLIBC__)
MUTEX_LOCK(user_ps_path);
#endif
@@ -90,7 +90,7 @@
#else
setpwent();
while (1) {
-#if (defined (__linux) || defined (linux) || defined(__GLIBC__))
+#if defined(__GLIBC__)
rc = getpwent_r(&pw, buf, PASSWD_BUFSIZE, &pwp);
if (rc) {
LogDebugFn("USER PS: Error getting path to home directory: getpwent_r: %s",
@@ -99,7 +99,7 @@
return TSPERR(TSS_E_INTERNAL_ERROR);
}
-#elif (defined (__FreeBSD__) || defined (__OpenBSD__))
+#elif !defined(__GLIBC__)
if ((pwp = getpwent()) == NULL) {
LogDebugFn("USER PS: Error getting path to home directory: getpwent: %s",
strerror(rc));

View File

@ -0,0 +1,14 @@
--- src/tspi/tsp_tcsi_param.c.orig 2015-11-18 10:44:20.263987906 +0100
+++ src/tspi/tsp_tcsi_param.c 2015-11-18 10:45:20.524547393 +0100
@@ -11,7 +11,11 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
+#if defined(__GLIBC__)
#include <bits/local_lim.h>
+#else
+#define HOST_NAME_MAX 64
+#endif
#include "trousers/tss.h"
#include "trousers/trousers.h"
#include "trousers_types.h"

30
srcpkgs/trousers/template Normal file
View File

@ -0,0 +1,30 @@
# Template file for 'trousers'
pkgname=trousers
version=0.3.13
revision=1
build_style=gnu-configure
conf_files="/etc/tcsd.conf"
makedepends="libressl-devel"
system_accounts=tss
tss_homedir=/var/lib/tpm
short_desc="Trusted Computing Software Stack for the TPM"
maintainer="Toyam Cox <Vaelatern@gmail.com>"
license="BSD"
homepage="http://trousers.sourceforge.net/"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=bb908e4a3c88a17b247a4fc8e0fff3419d8a13170fe7bdfbe0e2c5c082a276d3
post_install() {
vlicense LICENSE
vsv tcsd
}
trousers-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/include
}
}