From owner-svn-ports-head@freebsd.org Wed Jul 8 17:14:25 2015 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 9D20E9965BD; Wed, 8 Jul 2015 17:14:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 7357B14DA; Wed, 8 Jul 2015 17:14:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t68HEPds028867; Wed, 8 Jul 2015 17:14:25 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t68HEP8q028866; Wed, 8 Jul 2015 17:14:25 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201507081714.t68HEP8q028866@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 8 Jul 2015 17:14:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391578 - head/graphics/libspiro/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.20 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, 08 Jul 2015 17:14:25 -0000 Author: amdmi3 Date: Wed Jul 8 17:14:24 2015 New Revision: 391578 URL: https://svnweb.freebsd.org/changeset/ports/391578 Log: - Disconnect tests from the build fixing build on 8.x PR: 201314 Submitted by: cyberbotx@cyberbotx.com (maintainer) Deleted: head/graphics/libspiro/files/patch-tests_Makefile.am Modified: head/graphics/libspiro/files/patch-Makefile.am Modified: head/graphics/libspiro/files/patch-Makefile.am ============================================================================== --- head/graphics/libspiro/files/patch-Makefile.am Wed Jul 8 17:13:23 2015 (r391577) +++ head/graphics/libspiro/files/patch-Makefile.am Wed Jul 8 17:14:24 2015 (r391578) @@ -1,11 +1,41 @@ ---- Makefile.am.orig 2015-01-31 19:29:34 UTC +--- Makefile.am.orig 2015-07-02 13:50:20 UTC +++ Makefile.am -@@ -2,7 +2,7 @@ +@@ -1,8 +1,8 @@ + # Makefile.am - Top level automakefile for libspiro - SUBDIRS = . tests +-SUBDIRS = . tests ++SUBDIRS = . -pkgconfigdir = $(libdir)/pkgconfig -+pkgconfigdir = ${PREFIX}/libdata/pkgconfig ++pkgconfigdir = ${PREFIX}/libdata/pkgconfig pkgconfig_DATA = libspiro.pc ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} +@@ -13,7 +13,7 @@ AM_LDFLAGS = $(WLSLIB) $(LS_LIB) -no-und + LIBTOOL_DEPS = @LIBTOOL_DEPS@ + + DISTCLEANFILES = libspiro.pc +-DISTCHECK_CONFIGURE_FLAGS = --enable-verbose_lib --enable-test_inputs ++DISTCHECK_CONFIGURE_FLAGS = --enable-verbose_lib --disable-test_inputs + + lib_LTLIBRARIES = libspiro.la + +@@ -26,17 +26,10 @@ EXTRA_DIST = bezctx.md get-spiro-src.sh + java/ShowPlate.java java/Spiro.java java/SpiroBezierContext.java \ + java/SpiroCanvas.java java/SpiroCP.java java/SpiroGeneralPath.java \ + java/SpiroPointType.java README-GeorgeWilliams fontforge-debug.txt \ +- fontforge.sh m4/ax_check_compile_flag.m4 tests/call-test.c ++ fontforge.sh m4/ax_check_compile_flag.m4 + + include_HEADERS = bezctx.h bezctx_intf.h spiro.h spiroentrypoints.h + + libtool: $(LIBTOOL_DEPS) + $(SHELL) ./config.status libtool + +-# test: run all tests in cwd and subdirs +-test: ${TEST_PROGS} +- +-.PHONY: test +-# run make test as part of make check +-check-local: test +-