pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/wm/windowmaker
Module Name: pkgsrc
Committed By: adam
Date: Mon Mar 20 12:29:53 UTC 2017
Modified Files:
pkgsrc/wm/windowmaker: Makefile PLIST distinfo
Removed Files:
pkgsrc/wm/windowmaker/patches: patch-WindowMaker_Defaults_Makefile.in
Log Message:
Changes 0.95.8
* Implementation for moving mouse pointer within the maximized window.
* Alternative way for traverse half-maximized windows
* Move half-maximized windows between the screens
* Snapping a window to the top
* Global defaults directory configuration
To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 pkgsrc/wm/windowmaker/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/wm/windowmaker/PLIST
cvs rdiff -u -r1.42 -r1.43 pkgsrc/wm/windowmaker/distinfo
cvs rdiff -u -r1.1 -r0 \
pkgsrc/wm/windowmaker/patches/patch-WindowMaker_Defaults_Makefile.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/wm/windowmaker/Makefile
diff -u pkgsrc/wm/windowmaker/Makefile:1.116 pkgsrc/wm/windowmaker/Makefile:1.117
--- pkgsrc/wm/windowmaker/Makefile:1.116 Tue Feb 28 15:20:10 2017
+++ pkgsrc/wm/windowmaker/Makefile Mon Mar 20 12:29:52 2017
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.116 2017/02/28 15:20:10 ryoon Exp $
+# $NetBSD: Makefile,v 1.117 2017/03/20 12:29:52 adam Exp $
-DISTNAME= WindowMaker-0.95.7
-PKGNAME= ${DISTNAME:S/WindowMaker/windowmaker/}
-PKGREVISION= 3
+DISTNAME= WindowMaker-0.95.8
+PKGNAME= ${DISTNAME:tl}
CATEGORIES= x11 wm windowmaker
-MASTER_SITES= http://windowmaker.info/pub/source/release/
+MASTER_SITES= http://windowmaker.org/pub/source/release/
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://www.windowmaker.org/
@@ -15,16 +14,16 @@ BROKEN_GETTEXT_DETECTION= yes
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
-USE_TOOLS+= msgfmt pkg-config xgettext
+USE_TOOLS+= msgfmt perl:run pkg-config xgettext
GNU_CONFIGURE= yes
+CONFIGURE_ARGS+= --enable-pango
CONFIGURE_ARGS+= --enable-usermenu
CONFIGURE_ARGS+= --enable-xinerama
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
+CONFIGURE_ARGS+= --with-defsdatadir=${PREFIX}/share/examples/WindowMaker
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
@@ -37,10 +36,6 @@ INSTALLATION_DIRS+= share/doc/WindowMake
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
@@ -54,19 +49,6 @@ CONF_FILES=
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.
@@ -90,8 +72,9 @@ post-install:
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../devel/pango/buildlink3.mk"
.include "../../graphics/giflib/buildlink3.mk"
-.include "../../mk/jpeg.buildlink3.mk"
+.include "../../graphics/libexif/buildlink3.mk"
.include "../../graphics/libwebp/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"
@@ -103,4 +86,5 @@ post-install:
.include "../../x11/libXpm/buildlink3.mk"
BUILDLINK_DEPMETHOD.libXt?= build
.include "../../x11/libXt/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/wm/windowmaker/PLIST
diff -u pkgsrc/wm/windowmaker/PLIST:1.21 pkgsrc/wm/windowmaker/PLIST:1.22
--- pkgsrc/wm/windowmaker/PLIST:1.21 Fri Oct 16 10:42:23 2015
+++ pkgsrc/wm/windowmaker/PLIST Mon Mar 20 12:29:52 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.21 2015/10/16 10:42:23 adam Exp $
+@comment $NetBSD: PLIST,v 1.22 2017/03/20 12:29:52 adam Exp $
bin/convertfonts
bin/get-wings-flags
bin/get-wraster-flags
@@ -31,6 +31,7 @@ lib/libWUtil.la
lib/libwraster.la
lib/pkgconfig/WINGs.pc
lib/pkgconfig/WUtil.pc
+lib/pkgconfig/wmlib.pc
lib/pkgconfig/wrlib.pc
man/cs/man1/geticonset.1
man/cs/man1/getstyle.1
Index: pkgsrc/wm/windowmaker/distinfo
diff -u pkgsrc/wm/windowmaker/distinfo:1.42 pkgsrc/wm/windowmaker/distinfo:1.43
--- pkgsrc/wm/windowmaker/distinfo:1.42 Wed Nov 4 17:41:21 2015
+++ pkgsrc/wm/windowmaker/distinfo Mon Mar 20 12:29:52 2017
@@ -1,11 +1,10 @@
-$NetBSD: distinfo,v 1.42 2015/11/04 17:41:21 agc Exp $
+$NetBSD: distinfo,v 1.43 2017/03/20 12:29:52 adam Exp $
-SHA1 (WindowMaker-0.95.7.tar.gz) = ceae84f67e056dd291199b76afd0235edda214a0
-RMD160 (WindowMaker-0.95.7.tar.gz) = 2ae5003eb4e59b89c2b81c3b7b751b2f2dc98b14
-SHA512 (WindowMaker-0.95.7.tar.gz) = 9c1190503efdc58c11a90d5ba80796979cdc9f2beb69a6d233ffc8d531a54c877c5270841bf6318738069098cd488e5ab77ac19f661ac888e892bf05ac22d93f
-Size (WindowMaker-0.95.7.tar.gz) = 3238325 bytes
+SHA1 (WindowMaker-0.95.8.tar.gz) = fd59e3cb07071bd70359eef427ff12eb9cfe4641
+RMD160 (WindowMaker-0.95.8.tar.gz) = c1b19ae07a4d22ec6419c4eca5c1999e5f1dd442
+SHA512 (WindowMaker-0.95.8.tar.gz) = 6ab16ed4304aba20f0f3a4083adf63a47fa674ade7bc39aaa8aa6466c7842e3f10ab73af96e2afce0842b11c57a35eb69f43183a4044d8cd95d4e2a4d2c079a2
+Size (WindowMaker-0.95.8.tar.gz) = 3253515 bytes
SHA1 (patch-WINGs_dragsource.c) = a9b8dfb0ac453e5835b683a2119428d0b1182ced
-SHA1 (patch-WindowMaker_Defaults_Makefile.in) = 3f0fbb4f1adef603cc7e3c371c3e72dd1d8f594c
SHA1 (patch-configure) = dde661da4d1b3632b4710285f9f7a9485356e8b8
SHA1 (patch-src_event.c) = 9f72b77f7f7890c9b4283eecca3e2bb25ad8d5b3
SHA1 (patch-src_main.c) = e1693470d803b96f8ff93906dfeea43d5c3509c9
Home |
Main Index |
Thread Index |
Old Index