mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
60 lines
1.2 KiB
Makefile
60 lines
1.2 KiB
Makefile
# New ports collection makefile for: gshar+gunshar
|
|
# Date created: 28 Dec 1994
|
|
# Whom: ache
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sharutils
|
|
PORTVERSION= 4.11.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Pack, send and unpack shell archives; synchronize via e-mail
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_BZIP2= 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
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
PLIST_SUB+= NLS=""
|
|
USE_GETTEXT= yes
|
|
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>
|