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

PORTS += devel/cgit-causal-agency
PORTS += irc/catgirl
PORTS += irc/litterbox
PORTS += irc/pounce
PORTS += irc/pounce-palaver
PORTS += irc/scooper
PORTS += mail/imbox
PORTS += mail/notemap
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
ogheader'>2020-01-14Add -b flag for live backupJune McEnroe 2020-01-14Add columnsize = 0 option to FTS indexJune McEnroe Since we don't use ranking functions and I don't see them being useful, there is no point in having columnsize, which just takes extra space in the database. In my database of approximately 3.5 million events, disabling columnsize saves about 62 MB. The migration unfortunately has to rebuild the entire index to disable it. 2020-01-12Add option for client cert and SASL EXTERNALJune McEnroe 2020-01-12Add Linux.mkJune McEnroe 2020-01-11Fix unscoop dedup window syntaxJune McEnroe 2020-01-11Bump busy timeout to 10sJune McEnroe