summary refs log tree commit diff
path: root/FreeBSD/Makefile
blob: 3e705b479f51fac6fefd233d2d2946a046ed23fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PORTSDIR = /usr/ports

PORTS += irc/litterbox
PORTS += irc/pounce
PORTS += irc/pounce-palaver
PORTS += irc/scooper
PORTS += mail/bubger
PORTS += mail/imbox
PORTS += mail/notemap
PORTS += sysutils/catsit

install:
.for PORT in ${PORTS}
	cp -R ${PORT} ${PORTSDIR}/${PORT:H}
.endfor

uninstall:
.for PORT in ${PORTS}
	rm -fr ${PORTSDIR}/${PORT}
.endfor