From owner-svn-ports-head@FreeBSD.ORG Mon Oct 21 20:05:30 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id AC24EB88; Mon, 21 Oct 2013 20:05:30 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 998272243; Mon, 21 Oct 2013 20:05:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9LK5UrS022269; Mon, 21 Oct 2013 20:05:30 GMT (envelope-from kmoore@svn.freebsd.org) Received: (from kmoore@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9LK5Tcr022264; Mon, 21 Oct 2013 20:05:29 GMT (envelope-from kmoore@svn.freebsd.org) Message-Id: <201310212005.r9LK5Tcr022264@svn.freebsd.org> From: Kris Moore Date: Mon, 21 Oct 2013 20:05:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331182 - head/sysutils/pcbsd-utils 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.14 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: Mon, 21 Oct 2013 20:05:30 -0000 Author: kmoore Date: Mon Oct 21 20:05:29 2013 New Revision: 331182 URL: http://svnweb.freebsd.org/changeset/ports/331182 Log: - Update to 1382384181 Modified: head/sysutils/pcbsd-utils/Makefile head/sysutils/pcbsd-utils/distinfo head/sysutils/pcbsd-utils/pkg-install head/sysutils/pcbsd-utils/pkg-plist Modified: head/sysutils/pcbsd-utils/Makefile ============================================================================== --- head/sysutils/pcbsd-utils/Makefile Mon Oct 21 20:00:57 2013 (r331181) +++ head/sysutils/pcbsd-utils/Makefile Mon Oct 21 20:05:29 2013 (r331182) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcbsd-utils -PORTVERSION= 1381240866 +PORTVERSION= 1382384181 CATEGORIES= sysutils MASTER_SITES= http://www.pcbsd.org/~kris/software/ \ ftp://ftp.pcbsd.org/pub/software/ @@ -14,7 +14,6 @@ RUN_DEPENDS= pkg-static:${PORTSDIR}/port svn:${PORTSDIR}/devel/subversion \ mksquashfs:${PORTSDIR}/sysutils/squashfs-tools \ debootstrap:${PORTSDIR}/sysutils/debootstrap \ - aria2c:${PORTSDIR}/www/aria2 \ sipcalc:${PORTSDIR}/net-mgmt/sipcalc \ eject:${PORTSDIR}/sysutils/eject \ unzip:${PORTSDIR}/archivers/unzip \ @@ -33,6 +32,14 @@ USE_PYTHON= yes IGNORE= requires FreeBSD 9.0 or later .endif +.if ${OSVERSION} > 1000000 +PLIST_FILES+= share/pbi-manager/.pbime \ + share/pbi-manager/.pbimount \ + share/pbi-manager/.ldconfig \ + share/pbi-manager/.mount_nullfs \ + etc/man.d/pbi.conf +.endif + do-install: cd ${WRKSRC} && make install PREFIX=${STAGEDIR}${PREFIX} Modified: head/sysutils/pcbsd-utils/distinfo ============================================================================== --- head/sysutils/pcbsd-utils/distinfo Mon Oct 21 20:00:57 2013 (r331181) +++ head/sysutils/pcbsd-utils/distinfo Mon Oct 21 20:05:29 2013 (r331182) @@ -1,2 +1,2 @@ -SHA256 (pcbsd-utils-1381240866.tar.bz2) = ed8c79db83860f1b3b1f53dc7597d16200940249e7197aa97e79c7c1eb809fdf -SIZE (pcbsd-utils-1381240866.tar.bz2) = 35548596 +SHA256 (pcbsd-utils-1382384181.tar.bz2) = f49737c64daddd372a3f31266ccb21c0d943e2ed7dde0ef97f0ba380a34ca7a1 +SIZE (pcbsd-utils-1382384181.tar.bz2) = 35550338 Modified: head/sysutils/pcbsd-utils/pkg-install ============================================================================== --- head/sysutils/pcbsd-utils/pkg-install Mon Oct 21 20:00:57 2013 (r331181) +++ head/sysutils/pcbsd-utils/pkg-install Mon Oct 21 20:05:29 2013 (r331182) @@ -27,4 +27,12 @@ else cp ${PREFIX}/share/pbi-manager/.pbiwrapper-i386 /usr/pbi/.pbiwrapper-i386 fi +# If on FreeBSD > 10, install the PBI mounting files +if [ -e "${PREFIX}/share/pbi-manager/.pbime" ] ; then + install -o root -g wheel -m 4751 ${PREFIX}/share/pbi-manager/.pbime /usr/pbi/.pbime + install -o root -g wheel -m 755 ${PREFIX}/share/pbi-manager/.pbimount /usr/pbi/.pbimount + install -o root -g wheel -m 755 ${PREFIX}/share/pbi-manager/.ldconfig /usr/pbi/.ldconfig + install -o root -g wheel -m 755 ${PREFIX}/share/pbi-manager/.mount_nullfs /usr/pbi/.mount_nullfs +fi + exit 0 Modified: head/sysutils/pcbsd-utils/pkg-plist ============================================================================== --- head/sysutils/pcbsd-utils/pkg-plist Mon Oct 21 20:00:57 2013 (r331181) +++ head/sysutils/pcbsd-utils/pkg-plist Mon Oct 21 20:05:29 2013 (r331182) @@ -22,6 +22,7 @@ bin/pc-xdgutil bin/pc-firstgui bin/pc-runxgui bin/pc-checkxdisplay +bin/pc-installdialog bin/enable_user_pefs sbin/pc-sysinstall share/lpreserver/backend/zfsmon.sh @@ -83,6 +84,7 @@ share/pc-sysinstall/backend-query/xkeybo share/pc-sysinstall/backend-query/setup-ssh-keys.sh share/pc-sysinstall/backend-query/xkeyboard-layouts.sh share/pc-sysinstall/backend-query/enable-net.sh +share/pc-sysinstall/backend-query/detect-country.sh share/pc-sysinstall/backend-query/detect-laptop.sh share/pc-sysinstall/backend-query/list-packages.sh share/pc-sysinstall/backend-query/disk-info.sh