svn commit: r345876 - head/sysutils/xfce4-settings/files

Olivier Duchateau olivierd at FreeBSD.org
Mon Feb 24 16:32:29 UTC 2014


Author: olivierd
Date: Mon Feb 24 16:32:28 2014
New Revision: 345876
URL: http://svnweb.freebsd.org/changeset/ports/345876
QAT: https://qat.redports.org/buildarchive/r345876/

Log:
  - Support DragonFly
  
  Obtained from:	Xfce dev repo

Modified:
  head/sysutils/xfce4-settings/files/patch-dialogs__appearance-settings__appearance-install-theme

Modified: head/sysutils/xfce4-settings/files/patch-dialogs__appearance-settings__appearance-install-theme
==============================================================================
--- head/sysutils/xfce4-settings/files/patch-dialogs__appearance-settings__appearance-install-theme	Mon Feb 24 16:25:30 2014	(r345875)
+++ head/sysutils/xfce4-settings/files/patch-dialogs__appearance-settings__appearance-install-theme	Mon Feb 24 16:32:28 2014	(r345876)
@@ -1,5 +1,5 @@
---- ./dialogs/appearance-settings/appearance-install-theme.orig	2013-05-05 16:12:54.000000000 +0000
-+++ ./dialogs/appearance-settings/appearance-install-theme	2013-05-05 23:09:09.000000000 +0000
+--- ./dialogs/appearance-settings/appearance-install-theme.orig	2014-02-22 23:09:05.000000000 +0000
++++ ./dialogs/appearance-settings/appearance-install-theme	2014-02-23 18:58:38.000000000 +0000
 @@ -89,7 +89,11 @@
  
  # check file size, abort if bigger then 50Mb, only works for files
@@ -7,7 +7,7 @@
 -    dndsize=`stat -c %s "$dndfilename"`
 +    if test "`uname -s`" = "Linux"; then
 +        dndsize=`stat -c %s "$dndfilename"`
-+    elif test "`uname -s`" = "FreeBSD"; then
++    elif [ "`uname -s`" = "FreeBSD" ] || [ "`uname -s`" = "DragonFly" ]; then
 +        dndsize=`stat -f %z "$dndfilename"`
 +    fi
      if test "$dndsize" -gt 52428800; then


More information about the svn-ports-all mailing list