- Build with clang on FreeBSD 10 and remove USE_GCC=any - added some configuration OPTIONS - added patch to fix segfault with current tcl - added patches to avoid crash on i386 - compile with libxml2, hwloc, boost - add user tserv for owning configuration and log directory - added stage support - enabled compiling WCCP and SSD support - use lua with JIT - install perl TS module PR: ports/185669 Submitted by: Radim Kolar <hsn@sendmail.cz> Approved by: maintainer timeout (3 weeks)
21 lines
740 B
Plaintext
21 lines
740 B
Plaintext
--- ./proxy/Makefile.am.orig 2013-12-05 22:07:48.000000000 +0000
|
|
+++ ./proxy/Makefile.am 2014-01-27 08:45:49.000000000 +0000
|
|
@@ -291,7 +291,7 @@
|
|
versiondir = $(pkgsysconfdir)
|
|
|
|
install-data-local:
|
|
- if [ `id -un` != "root" ]; then \
|
|
+ if true ; then \
|
|
$(INSTALL) -d $(DESTDIR)$(pkglocalstatedir) $(DESTDIR)$(pkglogdir) $(DESTDIR)$(pkgruntimedir) \
|
|
$(DESTDIR)$(pkgsysconfdir) $(DESTDIR)$(pkgdatadir) $(DESTDIR)$(pkgcachedir); \
|
|
else \
|
|
@@ -302,7 +302,7 @@
|
|
fi
|
|
|
|
install-data-hook:
|
|
- if [ `id -un` == "root" ]; then \
|
|
+ if false; then \
|
|
chown -R $(pkgsysuser):$(pkgsysgroup) $(DESTDIR)$(pkgsysconfdir) $(DESTDIR)$(pkgdatadir);\
|
|
fi
|
|
-echo "<TS_VERSION> $(PACKAGE_VERSION)" > $(DESTDIR)$(pkgsysconfdir)/trafficserver-release
|