blob: 9298ff20dd6c063b9dda698e39140c1beaaef5c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# New ports collection makefile for: NCBI
# Date created: 03 April 2000
# Whom: tonym
#
# $FreeBSD$
#
PORTNAME= ncbi-toolkit
PORTVERSION= 2003.04.21
CATEGORIES= biology
MASTER_SITES= ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools/old/${PORTVERSION:S/.//g}/
DISTNAME= ncbi
MAINTAINER= tonym@biolateral.com.au
COMMENT= NCBI development toolkit, including BLAST 2 and GenBank/Entrez support
USE_MOTIF= yes
#
# In the files directory we have:
#
DUMMYMAKE= Makefile
DOCDIR= ${PREFIX}/share/doc/${PORTNAME}
CPIO= cpio --quiet -pdum -R
#
# Thus ends the definitions.
#
# Now we need a dummy top level Makefile as NCBI has scripts that need to
# run from point above ncbi hierachy.
#
pre-configure:
@${CP} ${FILESDIR}/${DUMMYMAKE} ${WRKSRC}
post-install:
@${MKDIR} ${DATADIR}
@for file in ${WRKSRC}/data/*; do \
${INSTALL_DATA} $$file ${DATADIR}; \
done
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCDIR}
@cd ${WRKSRC}/doc && find * | \
${CPIO} ${SHAREOWN}:${SHAREGRP} ${DOCDIR}
.endif
@${SED} -e "s#%%PREFIX%%#${PREFIX}#" ${PKGMESSAGE}
.include <bsd.port.mk>
|