From owner-svn-ports-head@freebsd.org Thu Dec 8 03:03:08 2016 Return-Path: <owner-svn-ports-head@freebsd.org> 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 3DCCBC6B3F0; Thu, 8 Dec 2016 03:03:08 +0000 (UTC) (envelope-from marino@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 07B3D1FEE; Thu, 8 Dec 2016 03:03:07 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB8337oG016302; Thu, 8 Dec 2016 03:03:07 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB8337Wm016301; Thu, 8 Dec 2016 03:03:07 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201612080303.uB8337Wm016301@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino <marino@FreeBSD.org> Date: Thu, 8 Dec 2016 03:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428096 - head/net/remmina 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 <svn-ports-head.freebsd.org> List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-head>, <mailto:svn-ports-head-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-head/> List-Post: <mailto:svn-ports-head@freebsd.org> List-Help: <mailto:svn-ports-head-request@freebsd.org?subject=help> List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-head>, <mailto:svn-ports-head-request@freebsd.org?subject=subscribe> X-List-Received-Date: Thu, 08 Dec 2016 03:03:08 -0000 Author: marino Date: Thu Dec 8 03:03:06 2016 New Revision: 428096 URL: https://svnweb.freebsd.org/changeset/ports/428096 Log: net/remmina: Set cmake scripts to treat DragonFly like FreeBSD Discussed with woodsb02 - no-op for FreeBSD While here, wrap to 80 columns Modified: head/net/remmina/Makefile Modified: head/net/remmina/Makefile ============================================================================== --- head/net/remmina/Makefile Thu Dec 8 03:01:18 2016 (r428095) +++ head/net/remmina/Makefile Thu Dec 8 03:03:06 2016 (r428096) @@ -62,8 +62,12 @@ EXTRA_PATCHES= ${FILESDIR}/extrapatch-re post-patch: # do not build plugins and locales , they are provided by separated ports - ${REINPLACE_CMD} -e's|add_subdirectory(remmina-plugins)||' ${WRKSRC}/CMakeLists.txt - ${REINPLACE_CMD} -e's|add_subdirectory(remmina-plugins-gnome)||' ${WRKSRC}/CMakeLists.txt - ${REINPLACE_CMD} -e's|add_subdirectory(external_tools)||' ${WRKSRC}/remmina/CMakeLists.txt + ${REINPLACE_CMD} -e's|add_subdirectory(remmina-plugins)||' \ + -e 's,FreeBSD,FreeBSD|DragonFly,' ${WRKSRC}/CMakeLists.txt + ${REINPLACE_CMD} -e's|add_subdirectory(remmina-plugins-gnome)||' \ + ${WRKSRC}/CMakeLists.txt + ${REINPLACE_CMD} -e's|add_subdirectory(external_tools)||' \ + -e 's,FreeBSD,FreeBSD|DragonFly,' \ + ${WRKSRC}/remmina/CMakeLists.txt .include <bsd.port.post.mk>