3bd7624c84
* POSIX-ism: they have determined that uudecode is not expected to exit failure when the output file mode cannot be changed. Either POSIXLY_CORRECT or --ignore-chmod will cause uudecode to behave this way. * output file names may be encoded in the uuencoded file. By specifying '--encode' on the command line, the output file name will be base64 encoded in the uuencode file.
41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.50 2013/07/21 09:03:19 shattered Exp $
|
|
|
|
DISTNAME= sharutils-4.13.4
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=sharutils/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/sharutils/sharutils.html
|
|
COMMENT= Allow packing and unpacking of shell archives
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
AUTO_MKDIRS= yes
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
INSTALL_TARGET= install install-man
|
|
INFO_FILES= yes
|
|
USE_TOOLS+= makeinfo msgfmt sh:run
|
|
|
|
CONFIGURE_ARGS+= --disable-uucode
|
|
CONFIGURE_ENV+= SH=${TOOLS_SH}
|
|
|
|
CONFIGURE_ARGS+= --program-prefix=g
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
pre-install:
|
|
${RM} -f ${DESTDIR}${PREFIX}/lib/charset.alias
|
|
|
|
post-install:
|
|
.for f in shar unshar
|
|
${LN} -sf ${PREFIX}/bin/g${f} ${DESTDIR}${PREFIX}/${PKGGNUDIR}bin/${f}
|
|
${LN} -sf ${PREFIX}/${PKGMANDIR}/man1/g${f}.1 ${DESTDIR}${PREFIX}/${PKGGNUDIR}${PKGMANDIR}/man1/${f}.1
|
|
.endfor
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|