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

PORTS += devel/cgit-patched
PORTS += irc/catgirl
PORTS += irc/litterbox
PORTS += irc/pounce
PORTS += security/libretls

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

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