diff options
| author | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-10-26 03:31:05 +0000 |
|---|---|---|
| committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-10-26 03:31:05 +0000 |
| commit | bc5e9ac08d8771b98cbde59775ec2dc776fb1ed0 (patch) | |
| tree | 7465eb11eecd7e13e95edcbbbfe5cf707c488172 /etc | |
| parent | c20809e143813d2beda6511a2f0ecb6646855fc3 (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/Makefile | 3 | ||||
| -rw-r--r-- | etc/pkg/FreeBSD.conf | 6 | ||||
| -rw-r--r-- | etc/pkg/Makefile | 10 |
3 files changed, 19 insertions, 0 deletions
diff --git a/etc/Makefile b/etc/Makefile index 7e8e23f9dbed..d763df6d44e9 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -225,6 +225,9 @@ distribution: ${_+_}cd ${.CURDIR}/devd; ${MAKE} install ${_+_}cd ${.CURDIR}/gss; ${MAKE} install ${_+_}cd ${.CURDIR}/periodic; ${MAKE} install +.if ${MK_PKGBOOTSTRAP} != "no" + ${_+_}cd ${.CURDIR}/pkg; ${MAKE} install +.endif ${_+_}cd ${.CURDIR}/rc.d; ${MAKE} install ${_+_}cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall ${_+_}cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap diff --git a/etc/pkg/FreeBSD.conf b/etc/pkg/FreeBSD.conf new file mode 100644 index 000000000000..b36d20f26b9d --- /dev/null +++ b/etc/pkg/FreeBSD.conf @@ -0,0 +1,6 @@ +# $FreeBSD$ +FreeBSD: { + url: "pkg+http://pkg.freebsd.org/${ABI}/latest", + mirror_type: "srv", + enabled: "yes" +} diff --git a/etc/pkg/Makefile b/etc/pkg/Makefile new file mode 100644 index 000000000000..abc8c64ca5cb --- /dev/null +++ b/etc/pkg/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +NO_OBJ= + +FILES= FreeBSD.conf + +FILESDIR= /etc/pkg +FILESMODE= 644 + +.include <bsd.prog.mk> |
