From owner-svn-ports-all@FreeBSD.ORG Mon Jun 30 09:03:51 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5149899A; Mon, 30 Jun 2014 09:03:51 +0000 (UTC) Received: from svn.freebsd.org (svn.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 236C52F03; Mon, 30 Jun 2014 09:03:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5U93oPG072556; Mon, 30 Jun 2014 09:03:50 GMT (envelope-from daichi@svn.freebsd.org) Received: (from daichi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5U93oUm072553; Mon, 30 Jun 2014 09:03:50 GMT (envelope-from daichi@svn.freebsd.org) Message-Id: <201406300903.s5U93oUm072553@svn.freebsd.org> From: Daichi GOTO Date: Mon, 30 Jun 2014 09:03:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359813 - head/devel/c-unit X-SVN-Group: ports-head 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.18 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: Mon, 30 Jun 2014 09:03:51 -0000 Author: daichi Date: Mon Jun 30 09:03:50 2014 New Revision: 359813 URL: http://svnweb.freebsd.org/changeset/ports/359813 QAT: https://qat.redports.org/buildarchive/r359813/ Log: fix plist issue Pointed out by: riggs Modified: head/devel/c-unit/Makefile head/devel/c-unit/pkg-plist Modified: head/devel/c-unit/Makefile ============================================================================== --- head/devel/c-unit/Makefile Mon Jun 30 08:49:14 2014 (r359812) +++ head/devel/c-unit/Makefile Mon Jun 30 09:03:50 2014 (r359813) @@ -3,6 +3,7 @@ PORTNAME= c-unit DISTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} @@ -18,6 +19,9 @@ USES= gmake libtool pathfix USE_AUTOTOOLS= aclocal autoconf autoheader automake libtoolize USE_LDCONFIG= yes +DATADIR= ${PREFIX}/share/CUnit +EXAMPLESDIR= ${PREFIX}/share/examples/CUnit + AUTOMAKE_ARGS= --add-missing LIBTOOLIZE_ARGS=--copy --force --install PATHFIX_MAKEFILEIN= Makefile.am Modified: head/devel/c-unit/pkg-plist ============================================================================== --- head/devel/c-unit/pkg-plist Mon Jun 30 08:49:14 2014 (r359812) +++ head/devel/c-unit/pkg-plist Mon Jun 30 09:03:50 2014 (r359813) @@ -1,8 +1,9 @@ -include/CUnit/Automated.h -include/CUnit/Basic.h +%%AUT%%include/CUnit/Automated.h +%%BAS%%include/CUnit/Basic.h +%%CON%%include/CUnit/Console.h +%%CUR%%include/CUnit/CUCurses.h include/CUnit/CUError.h include/CUnit/CUnit.h -include/CUnit/Console.h include/CUnit/MyMem.h include/CUnit/TestDB.h include/CUnit/TestRun.h @@ -12,11 +13,23 @@ lib/libcunit.so lib/libcunit.so.1 lib/libcunit.so.1.0.1 man/man3/CUnit.3.gz -share/CUnit/CUnit-List.dtd -share/CUnit/CUnit-List.xsl -share/CUnit/CUnit-Run.dtd -share/CUnit/CUnit-Run.xsl -share/CUnit/Memory-Dump.dtd -share/CUnit/Memory-Dump.xsl +%%DATADIR%%/CUnit-List.dtd +%%DATADIR%%/CUnit-List.xsl +%%DATADIR%%/CUnit-Run.dtd +%%DATADIR%%/CUnit-Run.xsl +%%DATADIR%%/Memory-Dump.dtd +%%DATADIR%%/Memory-Dump.xsl +%%ITE%%%%DATADIR%%/Test/test_cunit +%%EXA%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Automated/AutomatedTest +%%EXA%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Automated/README +%%EXA%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Basic/BasicTest +%%EXA%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Basic/README +%%EXA%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Console/ConsoleTest +%%EXA%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Console/README @dirrmtry include/CUnit -@dirrmtry share/CUnit +%%ITE%%@dirrmtry %%DATADIR%%/Test +@dirrmtry %%DATADIR%% +%%EXA%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Automated +%%EXA%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Basic +%%EXA%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Console +%%EXA%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%