aboutsummaryrefslogtreecommitdiff
path: root/biology
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2005-02-18 13:39:34 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2005-02-18 13:39:34 +0000
commita8944ffbf8abc2ce3f911417bfb6dfa6f7b317f2 (patch)
tree62e0a908e2a1936eb7a00c09db093bd66fae2aad /biology
parentb3ed5741b5d32dc811948b52ea4001b32cd15dfe (diff)
downloadports-a8944ffbf8abc2ce3f911417bfb6dfa6f7b317f2.tar.gz
ports-a8944ffbf8abc2ce3f911417bfb6dfa6f7b317f2.zip
Notes
Diffstat (limited to 'biology')
-rw-r--r--biology/fluctuate/Makefile9
-rw-r--r--biology/fluctuate/distinfo4
-rw-r--r--biology/fluctuate/files/patch-Makefile40
3 files changed, 6 insertions, 47 deletions
diff --git a/biology/fluctuate/Makefile b/biology/fluctuate/Makefile
index 8937be91d48a..b1c30d649c9d 100644
--- a/biology/fluctuate/Makefile
+++ b/biology/fluctuate/Makefile
@@ -6,16 +6,15 @@
#
PORTNAME= fluctuate
-PORTVERSION= 1.30
+PORTVERSION= 1.40
CATEGORIES= biology
-MASTER_SITES= ftp://evolution.genetics.washington.edu/pub/lamarc/
-DISTNAME= ${PORTNAME}
-EXTRACT_SUFX= .tar.Z
+MASTER_SITES= ftp://evolution.genetics.washington.edu/pub/lamarc/fluctuate/
+DISTNAME= ${PORTNAME}1.4.src.doc
MAINTAINER= ports@FreeBSD.org
COMMENT= A program to fit population models
-NO_WRKSUBDIR= yes
+WRKSRC= ${WRKDIR}/${PORTNAME}1.4
ALL_TARGET= ${PORTNAME}
do-install:
diff --git a/biology/fluctuate/distinfo b/biology/fluctuate/distinfo
index fb044970557f..ee35b8d0e246 100644
--- a/biology/fluctuate/distinfo
+++ b/biology/fluctuate/distinfo
@@ -1,2 +1,2 @@
-MD5 (fluctuate.tar.Z) = 86619e6885fdf172b39dd8a7eb814bba
-SIZE (fluctuate.tar.Z) = 113427
+MD5 (fluctuate1.4.src.doc.tar.gz) = e8cd870953e976dd869b4ff5c16881f2
+SIZE (fluctuate1.4.src.doc.tar.gz) = 70690
diff --git a/biology/fluctuate/files/patch-Makefile b/biology/fluctuate/files/patch-Makefile
deleted file mode 100644
index 186784a3e2c5..000000000000
--- a/biology/fluctuate/files/patch-Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
---- Makefile.orig Thu Sep 3 00:56:03 1998
-+++ Makefile Mon Aug 6 15:58:49 2001
-@@ -1,30 +1,28 @@
- LIBS = -lm
- BINDIR = ./bin
--CFLAGS = -O
--CC = cc $(CFLAGS)
-
- fluctuate : fluctuate.o fluc_modellike.o getdata.o plot.o wrap.o \
- coal_modellike.o
-- $(CC) fluctuate.o fluc_modellike.o getdata.o plot.o wrap.o \
-+ $(CC) $(CFLAGS) fluctuate.o fluc_modellike.o getdata.o plot.o wrap.o \
- coal_modellike.o $(LIBS) -o fluctuate
-
- clean :
- rm fluctuate.o fluc_modellike.o coal_modellike.o getdata.o plot.o
-
- fluctuate.o : fluctuate.c
-- $(CC) -c fluctuate.c
-+ $(CC) $(CFLAGS) -c fluctuate.c
-
- fluc_modellike.o : fluc_modellike.c
-- $(CC) -c fluc_modellike.c
-+ $(CC) $(CFLAGS) -c fluc_modellike.c
-
- coal_modellike.o : coal_modellike.c
-- $(CC) -c coal_modellike.c
-+ $(CC) $(CFLAGS) -c coal_modellike.c
-
- getdata.o : getdata.c
-- $(CC) -c getdata.c
-+ $(CC) $(CFLAGS) -c getdata.c
-
- plot.o : plot.c
-- $(CC) -c plot.c
-+ $(CC) $(CFLAGS) -c plot.c
-
- wrap.o : wrap.c
-- $(CC) -c wrap.c
-+ $(CC) $(CFLAGS) -c wrap.c