Require pkgsrc to be installed, include pkgsrc bootstrap binaries and mk.conf
[dragonfly.git] / nrelease / Makefile
1 # $DragonFly: src/nrelease/Makefile,v 1.44 2005/12/04 21:24:13 dillon Exp $
2 #
3
4 ISODIR ?= /usr/release
5 ISOFILE ?= ${ISODIR}/dfly.iso
6 ISOROOT = ${ISODIR}/root
7 OBJSYS= ${.OBJDIR}/../sys
8 KERNCONF ?= GENERIC
9 PKG_PATH= /usr/freebsd_pkg/sbin
10
11 # Specify which packages are required on the ISO, and let the user
12 # specify additional packages to include.  During the `pkgaddiso'
13 # target, the packages are obtained from PACKAGES_LOC.
14 #
15 REQ_PACKAGES= cdrtools-2.01 cvsup-without-gui-16.1h
16 REL_PACKAGES?= ${REQ_PACKAGES} ${EXTRA_PACKAGES}
17 .if defined(PACKAGES)
18 PACKAGES_LOC?= ${PACKAGES}/All
19 .else
20 PACKAGES_LOC?= /usr/ports/packages/All
21 .endif
22 PACKAGE_SITES?=http://www.bsdinstaller.org/packages/ \
23                http://cvs.bsdinstaller.org/packages/
24
25 # Specify which root skeletons are required, and let the user include
26 # their own.  They are copied into ISODIR during the `pkgcustomizeiso'
27 # target; each overwrites the last.
28 #
29 REQ_ROOTSKELS= ${.CURDIR}/root
30 ROOTSKELS?= ${REQ_ROOTSKELS} ${EXTRA_ROOTSKELS}
31
32 # note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
33 # the additional '/nrelease' manually, as a safety measure.
34 #
35 NRLOBJDIR?= /usr/obj
36
37 WORLD_CCVER ?= ${CCVER}
38 KERNEL_CCVER ?= ${CCVER}
39
40 #########################################################################
41 #                               BASE ISO TARGETS                        #
42 #########################################################################
43
44 release:        check clean buildworld1 buildkernel1 \
45                 buildiso customizeiso pkgaddiso mklocatedb mkiso
46
47 quickrel:       check clean buildworld2 buildkernel2 \
48                 buildiso customizeiso pkgaddiso mklocatedb mkiso
49
50 realquickrel:   check clean \
51                 buildiso customizeiso pkgaddiso mklocatedb mkiso
52
53 #########################################################################
54 #                       ISO TARGETS WITH INSTALLER                      #
55 #########################################################################
56
57 INSTALLER_PKGS= libaura-3.1 libdfui-4.1 libinstaller-5.1 \
58                 dfuibe_installer-1.1.6 dfuife_curses-1.5 \
59                 thttpd-notimeout-2.24 dfuife_cgi-1.4
60 INSTALLER_SKELS= installer
61
62 INSTALLER_ENV= EXTRA_PACKAGES="${INSTALLER_PKGS} ${EXTRA_PACKAGES}" \
63                 EXTRA_ROOTSKELS="${INSTALLER_SKELS} ${EXTRA_ROOTSKELS}"
64
65 installer_check:
66                 @${INSTALLER_ENV} ${MAKE} check
67
68 installer_fetchpkgs:
69                 @${INSTALLER_ENV} ${MAKE} fetchpkgs
70
71 installer_release:
72                 ${INSTALLER_ENV} ${MAKE} release
73
74 installer_quickrel:
75                 ${INSTALLER_ENV} ${MAKE} quickrel
76
77 installer_realquickrel:
78                 ${INSTALLER_ENV} ${MAKE} realquickrel
79
80 #########################################################################
81 #                               HELPER TARGETS                          #
82 #########################################################################
83
84 check:
85         @if [ ! -f /usr/local/bin/mkisofs ]; then \
86                 echo "You need to install the sysutils/cdrtools port for"; \
87                 echo "this target"; \
88                 exit 1; \
89         fi
90 .for PKG in ${REL_PACKAGES}
91         @if [ ! -f ${PACKAGES_LOC}/${PKG}.tgz ]; then \
92                 echo "Unable to find ${PACKAGES_LOC}/${PKG}.tgz."; \
93                 echo "(Perhaps you need to download or build it first?)"; \
94                 echo ""; \
95                 echo "If you are trying to build the installer, the"; \
96                 echo "required packages can be obtained from:"; \
97                 echo ""; \
98                 echo "    http://www.bsdinstaller.org/packages/"; \
99                 echo ""; \
100                 echo "They can be automatically downloaded by issuing:"; \
101                 echo "    make installer_fetchpkgs"; \
102                 echo ""; \
103                 exit 1; \
104         fi
105 .endfor
106         @if [ ! -f /usr/pkg/sbin/pkg_add ]; then \
107                 echo "NetBSD pkgsrc has not been bootstrapped.  You can"; \
108                 echo "automatically download the pkgsrc and install the"; \
109                 echo "the bootstrap with:"; \
110                 echo "    make pkgsrc_fetch"; \
111                 echo "    make pkgsrc_bootstrap"; \
112                 exit 1; \
113         fi
114         @if [ ! -f /etc/mk.conf ]; then \
115                 echo "NetBSD pkgsrc: /etc/mk.conf must exist.  You can"; \
116                 echo "automatically create this file with:"; \
117                 echo "    make pkgsrc_conf"; \
118                 exit 1; \
119         fi
120         @echo "check: all preqs found"
121
122 pkgsrc_fetch:
123         cd /usr
124         cvs -d anoncvs@anoncvs.us.netbsd.org:/cvsroot checkout pkgsrc
125
126 pkgsrc_bootstrap:
127         rm -rf /tmp/bootstrap-workdir
128         cd /usr/pkgsrc/bootstrap && ./bootstrap --workdir=/tmp/bootstrap-workdir
129         rm -rf /tmp/bootstrap-workdir
130         fgrep -q LOCALBASE /etc/mk.conf || (echo "you may also have to run make pkgsrc_conf to initialize /etc/mk.conf")
131
132 pkgsrc_conf:
133 .if !exists(/etc/mk.conf) 
134         cp ${.CURDIR}/mk.conf.pkgsrc /etc/mk.conf
135 .else
136         fgrep -q BSD_PKG_MK /etc/mk.conf || cat ${.CURDIR}/mk.conf.pkgsrc >> /etc/mk.conf
137 .endif
138
139 fetchpkgs:
140 .for PKG in ${REL_PACKAGES}
141         @if [ ! -f ${PACKAGES_LOC}/${PKG}.tgz ]; then \
142                 cd ${PACKAGES_LOC} && \
143                 echo "fetching ${PKG}..." && \
144                 for SITE in ${PACKAGE_SITES}; do \
145                         if [ ! -f ${PKG}.tgz ]; then \
146                                 fetch $${SITE}${PKG}.tgz || \
147                                     echo "Not available from $${SITE}"; \
148                         fi; \
149                 done; \
150                 if [ ! -f ${PKG}.tgz ]; then \
151                         echo "Couldn't retrieve ${PKG}.tgz!"; \
152                         exit 1; \
153                 fi; \
154         fi
155 .endfor
156
157 buildworld1:
158         ( cd ${.CURDIR}/..; CCVER=${WORLD_CCVER} make buildworld )
159
160 buildworld2:
161         ( cd ${.CURDIR}/..; CCVER=${WORLD_CCVER} make quickworld )
162
163 buildkernel1:
164         ( cd ${.CURDIR}/..; CCVER=${KERNEL_CCVER} make buildkernel KERNCONF=${KERNCONF} )
165
166 buildkernel2:
167         ( cd ${.CURDIR}/..; CCVER=${KERNEL_CCVER} make quickkernel KERNCONF=${KERNCONF} )
168
169 # note that we do not want to mess with any /usr/obj directories not related
170 # to buildworld, buildkernel, or nrelease, so we must supply the proper
171 # MAKEOBJDIRPREFIX for targets that are not run through the buildworld and 
172 # buildkernel mechanism.
173 #
174 buildiso:
175         if [ ! -d ${ISOROOT} ]; then mkdir -p ${ISOROOT}; fi
176         if [ ! -d ${NRLOBJDIR}/nrelease ]; then mkdir -p ${NRLOBJDIR}/nrelease; fi
177         ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} installworld )
178         ( cd ${.CURDIR}/../etc; MAKEOBJDIRPREFIX=${NRLOBJDIR}/nrelease \
179                 make -m ${.CURDIR}/../share/mk DESTDIR=${ISOROOT} distribution )
180         cpdup ${ISOROOT}/etc ${ISOROOT}/etc.hdd
181         ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} \
182                 installkernel KERNCONF=${KERNCONF} )
183         ln -s kernel ${ISOROOT}/kernel.BOOTP
184         mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.local.dist -p ${ISOROOT}/usr/local/
185         mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.var.dist -p ${ISOROOT}/var
186         dev_mkdb -f ${ISOROOT}/var/run/dev.db ${ISOROOT}/dev
187
188 customizeiso:
189         cd /usr/pkgsrc/bootstrap && ./bootstrap --workdir=${NRLOBJDIR}/nrelease/bootstrap-workdir --prefix=${ISOROOT}/usr/pkg
190         cp ${.CURDIR}/mk.conf.pkgsrc ${ISOROOT}/etc/mk.conf
191 .for ROOTSKEL in ${ROOTSKELS}
192         cpdup -X cpignore -o ${ROOTSKEL} ${ISOROOT}
193 .endfor
194         rm -rf `find ${ISOROOT} -type d -name CVS -print`
195         rm -rf ${ISOROOT}/usr/local/share/pristine
196         pwd_mkdb -p -d ${ISOROOT}/etc ${ISOROOT}/etc/master.passwd
197 .for UPGRADE_ITEM in Makefile                   \
198                      etc.${MACHINE_ARCH}        \
199                      isdn/Makefile              \
200                      rc.d/Makefile              \
201                      periodic/Makefile          \
202                      periodic/daily/Makefile    \
203                      periodic/security/Makefile \
204                      periodic/weekly/Makefile   \
205                      periodic/monthly/Makefile
206         cp -R ${.CURDIR}/../etc/${UPGRADE_ITEM} ${ISOROOT}/etc/${UPGRADE_ITEM}
207 .endfor
208
209 pkgcleaniso:
210         rm -f ${ISOROOT}/tmp/chrootscript
211         echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
212 .for PKG in ${REL_PACKAGES}
213         echo "${PKG_PATH}/pkg_delete -f ${PKG}" >> ${ISOROOT}/tmp/chrootscript
214 .endfor
215         chmod a+x ${ISOROOT}/tmp/chrootscript
216         chroot ${ISOROOT}/ /tmp/chrootscript || exit 0
217         rm ${ISOROOT}/tmp/chrootscript
218
219 pkgaddiso:
220         rm -f ${ISOROOT}/tmp/chrootscript
221         echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
222 .for PKG in ${REL_PACKAGES}
223         if [ ! -d ${ISOROOT}/var/db/pkg/${PKG} ]; then \
224                 cp ${PACKAGES_LOC}/${PKG}.tgz ${ISOROOT}/tmp/${PKG}.tgz; \
225                 echo "echo 'Installing package ${PKG}...' && \\" >> \
226                     ${ISOROOT}/tmp/chrootscript; \
227                 echo "${PKG_PATH}/pkg_add /tmp/${PKG}.tgz && \\" >> \
228                     ${ISOROOT}/tmp/chrootscript; \
229         fi
230 .endfor
231         echo "echo 'All packages added successfully!'" >> \
232             ${ISOROOT}/tmp/chrootscript
233         chmod a+x ${ISOROOT}/tmp/chrootscript
234         chroot ${ISOROOT}/ /tmp/chrootscript
235         rm ${ISOROOT}/tmp/chrootscript
236 .for PKG in ${REL_PACKAGES}
237         rm -f ${ISOROOT}/tmp/${PKG}.tgz
238 .endfor
239
240 mklocatedb:
241         ( find -s ${ISOROOT} -path ${ISOROOT}/tmp -or \
242                 -path ${ISOROOT}/usr/tmp -or -path ${ISOROOT}/var/tmp \
243                 -prune -o -print | sed -e 's#^${ISOROOT}##g' | \
244                 /usr/libexec/locate.mklocatedb \
245                 -presort >${ISOROOT}/var/db/locate.database )
246
247 mkiso:
248         ( cd ${ISOROOT}; mkisofs -b boot/cdboot -no-emul-boot \
249                 -R -J -V DragonFly -o ${ISOFILE} . )
250
251 clean:
252         rm -rf /tmp/bootstrap-workdir
253         if [ -d ${ISOROOT} ]; then chflags -R noschg ${ISOROOT}; fi
254         if [ -d ${ISOROOT} ]; then rm -rf ${ISOROOT}/*; fi
255         if [ -d ${NRLOBJDIR}/nrelease ]; then rm -rf ${NRLOBJDIR}/nrelease; fi
256
257 realclean:      clean
258         rm -rf ${OBJSYS}/${KERNCONF}
259
260 .include <bsd.prog.mk>