aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/weedit/Makefile
blob: c6e0008315889fdf3d615b8498fb9ba2638c8845 (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
# New ports collection makefile for:    weedit
# Date created:             9 Oct 2007
# Whom:                 Emanuel Haupt <ehaupt@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   weedit
PORTVERSION=    2.0.3
CATEGORIES= sysutils
MASTER_SITES=   http://adm1n.cjb.net/cw/ \
        CRITICAL
EXTRACT_SUFX=   .tgz

MAINTAINER= ehaupt@FreeBSD.org
COMMENT=    File duplicate scanner with database support

WRKSRC=     ${WRKDIR}/${PORTNAME}
SRCF=       crc32 dlink weedit md5

PLIST_FILES=    bin/weedit bin/weeditreaddb

do-build:
.for f in ${SRCF}
    ${CC} ${CFLAGS} -c ${WRKSRC}/${f}.c -o ${WRKSRC}/${f}.o
.endfor
    ${CC} ${CFLAGS} ${WRKSRC}/utils/readdb.c -o ${WRKSRC}/weeditreaddb
    ${CC} ${LDFLAGS} -o ${WRKSRC}/${PORTNAME} \
        ${SRCF:C/(.*)/${WRKSRC}\/\1.o/}

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
    ${INSTALL_PROGRAM} ${WRKSRC}/weeditreaddb ${PREFIX}/bin

.include <bsd.port.mk>