diff options
author | youri <youri@pkgsrc.org> | 2016-06-14 13:09:47 +0000 |
---|---|---|
committer | youri <youri@pkgsrc.org> | 2016-06-14 13:09:47 +0000 |
commit | 6f73e133f4bdbb16b4f63f64e6080e8b8c773ab7 (patch) | |
tree | e87c6fe84e9171db1f3a7fc9c6b4f201b9d6e318 /x11 | |
parent | 4d88963f17b597960389dfedc7da8f0b5d1c911c (diff) | |
download | pkgsrc-6f73e133f4bdbb16b4f63f64e6080e8b8c773ab7.tar.gz |
Use the blue background by default, the teal background looks bad.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xfce4-desktop/PLIST | 3 | ||||
-rw-r--r-- | x11/xfce4-desktop/distinfo | 4 | ||||
-rw-r--r-- | x11/xfce4-desktop/patches/patch-backgrounds_Makefile.in | 16 | ||||
-rw-r--r-- | x11/xfce4-desktop/patches/patch-common_xfdesktop-common.h | 15 |
4 files changed, 35 insertions, 3 deletions
diff --git a/x11/xfce4-desktop/PLIST b/x11/xfce4-desktop/PLIST index f5150e02c44..61d6228127c 100644 --- a/x11/xfce4-desktop/PLIST +++ b/x11/xfce4-desktop/PLIST @@ -1,10 +1,9 @@ -@comment $NetBSD: PLIST,v 1.23 2015/04/21 08:56:43 jperkin Exp $ +@comment $NetBSD: PLIST,v 1.24 2016/06/14 13:09:47 youri Exp $ bin/xfdesktop bin/xfdesktop-settings man/man1/xfdesktop.1 share/applications/xfce-backdrop-settings.desktop share/backgrounds/xfce/xfce-blue.jpg -share/backgrounds/xfce/xfce-teal.jpg share/icons/hicolor/32x32/apps/xfce4-backdrop.png share/icons/hicolor/32x32/apps/xfce4-menueditor.png share/icons/hicolor/48x48/apps/xfce4-backdrop.png diff --git a/x11/xfce4-desktop/distinfo b/x11/xfce4-desktop/distinfo index 5bb8e79e5d5..02e202e65ed 100644 --- a/x11/xfce4-desktop/distinfo +++ b/x11/xfce4-desktop/distinfo @@ -1,6 +1,8 @@ -$NetBSD: distinfo,v 1.24 2015/11/04 03:29:05 agc Exp $ +$NetBSD: distinfo,v 1.25 2016/06/14 13:09:47 youri Exp $ SHA1 (xfdesktop-4.12.3.tar.bz2) = be9b20de516019511ba712f2a1f721718384494a RMD160 (xfdesktop-4.12.3.tar.bz2) = 8c043f4853b731a4ae3180d773518584ee356bd9 SHA512 (xfdesktop-4.12.3.tar.bz2) = e8c89640722d3dfb2c5aae09779f81e5e2a6e157cc4756a46139547bd1a5b1977fa828f68e8ea61d6c9483c35a9303169fc33cbeacde06f7e95e19c65ce54878 Size (xfdesktop-4.12.3.tar.bz2) = 1420704 bytes +SHA1 (patch-backgrounds_Makefile.in) = 9310c57da7265b65b0ac1073d7481006162ccd95 +SHA1 (patch-common_xfdesktop-common.h) = 99264ff6b55f12f1308d85f6e5d67bca5964b2b6 diff --git a/x11/xfce4-desktop/patches/patch-backgrounds_Makefile.in b/x11/xfce4-desktop/patches/patch-backgrounds_Makefile.in new file mode 100644 index 00000000000..2937b0778ca --- /dev/null +++ b/x11/xfce4-desktop/patches/patch-backgrounds_Makefile.in @@ -0,0 +1,16 @@ +$NetBSD: patch-backgrounds_Makefile.in,v 1.1 2016/06/14 13:09:47 youri Exp $ + +Don't install the teal background. + +--- backgrounds/Makefile.in.orig 2016-06-14 12:41:08.000000000 +0000 ++++ backgrounds/Makefile.in +@@ -377,8 +377,7 @@ top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + backgroundsdir = $(datadir)/backgrounds/xfce + backgrounds_DATA = \ +- xfce-blue.jpg \ +- xfce-teal.jpg ++ xfce-blue.jpg + + EXTRA_DIST = $(backgrounds_DATA) + all: all-am diff --git a/x11/xfce4-desktop/patches/patch-common_xfdesktop-common.h b/x11/xfce4-desktop/patches/patch-common_xfdesktop-common.h new file mode 100644 index 00000000000..7464a32a933 --- /dev/null +++ b/x11/xfce4-desktop/patches/patch-common_xfdesktop-common.h @@ -0,0 +1,15 @@ +$NetBSD: patch-common_xfdesktop-common.h,v 1.1 2016/06/14 13:09:47 youri Exp $ + +Use the blue background by default. + +--- common/xfdesktop-common.h.orig 2015-07-19 13:26:58.000000000 +0000 ++++ common/xfdesktop-common.h +@@ -35,7 +35,7 @@ + #include <stdarg.h> + + #define XFDESKTOP_CHANNEL "xfce4-desktop" +-#define DEFAULT_BACKDROP DATADIR "/backgrounds/xfce/xfce-teal.jpg" ++#define DEFAULT_BACKDROP DATADIR "/backgrounds/xfce/xfce-blue.jpg" + #define DEFAULT_ICON_FONT_SIZE 12 + #define DEFAULT_ICON_SIZE 48 + #define ITHEME_FLAGS (GTK_ICON_LOOKUP_USE_BUILTIN \ |