diff options
Diffstat (limited to 'biology/belvu/Makefile')
-rw-r--r-- | biology/belvu/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/biology/belvu/Makefile b/biology/belvu/Makefile new file mode 100644 index 000000000000..bb24d2f600af --- /dev/null +++ b/biology/belvu/Makefile @@ -0,0 +1,38 @@ +# ex:ts=8 +# New ports collection makefile for: belvu +# Date created: 11 Jan 2006 +# Whom: Fernan Aguero <fernan@iib.unsam.edu.ar> +# +# $FreeBSD$ +# + +PORTNAME= belvu +PORTVERSION= 2.29 +CATEGORIES= biology +MASTER_SITES= ftp://ftp.cgb.ki.se/pub/prog/belvu/ +DISTNAME= ${PORTNAME}.LIN_${PORTVERSION} +EXTRACT_SUFX= # +EXTRACT_ONLY= # + +MAINTAINER= fernan@iib.unsam.edu.ar +COMMENT= A viewer for multiple sequence alignments + +USE_LINUX= yes + +NO_BUILD= yes +PLIST_FILES= bin/${PORTNAME} bin/${DISTNAME} + +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +IGNORE= there are also executables for Alpha and Sparc \ + but they are for OSF and Solaris ... do they \ + run on FreeBSD-Sparc and FreeBSD-alpha? +.endif + +do-install: + ${BRANDELF} -t Linux ${DISTDIR}/${DISTNAME} + ${INSTALL_PROGRAM} ${DISTDIR}/${DISTNAME} ${PREFIX}/bin + ( cd ${PREFIX}/bin && ${LN} -s ${DISTNAME} ${PORTNAME} ) + +.include <bsd.port.post.mk> |