summaryrefslogtreecommitdiff
path: root/x11/tile/patches
diff options
context:
space:
mode:
authorminskim <minskim>2005-10-15 13:40:49 +0000
committerminskim <minskim>2005-10-15 13:40:49 +0000
commit13e9bab8413ba4a71274546581d4335ad83561ff (patch)
treea830fc50ad68cf2a591c42fc174b947fff4bc158 /x11/tile/patches
parentf3e68b19dac605f6f5dd59aa54d4c8ada07f3508 (diff)
downloadpkgsrc-13e9bab8413ba4a71274546581d4335ad83561ff.tar.gz
Import tile from pkgsrc-wip. Packaged by Greg Schenzel.
This is a utility to tile windows on the desktop. It supports user- configurable window manager profiles to avoid screen objects and can tile in a horizontal or vertical fashion. It works well with MWM, Oroborus and some multi-desktop WMs like FluxBox (given the -m option) and GNOME/Metacity (given the -w option). It has two files controlling its behavior. The first contains "wmprofiles" that tell tile how much space to avoid on the different sides of the screen (specified via "-p"). The second, named "rc", contains all other configuration, including a list of XA_STRING X11 Atoms and values used as criteria for windows that should be avoided for calculations and resize/move operations. Both files may exist under $PREFIX/share/tile/ or $HOME/.tile/.
Diffstat (limited to 'x11/tile/patches')
-rw-r--r--x11/tile/patches/patch-aa25
1 files changed, 25 insertions, 0 deletions
diff --git a/x11/tile/patches/patch-aa b/x11/tile/patches/patch-aa
new file mode 100644
index 00000000000..49fff0c419c
--- /dev/null
+++ b/x11/tile/patches/patch-aa
@@ -0,0 +1,25 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/10/15 13:40:49 minskim Exp $
+
+--- Makefile.in.orig 2005-09-24 01:09:25.000000000 -0700
++++ Makefile.in
+@@ -1,5 +1,6 @@
+ CC=@CC@
+ CFLAGS=@CFLAGS@ -Wunused
++LDFLAGS=@LDFLAGS@
+ LIBS=@LIBS@
+ PROG=tile
+ PREFIX=@prefix@
+@@ -14,7 +15,7 @@ HOSTVER=@HOSTREL@
+ all: $(PROG) ChangeLog doc/html/index.html
+
+ tile: tile.o tilerc.o avoid.o x11.o cmdline.o
+- $(CC) -o $(PROG) $(LIBS) -Wl,-s tile.o tilerc.o avoid.o x11.o cmdline.o
++ $(CC) -o $(PROG) $(LDFLAGS) $(LIBS) -Wl,-s tile.o tilerc.o avoid.o x11.o cmdline.o
+
+ tile.o: tile.c
+ $(CC) $(CFLAGS) -DINSTPFX='"$(PREFIX)"' -c tile.c
+@@ -62,3 +63,4 @@ install:
+ -mkdir -p $(SHARE)/applications
+ cp *.desktop $(SHARE)/applications
+
++.PHONY: install