3d2b45f4bb
# JWM v2.0 <> 20070624 * New look. * Background support on a per-desktop basis. * Veritcal/horizontal maximization support. * Added the ability to move windows with the pager. * Many bug fixes. # JWM v2.0.1 <> 20070704 * Fix a file descriptor leak when JPEG is enabled. * Give swallow windows time to map when restarting.
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2008/06/17 00:00:30 abs Exp $
|
|
#
|
|
|
|
DISTNAME= jwm-2.0.1
|
|
CATEGORIES= wm x11
|
|
MASTER_SITES= http://www.joewing.net/programs/jwm/releases/ \
|
|
${MASTER_SITE_SOURCEFORGE:=jwm/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pip88nl@gmail.com
|
|
HOMEPAGE= http://www.joewing.net/programs/jwm/
|
|
COMMENT= Lightweight window manager with virtual desktops
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if exists(${X11BASE}/include/X11/extensions/Xinerama.h)
|
|
CONFIGURE_ARGS+= --enable-xinerama
|
|
# XXX maybe set some build variable about that
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
SUBST_CLASSES+= egdir
|
|
SUBST_STAGE.egdir= pre-configure
|
|
SUBST_FILES.egdir= Makefile.in
|
|
SUBST_SED.egdir= -e 's,@@EGDIR@@,${EGDIR},g'
|
|
|
|
PKG_SYSCONFSUBDIR= jwm
|
|
EGDIR= ${PREFIX}/share/examples/jwm
|
|
CONF_FILES= ${EGDIR}/system.jwmrc ${PKG_SYSCONFDIR}/system.jwmrc
|
|
|
|
.include "options.mk"
|
|
|
|
BUILDLINK_DEPMETHOD.libXt?= build
|
|
|
|
.include "../../x11/libXft/buildlink3.mk"
|
|
.include "../../x11/libXpm/buildlink3.mk"
|
|
.include "../../x11/libXinerama/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.include "../../x11/xextproto/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|