openbsd-ports/mail/archiveopteryx/Makefile
ajacoutot f50fdd748e Stop using the daemon class in @newuser.
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 :-)
2022-11-08 11:14:43 +00:00

46 lines
1.0 KiB
Makefile

COMMENT = mail server storing messages in a database
DISTNAME = archiveopteryx-3.2.0
CATEGORIES = mail databases
REVISION = 6
HOMEPAGE = http://www.archiveopteryx.org/
# BSD
PERMIT_PACKAGE = Yes
WANTLIB = c crypto m pthread ssl ${COMPILER_LIBCXX} z
COMPILER = base-clang ports-gcc base-gcc
MASTER_SITES = ${HOMEPAGE}/download/
EXTRACT_SUFX = .tar.bz2
BUILD_DEPENDS = devel/jam
NO_TEST = yes
JAMDEBUG = -d x # display command-lines
JAMDEBUG += -q # die quickly on build failure
MAKE_ENV += CC=${CC} CXX=${CXX}
JAMFLAGS = \
-sAOXUSER=_aox \
-sAOXGROUP=_aox \
-sBUILD= \
-sOPTIM="${CFLAGS}" \
-sCXXFLAGS="${CXXFLAGS}" \
-sLDFLAGS="${LDFLAGS}"
pre-configure:
${SUBST_CMD} ${WRKSRC}/Jam{rules,settings}
do-build:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} jam ${JAMDEBUG} ${JAMFLAGS}
do-install:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} jam ${JAMDEBUG} ${JAMFLAGS} install
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/archiveopteryx
${INSTALL_DATA} ${FILESDIR}/*.conf ${PREFIX}/share/examples/archiveopteryx
.include <bsd.port.mk>