aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/uml2svg/Makefile
blob: d5e5c02b6c2b912121097cdc50f1a9b644d94b65 (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:   uml2svg
# Date created:        22 January 2009
# Whom:                Gabor Kovesdan <gabor@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   uml2svg
PORTVERSION=    0.18
CATEGORIES= textproc
MASTER_SITES=   SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

MAINTAINER= ports@FreeBSD.org
COMMENT=    XSL stylesheets to convert UML to SVG

NO_BUILD=   yes

INSTDIR=    share/xsl/uml2svg

.include <bsd.port.pre.mk>

do-install:
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    (cd ${WRKSRC}/doc && ${TAR} -cf - . |\
        ${TAR} -xf - -C${DOCSDIR})
.endif
    ${MKDIR} ${PREFIX}/${INSTDIR}/xsl
    dirs=$$(${FIND} ${WRKSRC}/src/xsl -type d | ${SED} 's|^${WRKSRC}/src/xsl||g'); \
    for d in $${dirs}; do \
        files=$$(${FIND} ${WRKSRC}/src/xsl/$${d} -type f); \
        ${MKDIR} ${PREFIX}/${INSTDIR}/xsl/$${d}; \
        for i in $${files}; do \
            ${INSTALL_DATA} $${i} ${PREFIX}/${INSTDIR}/xsl/$${d}; \
            done; \
        done; \
        files=$$(${FIND} ${WRKSRC}/src/xsl -type f -depth 1); \
        for i in $${files}; do \
            ${INSTALL_DATA} $${i} ${PREFIX}/${INSTDIR}/xsl/; \
    done
    ${INSTALL_DATA} ${WRKSRC}/src/uml2svg.xsl ${PREFIX}/${INSTDIR}/

plist:
    ${FIND} ${PREFIX}/${INSTDIR} -type f | ${SED} 's|${PREFIX}/||g' | ${SORT} >${PLIST}
    ${FIND} ${PREFIX}/${INSTDIR} -type d | ${SORT} -r | ${SED} -e 's|${PREFIX}/||g' -e 's|^|@dirrm |g' >>${PLIST}
    ${FIND} ${DOCSDIR} -type f | ${SED} 's|${DOCSDIR}/|%%PORTDOCS%%%%DOCSDIR%%/|g' | ${SORT} >>${PLIST}
    ${FIND} ${DOCSDIR} -type d | ${SORT} -r | ${SED} 's|${DOCSDIR}/|%%PORTDOCS%%@dirrm %%DOCSDIR%%/|g' >>${PLIST}

.include <bsd.port.post.mk>