1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/deskutils/plans/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
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)
2022-09-07 23:10:59 +02:00

65 lines
1.7 KiB
Makefile

PORTNAME= plans
PORTVERSION= 8.2.1
PORTREVISION= 3
CATEGORIES= deskutils www
MASTER_SITES= http://www.planscalendar.com/release/:plans \
http://www.planscalendar.com/addons/:addons \
http://www.freebsd.org/gifs/:logo
DISTNAME= ${PORTNAME}_${DISTVERSION}
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:plans \
cz_czech.pl:addons \
danish.pl:addons \
nl_dutch.pl:addons \
fr_french.pl:addons \
de_german.pl:addons \
it_italian.pl:addons \
sp_spanish.pl:addons \
zh_tw.pl:addons \
powerani.gif:logo
DIST_SUBDIR= ${PORTNAME}
EXTRACT_ONLY= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Good Web Calendar
WWW= http://www.planscalendar.com/
LICENSE= GPLv2
BUILD_DEPENDS= p5-CGI-Session>=0:www/p5-CGI-Session
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5 shebangfix zip
USE_PERL5= run
SHEBANG_FILES= email_reminders.cgi plans.cgi plans_check.cgi upcoming_events.cgi
NO_BUILD= yes
NO_ARCH= yes
SHAREOWN= ${WWWOWN}
SHAREGRP= ${WWWGRP}
SHAREMODE= 644
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION}
SUB_FILES= pkg-message
post-extract:
@${CP} ${_DISTDIR}/powerani.gif ${WRKSRC}/theme/graphics/freebsd.gif
@${CP} ${_DISTDIR}/*.pl ${WRKSRC}/
@${RM} -r ${WRKSRC}/theme/us_english.pl
@for i in ${WRKSRC}/data/*xml ${WRKSRC}/*config.pl;\
do ${MV} $$i $$i.sample; done
@${SED} -e 's/iso-8859-1/utf-8/' ${WRKSRC}/us_english.pl >\
${WRKSRC}/us_english_utf8.pl
@${TOUCH} ${WRKSRC}/theme/ical/.keep_me
post-patch:
@${RM} ${WRKSRC}/theme/plans.template.orig
do-install:
@${MKDIR} ${STAGEDIR}${WWWDIR}
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
@${FIND} ${STAGEDIR}${WWWDIR} -name '*.cgi' -exec ${CHMOD} 755 {} \;
@${FIND} ${STAGEDIR}${WWWDIR} -name '*.xml.sample' -exec ${CHMOD} 664 {} \;
.include <bsd.port.mk>