b7f05445c0
It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
110 lines
4.1 KiB
Makefile
110 lines
4.1 KiB
Makefile
PORTNAME= eggdrop
|
|
DISTVERSION= 1.9.3
|
|
CATEGORIES= irc
|
|
MASTER_SITES= https://github.com/eggheads/${PORTNAME}/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Popular Internet Relay Chat (IRC) bot
|
|
WWW= https://www.eggheads.org/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= tcl ssl
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-tcllib=${LOCALBASE}/lib/libtcl${TCL_SHLIB_VER}.so \
|
|
--with-tclinc=${LOCALBASE}/include/tcl${TCL_VER}/tcl.h \
|
|
--with-sslinc=${OPENSSLINC} \
|
|
--with-ssllib=${OPENSSLLIB}
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${SED} -e 's#%%PREFIX%%#${PREFIX}#g' ${WRKSRC}/eggdrop.conf \
|
|
> ${WRKSRC}/eggdrop.conf.sample
|
|
|
|
post-configure:
|
|
@(cd ${WRKSRC}; ${MAKE} config)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/eggdrop ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/man1/eggdrop.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/eggdrop.conf.sample ${STAGEDIR}${PREFIX}/etc
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/eggdrop
|
|
.for f in assoc.so blowfish.so channels.so compress.so console.so ctcp.so \
|
|
dns.so filesys.so irc.so notes.so seen.so server.so share.so \
|
|
transfer.so uptime.so
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/lib/eggdrop
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/help
|
|
.for f in assoc.mod/help/assoc.help channels.mod/help/chaninfo.help \
|
|
channels.mod/help/channels.help console.mod/help/console.help \
|
|
compress.mod/help/compress.help ctcp.mod/help/ctcp.help \
|
|
filesys.mod/help/filesys.help irc.mod/help/irc.help \
|
|
notes.mod/help/notes.help seen.mod/help/seen.help \
|
|
server.mod/help/server.help share.mod/help/share.help \
|
|
transfer.mod/help/transfer.help uptime.mod/help/uptime.help
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/src/mod/${f} ${STAGEDIR}${DATADIR}/help
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/help/set
|
|
.for f in channels.mod/help/set/channels.help \
|
|
compress.mod/help/set/compress.help \
|
|
console.mod/help/set/console.help ctcp.mod/help/set/ctcp.help \
|
|
filesys.mod/help/set/filesys.help irc.mod/help/set/irc.help \
|
|
notes.mod/help/set/notes.help server.mod/help/set/server.help \
|
|
share.mod/help/set/share.help transfer.mod/help/set/transfer.help
|
|
${INSTALL_DATA} ${WRKSRC}/src/mod/$f ${STAGEDIR}${DATADIR}/help/set
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/help/msg
|
|
.for f in irc.mod/help/msg/irc.help notes.mod/help/msg/notes.help \
|
|
seen.mod/help/msg/seen.help
|
|
${INSTALL_DATA} ${WRKSRC}/src/mod/$f ${STAGEDIR}${DATADIR}/help/msg
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/language
|
|
${INSTALL_DATA} ${WRKSRC}/language/core.*.lang ${STAGEDIR}${DATADIR}/language
|
|
@cd ${WRKSRC}/src/mod \
|
|
&& ${FIND} . -name "*.lang" -exec ${INSTALL_DATA} {} \
|
|
${STAGEDIR}${DATADIR}/language ";"
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/scripts
|
|
.for f in CONTENTS action.fix.tcl autobotchk alltools.tcl botchk \
|
|
cmd_resolve.tcl compat.tcl dccwhois.tcl getops.tcl klined.tcl notes2.tcl ques5.tcl \
|
|
quotepong.tcl sentinel.tcl userinfo.tcl weed
|
|
${INSTALL_DATA} ${WRKSRC}/scripts/${f} ${STAGEDIR}${DATADIR}/scripts
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/scripts/help
|
|
.for f in cmd_resolve.help userinfo.help
|
|
${INSTALL_DATA} ${WRKSRC}/scripts/help/${f} ${STAGEDIR}${DATADIR}/scripts/help
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/scripts/help/msg
|
|
.for f in userinfo.help
|
|
${INSTALL_DATA} ${WRKSRC}/scripts/help/msg/${f} ${STAGEDIR}${DATADIR}/scripts/help/msg
|
|
.endfor
|
|
.for f in cmds1.help cmds2.help core.help
|
|
${INSTALL_DATA} ${WRKSRC}/help/${f} ${STAGEDIR}${DATADIR}/help
|
|
.endfor
|
|
.for f in cmds1.help
|
|
${INSTALL_DATA} ${WRKSRC}/help/set/${f} ${STAGEDIR}${DATADIR}/help/set
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/text
|
|
.for f in banner motd
|
|
${INSTALL_DATA} ${WRKSRC}/text/${f} ${STAGEDIR}${DATADIR}/text
|
|
.endfor
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ABOUT BANS BOTNET BUG-REPORT COMPILE-GUIDE CONTENTS \
|
|
FIRST-SCRIPT MODULES PARTYLINE PATCH-HOWTO \
|
|
TRICKS Changes1.6 USERS \
|
|
tcl-commands.doc
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
|
|
cd ${WRKSRC}/doc/html && ${INSTALL_DATA} *.html ${STAGEDIR}${DOCSDIR}/html
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/settings
|
|
cd ${WRKSRC}/doc/settings && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}/settings
|
|
|
|
.include <bsd.port.mk>
|