diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-02-14 21:59:48 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-02-14 21:59:48 +0000 |
commit | 8a2cdad7caf180e53ce6c57580e742567f88b470 (patch) | |
tree | b4841b5026938e53fbec0ed3baf4e68bbe89bb2d /x11-wm/afterstep | |
parent | new revision - /etc/X11/Sessions support (adds afterstep to dynamically gener... (diff) | |
download | gentoo-2-8a2cdad7caf180e53ce6c57580e742567f88b470.tar.gz gentoo-2-8a2cdad7caf180e53ce6c57580e742567f88b470.tar.bz2 gentoo-2-8a2cdad7caf180e53ce6c57580e742567f88b470.zip |
missing files. the patch fixes a sandbox problem.
Diffstat (limited to 'x11-wm/afterstep')
-rwxr-xr-x | x11-wm/afterstep/files/afterstep | 2 | ||||
-rw-r--r-- | x11-wm/afterstep/files/afterstep-1.8.10-gentoo.diff | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/x11-wm/afterstep/files/afterstep b/x11-wm/afterstep/files/afterstep new file mode 100755 index 000000000000..22bc4441ea42 --- /dev/null +++ b/x11-wm/afterstep/files/afterstep @@ -0,0 +1,2 @@ +#!/bin/sh +/usr/bin/afterstep diff --git a/x11-wm/afterstep/files/afterstep-1.8.10-gentoo.diff b/x11-wm/afterstep/files/afterstep-1.8.10-gentoo.diff new file mode 100644 index 000000000000..e39690ece655 --- /dev/null +++ b/x11-wm/afterstep/files/afterstep-1.8.10-gentoo.diff @@ -0,0 +1,30 @@ +--- Makefile.in.orig Fri Oct 20 05:27:54 2000 ++++ Makefile.in Thu Feb 14 14:34:03 2002 +@@ -35,24 +35,9 @@ + for I in ${subdirs}; do (cd $$I; ${MAKE} install.script || exit 1); done + + install.data: +- @if [ -d /usr/local/share/gnome/wm-properties ] ; then \ +- if [ -w /usr/local/share/gnome/wm-properties ] ; then \ +- echo $(CP) AfterStep.desktop /usr/local/share/gnome/wm-properties/; \ +- $(CP) AfterStep.desktop /usr/local/share/gnome/wm-properties/; \ +- else \ +- echo "/usr/local/share/gnome/wm-properties exists but is not writable."; \ +- echo "If you want AfterStep to appear in your Gnome menu, please install as root."; \ +- fi \ +- fi +- @if [ -d /usr/share/gnome/wm-properties ] ; then \ +- if [ -w /usr/share/gnome/wm-properties ] ; then \ +- echo $(CP) AfterStep.desktop /usr/share/gnome/wm-properties/; \ +- $(CP) AfterStep.desktop /usr/share/gnome/wm-properties/; \ +- else \ +- echo "/usr/share/gnome/wm-properties exists but is not writable."; \ +- echo "If you want AfterStep to appear in your Gnome menu, please install as root."; \ +- fi \ +- fi ++ mkdir -p ${DESTDIR}/usr/share/gnome/wm-properties ++ $(CP) AfterStep.desktop ${DESTDIR}/usr/share/gnome/wm-properties/; ++ + @if [ -d $(AFTER_SHAREDIR) ] ; then \ + echo $(RMF) -r $(AFTER_SHAREDIR)_old; \ + echo $(MV) $(AFTER_SHAREDIR) $(AFTER_SHAREDIR)_old; \ |