svn commit: r295439 - in projects/release-pkg/bin: cat chflags chio chmod cp csh date dd df domainname echo ed expr freebsd-version getfacl hostname kenv kill ln ls mkdir mv pax pkill ps pwait pwd ...
Glen Barber
gjb at FreeBSD.org
Tue Feb 9 16:58:56 UTC 2016
Author: gjb
Date: Tue Feb 9 16:58:50 2016
New Revision: 295439
URL: https://svnweb.freebsd.org/changeset/base/295439
Log:
Explicitly add unmarked bin/ binaries to the runtime package.
Note: tcsh(1) has a MK_TCSH=no test, so this should be a separate
package, which requires pre-install/post-install scripts, to be
added later.
Sponsored by: The FreeBSD Foundation
Modified:
projects/release-pkg/bin/cat/Makefile
projects/release-pkg/bin/chflags/Makefile
projects/release-pkg/bin/chio/Makefile
projects/release-pkg/bin/chmod/Makefile
projects/release-pkg/bin/cp/Makefile
projects/release-pkg/bin/csh/Makefile
projects/release-pkg/bin/date/Makefile
projects/release-pkg/bin/dd/Makefile
projects/release-pkg/bin/df/Makefile
projects/release-pkg/bin/domainname/Makefile
projects/release-pkg/bin/echo/Makefile
projects/release-pkg/bin/ed/Makefile
projects/release-pkg/bin/expr/Makefile
projects/release-pkg/bin/freebsd-version/Makefile
projects/release-pkg/bin/getfacl/Makefile
projects/release-pkg/bin/hostname/Makefile
projects/release-pkg/bin/kenv/Makefile
projects/release-pkg/bin/kill/Makefile
projects/release-pkg/bin/ln/Makefile
projects/release-pkg/bin/ls/Makefile
projects/release-pkg/bin/mkdir/Makefile
projects/release-pkg/bin/mv/Makefile
projects/release-pkg/bin/pax/Makefile
projects/release-pkg/bin/pkill/Makefile
projects/release-pkg/bin/ps/Makefile
projects/release-pkg/bin/pwait/Makefile
projects/release-pkg/bin/pwd/Makefile
projects/release-pkg/bin/realpath/Makefile
projects/release-pkg/bin/rm/Makefile
projects/release-pkg/bin/rmdir/Makefile
projects/release-pkg/bin/setfacl/Makefile
projects/release-pkg/bin/sh/Makefile
projects/release-pkg/bin/sleep/Makefile
projects/release-pkg/bin/stty/Makefile
projects/release-pkg/bin/sync/Makefile
projects/release-pkg/bin/test/Makefile
projects/release-pkg/bin/uuidgen/Makefile
Modified: projects/release-pkg/bin/cat/Makefile
==============================================================================
--- projects/release-pkg/bin/cat/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/cat/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= cat
.if ${MK_TESTS} != "no"
Modified: projects/release-pkg/bin/chflags/Makefile
==============================================================================
--- projects/release-pkg/bin/chflags/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/chflags/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
+PACKAGE=runtime
PROG= chflags
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/chio/Makefile
==============================================================================
--- projects/release-pkg/bin/chio/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/chio/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# $FreeBSD$
# @(#)Makefile 8.1 (Berkeley) 6/6/93
+PACKAGE=runtime
PROG= chio
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/chmod/Makefile
==============================================================================
--- projects/release-pkg/bin/chmod/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/chmod/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= chmod
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/cp/Makefile
==============================================================================
--- projects/release-pkg/bin/cp/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/cp/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= cp
SRCS= cp.c utils.c
CFLAGS+= -DVM_AND_BUFFER_CACHE_SYNCHRONIZED -D_ACL_PRIVATE
Modified: projects/release-pkg/bin/csh/Makefile
==============================================================================
--- projects/release-pkg/bin/csh/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/csh/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -8,6 +8,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
TCSHDIR= ${.CURDIR}/../../contrib/tcsh
.PATH: ${TCSHDIR}
Modified: projects/release-pkg/bin/date/Makefile
==============================================================================
--- projects/release-pkg/bin/date/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/date/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= date
SRCS= date.c netdate.c vary.c
Modified: projects/release-pkg/bin/dd/Makefile
==============================================================================
--- projects/release-pkg/bin/dd/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/dd/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= dd
SRCS= args.c conv.c conv_tab.c dd.c misc.c position.c
Modified: projects/release-pkg/bin/df/Makefile
==============================================================================
--- projects/release-pkg/bin/df/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/df/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.3 (Berkeley) 5/8/95
# $FreeBSD$
+PACKAGE=runtime
MOUNT= ${.CURDIR}/../../sbin/mount
.PATH: ${MOUNT}
Modified: projects/release-pkg/bin/domainname/Makefile
==============================================================================
--- projects/release-pkg/bin/domainname/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/domainname/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
PROG= domainname
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/echo/Makefile
==============================================================================
--- projects/release-pkg/bin/echo/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/echo/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= echo
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/ed/Makefile
==============================================================================
--- projects/release-pkg/bin/ed/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/ed/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -2,6 +2,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= ed
SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
LINKS= ${BINDIR}/ed ${BINDIR}/red
Modified: projects/release-pkg/bin/expr/Makefile
==============================================================================
--- projects/release-pkg/bin/expr/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/expr/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -2,6 +2,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= expr
SRCS= expr.y
YFLAGS=
Modified: projects/release-pkg/bin/freebsd-version/Makefile
==============================================================================
--- projects/release-pkg/bin/freebsd-version/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/freebsd-version/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
SCRIPTS = freebsd-version
MAN = freebsd-version.1
CLEANFILES = freebsd-version freebsd-version.sh
Modified: projects/release-pkg/bin/getfacl/Makefile
==============================================================================
--- projects/release-pkg/bin/getfacl/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/getfacl/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
PROG= getfacl
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/hostname/Makefile
==============================================================================
--- projects/release-pkg/bin/hostname/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/hostname/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= hostname
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/kenv/Makefile
==============================================================================
--- projects/release-pkg/bin/kenv/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/kenv/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
PROG= kenv
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/kill/Makefile
==============================================================================
--- projects/release-pkg/bin/kill/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/kill/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= kill
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/ln/Makefile
==============================================================================
--- projects/release-pkg/bin/ln/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/ln/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.2 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= ln
MAN= ln.1 symlink.7
Modified: projects/release-pkg/bin/ls/Makefile
==============================================================================
--- projects/release-pkg/bin/ls/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/ls/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= ls
SRCS= cmp.c ls.c print.c util.c
LIBADD= xo util
Modified: projects/release-pkg/bin/mkdir/Makefile
==============================================================================
--- projects/release-pkg/bin/mkdir/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/mkdir/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= mkdir
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/mv/Makefile
==============================================================================
--- projects/release-pkg/bin/mv/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/mv/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= mv
.if ${MK_TESTS} != "no"
Modified: projects/release-pkg/bin/pax/Makefile
==============================================================================
--- projects/release-pkg/bin/pax/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/pax/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -27,6 +27,7 @@
# regex routines and must define NET2_REGEX.
# Pax may not compile if this not (un)defined properly.
+PACKAGE=runtime
PROG= pax
SRCS= ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c \
gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c \
Modified: projects/release-pkg/bin/pkill/Makefile
==============================================================================
--- projects/release-pkg/bin/pkill/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/pkill/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= pkill
LIBADD= kvm jail
Modified: projects/release-pkg/bin/ps/Makefile
==============================================================================
--- projects/release-pkg/bin/ps/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/ps/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# $FreeBSD$
# @(#)Makefile 8.1 (Berkeley) 6/2/93
+PACKAGE=runtime
PROG= ps
SRCS= fmt.c keyword.c nlist.c print.c ps.c
Modified: projects/release-pkg/bin/pwait/Makefile
==============================================================================
--- projects/release-pkg/bin/pwait/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/pwait/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
PROG= pwait
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/pwd/Makefile
==============================================================================
--- projects/release-pkg/bin/pwd/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/pwd/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= pwd
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/realpath/Makefile
==============================================================================
--- projects/release-pkg/bin/realpath/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/realpath/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
PROG= realpath
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/rm/Makefile
==============================================================================
--- projects/release-pkg/bin/rm/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/rm/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= rm
LINKS= ${BINDIR}/rm ${BINDIR}/unlink
Modified: projects/release-pkg/bin/rmdir/Makefile
==============================================================================
--- projects/release-pkg/bin/rmdir/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/rmdir/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= rmdir
.include <bsd.prog.mk>
Modified: projects/release-pkg/bin/setfacl/Makefile
==============================================================================
--- projects/release-pkg/bin/setfacl/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/setfacl/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
PROG= setfacl
SRCS= file.c mask.c merge.c remove.c setfacl.c util.c
Modified: projects/release-pkg/bin/sh/Makefile
==============================================================================
--- projects/release-pkg/bin/sh/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/sh/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= sh
INSTALLFLAGS= -S
SHSRCS= alias.c arith_yacc.c arith_yylex.c cd.c echo.c error.c eval.c \
Modified: projects/release-pkg/bin/sleep/Makefile
==============================================================================
--- projects/release-pkg/bin/sleep/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/sleep/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= sleep
.if ${MK_TESTS} != "no"
Modified: projects/release-pkg/bin/stty/Makefile
==============================================================================
--- projects/release-pkg/bin/stty/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/stty/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= stty
SRCS= cchar.c gfmt.c key.c modes.c print.c stty.c util.c
Modified: projects/release-pkg/bin/sync/Makefile
==============================================================================
--- projects/release-pkg/bin/sync/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/sync/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD$
+PACKAGE=runtime
PROG= sync
MAN= sync.8
Modified: projects/release-pkg/bin/test/Makefile
==============================================================================
--- projects/release-pkg/bin/test/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/test/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -3,6 +3,7 @@
.include <src.opts.mk>
+PACKAGE=runtime
PROG= test
LINKS= ${BINDIR}/test ${BINDIR}/[
MLINKS= test.1 [.1
Modified: projects/release-pkg/bin/uuidgen/Makefile
==============================================================================
--- projects/release-pkg/bin/uuidgen/Makefile Tue Feb 9 16:56:35 2016 (r295438)
+++ projects/release-pkg/bin/uuidgen/Makefile Tue Feb 9 16:58:50 2016 (r295439)
@@ -1,5 +1,6 @@
# $FreeBSD$
+PACKAGE=runtime
PROG= uuidgen
.include <bsd.prog.mk>
More information about the svn-src-projects
mailing list