From owner-svn-ports-head@freebsd.org Wed Nov 9 21:30:50 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93F13C38366; Wed, 9 Nov 2016 21:30:50 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70A1610B4; Wed, 9 Nov 2016 21:30:50 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9LUnkB080056; Wed, 9 Nov 2016 21:30:49 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA9LUnf0080052; Wed, 9 Nov 2016 21:30:49 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201611092130.uA9LUnf0080052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 9 Nov 2016 21:30:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425808 - in head/x11-wm/i3: . 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.23 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: Wed, 09 Nov 2016 21:30:50 -0000 Author: bapt Date: Wed Nov 9 21:30:49 2016 New Revision: 425808 URL: https://svnweb.freebsd.org/changeset/ports/425808 Log: Update to 4.13 Changes: http://i3wm.org/downloads/RELEASE-NOTES-4.13.txt Added: head/x11-wm/i3/files/ head/x11-wm/i3/files/patch-configure (contents, props changed) head/x11-wm/i3/files/patch-libi3_get__config__path.c (contents, props changed) Modified: head/x11-wm/i3/Makefile head/x11-wm/i3/distinfo Modified: head/x11-wm/i3/Makefile ============================================================================== --- head/x11-wm/i3/Makefile Wed Nov 9 21:13:12 2016 (r425807) +++ head/x11-wm/i3/Makefile Wed Nov 9 21:30:49 2016 (r425808) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= i3 -DISTVERSION= 4.12 +DISTVERSION= 4.13 CATEGORIES= x11-wm MASTER_SITES= http://i3wm.org/downloads/ @@ -21,38 +21,23 @@ LIB_DEPENDS= libstartup-notification-1.s libpangocairo-1.0.so:x11-toolkits/pango \ libpcre.so:devel/pcre \ libxcb-cursor.so:x11/xcb-util-cursor \ - libxkbcommon.so:x11/libxkbcommon + libxkbcommon.so:x11/libxkbcommon \ + libxcb-xrm.so:x11/xcb-util-xrm RUN_DEPENDS= p5-IPC-Run>=0:devel/p5-IPC-Run \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-AnyEvent-I3>=0:devel/p5-AnyEvent-I3 USE_XORG= xcb -USES= pkgconfig iconv gmake perl5 tar:bzip2 +USES= pkgconfig gmake iconv perl5 tar:bzip2 +GNU_CONFIGURE= yes +CONFIGURE_OUTSOURCE= yes +CONFIGURE_ENV= ac_cv_path_PATH_ASCIIDOC="" USE_PERL5= run LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} -MAKE_JOBS_UNSAFE= yes - -post-patch: - @${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/src/config.c - @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}/|g' ${WRKSRC}/i3.config - @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}/|g' ${WRKSRC}/i3.config - @${REINPLACE_CMD} -e 's|PREFIX|${PREFIX}/|g' ${WRKSRC}/man/Makefile - @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}/|g' ${WRKSRC}/man/i3.1 - @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}/|g' ${WRKSRC}/man/i3-msg.1 - @${REINPLACE_CMD} -e 's|/usr/|${PREFIX}/|g' ${WRKSRC}/man/i3-input.1 - @${REINPLACE_CMD} -e 's|.SILENT||g' ${WRKSRC}/common.mk - @${REINPLACE_CMD} -e 's|-Iinclude|-Iinclude -Isrc|g' \ - -e 's|-liconv|${ICONV_LIB}|' \ - -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/common.mk +INSTALL_TARGET= install-strip post-install: @${INSTALL_DATA} ${WRKSRC}/man/*.1 ${STAGEDIR}${MANPREFIX}/man/man1/ - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/i3 \ - ${STAGEDIR}${PREFIX}/bin/i3bar \ - ${STAGEDIR}${PREFIX}/bin/i3-config-wizard \ - ${STAGEDIR}${PREFIX}/bin/i3-msg \ - ${STAGEDIR}${PREFIX}/bin/i3-input \ - ${STAGEDIR}${PREFIX}/bin/i3-nagbar \ - ${STAGEDIR}${PREFIX}/bin/i3-dump-log + .include Modified: head/x11-wm/i3/distinfo ============================================================================== --- head/x11-wm/i3/distinfo Wed Nov 9 21:13:12 2016 (r425807) +++ head/x11-wm/i3/distinfo Wed Nov 9 21:30:49 2016 (r425808) @@ -1,2 +1,3 @@ -SHA256 (i3-4.12.tar.bz2) = e19e1ce08c2549cba83e083cc768d487202c41760d5c283f67752e791f1d78b4 -SIZE (i3-4.12.tar.bz2) = 988084 +TIMESTAMP = 1478723379 +SHA256 (i3-4.13.tar.bz2) = 94c13183e527a984132a3b050c8bf629626502a6e133e07b413641aec5f8cf8a +SIZE (i3-4.13.tar.bz2) = 1121298 Added: head/x11-wm/i3/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/i3/files/patch-configure Wed Nov 9 21:30:49 2016 (r425808) @@ -0,0 +1,11 @@ +--- configure.orig 2016-11-08 18:54:08 UTC ++++ configure +@@ -3351,7 +3351,7 @@ if test "x$_cv_gnu_make_command" = x""; + fi + + case $srcdir in #( +- .|.*) : ++ *) : + + # pwd -P is specified in IEEE 1003.1 from 2004 + as_dir=`cd "$srcdir" && pwd -P` Added: head/x11-wm/i3/files/patch-libi3_get__config__path.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/i3/files/patch-libi3_get__config__path.c Wed Nov 9 21:30:49 2016 (r425808) @@ -0,0 +1,11 @@ +--- libi3/get_config_path.c.orig 2016-11-08 18:54:01 UTC ++++ libi3/get_config_path.c +@@ -71,7 +71,7 @@ char *get_config_path(const char *overri + + /* 4: check for $XDG_CONFIG_DIRS/i3/config */ + if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL) +- xdg_config_dirs = "/etc/xdg"; ++ xdg_config_dirs = SYSCONFDIR "/xdg"; + + char *buf = sstrdup(xdg_config_dirs); + char *tok = strtok(buf, ":");