blob: d3194ee6102f3270852ba3c2ae88fe73d93f2baf (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# New ports collection makefile for: dolly
# Date created: Thu Jul 15 10:01:46 UTC 2004
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= dolly
PORTVERSION= 0.57
CATEGORIES= sysutils net
MASTER_SITES= http://www.cs.inf.ethz.ch/CoPs/patagonia/dolly/
DISTNAME= ${PORTNAME}.${PORTVERSION}
MAINTAINER= lioux@FreeBSD.org
COMMENT= A program to clone harddisks/partitions over a fast switched network
USE_REINPLACE= yes
OPTIONS= BZIP2 "bzip2 instead of gzip for compressing" on \
HIGHEST_COMPRESSION "Highest rather than fastest compression" on
PLIST_FILES= bin/${PORTNAME}
PORTDOCS= README
do-configure:
# C{C,FLAGS} safeness
@${REINPLACE_CMD} -E \
-e 's|^(CC[[:space:]]*=).*$$|\1${CC}|' \
-e 's|^(CFLAGS[[:space:]]*=.*)$$|\1 ${CFLAGS}|' \
${BUILD_WRKSRC}/${MAKEFILE}
do-install:
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
. for file in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}/
. endfor
.endif
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
.include <bsd.port.pre.mk>
# Correctly depend upon bzip2 if necessary
.ifdef(WITH_BZIP2)
. if !exists(/usr/bin/bzip2)
RUN_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2
. endif
EXTRA_PATCHES+= ${FILESDIR}/extra-bzip2-patch-dolly.c
.endif
post-patch:
# fix comment error
@${REINPLACE_CMD} -E \
-e 's|use gzip|use gunzip|' \
${WRKSRC}/dolly.c
# Properly reference bzip2 instead of gzip
.ifdef(WITH_BZIP2)
@${REINPLACE_CMD} -E \
-e 's|/usr/bin/gzip|${BZIP2_CMD}|' \
-e 's|gzip|bzip2|' \
-e 's|/usr/bin/gunzip|${BZCAT}|' \
${WRKSRC}/dolly.c
# Use specific FreeBSD references
# Fix spelling
@${REINPLACE_CMD} -E \
-e 's|gnu-zipped|bzipped|' \
-e 's|sda([[:digit:]])|da\1|g' \
-e 's|/sda|/da|g' \
-e 's|sda_|da_|g' \
-e 's|hypennormal|hyphennormal|' \
${WRKSRC}/README
@${REINPLACE_CMD} -E \
-e 's|gunzip|bzcat|' \
-e 's|\.gz|\.bz2|g' \
${WRKSRC}/*
.endif
# Highest compression possible
.ifdef(WITH_HIGHEST_COMPRESSION)
@${REINPLACE_CMD} -E \
-e 's|-cf|-9cf|' \
${WRKSRC}/dolly.c
.endif
.include <bsd.port.post.mk>
|