aboutsummaryrefslogtreecommitdiffstats
path: root/devel/libcii/Makefile
blob: 7b7027ae69fa5475106c91032bc563810b57b1cb (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# New ports collection makefile for:    libcii
# Date created:     21 April 1998
# Whom:         J Han <hjh@photino.com>
#
# $FreeBSD$
#

PORTNAME=   libcii
PORTVERSION=    1.1
CATEGORIES= devel
MASTER_SITES=   ftp://ftp.cs.princeton.edu/pub/packages/cii/
DISTNAME=   cii11

MAINTAINER= ports@FreeBSD.org
COMMENT=    Library from "C Interfaces and Implementations" by David Hanson

NO_WRKSUBDIR=   yes

MAKEFILE=   makefile
MAKE_ARGS=  CC="${CC}" CFLAGS="${CFLAGS} -DMAXALIGN=8 -Iinclude" \
        AS="${CC} -c -x assembler-with-cpp -traditional" \
        LD="${CC}" LDFLAGS="" EXTRAS="" BUILDDIR=${PKGNAME}
PLIST_SUB=  CIIMAJOR="${CIIMAJOR}"

CIIBUILD=   ${WRKDIR}/${PKGNAME}
CIIMAJOR=   1
CIIDEST=    ${PREFIX}/lib/cii

SAMPLES=    double calc ids mpcalc wf xref cref iref kref \
        idents words basename dirname
I386_SAMPLES=   sort spin sieve

.include <bsd.port.pre.mk>

.if ${ARCH} != "i386"
MAKE_ARGS+= "THREADS="
PLIST_SUB+= NOTI386="@comment "
.else
PLIST_SUB+= NOTI386=""
.endif

post-patch:
.if ${ARCH} != "i386"
.  for i in ${I386_SAMPLES}
    @${REINPLACE_CMD} -e 's/^   *\$$B${i}\$$E *\\\{0,1\}//' \
                      ${WRKSRC}/makefile
.  endfor
.endif

pre-build:
    @${MKDIR} ${CIIBUILD}
    @${MKDIR} ${CIIBUILD}/include
    @${CP} ${WRKDIR}/include/*.h ${CIIBUILD}/include

# ${PREFIX}/lib/cii/${CIIMAJOR}/
# ${PREFIX}/lib/cii/${CIIMAJOR}/include
#
# libcii.a is placed in ${PREFIX}/lib
# .h is placed in   ${PREFIX}/include/cii
#
do-install:
    @${MKDIR} ${CIIDEST}
    @${MKDIR} ${CIIDEST}/${CIIMAJOR}
    @${MKDIR} ${CIIDEST}/${CIIMAJOR}/include
    @${MKDIR} ${CIIDEST}/${CIIMAJOR}/examples
##
    ${INSTALL_DATA} ${CIIBUILD}/libcii.a ${CIIDEST}/${CIIMAJOR}
    ${INSTALL_DATA} ${WRKSRC}/include/*.h ${CIIDEST}/${CIIMAJOR}/include
##
    ${LN} -sf ${CIIDEST}/${CIIMAJOR}/libcii.a ${PREFIX}/lib/libcii.a
    ${LN} -sf ${CIIDEST}/${CIIMAJOR}/include ${PREFIX}/include/cii
##
.for a in ${SAMPLES}
    ${INSTALL_PROGRAM} ${CIIBUILD}/${a} ${CIIDEST}/${CIIMAJOR}/examples
.endfor
.if ${ARCH} == "i386"
.  for a in ${I386_SAMPLES}
    ${INSTALL_PROGRAM} ${CIIBUILD}/${a} ${CIIDEST}/${CIIMAJOR}/examples
.  endfor
.endif
##
.if !defined(NOPORTDOCS)
    @${MKDIR} ${PREFIX}/share/doc/cii
    @${MKDIR} ${PREFIX}/share/doc/cii/examples
    @${MKDIR} ${PREFIX}/share/doc/cii/src
.for f in CPYRIGHT README history.html install.html makefile packing.lst
    ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/cii
.endfor
    ${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/doc/cii/examples
    ${INSTALL_DATA} ${WRKSRC}/src/* ${PREFIX}/share/doc/cii/src
.endif

.include <bsd.port.post.mk>