mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
d22728a7e8
With hat: portmgr
247 lines
8.7 KiB
Makefile
247 lines
8.7 KiB
Makefile
# Created by: torstenb
|
|
# $FreeBSD$
|
|
|
|
PORTNAME?= inn
|
|
PORTVERSION?= 2.5.3
|
|
PORTREVISION?= 0
|
|
CATEGORIES= news ipv6
|
|
# Master distribution broken
|
|
MASTER_SITES?= ${MASTER_SITE_ISC}
|
|
MASTER_SITE_SUBDIR?= ${PORTNAME}
|
|
#MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
#MASTER_SITE_SUBDIR= fluffy
|
|
|
|
MAINTAINER= fluffy@FreeBSD.org
|
|
COMMENT= InterNetNews -- the Internet meets Netnews
|
|
|
|
BUILD_DEPENDS= p5-GD>=0:${PORTSDIR}/graphics/p5-GD \
|
|
p5-MIME-Tools>=0:${PORTSDIR}/mail/p5-MIME-Tools
|
|
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_RC_SUBR= innd
|
|
SUB_FILES= pkg-install
|
|
|
|
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
USES= gmake perl5
|
|
|
|
CONFLICTS?= inn-stable-[0-9]* inn-current-[0-9]*
|
|
|
|
OPTIONS_DEFINE= PYTHON KERBEROS SASL KEYWORDS BERKELEYDB OPENSSL \
|
|
TAGGED_HASH LARGE_FILES GNUPG
|
|
OPTIONS_DEFAULT= KEYWORDS
|
|
|
|
PYTHON_DESC= Embedded Python module support
|
|
KERBEROS_DESC= Enable Kerberos v5 (for auth_krb5)
|
|
SASL_DESC= Enable SASL (for imapfeed authentication)
|
|
TAGGED_HASH_DESC= Use tagged hash table for history
|
|
LARGE_FILES_DESC= Support for files larger than 2GB
|
|
KEYWORDS_DESC= Automatic keyword generation support
|
|
BERKELEYDB_DESC= Enable BerkeleyDB (for ovdb overview method)
|
|
OPENSSL_DESC= Enable OpenSSL (for NNTP over TLS/SSL support)
|
|
GNUPG_DESC= GnuPG support (for pgpverify control message)
|
|
|
|
VARBASE?= /var
|
|
|
|
NO_STAGE= yes
|
|
.include "Makefile.layout"
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ENV+= LOCALBASE=${LOCALBASE}
|
|
CONFIGURE_ENV+= ac_cv_prog_AWK="${AWK}"
|
|
CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \
|
|
--prefix=${INN_NEWSBASE} \
|
|
--with-spool-dir=${INN_NEWSSPOOL} \
|
|
--with-log-dir=${INN_LOGDIR} \
|
|
--with-tmp-dir=${INN_TMPDIR} \
|
|
--sysconfdir=${INN_ETCDIR} \
|
|
--with-run-dir=${INN_RUNDIR} \
|
|
--with-db-dir=${INN_DBDIR} \
|
|
--datarootdir=${INN_SHAREDIR} \
|
|
--enable-ipv6 --with-perl
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MBERKELEYDB}
|
|
USE_BDB= 44+
|
|
CONFIGURE_ENV+= DB_VER=db${BDB_VER}
|
|
CONFIGURE_ENV+= DB_LIB=${BDB_LIB_NAME}
|
|
CONFIGURE_ARGS+= --with-berkeleydb=${LOCALBASE}
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKERBEROS}
|
|
. if exists(${LOCALBASE}/bin/krb5-config)
|
|
LIB_DEPENDS+= libgssapi_krb5.so:${PORTSDIR}/security/krb5
|
|
CONFIGURE_ARGS+= --with-kerberos=${LOCALBASE}
|
|
. else
|
|
CONFIGURE_ARGS+= --with-kerberos=/usr
|
|
. endif
|
|
CONFIGURE_ENV+= ac_cv_search_krb5_parse_name="-lcrypt -lcrypto -lkrb5 -lasn1 -lroken -lhx509"
|
|
CONFIGURE_ENV+= ac_cv_func_krb5_init_ets=yes
|
|
MAN8+= auth_krb5.8
|
|
PLIST_SUB+= KRB5=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-kerberos
|
|
PLIST_SUB+= KRB5="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPYTHON}
|
|
USE_PYTHON= yes
|
|
CONFIGURE_ARGS+= --with-python
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLARGE_FILES}
|
|
CONFIGURE_ARGS+= --enable-largefiles
|
|
. if ${PORT_OPTIONS:MTAGGED_HASH}
|
|
IGNORE= cannot be compiled with both LARGE_FILES and TAGGED_HASH: please re-run make config
|
|
. endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKEYWORDS}
|
|
CONFIGURE_ARGS+= --enable-keywords
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSASL}
|
|
CONFIGURE_ARGS+= --with-sasl=${LOCALBASE}
|
|
LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTAGGED_HASH}
|
|
CONFIGURE_ARGS+= --enable-tagged-hash
|
|
DBZ_FILES= dir pag
|
|
PLIST_SUB+= WITH_TAGGED_HASH=""
|
|
PLIST_SUB+= WITHOUT_TAGGED_HASH="@comment "
|
|
.else
|
|
DBZ_FILES= dir hash index
|
|
PLIST_SUB+= WITH_TAGGED_HASH="@comment "
|
|
PLIST_SUB+= WITHOUT_TAGGED_HASH=""
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MOPENSSL}
|
|
USE_OPENSSL= yes
|
|
CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE}
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGNUPG}
|
|
# Although pgpverify needs gpgv/gpgv2,
|
|
# checking 'gpg' is the shortest way to check any version of GnuPG installed.
|
|
BUILD_DEPENDS+= gpg:${PORTSDIR}/security/gnupg
|
|
RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg
|
|
.endif
|
|
|
|
PORTDOCS= CONTRIBUTORS HACKING INSTALL LICENSE MANIFEST NEWS README TODO
|
|
HEADERS= clibrary.h config.h dbz.h libinn.h storage.h
|
|
|
|
MAN1= convdate.1 fastrm.1 getlist.1 grephistory.1 inews.1 innconfval.1 \
|
|
innmail.1 nntpget.1 pgpverify.1 rnews.1 shlock.1 \
|
|
shrinkfile.1 simpleftp.1 sm.1 pullnews.1
|
|
MAN3= INN::Config.3pm INN::Utils::Shlock.3pm clientlib.3 dbz.3 inndcomm.3 libauth.3 \
|
|
libinn.3 libinnhist.3 libstorage.3 list.3 qio.3 tst.3 uwildmat.3
|
|
MAN5= active.5 active.times.5 buffindexed.conf.5 control.ctl.5 \
|
|
cycbuff.conf.5 distrib.pats.5 distributions.5 expire.ctl.5 history.5 \
|
|
incoming.conf.5 inn.conf.5 innfeed.conf.5 innwatch.ctl.5 \
|
|
moderators.5 motd.news.5 newsfeeds.5 newsgroups.5 \
|
|
newslog.5 nnrpd.track.5 nntpsend.ctl.5 ovdb.5 \
|
|
passwd.nntp.5 radius.conf.5 readers.conf.5 \
|
|
storage.conf.5 subscriptions.5
|
|
MAN8= actsync.8 archive.8 batcher.8 buffchan.8 \
|
|
ckpasswd.8 cnfsheadconf.8 cnfsstat.8 controlchan.8 ctlinnd.8 \
|
|
cvtbatch.8 docheckgroups.8 domain.8 expire.8 expireover.8 \
|
|
expirerm.8 filechan.8 \
|
|
ident.8 inncheck.8 innbind.8 innd.8 inndf.8 innfeed.8 innreport.8 \
|
|
innstat.8 innupgrade.8 innwatch.8 innxbatch.8 innxmit.8 mailpost.8 makedbz.8 \
|
|
makehistory.8 mod-active.8 news.daily.8 news2mail.8 ninpaths.8 \
|
|
nnrpd.8 nntpsend.8 ovdb_init.8 ovdb_monitor.8 ovdb_server.8 \
|
|
ovdb_stat.8 overchan.8 perl-nocem.8 procbatch.8 prunehistory.8 \
|
|
radius.8 rc.news.8 scanlogs.8 scanspool.8 send-nntp.8 send-uucp.8 \
|
|
sendinpaths.8 tally.control.8 tdx-util.8 tinyleaf.8 writelog.8
|
|
MLINKS= actsync.8 actsyncd.8 docheckgroups.8 localgroups.5 perl-nocem.8 nocem.ctl.5 \
|
|
innfeed.8 imapfeed.8 motd.news.5 motd.innd.5 motd.news.5 motd.nnrpd.5 \
|
|
ninpaths.8 inpaths.8
|
|
|
|
TO_BE_STRIPPED= bin/auth/resolv/domain bin/auth/resolv/ident \
|
|
bin/auth/passwd/ckpasswd bin/auth/passwd/radius bin/rnews.libexec/decode \
|
|
bin/rnews.libexec/encode bin/tdx-util bin/innd bin/nnrpd \
|
|
bin/innfeed bin/imapfeed bin/convdate bin/expire \
|
|
bin/expireover bin/fastrm bin/grephistory bin/makedbz bin/makehistory \
|
|
bin/prunehistory bin/ctlinnd bin/getlist bin/inews bin/innconfval \
|
|
bin/ovdb_init bin/ovdb_monitor bin/ovdb_server bin/ovdb_stat bin/rnews \
|
|
bin/sm bin/actsync bin/archive bin/batcher bin/buffchan bin/cvtbatch \
|
|
bin/filechan bin/inndf bin/innxmit bin/innxbatch bin/ninpaths bin/nntpget \
|
|
bin/overchan bin/shlock bin/shrinkfile
|
|
|
|
CONFIG_FILES= actsync.cfg actsync.ign buffindexed.conf control.ctl \
|
|
control.ctl.local cycbuff.conf \
|
|
distrib.pats distributions \
|
|
expire.ctl localgroups incoming.conf inn.conf innfeed.conf \
|
|
innreport.conf innshellvars.local innshellvars.pl.local innshellvars.tcl.local \
|
|
innwatch.ctl moderators motd.innd motd.nnrpd news2mail.cf \
|
|
newsfeeds nocem.ctl \
|
|
nnrpd.track nntpsend.ctl ovdb.conf \
|
|
passwd.nntp radius.conf readers.conf send-uucp.cf \
|
|
storage.conf subscriptions
|
|
|
|
SUB_LIST+= EGDIR="${EXAMPLESDIR:C,^${PREFIX},\\$\\${PREFIX},}"
|
|
PLIST_SUB+= ETCFILES="${CONFIG_FILES}"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E 's!\$$[{(]PATHETC[})]!${EXAMPLESDIR}!g' \
|
|
${WRKSRC}/site/Makefile
|
|
@${REINPLACE_CMD} -e 's!et/com_err\.h!com_err.h!g' \
|
|
-e 's!-lk5crypto!!g' \
|
|
${WRKSRC}/configure
|
|
@${ECHO_CMD} '/^$$D$$(PATH_HISTORY)' > ${WRKDIR}/ex.script
|
|
@${ECHO_CMD} '+' >> ${WRKDIR}/ex.script
|
|
@${ECHO_CMD} 'mark t' >> ${WRKDIR}/ex.script
|
|
@${ECHO_CMD} '/^$$' >> ${WRKDIR}/ex.script
|
|
@${ECHO_CMD} "'t, d" >> ${WRKDIR}/ex.script
|
|
@${ECHO_CMD} 'wq!' >> ${WRKDIR}/ex.script
|
|
@cd ${WRKDIR} && ex ${WRKSRC}/site/Makefile < ex.script > /dev/null
|
|
|
|
pre-install:
|
|
@${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
post-build:
|
|
@${FIND} ${WRKSRC} -name "inn.conf" \
|
|
| ${XARGS} ${REINPLACE_CMD} -e 's/^pathhost:.*/pathhost: host.example.com/'
|
|
|
|
post-install:
|
|
.if !defined(WITHOUT_STRIP)
|
|
. for FILE in ${TO_BE_STRIPPED}
|
|
[ -e ${INN_NEWSBASE}/${FILE} ] && ${STRIP_CMD} ${INN_NEWSBASE}/${FILE}
|
|
. endfor
|
|
.endif
|
|
${CHOWN} ${MANOWN}:${MANGRP} ${PREFIX}/man ${PREFIX}/man/man1 ${PREFIX}/man/man3 \
|
|
${PREFIX}/man/man5 ${PREFIX}/man/man8
|
|
${MKDIR} ${INN_NEWSSPOOL}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
. for FILE in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
${MKDIR} ${INN_NEWSBASE}/include
|
|
# XXX .for FILE in ${HEADERS}
|
|
# XXX ${INSTALL_DATA} ${WRKSRC}/include/${FILE} ${INN_NEWSBASE}/include/
|
|
# XXX .endfor
|
|
${CHOWN} ${BINOWN}:news ${INN_NEWSBASE}/bin/auth/passwd/ckpasswd
|
|
${CHMOD} 4755 ${INN_NEWSBASE}/bin/auth/passwd/ckpasswd
|
|
@${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} CHECK-CONF ${INN_ETCDIR}
|
|
@(if [ ! -f ${INN_DBDIR}/history ] ; then \
|
|
${ECHO} 'Creating empty history database...' ; \
|
|
cd ${INN_DBDIR} ; \
|
|
${TOUCH} history ; \
|
|
${CHMOD} 644 history ; \
|
|
${CHOWN} news:news history ; \
|
|
su -fm news -c "${INN_NEWSBASE}/bin/makedbz -i" ; \
|
|
for s in ${DBZ_FILES} ; do \
|
|
${MV} history.n.$${s} history.$${s} ; \
|
|
done ; \
|
|
fi)
|
|
@${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL PORTMODE
|
|
|
|
.include <bsd.port.post.mk>
|