diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2015-08-25 21:18:29 +0800 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2015-08-25 21:18:29 +0800 |
commit | 6d23352ad55673d21cc638c4c21046b992f7709d (patch) | |
tree | d677b623d69ee587e8138056067b7e71e1700ccb /net | |
parent | 3705667db1f36d3fae0b54aa0bb5e2dcee9fcc2d (diff) | |
download | freebsd-ports-gnome-6d23352ad55673d21cc638c4c21046b992f7709d.tar.gz freebsd-ports-gnome-6d23352ad55673d21cc638c4c21046b992f7709d.tar.zst freebsd-ports-gnome-6d23352ad55673d21cc638c4c21046b992f7709d.zip |
- Disable ClientAudio in module.ini as this requires epoll_create which is not
yet implemented in linux abi
- Take maintainership
Notified by: Sergey Nasonov <snasonov@bcc.ru>
Diffstat (limited to 'net')
-rw-r--r-- | net/citrix_ica/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net/citrix_ica/Makefile b/net/citrix_ica/Makefile index b426c81dbfb2..69ed77d63307 100644 --- a/net/citrix_ica/Makefile +++ b/net/citrix_ica/Makefile @@ -3,12 +3,12 @@ PORTNAME= citrix_ica PORTVERSION= 13.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net comms linux MASTER_SITES= # DISTNAME= linuxx86-13.2.0.322243 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ehaupt@FreeBSD.org COMMENT= Citrix(R) Presentation Server(TM) client ONLY_FOR_ARCHS= i386 amd64 @@ -52,6 +52,11 @@ pre-fetch: .endfor .endif +post-patch: +# linux syscall epoll_create is not yet implemented + @${REINPLACE_CMD} -e 's|^ClientAudio=On|ClientAudio=Off|' \ + ${WRKSRC}/linuxx86/linuxx86.cor/nls/*/module.ini + do-install: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${STAGEDIR}${PREFIX}|g' ${WRKDIR}/linuxx86/hinst @if (test -d "${CDIR}") ; \ |