aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/fldiff/Makefile
blob: c6d4e9e77af73229007e3e9adf5f42ef8f171210 (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
# Created by: Emanuel Haupt <ehaupt@critical.ch>
# $FreeBSD$

PORTNAME=   fldiff
PORTVERSION=    1.1
PORTREVISION=   8
CATEGORIES= textproc
MASTER_SITES=   http://www.easysw.com/~mike/fldiff/ \
        CRITICAL
DISTNAME=   ${PORTNAME}-${PORTVERSION}-source

MAINTAINER= ehaupt@FreeBSD.org
COMMENT=    Graphical diff program using FLTK

LICENSE=    GPLv2

LIB_DEPENDS=    fltk:${PORTSDIR}/x11-toolkits/fltk

GNU_CONFIGURE=  yes

WRKSRC=     ${WRKDIR}/${PORTNAME}-${PORTVERSION}

MAN1=       fldiff.1
PORTDOCS=   index.html fldiff.jpg

OPTIONS_DEFINE= DOCS

NO_STAGE=   yes
.include <bsd.port.options.mk>

post-patch:
    @${REINPLACE_CMD} -e 's|@OPTIM@||' ${WRKSRC}/Makefile.in
    @${REINPLACE_CMD} -e 's|=Development|=Application;Development;|' \
        ${WRKSRC}/fldiff.desktop

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/fldiff ${PREFIX}/bin
    ${INSTALL_MAN} ${WRKSRC}/fldiff.man ${MAN1PREFIX}/man/man1/fldiff.1
    ${MKDIR} ${PREFIX}/share/applications
    ${INSTALL_DATA} ${WRKSRC}/fldiff.desktop ${PREFIX}/share/applications
    ${MKDIR} ${PREFIX}/share/pixmaps
    ${INSTALL_DATA} ${WRKSRC}/fldiff.png ${PREFIX}/share/pixmaps
.if ${PORT_OPTIONS:MDOCS}
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif

.include <bsd.port.mk>