blob: da6f3811f208cafcffc8c2c978dbc5abe21e2b68 (
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
|
# Created by: Cosmin Stroe <cstroe1@uic.edu>
# $FreeBSD$
PORTNAME= zidrav
PORTVERSION= 1.2.0
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}4unix/${PORTVERSION}
DISTNAME= zidrav4unix-${PORTVERSION}
MAINTAINER= dinoex@FreeBSD.org
COMMENT= File corruption detection and repair program
LICENSE= GPLv2
ALL_TARGET= zidrav
PLIST_FILES= bin/zidrav man/man1/zidrav.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/zidrav ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/zidrav.1 ${STAGEDIR}${PREFIX}/man/man1/
.include <bsd.port.options.mk>
.if ${ARCH} == "i386"
CFLAGS+= -Dcrc32_type=long
.else
CFLAGS+= -Dcrc32_type=int
.endif
.if ${ARCH} == "amd64" || ${ARCH} == "arm" || ${ARCH} == "i386" || ${ARCH} == "ia64"
.else
# mips*eb, powerpc, powerpc64 and sparc
CFLAGS+= -DCPU_BIGENDIAN
.endif
.include <bsd.port.mk>
|