release - pkgsrc-2011Q1 is the standard pkgsrc branch now
[dragonfly.git] / etc / Makefile.usr
1 # Makefile.usr - installed as /usr/Makefile
2 #
3 # Provides simple targets to download and maintain /usr/src, /usr/pkgsrc etc.
4
5 GITHOST?=git.dragonflybsd.org
6
7 help all:
8         @echo "HELP:"
9         @echo ""
10 .if exists(${.CURDIR}/pkgsrc/.git)
11 .if exists(${.CURDIR}/pkgsrc/Makefile)
12         @echo "    make pkgsrc-update       - update your pkgsrc repo from the net"
13 .else
14         @echo "    make pkgsrc-checkout     - initial checkout of your pre-packaged"
15         @echo "                               pkgsrc repo."
16         @echo "    make pkgsrc-update       - update your pkgsrc repo from the net"
17         @echo "                               after the initial checkout."
18 .endif
19 .else
20         @echo "    make pkgsrc-create       - fetch initial pkgsrc repo from the net"
21         @echo "    make pkgsrc-create-repo  - fetch pkgsrc repo only, no checkout"
22         @echo "    make pkgsrc-update       - update your pkgsrc repo from the net"
23 .endif
24         @echo ""
25 .if exists(${.CURDIR}/src/.git)
26 .if exists(${.CURDIR}/src/Makefile)
27         @echo "    make src-update          - update your src repo from the net"
28 .else
29         @echo "    make src-checkout        - initial checkout of your pre-packaged src repo"
30         @echo "    make src-update          - update your src repo from the net"
31         @echo "                               after the initial checkout."
32 .endif
33 .else
34         @echo "    make src-create          - fetch initial src repo from the net"
35         @echo "    make src-create-shallow  - fetch initial history-free src repo"
36         @echo "    make src-create-repo     - fetch src repo only, no checkout"
37         @echo "    make src-update          - update your src repo from the net"
38 .endif
39         @echo ""
40 .if exists(${.CURDIR}/src-sys.tgz)
41         @echo "    make release-sys-extract - extract the pre-packaged sys-only sources"
42 .endif
43         @echo ""
44         @echo "If automating please feel free to run git pull's from cron."
45         @echo "We prefer once a day but you can run them more often if you"
46         @echo "desire."
47         @echo ""
48         @echo "If you have a repo previously maintained via CVS you should"
49         @echo "rm -rf it (save any local modifications) and then use the"
50         @echo "make src-create and/or make pkgsrc-create to set up the initial"
51         @echo "git repo."
52
53 pkgsrc-create-repo:
54         @echo "If problems occur you may have to rm -rf pkgsrc and try again."
55         @echo ""
56         mkdir -p ${.CURDIR}/pkgsrc
57         cd ${.CURDIR}/pkgsrc && git init
58         cd ${.CURDIR}/pkgsrc && \
59                 git remote add origin git://${GITHOST}/pkgsrcv2.git
60         cd ${.CURDIR}/pkgsrc && git fetch origin
61         cd ${.CURDIR}/pkgsrc && git branch master origin/master
62         cd ${.CURDIR}/pkgsrc && git branch pkgsrc-2010Q4 origin/pkgsrc-2010Q4
63         cd ${.CURDIR}/pkgsrc && git branch pkgsrc-2011Q1 origin/pkgsrc-2011Q1
64
65 pkgsrc-create: pkgsrc-create-repo
66         cd ${.CURDIR}/pkgsrc && git checkout pkgsrc-2011Q1
67         cd ${.CURDIR}/pkgsrc && git pull
68
69 pkgsrc-checkout:
70         cd ${.CURDIR}/pkgsrc && git checkout pkgsrc-2011Q1
71
72 pkgsrc-update:
73         cd ${.CURDIR}/pkgsrc && git pull
74
75 src-create-repo:
76         @echo "If problems occur you may have to rm -rf src and try again."
77         @echo ""
78         mkdir -p ${.CURDIR}/src
79         cd ${.CURDIR}/src && git init
80         cd ${.CURDIR}/src && \
81                 git remote add origin git://${GITHOST}/dragonfly.git
82         cd ${.CURDIR}/src && git fetch origin
83         cd ${.CURDIR}/src && git branch master origin/master
84
85 src-create: src-create-repo
86         cd ${.CURDIR}/src && git checkout master
87         cd ${.CURDIR}/src && git pull
88
89 src-create-shallow:
90         @echo "If problems occur you may have to rm -rf src and try again."
91         @echo ""
92         mkdir -p ${.CURDIR}/src
93         cd ${.CURDIR}/src && git init
94         cd ${.CURDIR}/src && \
95             git remote add origin git://${GITHOST}/dragonfly.git
96         cd ${.CURDIR}/src && git fetch --depth=1 origin
97         cd ${.CURDIR}/src && git branch master origin/master
98         cd ${.CURDIR}/src && git checkout master
99         cd ${.CURDIR}/src && git pull
100
101 src-checkout:
102         cd ${.CURDIR}/src && git checkout master
103
104 src-update:
105         cd ${.CURDIR}/src && git pull
106
107 release-sys-extract:
108         cd ${.CURDIR} && tar xvpzf src-sys.tgz
109