106 lines
3.4 KiB
Makefile
106 lines
3.4 KiB
Makefile
# $NetBSD: Makefile,v 1.114 2016/01/06 10:46:55 adam Exp $
|
|
|
|
DISTNAME= WindowMaker-0.95.7
|
|
PKGNAME= ${DISTNAME:S/WindowMaker/windowmaker/}
|
|
PKGREVISION= 1
|
|
CATEGORIES= x11 wm windowmaker
|
|
MASTER_SITES= http://windowmaker.info/pub/source/release/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.windowmaker.org/
|
|
COMMENT= GNUStep-compliant NEXTSTEP(tm) window manager clone
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
BROKEN_GETTEXT_DETECTION= yes
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= msgfmt pkg-config xgettext
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-usermenu
|
|
CONFIGURE_ARGS+= --enable-xinerama
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
|
|
CONFIGURE_ARGS+= --with-gnustepdir=${PREFIX}/share/GNUstep
|
|
#CONFIGURE_ARGS+= --with-nlsdir=${PREFIX}/${PKGLOCALEDIR}/locale
|
|
CONFIGURE_ENV+= LINGUAS="bg ca cs cz da de el es et fi fr gl he hr hu it ja ko nl ms no pl pt ro ru se sk sl sv tr zh_CN zh_TW"
|
|
CONFIGURE_ENV+= CPP_PATH=${CPP:Q}
|
|
USE_TOOLS+= perl:run
|
|
REPLACE_PERL+= util/wkdemenu.pl
|
|
|
|
INSTALLATION_DIRS= share/WindowMaker/SoundSets
|
|
INSTALLATION_DIRS+= share/WindowMaker/Sounds
|
|
INSTALLATION_DIRS+= share/doc/WindowMaker
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MSunOS-5.11-*)
|
|
CONFIGURE_ENV+= ac_cv_lib_Xext_XineramaGetInfo=no
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} != "i386"
|
|
CONFIGURE_ENV+= ac_cv_c_inline_asm=no
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32"
|
|
GCC_REQD+= 3.0
|
|
.endif
|
|
|
|
CFLAGS.SunOS+= -D__EXTENSIONS__
|
|
|
|
PKG_SYSCONFSUBDIR= WindowMaker
|
|
EGDIR= ${PREFIX}/share/examples/WindowMaker
|
|
CONF_FILES=
|
|
.for f in WMGLOBAL WMRootMenu WMState WMWindowAttributes WindowMaker
|
|
CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
|
|
.endfor
|
|
|
|
# WINDOWMAKER_OPTIONS is a space-separated list of compile-time options
|
|
# to support. Currently supported options:
|
|
#
|
|
# vdesktop enable support for virtual desktop.
|
|
|
|
WINDOWMAKER_OPTIONS?= vdesktop
|
|
|
|
BUILD_DEFS+= WINDOWMAKER_OPTIONS
|
|
|
|
.for option in ${WINDOWMAKER_OPTIONS}
|
|
CONFIGURE_ARGS+= --enable-${option}
|
|
.endfor
|
|
|
|
SUBST_CLASSES+= fix-path
|
|
SUBST_STAGE.fix-path= pre-configure
|
|
SUBST_MESSAGE.fix-path= Fixing absolute paths.
|
|
SUBST_FILES.fix-path= WINGs/wapplication.c
|
|
SUBST_FILES.fix-path+= WindowMaker/Defaults/WindowMaker.in
|
|
SUBST_FILES.fix-path+= WPrefs.app/Paths.c
|
|
SUBST_FILES.fix-path+= WindowMaker/menu*
|
|
SUBST_FILES.fix-path+= WindowMaker/plmenu*
|
|
SUBST_SED.fix-path= -e 's,/usr/local,${PREFIX},g'
|
|
SUBST_SED.fix-path+= -e 's,${PREFIX}/GNUstep,${PREFIX}/share/GNUstep,g'
|
|
|
|
pre-configure:
|
|
${RM} -f ${WRKSRC}/WindowMaker/Defaults/WMState \
|
|
${WRKSRC}/WindowMaker/Defaults/WMWindowAttributes \
|
|
${WRKSRC}/WindowMaker/Defaults/WindowMaker \
|
|
${WRKSRC}/po/zh_TW.Big5.po
|
|
|
|
post-install:
|
|
${TOUCH} ${DESTDIR}${PREFIX}/share/WindowMaker/SoundSets/.directory
|
|
${TOUCH} ${DESTDIR}${PREFIX}/share/WindowMaker/Sounds/.directory
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../graphics/giflib/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../graphics/libwebp/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/libXft/buildlink3.mk"
|
|
.include "../../x11/libXinerama/buildlink3.mk"
|
|
.include "../../x11/libXmu/buildlink3.mk"
|
|
.include "../../x11/libXpm/buildlink3.mk"
|
|
BUILDLINK_DEPMETHOD.libXt?= build
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|