summary refs log tree commit diff
path: root/Makefile
blob: 5e026af20a2ef2309f27cafaa9f5207236ed0aea (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 += devel/cgit-patched
PORTS += irc/catgirl
PORTS += irc/litterbox
PORTS += irc/pounce
PORTS += irc/pounce-palaver
PORTS += irc/scooper
PORTS += security/libretls
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