Fix a URL displayed in an advisory.
[dragonfly.git] / nrelease / Makefile
1 # $DragonFly: src/nrelease/Makefile,v 1.14 2004/07/16 21:33:16 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
10 # Specify which packages are required on the ISO, and let the user
11 # specify additional packages to include.  During the `pkgaddiso'
12 # target, the packages are obtained from PACKAGES_LOC.
13 #
14 REQ_PACKAGES= cdrtools-2.0.3_3 cvsup-without-gui-16.1h
15 PACKAGES?= ${REQ_PACKAGES} ${EXTRA_PACKAGES}
16 PACKAGES_LOC?= /usr/ports/packages/All
17
18 # Specify which root skeletons are required, and let the user include
19 # their own.  They are copied into ISODIR during the `pkgcustomizeiso'
20 # target; each overwrites the last.
21 #
22 REQ_ROOTSKELS= ${.CURDIR}/root
23 ROOTSKELS?= ${REQ_ROOTSKELS} ${EXTRA_ROOTSKELS}
24
25 # note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
26 # the additional '/nrelease' manually, as a safety measure.
27 #
28 NRLOBJDIR?= /usr/obj
29
30 WORLD_CCVER ?= ${CCVER}
31 KERNEL_CCVER ?= ${CCVER}
32
33 #########################################################################
34 #                               BASE ISO TARGETS                        #
35 #########################################################################
36
37 release:        check clean buildworld1 buildkernel1 \
38                 buildiso customizeiso pkgaddiso mkiso
39
40 quickrel:       check clean buildworld2 buildkernel2 \
41                 buildiso customizeiso pkgaddiso mkiso
42
43 realquickrel:   check clean \
44                 buildiso customizeiso pkgaddiso mkiso
45
46 #########################################################################
47 #                       ISO TARGETS WITH INSTALLER                      #
48 #########################################################################
49
50 INSTALLER_PKGS= dfuibe_installer-1.0.1 dfuife_curses-1.0 libdfui-1.0 \
51                 thttpd-notimeout-2.24 dfuife_cgi-1.0
52 INSTALLER_SKELS= installer
53
54 INSTALLER_ENV= EXTRA_PACKAGES="${INSTALLER_PKGS}" \
55                 EXTRA_ROOTSKELS="${INSTALLER_SKELS}"
56
57 installer_check:
58                 @${INSTALLER_ENV} ${MAKE} check
59
60 installer_release:
61                 ${INSTALLER_ENV} ${MAKE} release
62
63 installer_quickrel:
64                 ${INSTALLER_ENV} ${MAKE} quickrel
65
66 installer_realquickrel:
67                 ${INSTALLER_ENV} ${MAKE} realquickrel
68
69 #########################################################################
70 #                               HELPER TARGETS                          #
71 #########################################################################
72
73 check:
74         @if [ ! -f /usr/local/bin/mkisofs ]; then \
75                 echo "You need to install the mkisofs port for this target"; \
76                 exit 1; \
77         fi
78 .for PKG in ${PACKAGES}
79         @if [ ! -f ${PACKAGES_LOC}/${PKG}.tgz ]; then \
80                 echo "Unable to find ${PACKAGES_LOC}/${PKG}.tgz.  This is"; \
81                 echo "typically accomplished by cd'ing into the appropriate"; \
82                 echo "port and typing 'make package'"; \
83                 echo ""; \
84                 echo "If you are trying to build the installer, the"; \
85                 echo "required packages can be obtained from:"; \
86                 echo "http://www.bsdinstaller.org/packages/"; \
87                 exit 1; \
88         fi
89 .endfor
90         @echo "check: all preqs found"
91
92 buildworld1:
93         ( cd ${.CURDIR}/..; make buildworld CCVER=${WORLD_CCVER} )
94
95 buildworld2:
96         ( cd ${.CURDIR}/..; make -DNOTOOLS -DNOCLEAN buildworld CCVER=${WORLD_CCVER} )
97
98 buildkernel1:
99         ( cd ${.CURDIR}/..; make buildkernel KERNCONF=${KERNCONF} CCVER=${KERNEL_CCVER} )
100
101 buildkernel2:
102         ( cd ${.CURDIR}/..; make -DNOCLEAN buildkernel KERNCONF=${KERNCONF} CCVER=${KERNEL_CCVER} )
103
104 # note that we do not want to mess with any /usr/obj directories not related
105 # to buildworld, buildkernel, or nrelease, so we must supply the proper
106 # MAKEOBJDIRPREFIX for targets that are not run through the buildworld and 
107 # buildkernel mechanism.
108 #
109 buildiso:
110         if [ ! -d ${ISOROOT} ]; then mkdir -p ${ISOROOT}; fi
111         if [ ! -d ${NRLOBJDIR}/nrelease ]; then mkdir -p ${NRLOBJDIR}/nrelease; fi
112         ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} installworld )
113         ( cd ${.CURDIR}/../etc; MAKEOBJDIRPREFIX=${NRLOBJDIR}/nrelease make DESTDIR=${ISOROOT} distribution )
114         ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} \
115                 installkernel KERNCONF=${KERNCONF} )
116         mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.local.dist -p ${ISOROOT}/usr/local/
117         mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.var.dist -p ${ISOROOT}/var
118         dev_mkdb -f ${ISOROOT}/var/run/dev.db ${ISOROOT}/dev
119
120 customizeiso:
121 .for ROOTSKEL in ${ROOTSKELS}
122         cpdup -X cpignore -o ${ROOTSKEL} ${ISOROOT}
123 .endfor
124         rm -rf `find ${ISOROOT} -type d -name CVS -print`
125         pwd_mkdb -p -d ${ISOROOT}/etc ${ISOROOT}/etc/master.passwd
126
127 pkgcleaniso:
128         rm -f ${ISOROOT}/tmp/chrootscript
129         echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
130 .for PKG in ${PACKAGES}
131         echo "pkg_delete -f ${PKG}" >> ${ISOROOT}/tmp/chrootscript
132 .endfor
133         chmod a+x ${ISOROOT}/tmp/chrootscript
134         chroot ${ISOROOT}/ /tmp/chrootscript || exit 0
135         rm ${ISOROOT}/tmp/chrootscript
136
137 pkgaddiso:
138         rm -f ${ISOROOT}/tmp/chrootscript
139         echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
140 .for PKG in ${PACKAGES}
141         cp ${PACKAGES_LOC}/${PKG}.tgz ${ISOROOT}/tmp/${PKG}.tgz
142         echo "echo 'Installing package ${PKG}...'" >> ${ISOROOT}/tmp/chrootscript
143         echo "pkg_add /tmp/${PKG}.tgz" >> ${ISOROOT}/tmp/chrootscript
144 .endfor
145         chmod a+x ${ISOROOT}/tmp/chrootscript
146         chroot ${ISOROOT}/ /tmp/chrootscript
147         rm ${ISOROOT}/tmp/chrootscript
148 .for PKG in ${PACKAGES}
149         rm -f ${ISOROOT}/tmp/${PKG}.tgz
150 .endfor
151
152 mkiso:
153         ( cd ${ISOROOT}; mkisofs -b boot/cdboot -no-emul-boot \
154                 -R -J -V DragonFly -o ${ISOFILE} . )
155
156 clean:
157         if [ -d ${ISOROOT} ]; then chflags -R noschg ${ISOROOT}; fi
158         if [ -d ${ISOROOT} ]; then rm -rf ${ISOROOT}/*; fi
159         if [ -d ${NRLOBJDIR}/nrelease ]; then rm -rf ${NRLOBJDIR}/nrelease; fi
160
161 realclean:      clean
162         rm -rf ${OBJSYS}/${KERNCONF}
163
164 .include <bsd.prog.mk>