1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6set -e
7
8export ASSUME_ALWAYS_YES="YES"
9export PKG_DBDIR="/tmp/pkg"
10export PERMISSIVE="YES"
11export REPO_AUTOUPDATE="NO"
12export PKGCMD="/usr/sbin/pkg -d"
13export PORTSDIR="${PORTSDIR:-/usr/ports}"
14
15_DVD_PACKAGES="archivers/unzip
16devel/subversion
17devel/subversion-static
18emulators/linux_base-c6
19graphics/drm-legacy-kmod
20graphics/drm-stable-kmod
21misc/freebsd-doc-all
22net/mpd5
23net/rsync
24ports-mgmt/pkg
25ports-mgmt/portmaster
26shells/bash
27shells/zsh
28security/sudo
29sysutils/screen
30sysutils/tmux
31www/firefox
32www/links
33x11-drivers/xf86-video-vmware
34x11/gnome3
35x11/kde5
36x11/xorg"
37
38# If NOPORTS is set for the release, do not attempt to build pkg(8).
39if [ ! -f ${PORTSDIR}/Makefile ]; then
40	echo "*** ${PORTSDIR} is missing!    ***"
41	echo "*** Skipping pkg-stage.sh     ***"
42	echo "*** Unset NOPORTS to fix this ***"
43	exit 0
44fi
45
46if [ ! -x /usr/local/sbin/pkg ]; then
47	/etc/rc.d/ldconfig restart
48	/usr/bin/make -C ${PORTSDIR}/ports-mgmt/pkg install clean
49fi
50
51export DVD_DIR="dvd/packages"
52export PKG_ABI=$(pkg config ABI)
53export PKG_ALTABI=$(pkg config ALTABI 2>/dev/null)
54export PKG_REPODIR="${DVD_DIR}/${PKG_ABI}"
55
56/bin/mkdir -p ${PKG_REPODIR}
57if [ ! -z "${PKG_ALTABI}" ]; then
58	(cd ${DVD_DIR} && ln -s ${PKG_ABI} ${PKG_ALTABI})
59fi
60
61# Ensure the ports listed in _DVD_PACKAGES exist to sanitize the
62# final list.
63for _P in ${_DVD_PACKAGES}; do
64	if [ -d "${PORTSDIR}/${_P}" ]; then
65		DVD_PACKAGES="${DVD_PACKAGES} ${_P}"
66	else
67		echo "*** Skipping nonexistent port: ${_P}"
68	fi
69done
70
71# Make sure the package list is not empty.
72if [ -z "${DVD_PACKAGES}" ]; then
73	echo "*** The package list is empty."
74	echo "*** Something is very wrong."
75	# Exit '0' so the rest of the build process continues
76	# so other issues (if any) can be addressed as well.
77	exit 0
78fi
79
80# Print pkg(8) information to make debugging easier.
81${PKGCMD} -vv
82${PKGCMD} update -f
83${PKGCMD} fetch -o ${PKG_REPODIR} -d ${DVD_PACKAGES}
84
85# Create the 'Latest/pkg.txz' symlink so 'pkg bootstrap' works
86# using the on-disc packages.
87mkdir -p ${PKG_REPODIR}/Latest
88(cd ${PKG_REPODIR}/Latest && \
89	ln -s ../All/$(${PKGCMD} rquery %n-%v pkg).txz pkg.txz)
90
91${PKGCMD} repo ${PKG_REPODIR}
92
93# Always exit '0', even if pkg(8) complains about conflicts.
94exit 0
95