diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-12-06 00:50:06 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-12-06 00:50:06 +0000 |
commit | 6cd6aadb3c5fb04900b9263c750d01d6ce559359 (patch) | |
tree | 6f6a1c0160e9c83c96e7f898436fe792b772fc57 /x11-wm/wmanager/files | |
parent | Add a pnmtopng RUN_DEPENDS to allow printing of images to PNG format (diff) |
WManager is a windowmanager manager.
It "manages" your windowmanagers by letting you choose from your
favorites on starting up X.
PR: 15133
Submitted by: Will Andrews <andrews@technologist.com>
Notes
Notes:
svn path=/head/; revision=23612
Diffstat (limited to 'x11-wm/wmanager/files')
-rw-r--r-- | x11-wm/wmanager/files/patch-aa | 84 | ||||
-rw-r--r-- | x11-wm/wmanager/files/patch-ab | 11 | ||||
-rw-r--r-- | x11-wm/wmanager/files/pkg-message.in | 3 |
3 files changed, 98 insertions, 0 deletions
diff --git a/x11-wm/wmanager/files/patch-aa b/x11-wm/wmanager/files/patch-aa new file mode 100644 index 000000000000..511e79db05b3 --- /dev/null +++ b/x11-wm/wmanager/files/patch-aa @@ -0,0 +1,84 @@ +--- Makefile.orig Sun Nov 14 07:29:24 1999 ++++ Makefile Sun Dec 5 16:37:05 1999 +@@ -23,49 +23,38 @@ + # along with this program; if not, write to the Free Software + # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +- +- + # make settings + SHELL = /bin/sh + MAKEFLAGS = --print-directory + ++# base settings ++bindir = $(prefix)/bin ++incdir = ./inc ++srcdir = ./src ++fltkinc = $(prefix)/include ++x11lib = $(prefix)/lib + + # compiler settings +-CXX = g++ +-CXXFLAGS = -I$(incdir) -O2 -Wall -pedantic #-DDEBUG=1 -g3 +- ++CXX = g++ ++CXXFLAGS= -I$(fltkinc) -I$(incdir) -O2 -Wall -pedantic #-DDEBUG=1 -g3 + + # linker settings + LD = g++ +-LDFLAGS = -lfltk -lXext -lX11 -lm +-LDDIRS = -L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib +- ++LDFLAGS = -lMesaGL -lfltk -lXext -lX11 -lm ++LDDIRS = -L$(x11lib) -L/usr/lib -L/usr/local/lib + + # install settings + INSTALL = /usr/bin/install + INSTALL_FLAGS = --strip + +- + # documentation tool + DOCTOOL = perceps + DOCTOOL_FLAGS = -a -b -f -h -m -r + +-# base locations +-prefix = /usr/local +-exec_prefix = $(prefix) +-bindir = $(exec_prefix)/bin +- +- +-# include files and sources +-incdir = ./inc +-srcdir = ./src +- +- + # documentational files for developer + docdir = ./doc + templates = $(docdir)/templates + +- + # search paths + vpath %.H $(incdir) + vpath %.cc $(srcdir) +@@ -78,12 +67,10 @@ + .wmanagerrc .xinitrc + OBJ = $(patsubst %.cc,%.o,$(SRC)) + +- + # project version + VERSION = 0.1.1 + +- +-all: wmanager TAGS ++all: wmanager + + wmanager: $(OBJ) + $(LD) -o $@ $^ $(LDDIRS) $(LDFLAGS) +@@ -110,7 +97,6 @@ + @-echo -e '\nwmanager - X11 window manager selector' + @-echo 'v$(VERSION) 1999/09/26 by M. Tessmer' + @-echo 'Look at README for more information\n' +- + + # phony targets + .PHONY: all clean distclean TAGS version doc diff --git a/x11-wm/wmanager/files/patch-ab b/x11-wm/wmanager/files/patch-ab new file mode 100644 index 000000000000..8add2b3987ed --- /dev/null +++ b/x11-wm/wmanager/files/patch-ab @@ -0,0 +1,11 @@ +--- src/WManager.cc Wed Sep 29 13:23:17 1999 ++++ src/WManager.cc.new Fri Nov 19 23:07:25 1999 +@@ -9,6 +9,8 @@ + #include <fstream> // file streams + #include <cstring> // only for 'strtok' + #include <pwd.h> // for home directory ++#include <unistd.h> ++#include <sys/types.h> + + + // PROJECT INCLUDES //////////////////////////////// diff --git a/x11-wm/wmanager/files/pkg-message.in b/x11-wm/wmanager/files/pkg-message.in new file mode 100644 index 000000000000..53ee339c45f4 --- /dev/null +++ b/x11-wm/wmanager/files/pkg-message.in @@ -0,0 +1,3 @@ +Docs have been installed in /usr/X11R6/share/wmanager/. +You are advised to have a look at the sample .wmanagerrc +and .xinitrc's available there. |