blob: 5758013d42240b70c0d8e22032a5d0074a29900c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.6 2001/02/26 20:19:49 tron Exp $
#
PKGNAME= sawfish-${SF_VERS}
COMMENT= GNOME-aware window manager that is fully configurable in Lisp
DEPENDS+= sawfish-replibs-${SF_VERS}:../../wm/sawfish-replibs
USE_X11BASE= # defined
CONFIGURE_ENV+= LOCALEDIR=${LOCALEDIR}
MAKE_ENV+= LOCALEDIR=${LOCALEDIR}
PLIST_SUBST+= SF_VERS=${SF_VERS}
.include "../../mk/bsd.prefs.mk"
# The directory in which locale files are found is:
#
# ${PREFIX}/${LOCALEDIR}/locale/<lang>/LC_MESSAGES
#
.if ${OPSYS} == "SunOS"
LOCALEDIR= lib
.else
LOCALEDIR= share
.endif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/sawfish/themes
${TOUCH} ${PREFIX}/share/sawfish/themes/.directory
${INSTALL_DATA_DIR} ${PREFIX}/share/sawfish/sounds
${TOUCH} ${PREFIX}/share/sawfish/sounds/.directory
.include "../../wm/sawfish/Makefile.common"
|