freebsd-ports/biology/linux-foldingathome/Makefile
Edwin Groothuis e713c30f0c biology/linux-foldingathome needs to run as root?
(also: update to 5.0.4)

	Upon installing FoldingAtHome I ran the software from a
	user account only to find that I was stuck in a loop of
	trying to enter configuration options. Shortly thereafter
	I realized that it was trying to write to
	/usr/local/share/foldingathome, and therefore requires being
	run as root to write there unless one changes permissions
	there. Seing as this isn't installed with a startup script
	for daemonization, and running as root seems a little
	excessive for this application, should this be adapted to
	run from a user account or set up to be able to start at
	boot?

And from maintainer:

	This diff updates the port to version 5.04, and adds
	support to running as normal user using ~/.fah
	directory.

PR:		ports/113335
Submitted by:	James Snyder <jbsnyder@fanplastic.org>
Approved by:	maintainer
2007-09-23 05:45:41 +00:00

43 lines
1.1 KiB
Makefile

# Ports collection makefile for: foldingathome
# Date created: 2/8/2006
# Whom: Yonatan <onatan@gmail.com>
#
# $FreeBSD$
#
PORTNAME= foldingathome
PORTVERSION= 5.04
CATEGORIES= biology
MASTER_SITES= http://www.stanford.edu/group/pandegroup/release/
PKGNAMEPREFIX= linux-
DISTNAME= FAH${PORTVERSION:S/.//}-Linux
EXTRACT_SUFX= .exe
MAINTAINER= onatan@gmail.com
COMMENT= Distributed client for Protein Folding
USE_LINUX= yes
ONLY_FOR_ARCHS= i386 amd64
REINPLACE_ARGS=
PLIST_FILES= share/${PORTNAME}/${DISTNAME}${EXTRACT_SUFX} \
bin/FoldingAtHome
PLIST_DIRS= share/${PORTNAME}
do-extract:
${MKDIR} ${WRKSRC}
${CP} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${WRKSRC}
do-build:
${BRANDELF} -t Linux ${WRKSRC}/${DISTNAME}${EXTRACT_SUFX}
${CHMOD} 755 ${WRKSRC}/${DISTNAME}${EXTRACT_SUFX}
do-install:
${MKDIR} ${PREFIX}/bin
${REINPLACE_CMD} -e "s|DATADIR|${DATADIR}|" ${SCRIPTDIR}/FoldingAtHome \
| ${REINPLACE_CMD} -e "s|BINNAME|${DISTNAME}${EXTRACT_SUFX}|" \
> ${PREFIX}/bin/FoldingAtHome
${CHMOD} 755 ${PREFIX}/bin/FoldingAtHome
${MKDIR} ${DATADIR}
${CP} ${WRKSRC}/${DISTNAME}${EXTRACT_SUFX} ${DATADIR}/
.include <bsd.port.mk>