JWM is a window manager for the X11 Window System. JWM is written in C and uses

only Xlib at a minimum.

PR:		ports/91015
Submitted by:	Babak Farrokhi <babak@farrokhi.net>
This commit is contained in:
Pav Lucistnik 2005-12-28 16:29:45 +00:00
parent f0798650de
commit 6f73c5cbda
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=152288
5 changed files with 61 additions and 0 deletions

View file

@ -56,6 +56,7 @@
SUBDIR += ion-2
SUBDIR += ion-3ds
SUBDIR += jewel
SUBDIR += jwm
SUBDIR += kahakai
SUBDIR += kappdock
SUBDIR += kompmgr

38
x11-wm/jwm/Makefile Normal file
View file

@ -0,0 +1,38 @@
# New ports collection makefile for: jwm
# Date created: 26 DEC 2005
# Whom: babak@farrokhi.net
#
# $FreeBSD$
#
PORTNAME= jwm
PORTVERSION= 1.1
CATEGORIES= x11-wm
MASTER_SITES= http://joewing.net/programs/jwm/ \
http://joesbox.xmgfree.com/jwm/
MAINTAINER= babak@farrokhi.net
COMMENT= Joe's Window Manager
MAN1= jwm.1
USE_X_PREFIX= yes
USE_XPM= yes
HAS_CONFIGURE= yes
USE_BZIP2= yes
USE_REINPLACE= yes
PLIST_FILES= bin/jwm etc/system.jwmrc
CONFIGURE_ARGS= --prefix=${PREFIX} --enable-icons \
--enable-png --enable-xpm --enable-shape \
--enable-xinerama --enable-xft --enable-xrender
post-patch:
@${REINPLACE_CMD} -e 's,^CC =,CC ?=,' \
-e 's,^CFLAGS =,CFLAGS +=,' \
${WRKSRC}/src/Makefile.in
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/jwm ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/example.jwmrc ${PREFIX}/etc/system.jwmrc
${INSTALL_MAN} ${WRKSRC}/jwm.1 ${MANPREFIX}/man/man1/
.include <bsd.port.mk>

3
x11-wm/jwm/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (jwm-1.1.tar.bz2) = b5afb82b017894665c73ed3febbafaa9
SHA256 (jwm-1.1.tar.bz2) = eead5a45c0743c515241c7c93fba32a236627bddafe3f0f2d4e0bef72e1d1657
SIZE (jwm-1.1.tar.bz2) = 111464

View file

@ -0,0 +1,12 @@
--- example.jwmrc.orig Wed Dec 28 16:16:26 2005
+++ example.jwmrc Wed Dec 28 16:19:07 2005
@@ -113,6 +113,9 @@
<Icons>
<IconPath>$HOME/.icons</IconPath>
+ <IconPath>%%PREFIX%%/share/icons</IconPath>
+ <IconPath>%%PREFIX%%/share/pixmaps</IconPath>
+ <IconPath>%%PREFIX%%/lib/X11/icons</IconPath>
</Icons>
<StartupCommand>

7
x11-wm/jwm/pkg-descr Normal file
View file

@ -0,0 +1,7 @@
WM is a window manager for the X11 Window System.
JWM is written in C and uses only Xlib at a minimum.
WWW: http://joewing.net/programs/jwm/index.shtml
-- Babak Farrokhi
babak@farrokhi.net