1 # Makefile.usr - installed as /usr/Makefile
3 # Provides simple targets to download and maintain /usr/src, /usr/dports etc.
5 GITHOST?=git.dragonflybsd.org
6 GITHOST_DPORTS?=mirror-master.dragonflybsd.org
8 DPTBALL=/tmp/dports.tar.gz
9 PKGBALL=/tmp/pkgboot.tar.xz
10 DPDLURL=https://api.github.com/repos/DragonFlyBSD/DPorts/tarball/
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"
22 .if exists(${.CURDIR}/dports/.git)
23 @printf ${LPATT} "dports-update" "update your dports repository from the net"
25 . if exists(${.CURDIR}/dports)
26 @printf ${LPATT} "dports-replace" "Replace dports with latest tarball (Github)"
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)"
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)"
37 .if exists(${.CURDIR}/src/.git)
38 .if exists(${.CURDIR}/src/Makefile)
39 @printf ${LPATT} "src-update" "update your src repository from the net"
41 @printf ${LPATT} "src-checkout" "Initial checkout of src repository"
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"
49 .if exists(${.CURDIR}/src-sys.tar.bz2)
50 @printf ${LPATT} "release-sys-extract" "extract the pre-packaged sys-only sources"
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"
57 @/usr/bin/which -s git || \
58 (echo "git must be present on the system to use this option."; /usr/bin/false)
61 @/bin/test ! -d ${.CURDIR}/src/.git || \
62 (echo "Error: ${.CURDIR}/src already exists"; /usr/bin/false)
64 src-check-hasdir: git-check
65 @/bin/test -d ${.CURDIR}/src/.git || \
66 (echo "Error: ${.CURDIR}/src does not exist"; /usr/bin/false)
68 src-create-repo: src-check
69 @echo "If problems occur you may have to rm -rf src and try again."
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
78 src-create: src-create-repo
79 cd ${.CURDIR}/src && git checkout master
80 cd ${.CURDIR}/src && git pull
82 src-create-shallow: src-check
83 @echo "If problems occur you may have to rm -rf src and try again."
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
94 src-checkout: src-check-hasdir
95 cd ${.CURDIR}/src && git checkout master
97 src-update: src-check-hasdir
98 cd ${.CURDIR}/src && git pull
101 cd ${.CURDIR} && tar xvpjf src-sys.tar.bz2
103 dports-check: git-check
104 @/bin/test ! -d ${.CURDIR}/dports/.git || \
105 (echo "Error: ${.CURDIR}/dports already exists"; /usr/bin/false)
107 dports-check-hasdir: git-check
108 @/bin/test -d ${.CURDIR}/dports || \
109 (echo "Error: ${.CURDIR}/dports does not exist"; /usr/bin/false)
111 dports-update: dports-check-hasdir
112 cd ${.CURDIR}/dports && git pull
114 dports-create: dports-check
115 @echo "If problems occur you may have to rm -rf dports and try again."
117 git clone git://${GITHOST_DPORTS}/dports.git ${.CURDIR}/dports
118 .if exists(${.CURDIR}/pkg)
124 dports-create-shallow: dports-check
125 @echo "If problems occur you may have to rm -rf dports and try again."
127 git clone --depth=1 git://${GITHOST_DPORTS}/dports.git \
129 .if exists(${.CURDIR}/pkg)
135 dports-download: dports-check
137 fetch -o ${DPTBALL} ${DPDLURL}
138 tar -xf ${DPTBALL} -C ${.CURDIR}
139 mv /usr/DragonFlyBSD-DPorts-* ${.CURDIR}/dports
141 .if exists(${.CURDIR}/pkg)
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."
155 fetch -o ${DPTBALL} ${DPDLURL}
156 rm -rf ${.CURDIR}/dports
157 tar -xf ${DPTBALL} -C ${.CURDIR}
158 mv /usr/DragonFlyBSD-DPorts-* ${.CURDIR}/dports
162 # NOTE: In force mode we also have to remove any old pkg.conf
163 # which might interfere with the newer pkg bootstrap.
166 @rm -f /usr/local/etc/pkg.conf
167 @fetch -o ${PKGBALL} ${PKGBOOT}
168 @tar -xJf ${PKGBALL} -C ${.CURDIR}/local
171 ABI=${ABIVERS} ${.CURDIR}/local/sbin/pkg-static install -y -f pkg
173 ${.CURDIR}/local/sbin/pkg-static install -y -f pkg
177 .if exists(${.CURDIR}/local/sbin/pkg)
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'"
185 @fetch -o ${PKGBALL} ${PKGBOOT}
186 @tar -xJf ${PKGBALL} -C ${.CURDIR}/local
189 ABI=${ABIVERS} ${.CURDIR}/local/sbin/pkg-static install -y pkg
191 ${.CURDIR}/local/sbin/pkg-static install -y pkg