30ee6e342d
1.3.2: Jeremy Huddleston (5): darwin: Buildfix for Tiger which doesn't have posix_spawn startx: Choose an unused $DISPLAY by default on all platforms launchd: Add an option (--with-launchagent-xserver) to set the default X11 server Use default clientargs, serverargs, and display if none were set configure.ac: 1.3.2 Julien Cristau (1): Include <sys/time.h> and <sys/resource.h> unconditionally 1.3.1: For most users, the main changes in xinit-1.3.1 focus on build system cleanup, but darwin has seen a fair number of other changes for the LaunchAgent and LaunchDaemon, specifically with respect to logging to ASL. These changes mirror similar changes coming in xorg-server-1.11.x (currently git master). 1.3.0: This release adds support for an xinitrc.d directory to contain startup script snippets on all systems. It also features a number of modernizations and cleanups of the code base.
30 lines
768 B
Makefile
30 lines
768 B
Makefile
# $NetBSD: Makefile,v 1.16 2012/06/03 18:16:51 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= xinit-1.3.2
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_XORG:=app/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://xorg.freedesktop.org/
|
|
COMMENT= X init program
|
|
LICENSE= mit
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-xinit=${PREFIX}/bin/xinit
|
|
USE_TOOLS+= pkg-config xauth:run
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
BUILD_DEPENDS+= ucpp-[0-9]*:../../devel/ucpp
|
|
CONFIGURE_ENV+= ac_cv_path_RAWCPP="${PREFIX}/bin/ucpp -t -c90 -Uunix"
|
|
.elif empty(PKGSRC_COMPILER:Mgcc)
|
|
CONFIGURE_ENV+= ac_cv_path_RAWCPP="cc -E -Uunix -"
|
|
.endif
|
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|