cd49ddc391
iAdam Jackson (1): xcompmgr 1.1.4 Dana Jansens (1): Fix a server resource leak on destroying windows. James Cloos (2): Remove deprecated .cvsignore Add *~ to .gitignore to skip patch/emacs droppings Jamey Sharp (1): Bug #13073: Fix broken word-wrapping in ChangeLog generation. Mark Tiefenbruck (1): Bug #9762: Fix opacity changes on unmapped windows. Tilman Sauerbeck (5): Fixed a bunch of warnings. Added .gitignore. Include getopt.h for getopt(). Constified some variables. Make this loop slightly easier to read.
42 lines
1.4 KiB
Makefile
42 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.23 2008/04/22 19:40:28 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= xcompmgr-1.1.4
|
|
CATEGORIES= x11
|
|
MASTER_SITES = http://xorg.freedesktop.org/archive/individual/app/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://www.freedesktop.org/
|
|
COMMENT= Sample compositing manager for X.org >= 6.8.0
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
USE_FEATURES= getopt_long
|
|
|
|
### XXX You may play around with these if you like; they're simply
|
|
### the #defines from xcompmgr.c placed here for your convenience.
|
|
#
|
|
#XCOMPMGR_DEFS+= -DCAN_DO_USABLE=0 # default: 0 (damage notification)
|
|
#XCOMPMGR_DEFS+= -DMONITOR_REPAINT=0 # default: 0 (?)
|
|
#XCOMPMGR_DEFS+= -DDEBUG_REPAINT=0 # default: 0 (debugging)
|
|
#XCOMPMGR_DEFS+= -DDEBUG_EVENTS=0 # default: 0 (debugging)
|
|
#XCOMPMGR_DEFS+= -DSHADOWS=1 # default: 1 (shadow support)
|
|
#XCOMPMGR_DEFS+= -DSHARP_SHADOW=0 # default 0 (?)
|
|
|
|
CPPFLAGS+= ${XCOMPMGR_DEFS}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if defined(X11_TYPE) && !empty(X11_TYPE:MXFree86) || \
|
|
defined(X11_TYPE) && !empty(X11_TYPE:Mnative) || !defined(X11_TYPE)
|
|
PKG_FAIL_REASON+= "This package is exclusively for X.org."
|
|
.endif
|
|
|
|
.include "../../x11/compositeproto/buildlink3.mk"
|
|
.include "../../x11/libXdamage/buildlink3.mk"
|
|
.include "../../x11/libXcomposite/buildlink3.mk"
|
|
.include "../../x11/libXrender/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|