aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/sharutils/Makefile
blob: e50d31676234351aea11d525883b59c69b549d17 (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
# Created by: ache
# $FreeBSD$

PORTNAME=   sharutils
PORTVERSION=    4.13.5
CATEGORIES= archivers
MASTER_SITES=   GNU

MAINTAINER= garga@FreeBSD.org
COMMENT=    Pack, send, and unpack shell archives; synchronize via e-mail

LICENSE=    GPLv3

OPTIONS_DEFINE= NLS

USE_XZ=     yes
USE_PERL5=  yes
GNU_CONFIGURE=  yes
MAKE_JOBS_SAFE= yes
CONFIGURE_ARGS= --program-prefix=g --disable-uucode
INSTALL_TARGET= install install-man
MAN1=       gshar.1 gunshar.1
INFO=       sharutils
USES=       charsetfix

.include <bsd.port.pre.mk>

.if ${PORT_OPTIONS:MNLS}
PLIST_SUB+= NLS=""
USES+=      gettext
CONFIGURE_ARGS+=--with-libintl-prefix="${LOCALBASE}"
.else
PLIST_SUB+= NLS="@comment "
CONFIGURE_ARGS+=--disable-nls
.endif

post-patch:
.for man in shar.1 unshar.1
    @${REINPLACE_CMD} \
        -e 's, SHAR , GSHAR ,' \
        -e 's,Shar,Gshar,' \
        -e 's, shar , gshar ,g' \
        -e 's,^shar ,gshar ,' \
        -e 's, UNSHAR , GUNSHAR ,' \
        -e 's,Unshar,Gunshar,' \
        -e 's,^unshar ,gunshar ,' \
        -e 's,f2shar\\f1,f2gshar\\f1,' \
        -e 's, unshar , gunshar ,g' \
        -e 's,gshar file,shar file,g' \
        -e 's,shar\,,gshar\,,' \
        -e 's,shar(,gshar(,' \
        -e 's,unshar(,gunshar(,' \
        -e 's, shar\$$, gshar,' \
        ${WRKSRC}/doc/${man}
.endfor

.include <bsd.port.post.mk>