aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/Uses/dos2unix.mk
blob: a6c9994cdb15721e6cc3983b462e3c1d3724397f (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
# $FreeBSD$
#
# Provide support to convert files from dos2unix
#
# DOS2UNIX_REGEX    a regular expression to match files that needs to be converted
# DOS2UNIX_FILES    list of files of glob pattern relative to ${WRKSRC}
# DOS2UNIX_GLOB     list of glob pattern find(1) will match with
#
# MAINTAINER: portmgr@FreeBSD.org

.if !defined(_INCLUDE_USES_DOS2UNIX_MK)
_INCLUDE_USES_DOS2UNIX_MK=  yes

.if !defined(DOS2UNIX_FILES) && !defined(DOS2UNIX_REGEX) && !defined(DOS2UNIX_GLOB)
_DOS2UNIX_ALL=  yes
.endif

dos2unix:
    @${ECHO_MSG} "===>   Converting DOS text files to UNIX text files"
.if defined(_DOS2UNIX_ALL)
    @${FIND} ${WRKSRC} -type f -print0 | \
        ${XARGS} -0 ${SED} -i '' -e 's/
$$//'
.else
.if defined(DOS2UNIX_FILES)
    @(cd ${WRKSRC}; \
        ${ECHO_CMD} ${DOS2UNIX_FILES} | ${XARGS} ${SED} -i '' -e 's/
$$//' )
.elif defined(DOS2UNIX_REGEX)
    @${FIND} -E ${WRKSRC} -type f -iregex '${DOS2UNIX_REGEX}' -print0 | \
        ${XARGS} -0 ${SED} -i '' -e 's/
$$//'
.else
.for f in ${DOS2UNIX_GLOB}
    @${FIND} ${WRKSRC} -type f -name '${f}' -print0 | \
        ${XARGS} -0 ${SED} -i '' -e 's/
$$//'
.endfor
.endif
.endif

.endif