2000-07-10 03:25:48 +00:00
|
|
|
# New ports collection makefile for: phylip
|
|
|
|
# Date created: 4 July 2000
|
|
|
|
# Whom: dbader@eece.unm.edu
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= phylip
|
2008-06-03 23:31:14 +00:00
|
|
|
PORTVERSION= 3.67
|
2008-06-09 13:01:30 +00:00
|
|
|
PORTREVISION= 1
|
2006-02-09 01:17:59 +00:00
|
|
|
PORTEPOCH= 1
|
2000-07-10 03:25:48 +00:00
|
|
|
CATEGORIES= biology
|
2004-12-09 13:33:55 +00:00
|
|
|
MASTER_SITES= ftp://evolution.genetics.washington.edu/pub/phylip/ \
|
|
|
|
http://bioinformatics.weizmann.ac.il/software/linkage_and_mapping/phylip/ \
|
|
|
|
${MASTER_SITE_GENTOO}
|
|
|
|
MASTER_SITE_SUBDIR= distfiles
|
2000-07-10 03:25:48 +00:00
|
|
|
|
2006-12-13 13:20:20 +00:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-02-21 11:08:38 +00:00
|
|
|
COMMENT= A Phylogeny Inference Package
|
2000-07-10 03:25:48 +00:00
|
|
|
|
2008-06-09 13:01:30 +00:00
|
|
|
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
|
|
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 17:56:05 +00:00
|
|
|
USE_XORG= x11 xaw xt
|
2008-06-03 23:31:14 +00:00
|
|
|
USE_GMAKE= yes
|
2001-08-22 10:02:27 +00:00
|
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
2008-06-03 23:31:14 +00:00
|
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
2000-07-10 03:25:48 +00:00
|
|
|
|
2002-08-13 16:07:45 +00:00
|
|
|
MAKE_ARGS= CC="${CC} ${CFLAGS}" \
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 17:56:05 +00:00
|
|
|
DC="${CC} -DX -I${LOCALBASE}/include ${CFLAGS}" \
|
|
|
|
DLIBS="-L${LOCALBASE}/lib -lX11 -lXaw -lXt"
|
2002-08-13 16:07:45 +00:00
|
|
|
|
2006-02-08 14:45:45 +00:00
|
|
|
PORTDOCS= *
|
2000-07-10 03:25:48 +00:00
|
|
|
|
2008-06-03 23:31:14 +00:00
|
|
|
post-install:
|
2006-02-08 14:45:45 +00:00
|
|
|
@cd ${WRKSRC}/exe && \
|
|
|
|
${FIND} . -not -type d -not -name 'font*' -exec ${INSTALL_PROGRAM} "{}" "${PREFIX}/bin/{}" \;
|
2004-10-11 22:26:34 +00:00
|
|
|
${MKDIR} ${DATADIR}
|
2006-02-08 14:45:45 +00:00
|
|
|
@cd ${WRKSRC}/exe && \
|
|
|
|
${FIND} . -not -type d -name 'font*' -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \;
|
2000-07-10 03:25:48 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
2001-08-22 10:02:27 +00:00
|
|
|
${MKDIR} ${DOCSDIR}
|
2006-02-08 14:45:45 +00:00
|
|
|
@cd ${WRKSRC}/doc && \
|
|
|
|
${FIND} . -not -type d -exec ${INSTALL_DATA} "{}" "${DOCSDIR}/{}" \;
|
2000-07-10 03:25:48 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|