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

PORTS += devel/cgit-patched
PORTS += irc/catgirl
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