7f3766a8dc
Highlights: ----------- ** A new "Theme" module called FvwmTheme and "colour sets" including 8 kinds of gradients and pixmap support controlling the appearance of borders, title bars, frames, 3D shadows, menus and modules. ** GNOME compliance. GNOME hints can be turned on and off for individual windows. ** Mouse stroke support. You will need the libstroke library, found at http://www.etla.net/~willey/projects/libstroke/ ** Much more flexibility and control in menu definition and menu styles including dynamically generated menus and some menu generating scripts. ** Almost all commands, including Key, Mouse and Style, take effect immediately. The Recapture command is no longer needed to activate most changes. ** The old StaysOnTop style option has been generalised into the concept of layers. See the fvwm2 man page for details. ** Using Alt-Tab now works exactly like the other one. ** A derived package fvwm-themes standardises FVWM Themes issues. More info is available at http://fvwm-themes.sourceforge.net/ ** Improved multi head support.
63 lines
2 KiB
Makefile
63 lines
2 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2001/07/10 20:15:48 nra Exp $
|
|
# FreeBSD Id: Makefile,v 1.12 1997/10/11 10:42:43 jkh Exp
|
|
#
|
|
|
|
DISTNAME= fvwm-${FVWM_VER}
|
|
PKGNAME= fvwm2-${FVWM_VER}
|
|
CATEGORIES= x11 wm
|
|
MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/ \
|
|
http://www.fvwm.org/generated/icon_download/ \
|
|
ftp://ftp.hpc.uh.edu/pub/fvwm/version-2/
|
|
DISTFILES+= fvwm-${FVWM_VER}.tar.gz fvwm_icons.tgz
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.fvwm.org/
|
|
COMMENT= Newer version of X11 Virtual window manager
|
|
|
|
DEPENDS+= xpmroot-2.*:../../x11/xpmroot
|
|
|
|
CONFLICTS= fvwm-2.*
|
|
EXTRACT_ONLY= ${DISTNAME}.tar.gz
|
|
FVWM_VER= 2.4.0
|
|
|
|
USE_X11BASE= YES
|
|
GNU_CONFIGURE= YES
|
|
USE_GNU_READLINE= YES
|
|
|
|
PLIST_SUBST+= FVWM_VER=${FVWM_VER}
|
|
|
|
EVAL_PREFIX+= XPMDIR=xpm
|
|
CONFIGURE_ARGS+= --enable-extras --without-gnome
|
|
CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/lib/X11/fvwm2
|
|
CONFIGURE_ARGS+= --libexecdir=${PREFIX}/lib/X11
|
|
CONFIGURE_ARGS+= --with-xpm-includes=${XPMDIR}/include
|
|
CONFIGURE_ARGS+= --with-iconpath=${PREFIX}/lib/X11/fvwm2/pixmaps:${X11BASE}/include/X11/bitmaps:${X11BASE}/include/X11/pixmaps
|
|
|
|
post-extract:
|
|
${MKDIR} ${WRKDIR}/icons
|
|
${GTAR} -xzf ${DISTDIR}/fvwm_icons.tgz -C ${WRKDIR}/icons
|
|
|
|
post-install:
|
|
@${INSTALL_DATA_DIR} ${PREFIX}/lib/X11/fvwm2/pixmaps
|
|
${INSTALL_DATA} \
|
|
${WRKDIR}/icons/*.xpm \
|
|
${PREFIX}/lib/X11/fvwm2/pixmaps
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/X11/fvwm2
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/sample.fvwmrc/decor_examples \
|
|
${WRKSRC}/sample.fvwmrc/system.fvwm2rc-sample-* \
|
|
${PREFIX}/lib/X11/fvwm2
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/sample.fvwmrc/system.fvwm2rc \
|
|
${PREFIX}/lib/X11/fvwm2/system.fvwm2rc.example
|
|
if [ ! -f ${PREFIX}/lib/X11/fvwm2/system.fvwm2rc ]; then \
|
|
${INSTALL_DATA} \
|
|
${PREFIX}/lib/X11/fvwm2/system.fvwm2rc.example \
|
|
${PREFIX}/lib/X11/fvwm2/system.fvwm2rc ; \
|
|
fi
|
|
|
|
.include "../../audio/rplay/buildlink.mk"
|
|
.include "../../devel/readline/buildlink.mk"
|
|
.include "../../graphics/imlib/buildlink.mk"
|
|
.include "../../x11/gtk/buildlink.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|