From owner-svn-ports-head@FreeBSD.ORG Mon Dec 31 11:18:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1D04F8F7; Mon, 31 Dec 2012 11:18:18 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 00CCC8FC08; Mon, 31 Dec 2012 11:18:17 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBVBIH0R018615; Mon, 31 Dec 2012 11:18:17 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBVBIHpx018612; Mon, 31 Dec 2012 11:18:17 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201212311118.qBVBIHpx018612@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 31 Dec 2012 11:18:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309715 - in head/x11-wm/pekwm: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Dec 2012 11:18:18 -0000 Author: bapt Date: Mon Dec 31 11:18:17 2012 New Revision: 309715 URL: http://svnweb.freebsd.org/changeset/ports/309715 Log: - update to 0.1.16 - add a patch to fix complication with our old gcc 4.2.1 PR: ports/174847 Submitted by: "Herbert J. Skuhra" Added: head/x11-wm/pekwm/files/ head/x11-wm/pekwm/files/patch-src_x11.cc (contents, props changed) Modified: head/x11-wm/pekwm/Makefile head/x11-wm/pekwm/distinfo Modified: head/x11-wm/pekwm/Makefile ============================================================================== --- head/x11-wm/pekwm/Makefile Mon Dec 31 10:49:52 2012 (r309714) +++ head/x11-wm/pekwm/Makefile Mon Dec 31 11:18:17 2012 (r309715) @@ -1,12 +1,8 @@ -# Ports collection makefile for: pekwm -# Date created: Nov 1, 2002 -# Whom: anders@hack.org -# +# Created by: anders@hack.org # $FreeBSD$ -# PORTNAME= pekwm -PORTVERSION= 0.1.15 +PORTVERSION= 0.1.16 PORTEPOCH= 1 CATEGORIES= x11-wm MASTER_SITES= http://pekwm.org/projects/3/files/ @@ -14,7 +10,7 @@ MASTER_SITES= http://pekwm.org/projects/ MAINTAINER= bapt@FreeBSD.org COMMENT= Light, Unobtrusive, and configurable windowmanager -LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ +LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png USE_XORG= xft xpm x11 @@ -32,10 +28,4 @@ LDFLAGS+= -L${LOCALBASE}/lib -liconv MAN1= pekwm.1 MANCOMPRESSED= no -# replace calls to obsolete libpng12 functions -post-extract: - @${REINPLACE_CMD} -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|; \ - s|png_check_sig(sig, PImageLoaderPng::PNG_SIG_BYTES) !=|png_sig_cmp(sig, 0, PImageLoaderPng::PNG_SIG_BYTES) ==|' \ - ${WRKSRC}/src/PImageLoaderPng.cc - .include Modified: head/x11-wm/pekwm/distinfo ============================================================================== --- head/x11-wm/pekwm/distinfo Mon Dec 31 10:49:52 2012 (r309714) +++ head/x11-wm/pekwm/distinfo Mon Dec 31 11:18:17 2012 (r309715) @@ -1,2 +1,2 @@ -SHA256 (pekwm-0.1.15.tar.bz2) = 56d405b87f3d858ebc53a227e4de23b9273067707251145c90af08d35bc7582f -SIZE (pekwm-0.1.15.tar.bz2) = 395557 +SHA256 (pekwm-0.1.16.tar.bz2) = 899eef35d5d1f472dd65a08c180b9719935cb1f42eda7fada6f9b8b551c79c96 +SIZE (pekwm-0.1.16.tar.bz2) = 401550 Added: head/x11-wm/pekwm/files/patch-src_x11.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/pekwm/files/patch-src_x11.cc Mon Dec 31 11:18:17 2012 (r309715) @@ -0,0 +1,25 @@ +--- src/x11.cc.orig 2012-12-31 01:07:34.000000000 +0100 ++++ src/x11.cc 2012-12-31 01:11:01.000000000 +0100 +@@ -993,6 +993,8 @@ + /** + * Wrapper for XKeycodeToKeysym and XkbKeycodeToKeysym depending on which one is available. + */ ++#pragma GCC diagnostic push ++#pragma GCC diagnostic ignored "-Wdeprecated-declarations" + KeySym + X11::getKeysymFromKeycode(KeyCode keycode) + { +@@ -1001,12 +1003,9 @@ + return XkbKeycodeToKeysym(_dpy, keycode, 0, 0); + else + #endif +- +-#pragma GCC diagnostic push +-#pragma GCC diagnostic ignored "-Wdeprecated-declarations" + return XKeycodeToKeysym(_dpy, keycode, 0); +-#pragma GCC diagnostic pop + } ++#pragma GCC diagnostic pop + + Display *X11::_dpy; + bool X11::_honour_randr = false; \ No newline at end of file