aboutsummaryrefslogtreecommitdiffstats
path: root/biology/nab/Makefile
blob: 1496ea23f8d9986f5f807f71fabdaa930072edd9 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# New ports collection Makefile for: nab
# Date created:         Sept. 10, 2000
# Whom:                 M. L. Dodson <bdodson@scms.utmb.edu>
#
# $FreeBSD$
#

PORTNAME=   nab
PORTVERSION=    4.4
CATEGORIES= biology
MASTER_SITES=   ftp://ftp.scripps.edu/pub/case/ \
        http://www.scripps.edu/case/

MAINTAINER= bdodson@scms.utmb.edu

MAKE_ENV+=  NABHOME=${WRKSRC} ARCH= PATH=${WRKSRC}/bin:${PATH}

USE_BISON=  yes
MAN1=       nab.1
MANCOMPRESSED=  yes

BINARIES=   matextract      matmul          teLeap          tss_main \
        matgen          nab             transform       tss_next \
        matmerge        nab2c           tss_init        ucpp

LIBRARIES=  cifparse.a      libnab.a        libsym.a

INCS=   defreal.h       nab.h           nabcode.h       nabtypes.h

post-extract:
    @${CP} ${FILESDIR}/config.h ${WRKSRC}

pre-patch:
    @${PERL} -pi -e 's,<malloc.h>,<stdlib.h>,' \
        ${WRKSRC}/cifparse/cifparse.c

post-patch:
    @rm -f ${WRKSRC}/examples/program_7.nab.orig

pre-install:
    @cd ${WRKSRC}/src && \
        ${SETENV} PREFIX=${PREFIX} ${MAKE} beforerealinstall

do-install:
    @-mkdir -p ${PREFIX}/share/nab
    @-mkdir -p ${PREFIX}/share/nab/bin
    @-mkdir -p ${PREFIX}/share/nab/include
    @-mkdir -p ${PREFIX}/share/nab/lib
.if !defined(NOPORTDOCS)
    @cd ${WRKSRC} && (tar cf - examples test peptide suppose | \
        (cd ${PREFIX}/share/nab; tar xf -))
    @-mkdir -p ${PREFIX}/share/doc/nab
    ${INSTALL_MAN} ${WRKSRC}/doc/NAB.pdf ${PREFIX}/share/doc/nab
.endif
    @cd ${WRKSRC} && (tar cf - dgdb reslib fd_data | \
        (cd ${PREFIX}/share/nab; tar xf -))
    @(cd ${PREFIX}/share; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} nab; \
        ${CHMOD} -R ugo+rX-w nab)
    @-(cd ${PREFIX}/share/nab && ${LN} -sf ../NDB coords)
    ${INSTALL_PROGRAM} ${WRKSRC}/bin/*     ${PREFIX}/bin
    ${INSTALL_DATA}    ${WRKSRC}/include/* ${PREFIX}/include
    ${INSTALL_DATA} ${WRKSRC}/lib/*     ${PREFIX}/lib
    @-cd ${WRKSRC}/doc && ${GZIP_CMD} ${MAN1}
    ${INSTALL_MAN} ${WRKSRC}/doc/nab.1.gz ${PREFIX}/man/man1
.for f in ${BINARIES}
    @cd ${PREFIX}/share/nab/bin && ${LN} -sf ../../../bin/${f} .
.endfor
.for f in ${LIBRARIES}
    @cd ${PREFIX}/share/nab/lib && ${LN} -sf ../../../lib/${f} .
.endfor
.for f in ${INCS}
    @cd ${PREFIX}/share/nab/include && ${LN} -sf ../../../include/${f} .
.endfor

post-install:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>