-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
108 lines (94 loc) · 2.65 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# baselayout Makefile
# Copyright 2006-2023 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# We've moved the installation logic from Gentoo ebuild into a generic
# Makefile so that the ebuild is much smaller and more simple.
# It also has the added bonus of being easier to install on systems
# without an ebuild style package manager.
PV = 2.17
PKG = baselayout-$(PV)
DISTFILE = $(PKG).tar.bz2
CHANGELOG_LIMIT = --after="1 year ago"
INSTALL ?= install
INSTALL_DIR = $(INSTALL) -m 0755 -d
INSTALL_EXE = $(INSTALL) -m 0755
INSTALL_FILE = $(INSTALL) -m 0644
INSTALL_SECURE = $(INSTALL) -m 0600
KEEP_DIRS = \
/bin \
/boot \
/dev \
/etc/profile.d \
/home \
/media \
/mnt \
/opt \
/proc \
/run \
/sbin \
/sys \
/usr/bin \
/usr/local/bin \
/usr/local/sbin \
/usr/sbin \
/usr/src \
/var/cache \
/var/empty \
/var/lib \
/var/log \
/var/spool
all:
changelog:
git log ${CHANGELOG_LIMIT} --format=full > ChangeLog
clean:
install:
$(INSTALL_DIR) $(DESTDIR)/etc
cp -pPR etc/* $(DESTDIR)/etc/
echo "Gentoo Base System release ${PV}" > ${DESTDIR}/etc/gentoo-release
$(INSTALL_DIR) $(DESTDIR)/lib
cp -pPR lib/* $(DESTDIR)/lib/
$(INSTALL_DIR) $(DESTDIR)/usr/lib
ln -snf ../usr/lib/os-release ${DESTDIR}/etc/os-release
./make_os_release ${PV} > $(DESTDIR)/usr/lib/os-release
$(INSTALL_DIR) $(DESTDIR)/usr/share/baselayout
cp -pPR share/* $(DESTDIR)/usr/share/baselayout/
ln -snf ../proc/self/mounts $(DESTDIR)/etc/mtab
layout:
# Create base filesytem layout
for x in $(KEEP_DIRS) ; do \
$(INSTALL_DIR) $(DESTDIR)$$x ; \
done
ln -snf ../run $(DESTDIR)/var/run
ln -snf ../run/lock $(DESTDIR)/var/lock
# Special dirs
$(INSTALL) -d -m 0700 $(DESTDIR)/root
$(INSTALL) -d -m 1777 $(DESTDIR)/tmp
$(INSTALL) -d -m 1777 $(DESTDIR)/var/tmp
# Essential device nodes for init/openrc in early boot
# Nonfatal in case we are running as non-root
-mknod -m 0600 $(DESTDIR)/dev/console c 5 1
-mknod -m 0666 $(DESTDIR)/dev/null c 1 3
layout-usrmerge: layout
rm -fr ${DESTDIR}/bin
rm -fr ${DESTDIR}/sbin
rm -fr ${DESTDIR}/usr/sbin
ln -snf usr/bin ${DESTDIR}/bin
ln -snf usr/bin ${DESTDIR}/sbin
ln -snf bin ${DESTDIR}/usr/sbin
live:
rm -rf /tmp/$(PKG)
cp -r . /tmp/$(PKG)
tar jcf /tmp/$(PKG).tar.bz2 -C /tmp $(PKG) --exclude=.git
rm -rf /tmp/$(PKG)
ls -l /tmp/$(PKG).tar.bz2
release:
git show-ref -q --tags $(PKG)
git archive --prefix=$(PKG)/ $(PKG) | bzip2 > $(DISTFILE)
ls -l $(DISTFILE)
snapshot:
git show-ref -q $(GITREF)
git archive --prefix=$(PKG)/ $(GITREF) | bzip2 > $(PKG)-$(GITREF).tar.bz2
ls -l $(PKG)-$(GITREF).tar.bz2
.PHONY: all changelog clean install layout live release snapshot
# vim: set ts=4 :