pf: Make pf_print_host() print IPv6 addresses correctly
[dragonfly.git] / etc / Makefile.usr
1 # Makefile.usr - installed as /usr/Makefile
2 #
3 # Provides simple targets to download and maintain /usr/src, /usr/dports etc.
4
5 GITHOST?=git.dragonflybsd.org
6 GITHOST_DPORTS?=mirror-master.dragonflybsd.org
7
8 DPTBALL=/tmp/dports.tar.gz
9 PKGBALL=/tmp/pkgboot.tar.xz
10 DPDLURL=https://api.github.com/repos/DragonFlyBSD/DPorts/tarball/
11 PKGBOOT_VERSION=02
12 PKGBOOT_x86_64=bootstrap_pkg_${PKGBOOT_VERSION}_x86-64.tar.xz
13 PKGBOOT=http://mirror-master.dragonflybsd.org/dports/bootstraps/${PKGBOOT_${MACHINE_ARCH}}
14 ERRPKG="Error: Bootstrap not necessary, ${.CURDIR}/local/sbin/pkg already exists"
15 WSTARS="***************************************************************"
16 WARNPS="  Warning: Delete or move ${.CURDIR}/pkg before building any dport!"
17 LPATT="   make %-23s- %s\n"
18
19 help all:
20         @echo "HELP:"
21         @echo
22 .if exists(${.CURDIR}/dports/.git)
23         @printf ${LPATT} "dports-update"         "update your dports repository from the net"
24 .else
25 .  if exists(${.CURDIR}/dports)
26         @printf ${LPATT} "dports-replace"        "Replace dports with latest tarball (Github)"
27 .  else
28         @printf ${LPATT} "dports-create"         "fetch initial dports repository from the net"
29         @printf ${LPATT} "dports-create-shallow" "fetch initial history-free dports repository"
30         @printf ${LPATT} "dports-download"       "download & install dports tarball (Github)"
31 .  endif
32 .endif
33         @printf ${LPATT} "pkg-bootstrap"        "Use pre-built pkg to install dports packages"
34         @printf ${LPATT} "pkg-bootstrap-force"  "Force it (pkg.conf will be overwritten)"
35         @echo
36
37 .if exists(${.CURDIR}/src/.git)
38 .if exists(${.CURDIR}/src/Makefile)
39         @printf ${LPATT} "src-update"         "update your src repository from the net"
40 .else
41         @printf ${LPATT} "src-checkout"       "Initial checkout of src repository"
42 .endif
43 .else
44         @printf ${LPATT} "src-create"         "fetch initial src repository from the net"
45         @printf ${LPATT} "src-create-shallow" "fetch initial history-free src repository"
46         @printf ${LPATT} "src-create-repo"    "fetch src repository only, no checkout"
47 .endif
48         @echo
49 .if exists(${.CURDIR}/src-sys.tar.bz2)
50         @printf ${LPATT} "release-sys-extract" "extract the pre-packaged sys-only sources"
51         @echo
52 .endif
53         @echo "If automating please feel free to run git pull's from cron."
54         @echo "We prefer once a day but you can run them more often if you desire"
55
56 git-check:
57         @/usr/bin/which -s git || \
58                 (echo "git must be present on the system to use this option."; /usr/bin/false)
59
60 src-check: git-check
61         @/bin/test ! -d ${.CURDIR}/src/.git || \
62                 (echo "Error: ${.CURDIR}/src already exists"; /usr/bin/false)
63
64 src-check-hasdir: git-check
65         @/bin/test -d ${.CURDIR}/src/.git || \
66                 (echo "Error: ${.CURDIR}/src does not exist"; /usr/bin/false)
67
68 src-create-repo: src-check
69         @echo "If problems occur you may have to rm -rf src and try again."
70         @echo
71         @mkdir -p ${.CURDIR}/src
72         @cd ${.CURDIR}/src && git init
73         @cd ${.CURDIR}/src && \
74                 git remote add origin git://${GITHOST}/dragonfly.git
75         cd ${.CURDIR}/src && git fetch origin
76         cd ${.CURDIR}/src && git branch master origin/master
77
78 src-create: src-create-repo
79         cd ${.CURDIR}/src && git checkout master
80         cd ${.CURDIR}/src && git pull
81
82 src-create-shallow: src-check
83         @echo "If problems occur you may have to rm -rf src and try again."
84         @echo
85         @mkdir -p ${.CURDIR}/src
86         cd ${.CURDIR}/src && git init
87         cd ${.CURDIR}/src && \
88             git remote add origin git://${GITHOST}/dragonfly.git
89         cd ${.CURDIR}/src && git fetch --depth=1 origin
90         cd ${.CURDIR}/src && git branch master origin/master
91         cd ${.CURDIR}/src && git checkout master
92         cd ${.CURDIR}/src && git pull
93
94 src-checkout: src-check-hasdir
95         cd ${.CURDIR}/src && git checkout master
96
97 src-update: src-check-hasdir
98         cd ${.CURDIR}/src && git pull
99
100 release-sys-extract:
101         cd ${.CURDIR} && tar xvpjf src-sys.tar.bz2
102
103 dports-check: git-check
104         @/bin/test ! -d ${.CURDIR}/dports/.git || \
105                    (echo "Error: ${.CURDIR}/dports already exists"; /usr/bin/false)
106
107 dports-check-hasdir: git-check
108         @/bin/test -d ${.CURDIR}/dports || \
109                    (echo "Error: ${.CURDIR}/dports does not exist"; /usr/bin/false)
110
111 dports-update: dports-check-hasdir
112         cd ${.CURDIR}/dports && git pull
113
114 dports-create: dports-check
115         @echo "If problems occur you may have to rm -rf dports and try again."
116         @echo
117         git clone git://${GITHOST_DPORTS}/dports.git ${.CURDIR}/dports
118 .if exists(${.CURDIR}/pkg)
119         @echo ${WSTARS}
120         @echo ${WARNPS}
121         @echo ${WSTARS}
122 .endif
123
124 dports-create-shallow: dports-check
125         @echo "If problems occur you may have to rm -rf dports and try again."
126         @echo
127         git clone --depth=1 git://${GITHOST_DPORTS}/dports.git \
128            ${.CURDIR}/dports
129 .if exists(${.CURDIR}/pkg)
130         @echo ${WSTARS}
131         @echo ${WARNPS}
132         @echo ${WSTARS}
133 .endif
134
135 dports-download: dports-check
136         rm -f ${DPTBALL}
137         fetch -o ${DPTBALL} ${DPDLURL}
138         tar -xf ${DPTBALL} -C ${.CURDIR}
139         mv /usr/DragonFlyBSD-DPorts-* ${.CURDIR}/dports
140         rm -f ${DPTBALL}
141 .if exists(${.CURDIR}/pkg)
142         @echo ${WSTARS}
143         @echo ${WARNPS}
144         @echo ${WSTARS}
145 .endif
146
147 dports-replace: dports-check-hasdir
148 .if exists(${.CURDIR}/dports/.git)
149         @echo "Error: this is git repository currently."
150         @echo "Remove ${.CURDIR}/dports and execute \"make dports-download\" if you want"
151         @echo "to convert to a non-git version."
152         @/usr/bin/false
153 .else
154         rm -f ${DPTBALL}
155         fetch -o ${DPTBALL} ${DPDLURL}
156         rm -rf ${.CURDIR}/dports
157         tar -xf ${DPTBALL} -C ${.CURDIR}
158         mv /usr/DragonFlyBSD-DPorts-* ${.CURDIR}/dports
159         rm -f ${DPTBALL}
160 .endif
161
162 # NOTE: In force mode we also have to remove any old pkg.conf
163 #       which might interfere with the newer pkg bootstrap.
164 #
165 pkg-bootstrap-force:
166         @rm -f /usr/local/etc/pkg.conf
167         @fetch -o ${PKGBALL} ${PKGBOOT}
168         @tar -xJf ${PKGBALL} -C ${.CURDIR}/local
169         @rm -f ${PKGBALL}
170 .if defined(ABIVERS)
171         ABI=${ABIVERS} ${.CURDIR}/local/sbin/pkg-static install -y -f pkg
172 .else
173         ${.CURDIR}/local/sbin/pkg-static install -y -f pkg
174 .endif
175
176 pkg-bootstrap:
177 .if exists(${.CURDIR}/local/sbin/pkg)
178         @echo ${ERRPKG}
179         @/usr/bin/false
180 .elif exists(${.CURDIR}/local/etc/pkg.conf)
181         @echo "Error: ${.CURDIR}/local/etc/pkg.conf will be ovewritten"
182         @echo "Please move this file and rerun 'make pkg-bootstrap'"
183         @/usr/bin/false
184 .else
185         @fetch -o ${PKGBALL} ${PKGBOOT}
186         @tar -xJf ${PKGBALL} -C ${.CURDIR}/local
187         @rm -f ${PKGBALL}
188 .if defined(ABIVERS)
189         ABI=${ABIVERS} ${.CURDIR}/local/sbin/pkg-static install -y pkg
190 .else
191         ${.CURDIR}/local/sbin/pkg-static install -y pkg
192 .endif
193 .endif