aboutsummaryrefslogtreecommitdiffstats
path: root/devel/cvsgraph/Makefile
blob: 1798b239670e3bca47292fe8313d6e5b7dcdd190 (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
# New ports collection makefile for:    cvsgraph
# Date created:             2001-02-21
# Whom:                 trevor
#
# $FreeBSD$
#

PORTNAME=   cvsgraph
PORTVERSION=    1.0.0
CATEGORIES= devel graphics
MASTER_SITES=   http://www.akhphd.au.dk/~bertho/cvsgraph/

MAINTAINER= trevor@FreeBSD.org

BUILD_DEPENDS=  bison:${PORTSDIR}/devel/bison
LIB_DEPENDS=    gd.1:${PORTSDIR}/graphics/gd \
        jpeg.9:${PORTSDIR}/graphics/jpeg \
        png.4:${PORTSDIR}/graphics/png

ALL_TARGET= cvsgraph
DOCDIR=     share/doc/${PORTNAME}
DOCS=       LICENCE README
PLIST=      ${WRKDIR}/pkg-plist

pre-install:
    ${ECHO} bin/cvsgraph > ${PLIST}
    ${ECHO} etc/cvsgraph.conf >> ${PLIST}
.if !defined(NOPORTDOCS)
.for i in ${DOCS}
    ${ECHO} ${DOCDIR}/${i} >> ${PLIST}
.endfor
    ${ECHO} @dirrm ${DOCDIR} >> ${PLIST}
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
    ${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf ${PREFIX}/etc
.if !defined(NOPORTDOCS)
    ${MKDIR} ${PREFIX}/${DOCDIR}
.for i in ${DOCS}
    ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${DOCDIR}
.endfor
.endif

.include <bsd.port.mk>