Note that this release changes the default location for the system provided configuration files from $(libdir)/X11/xsm to $(sysconfdir)/X11/xsm (on most systems that will be from /usr/lib/X11/xsm to /etc/X11/xsm, though results may vary depending on configure arguments). This minor maintenance release also includes various build improvements, cleanups, and bug fixes; including making the build configuration scripts compatible with automake-1.13. Alan Coopersmith (12): Make System() prototype for Solaris in xsm.h actually a prototype Convert XtMalloc + sprintf to XtAsprintf Convert a couple last sprintf calls to snprintf Terminate execl() arguments with NULL instead of 0 Fix some gcc -Wwrite-strings warnings Add size limit to scanf string specifier unifdef -U__UNIXOS2__ config: Add missing AC_CONFIG_SRCDIR Use standard autoconf defines for mkstemp & putenv instead of imake leftovers Use mode_t, not int, for umask return/argument value unifdef ISC xsm 1.0.3 Egbert Eich (1): install: Use sysconfdir instead of libdir for config files. Gaetan Nadon (5): config: replace deprecated AC_HELP_STRING with AS_HELP_STRING config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS man: remove trailing spaces and tabs man: replace hard coded man page section with substitution strings config: move man pages into their own directory
34 lines
899 B
Makefile
34 lines
899 B
Makefile
# $NetBSD: Makefile,v 1.10 2013/02/11 09:09:53 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= xsm-1.0.3
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_XORG:=app/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://xorg.freedesktop.org/
|
|
COMMENT= X Session Manager
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
CONFIGURE_ENV+= APP_MAN_SUFFIX=1
|
|
|
|
# Most modern Linuxen don't come with rcmds by default,
|
|
# so just pretend to have them to keep configure happy.
|
|
.if !exists(/usr/bin/rsh)
|
|
CONFIGURE_ENV+= ac_cv_path_RSH=/usr/bin/rsh
|
|
.endif
|
|
|
|
MAKE_FLAGS+= appdefaultdir=${PREFIX}/lib/X11/app-defaults
|
|
INSTALL_MAKE_FLAGS+= SYSTEM_INIT_DIR=${PREFIX}/share/examples/xsm
|
|
|
|
MAKE_DIRS+= ${PKG_SYSCONFDIR}/X11/xsm
|
|
CONF_FILES+= share/examples/xsm/system.xsm ${PKG_SYSCONFDIR}/X11/xsm/system.xsm
|
|
|
|
.include "../../x11/libXaw/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|