From owner-svn-ports-all@freebsd.org Thu Dec 7 09:46:43 2017 Return-Path: Delivered-To: svn-ports-all@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 456F8E81C2D; Thu, 7 Dec 2017 09:46:43 +0000 (UTC) (envelope-from rodrigo@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 11D877F0BC; Thu, 7 Dec 2017 09:46:42 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB79kgP5033150; Thu, 7 Dec 2017 09:46:42 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB79kgoe033148; Thu, 7 Dec 2017 09:46:42 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201712070946.vB79kgoe033148@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Thu, 7 Dec 2017 09:46:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455702 - in head/x11/tilda: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/x11/tilda: . files X-SVN-Commit-Revision: 455702 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2017 09:46:43 -0000 Author: rodrigo Date: Thu Dec 7 09:46:41 2017 New Revision: 455702 URL: https://svnweb.freebsd.org/changeset/ports/455702 Log: Tilda uses wrong ps flag on start Replace ps call by pgrep Bump PORTREVISION Modified: head/x11/tilda/Makefile head/x11/tilda/files/patch-tilda.c Modified: head/x11/tilda/Makefile ============================================================================== --- head/x11/tilda/Makefile Thu Dec 7 09:41:00 2017 (r455701) +++ head/x11/tilda/Makefile Thu Dec 7 09:46:41 2017 (r455702) @@ -3,6 +3,7 @@ PORTNAME= tilda PORTVERSION= 1.3.3 DISTVERSIONPREFIX= ${PORTNAME}- +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= rodrigo@FreeBSD.org Modified: head/x11/tilda/files/patch-tilda.c ============================================================================== --- head/x11/tilda/files/patch-tilda.c Thu Dec 7 09:41:00 2017 (r455701) +++ head/x11/tilda/files/patch-tilda.c Thu Dec 7 09:46:41 2017 (r455702) @@ -1,5 +1,5 @@ ---- src/tilda.c.orig 2015-12-16 12:11:58 UTC -+++ src/tilda.c +--- src/tilda.c.orig 2017-09-08 22:19:35.318278000 +0300 ++++ src/tilda.c 2017-09-08 22:21:22.752550000 +0300 @@ -12,6 +12,7 @@ * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . @@ -8,3 +8,12 @@ #define _POSIX_SOURCE /* feature test macro for signal functions */ #define _XOPEN_SOURCE /* feature test macro for popen */ +@@ -230,7 +231,7 @@ + static GSList *getPids() { + GSList *pids = NULL; + FILE *ps_output; +- const gchar ps_command[] = "ps -C tilda -o pid="; ++ const gchar ps_command[] = "pgrep tilda"; + gchar buf[16]; /* Really shouldn't need more than 6 */ + + if ((ps_output = popen (ps_command, "r")) == NULL) {