TinyWM is a ridiculously tiny window manager implemented in nearly as few

lines of C as possible, without being obfuscated or entirely useless. It
allows you to move, resize, focus (sloppy), and raise windows.

PR:		ports/76077
Submitted by:	Florent Thoumie <flz@xbsd.org>
This commit is contained in:
Pav Lucistnik 2005-01-16 00:58:29 +00:00
parent df56ba725b
commit 53eebc32ad
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=126531
4 changed files with 42 additions and 0 deletions

View File

@ -89,6 +89,7 @@
SUBDIR += skippy
SUBDIR += skippy-xd
SUBDIR += swm
SUBDIR += tinywm
SUBDIR += tpager
SUBDIR += treewm
SUBDIR += tvtwm

31
x11-wm/tinywm/Makefile Normal file
View File

@ -0,0 +1,31 @@
# New ports collection makefile for: tinywm
# Date created: Jan 10 2005
# Whom: Florent Thoumie <flz@xbsd.org>
#
# $FreeBSD$
#
PORTNAME= tinywm
PORTVERSION= 1.0
CATEGORIES= x11-wm
MASTER_SITES= http://incise.org/files/dev/
EXTRACT_SUFX= .tgz
MAINTAINER= flz@xbsd.org
COMMENT= Ridiculously tiny window manager
USE_REINPLACE= yes
USE_X_PREFIX= yes
PLIST_FILES= bin/tinywm
PORTDOCS= README
post-patch:
@${REINPLACE_CMD} -e 's|CC)|CC) ${CFLAGS}|' ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tinywm ${PREFIX}/bin
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.include <bsd.port.mk>

2
x11-wm/tinywm/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (tinywm-1.0.tgz) = 854a55c818026d786466322610cc3668
SIZE (tinywm-1.0.tgz) = 1492

8
x11-wm/tinywm/pkg-descr Normal file
View File

@ -0,0 +1,8 @@
TinyWM is a ridiculously tiny window manager implemented in nearly as few
lines of C as possible, without being obfuscated or entirely useless. It
allows you to move, resize, focus (sloppy), and raise windows.
WWW: http://freshmeat.net/projects/tinywm/?branch_id=55633&release_id=184175
- Florent Thoumie
flz@xbsd.org