diff options
Diffstat (limited to 'x11-wm/spectrwm')
-rw-r--r-- | x11-wm/spectrwm/Makefile | 54 | ||||
-rw-r--r-- | x11-wm/spectrwm/distinfo | 3 | ||||
-rw-r--r-- | x11-wm/spectrwm/files/spawn_menu_atbottom.patch | 12 | ||||
-rw-r--r-- | x11-wm/spectrwm/files/startscrotwm | 10 | ||||
-rw-r--r-- | x11-wm/spectrwm/pkg-descr | 14 |
5 files changed, 0 insertions, 93 deletions
diff --git a/x11-wm/spectrwm/Makefile b/x11-wm/spectrwm/Makefile deleted file mode 100644 index d727c95bb3ea..000000000000 --- a/x11-wm/spectrwm/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# New ports collection makefile for: scrotwm -# Date created: June 29, 2009 -# Whom: Aragon Gouveia <aragon@phat.za.net> -# -# $FreeBSD$ -# - -PORTNAME= scrotwm -PORTVERSION= 0.9.24 -CATEGORIES= x11-wm -MASTER_SITES= http://scrotwm.org/snapshot/ \ - http://www.peereboom.us/scrotwm/snapshot/ -EXTRACT_SUFX= .tgz - -MAINTAINER= aragon@phat.za.net -COMMENT= A small, dynamic tiling window manager for X11 - -OPTIONS= DMENU "Depend on x11/dmenu" Off \ - DMENU_BOTTOM "dmenu at screen bottom (instead of top)" Off - -.include <bsd.port.pre.mk> - -USE_XORG= x11 xproto xrandr -USE_XLIB= yes - -MAN1= scrotwm.1 -PLIST_FILES= bin/scrotwm bin/startscrotwm lib/libswmhack.so etc/scrotwm.conf -USE_LDCONFIG=yes - -.if defined(WITH_DMENU) -RUN_DEPENDS+= dmenu:${PORTSDIR}/x11/dmenu -.endif -.if defined(WITH_DMENU_BOTTOM) -EXTRA_PATCHES+= ${FILESDIR}/spawn_menu_atbottom.patch -.endif - -do-build: - ${CC} ${CFLAGS} -I${X11BASE}/include \ - -I${WRKSRC}/linux -lutil -L${X11BASE}/lib -lX11 -lXrandr \ - -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c - ${CC} ${CFLAGS} -I${X11BASE}/include -shared -fPIC \ - -o ${WRKSRC}/libswmhack.so ${WRKSRC}/lib/swm_hack.c - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${FILESDIR}/startscrotwm ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/libswmhack.so ${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/scrotwm.conf ${PREFIX}/etc - ${INSTALL_MAN} ${WRKSRC}/scrotwm.1 ${PREFIX}/man/man1 - -post-patch: - @${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|g' ${WRKSRC}/scrotwm.* - -.include <bsd.port.post.mk> diff --git a/x11-wm/spectrwm/distinfo b/x11-wm/spectrwm/distinfo deleted file mode 100644 index 6729d9e7e07c..000000000000 --- a/x11-wm/spectrwm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (scrotwm-0.9.24.tgz) = e7e0022b3166774351db3a29bf5f0909 -SHA256 (scrotwm-0.9.24.tgz) = f592619f6053a47e28eace059647fed7ec4ac9848b00163637e6eb58a4bac6af -SIZE (scrotwm-0.9.24.tgz) = 54940 diff --git a/x11-wm/spectrwm/files/spawn_menu_atbottom.patch b/x11-wm/spectrwm/files/spawn_menu_atbottom.patch deleted file mode 100644 index 1bd35a69603e..000000000000 --- a/x11-wm/spectrwm/files/spawn_menu_atbottom.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- scrotwm.c.orig 2009-10-24 07:10:36.000000000 +0200 -+++ scrotwm.c 2009-10-24 07:11:10.000000000 +0200 -@@ -2812,7 +2812,8 @@ - " -nb $bar_color" - " -nf $bar_font_color" - " -sb $bar_border" -- " -sf $bar_color", 0); -+ " -sf $bar_color" -+ " -b", 0); - } - - /* key bindings */ diff --git a/x11-wm/spectrwm/files/startscrotwm b/x11-wm/spectrwm/files/startscrotwm deleted file mode 100644 index 34721b34da5b..000000000000 --- a/x11-wm/spectrwm/files/startscrotwm +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -if [ -z "${DISPLAY}" ] -then - echo "$0: Starting X server" - exec xinit $( which scrotwm ) -else - echo "$0: X server already running on display ${DISPLAY}" - $( which scrotwm ) -fi diff --git a/x11-wm/spectrwm/pkg-descr b/x11-wm/spectrwm/pkg-descr deleted file mode 100644 index 57ba33f2612b..000000000000 --- a/x11-wm/spectrwm/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -Scrotwm is a small dynamic tiling window manager for X11. It tries to stay out -of the way so that valuable screen real estate can be used for much more -important stuff. It has sane defaults and does not require one to learn a -language to do any configuration. It was written by hackers for hackers and it -strives to be small, compact and fast. - -It was largely inspired by xmonad and dwm. Both are fine products but suffer -from things like: crazy-unportable-language-syndrome, silly defaults, -asymmetrical window layout, "how hard can it be?" and good old NIH. -Nevertheless dwm was a phenomenal resource and many good ideas and code was -borrowed from it. On the other hand xmonad has great defaults, key bindings -and xinerama support but is crippled by not being written in C. - -WWW: http://www.peereboom.us/scrotwm/html/scrotwm.html |