mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
201cf12ad8
Hat: portmgr
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# New ports collection makefile for: gshar+gunshar
|
|
# Date created: 28 Dec 1994
|
|
# Whom: ache
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sharutils
|
|
PORTVERSION= 4.6.3
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/REL-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Pack, send and unpack shell archives; synchronize via e-mail
|
|
|
|
USE_PERL5= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-prefix=g --disable-uucode
|
|
INSTALL_TARGET= install install-man
|
|
MAN1= gshar.1 gunshar.1 gcompress-dummy.1
|
|
INFO= sharutils
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
PLIST_SUB+= NLS="@comment "
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
.else
|
|
PLIST_SUB+= NLS=""
|
|
USE_GETTEXT= yes
|
|
CONFIGURE_ARGS+=--with-libintl-prefix="${LOCALBASE}"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|@SH@|${SH}|' \
|
|
${WRKSRC}/src/mail-files.in ${WRKSRC}/src/mailshar.in
|
|
@${REINPLACE_CMD} -e 's|@PERL@|${PERL}|' ${WRKSRC}/src/remsync.in
|
|
@${FIND} ${WRKSRC} -name \*.c -or -name \*.h | ${XARGS} \
|
|
${REINPLACE_CMD} -e 's|uintmax_t|unsigned long long|;s|intmax_t|long long|'
|
|
|
|
.include <bsd.port.mk>
|