From owner-svn-ports-head@freebsd.org Tue Oct 6 18:00:46 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 C78BD9B6D73; Tue, 6 Oct 2015 18:00:46 +0000 (UTC) (envelope-from amdmi3@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 8DD5B9C0; Tue, 6 Oct 2015 18:00:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96I0jRW073014; Tue, 6 Oct 2015 18:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96I0jqX073013; Tue, 6 Oct 2015 18:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510061800.t96I0jqX073013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 6 Oct 2015 18:00:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398709 - head/print/openprinting 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: Tue, 06 Oct 2015 18:00:46 -0000 Author: amdmi3 Date: Tue Oct 6 18:00:45 2015 New Revision: 398709 URL: https://svnweb.freebsd.org/changeset/ports/398709 Log: - Unstage stuff not included into plist to fix stage-qa, assuming it's not needed in this port - Sort plist Modified: head/print/openprinting/Makefile Modified: head/print/openprinting/Makefile ============================================================================== --- head/print/openprinting/Makefile Tue Oct 6 17:55:24 2015 (r398708) +++ head/print/openprinting/Makefile Tue Oct 6 18:00:45 2015 (r398709) @@ -52,27 +52,27 @@ CONFIGURE_ARGS+=--without-cups .endif PLIST_FILES+=\ - include/papi.h \ - include/ipp.h \ include/debug.h \ - include/http.h \ include/http-private.h \ + include/http.h \ include/ipp-listener.h \ - lib/libpapi-common.so \ - lib/libpapi-common.so.0 \ - lib/libpapi-common.so.0.0.0 \ - lib/libpapi.so \ - lib/libpapi.so.0 \ - lib/libpapi.so.0.0.0 \ + include/ipp.h \ + include/papi.h \ lib/libipp-core.so \ lib/libipp-core.so.0 \ lib/libipp-core.so.0.0.0 \ lib/libipp-listener.so \ lib/libipp-listener.so.0 \ lib/libipp-listener.so.0.0.0 \ - libexec/psm-lpd.so \ - libexec/psm-ipp.so \ + lib/libpapi-common.so \ + lib/libpapi-common.so.0 \ + lib/libpapi-common.so.0.0.0 \ + lib/libpapi.so \ + lib/libpapi.so.0 \ + lib/libpapi.so.0.0.0 \ libexec/lpd-port \ + libexec/psm-ipp.so \ + libexec/psm-lpd.so \ man/man5/psm-ipp.5.gz .if defined(WITH_PSM_CUPS) @@ -91,4 +91,9 @@ post-patch: ${WRKSRC}/source/libpapi-cups/Makefile.in \ ${WRKSRC}/source/libpapi-dynamic/Makefile.in +post-install: +.for unneeded in bin sbin man/man1 man/mani share + @${RM} -rf ${STAGEDIR}${PREFIX}/${unneeded} +.endfor + .include