freebsd-ports/biology/cytoscape/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

59 lines
2.4 KiB
Makefile

PORTNAME= cytoscape
DISTVERSION= 3.6.1
CATEGORIES= biology java
MASTER_SITES= LOCAL/yuri/:maven \
http://people.freebsd.org/~yuri/:maven
DISTFILES= FreeBSD-${PORTNAME}-${PORTVERSION}-maven-repository.tar.gz:maven
MAINTAINER= yuri@FreeBSD.org
COMMENT= Software to visualize molecular interaction networks, gene expression
WWW= https://www.cytoscape.org
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/api/LICENSE
BROKEN= fails to build: Cytoscape Third-Party Dependencies (third-party): FAILURE
BUILD_DEPENDS= mvn:devel/maven \
bash:shells/bash
RUN_DEPENDS= bash:shells/bash
USES= shebangfix
SHEBANG_FILES= gui-distribution/assembly/src/main/bin/cytoscape.sh
USE_JAVA= yes
USE_GITHUB= yes
GH_TUPLE= ${PORTNAME}:${PORTNAME}-parent:${DISTVERSION}:p/parent \
${PORTNAME}:${PORTNAME}-api:${DISTVERSION}:a/api \
${PORTNAME}:${PORTNAME}-impl:${DISTVERSION}:i/impl \
${PORTNAME}:${PORTNAME}-support:${DISTVERSION}:s/support \
${PORTNAME}:${PORTNAME}-gui-distribution:${DISTVERSION}:g/gui-distribution \
${PORTNAME}:${PORTNAME}-app-template:${DISTVERSION}:d/app-developer
NO_ARCH= yes
USER_WRKDIR= ~/.${PORTNAME}
do-build:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
${LOCALBASE}/bin/mvn --offline \
-fae install \
-Dmaven.test.skip=true \
-Duser.home=${WRKDIR}
do-install:
@cd ${WRKSRC} && ${COPYTREE_SHARE} gui-distribution ${STAGEDIR}${DATADIR}
# shouldn't be needed, but the executable bit sometimes isn't set
@${CHMOD} +x ${STAGEDIR}${DATADIR}/gui-distribution/assembly/target/cytoscape/cytoscape.sh
@${CHMOD} +x ${STAGEDIR}${DATADIR}/gui-distribution/assembly/target/cytoscape/framework/bin/karaf
# create a shell executable calling the real command
@(echo "#!/bin/sh"; \
echo ""; \
echo "cd ${DATADIR} && JAVA_HOME=${JAVA_HOME} ./gui-distribution/assembly/target/cytoscape/cytoscape.sh \"$@\"" \
) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
@${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
# redirect user data to /tmp until they fix the location so that it would write under $HOME
@${RM} -r ${STAGEDIR}${DATADIR}/gui-distribution/assembly/target/cytoscape/framework/instances
@cd ${STAGEDIR}${DATADIR}/gui-distribution/assembly/target/cytoscape/framework && ${LN} -s /tmp instances
# use the automatic plist: a few hundred files are under DATADIR
@${SETENV} ${CO_ENV} ${SH} ${SCRIPTSDIR}/check-stagedir.sh makeplist | ${GREP} -v ^\/ | ${SED} -e 's|%%DATADIR%%|share/${PORTNAME}|' > ${TMPPLIST}
.include <bsd.port.mk>