blob: 4dbd622cf776d001f6ebfb155112b76b2f70e7fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
msg_and_copy () {
printf '==> Copying %s to %s\n' "$1" "$2" 1>&2
cp -r -- "$1" "$2"
}
msg_and_mkdir () {
printf '==> Creating directory %s\n' "$1" 1>&2
mkdir -p -- "$1"
}
if [ "$#" -lt "4" ]; then
printf 'Usage: %s category cat_makefile cat_makefile_inc dir\n' "$0"
printf 'Example: %s local local.makefile local.makefile.inc 217 will do\n' "$0"
echo ' mkdir -p /usr/ports/local'
echo ' cp -r local.makefile /usr/ports/local/Makefile'
echo ' cp -r local.makefile.inc /usr/ports/local/Makefile.inc'
echo ' cp -r 217 /usr/ports/local'
exit 1
fi
: "${PORTSDIR:="/usr/ports"}"
category="$1"
cat_makefile="$2"
cat_makefile_inc="$3"
dir="$4"
[ ! -d "${PORTSDIR}/${category}" ] && \
msg_and_mkdir "${PORTSDIR}/${category}"
[ ! -f "${PORTSDIR}/${category}/Makefile" ] && \
msg_and_copy "${cat_makefile}" "${PORTSDIR}/${category}/Makefile"
[ ! -f "${PORTSDIR}/${category}/Makefile.inc" ] && \
msg_and_copy "${cat_makefile_inc}" "${PORTSDIR}/${category}/Makefile.inc"
msg_and_copy "${dir}" "${PORTSDIR}/${category}"
|