d40b5ed2fc
Changes: - honour PKG_SYSCONFDIR, fix manpage accordingly - install sample configuration files 7.2.10: ======= - Applied patch from debian bug database that adds a -format option to larsclock. Changed the default format to be 12 hour clock. - Applied patch from Edelhard Becker to fix focus problem with GTK2 applications. 7.2.9: ====== - Changes to default config files to update them for RedHat 9. (Using Mozilla instead of Galeon etc) - Removed some unused code. - When specifying Class~Instance, if you do not include both (using the tilde), your string is compared both to class and instance of the client.
41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2003/05/16 08:21:50 salo Exp $
|
|
#
|
|
|
|
DISTNAME= larswm-7.2.10
|
|
CATEGORIES= wm x11
|
|
MASTER_SITES= http://www-personal.umich.edu/~larsb/larswm/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DOCFILES}
|
|
|
|
MAINTAINER= jschauma@netbsd.org
|
|
HOMEPAGE= http://www-personal.umich.edu/~larsb/larswm/
|
|
COMMENT= 9wm-like window manager
|
|
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
DOCFILES= keyboard_refcard.pdf mouse_refcard.pdf
|
|
|
|
USE_PKGINSTALL= YES
|
|
USE_IMAKE= YES
|
|
|
|
EGDIR= ${PREFIX}/share/examples/larswm
|
|
CONF_FILES= ${EGDIR}/sample.larswmrc ${PKG_SYSCONFDIR}/larswmrc
|
|
|
|
CPPFLAGS= -DPKG_SYSCONFDIR=\"\\\"${PKG_SYSCONFDIR}\\\"\"
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} && \
|
|
( \
|
|
${MV} larswm.man larswm.man.orig; \
|
|
${SED} ${FILES_SUBST_SED} larswm.man.orig > \
|
|
larswm.man; \
|
|
)
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/larswm
|
|
.for pdf in ${DOCFILES}
|
|
${INSTALL_DATA} ${DISTDIR}/${pdf} ${PREFIX}/share/doc/larswm
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sample.* ${EGDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|