summaryrefslogtreecommitdiff
path: root/wm/aewm++
diff options
context:
space:
mode:
authortv <tv>2006-01-31 20:19:02 +0000
committertv <tv>2006-01-31 20:19:02 +0000
commit1bf85a33a7f0af352174332dac11865971217df5 (patch)
treeac38b597af8194f97ef08d4fd0ea67ec8fae54d6 /wm/aewm++
parentfb412398b2a8cd982d1920218452cdaea52847a6 (diff)
downloadpkgsrc-1bf85a33a7f0af352174332dac11865971217df5.tar.gz
Backport a change from 1.5.22 to 1.5.18 that fixes some issues withtv_libtool_1_5_18_tmpdirfix
temp dir creation when using relink-based finalization.
Diffstat (limited to 'wm/aewm++')
-rw-r--r--wm/aewm++/DESCR4
-rw-r--r--wm/aewm++/Makefile15
-rw-r--r--wm/aewm++/PLIST5
-rw-r--r--wm/aewm++/distinfo6
-rw-r--r--wm/aewm++/patches/patch-aa48
5 files changed, 0 insertions, 78 deletions
diff --git a/wm/aewm++/DESCR b/wm/aewm++/DESCR
deleted file mode 100644
index 27c30789900..00000000000
--- a/wm/aewm++/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-The aewm++ window manager is a fork of the popular minimal window manager aewm
-for the X Windows System. What makes it different is its codebase, feature
-set and focus. The name was created by using the first two letters in the
-word aesthetic, the wm is for window manager and the ++ is for its C++ code.
diff --git a/wm/aewm++/Makefile b/wm/aewm++/Makefile
deleted file mode 100644
index 3c46c9e832e..00000000000
--- a/wm/aewm++/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-# $NetBSD: Makefile,v 1.7 2005/06/01 18:03:24 jlam Exp $
-#
-
-DISTNAME= aewm++-1.0.24
-CATEGORIES= wm x11
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sapphire/}
-EXTRACT_SUFX= .tar.bz2
-
-MAINTAINER= tech-pkg@NetBSD.org
-HOMEPAGE= http://sapphire.sourceforge.net/
-COMMENT= Fork of the popular minimal window manager aewm
-
-
-.include "../../mk/x11.buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/wm/aewm++/PLIST b/wm/aewm++/PLIST
deleted file mode 100644
index 7020c6f5c19..00000000000
--- a/wm/aewm++/PLIST
+++ /dev/null
@@ -1,5 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2003/05/16 09:02:36 salo Exp $
-bin/aewm++
-man/man1/aewm++.1
-share/doc/aewm++/README
-@dirrm share/doc/aewm++
diff --git a/wm/aewm++/distinfo b/wm/aewm++/distinfo
deleted file mode 100644
index ccc1dbff307..00000000000
--- a/wm/aewm++/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.3 2005/02/23 18:43:53 wiz Exp $
-
-SHA1 (aewm++-1.0.24.tar.bz2) = 366da85a5edf47e3214c772007aebb2daf7d18d0
-RMD160 (aewm++-1.0.24.tar.bz2) = 6e37b29343948f469dcceba90732209b4b7324b9
-Size (aewm++-1.0.24.tar.bz2) = 36642 bytes
-SHA1 (patch-aa) = 9bf23b24a371c6a75c1bc8a6d64688af38f876a3
diff --git a/wm/aewm++/patches/patch-aa b/wm/aewm++/patches/patch-aa
deleted file mode 100644
index 2a35d8b004e..00000000000
--- a/wm/aewm++/patches/patch-aa
+++ /dev/null
@@ -1,48 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2003/05/16 09:02:37 salo Exp $
-
---- Makefile.orig 2002-11-16 00:28:08.000000000 +0100
-+++ Makefile 2003-05-16 10:48:03.000000000 +0200
-@@ -1,11 +1,13 @@
--CC = g++
--CFLAGS = -g -O2 -Wall
-+#CC = g++
-+#CFLAGS = -g -O2 -Wall
-
--prefix = /usr
--INCLUDES = -I$(prefix)/include
--LDPATH = -L/usr/X11R6/lib
-+prefix = ${PREFIX}
-+INCLUDES = -I${X11PREFIX}/include
-+LDPATH = ${LDFLAGS}
- LIBS = -lXext -lX11
-
-+.SUFFIXES: .o .cc
-+
- # SHAPE = Shape Extension
- # NEED_SETENV = Does your Unix not support the setenv function? Use this!
- DEFINES = -DSHAPE #-DNEED_SETENV
-@@ -28,16 +30,17 @@
- all: aewm++
-
- aewm++: $(OBJS)
-- $(CC) $(OBJS) $(LDPATH) $(LIBS) -o $@
-+ $(CXX) $(OBJS) $(LDPATH) $(LIBS) -o $@
-
--$(OBJS): %.o: %.cc $(HEADERS)
-- $(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -c $< -o $@
-+.cc.o: $(HEADERS)
-+ echo $<
-+ $(CXX) $(CXXFLAGS) $(DEFINES) $(INCLUDES) -c $< -o $@
-
- install: all
-- mkdir -p $(DESTDIR)$(prefix)/bin
-- mkdir -p $(DESTDIR)$(prefix)/man/man1
-- install -s aewm++ $(DESTDIR)$(prefix)/bin
-- install -m 644 aewm++.1x $(DESTDIR)$(prefix)/man/man1
-+ ${BSD_INSTALL_PROGRAM} aewm++ $(DESTDIR)$(prefix)/bin
-+ ${BSD_INSTALL_MAN} aewm++.1x $(DESTDIR)$(prefix)/man/man1/aewm++.1
-+ ${BSD_INSTALL_DATA_DIR} $(DESTDIR)$(prefix)/share/doc/aewm++
-+ ${BSD_INSTALL_DATA} README $(DESTDIR)$(prefix)/share/doc/aewm++
-
- clean:
- rm -f aewm++ $(OBJS) core