aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/fdupes/Makefile
blob: 9758f20f9ac637074d4b4ed4b642affb88c83e62 (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
# New ports collection makefile for:    fdupes
# Date created:             27 December 2004
# Whom:                 Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#

PORTNAME=   fdupes
PORTVERSION=    1.40
CATEGORIES= sysutils
MASTER_SITES=   http://netdial.caribe.net/~adrian2/programs/

MAINTAINER= ehaupt@critical.ch
COMMENT=    Fdupes is a program for identifying or deleting duplicate files

USE_GETOPT_LONG=    yes

MAN1=       fdupes.1
PLIST_FILES=    bin/fdupes

.include <bsd.port.pre.mk>

CFLAGS+=    -DHAVE_DECL_GETOPT

do-build:
.if ${OSVERSION} < 500041
    ${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c ${WRKSRC}/md5/md5.c -o ${WRKSRC}/${PORTNAME} -DVERSION=\"${PORTVERSION}\" -I${LOCALBASE}/include ${LOCALBASE}/lib/libgnugetopt.so
.else
    ${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c ${WRKSRC}/md5/md5.c -o ${WRKSRC}/${PORTNAME} -DVERSION=\"${PORTVERSION}\"
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
    ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1

.include <bsd.port.post.mk>