If we need to make an exception we can do it and properly document the reason but by default we should just use the default login class. rc.d uses daemon or the login class provided in login.conf.d so this has no impact there. discussed with sthen@, tb@ and robert@ praying that my grep/sed skills did not break anything and still believing in portbump :-)
27 lines
489 B
Makefile
27 lines
489 B
Makefile
COMMENT = gemini server written in C used with inetd
|
|
V = 2.0.0
|
|
DISTNAME = vger-${V}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://tildegit.org/solene/vger/
|
|
|
|
MAINTAINER = Florian Viehweger <openbsd@out-of-creativity.de>
|
|
|
|
# BSD 2-clause
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
# uses unveil()
|
|
WANTLIB += c
|
|
|
|
MASTER_SITES = https://tildegit.org/solene/vger/archive/
|
|
|
|
CFLAGS += -std=gnu99
|
|
|
|
DISTFILES = vger-{}${V}${EXTRACT_SUFX}
|
|
WRKDIST = ${WRKDIR}/vger
|
|
|
|
.include <bsd.port.mk>
|