1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

Fix leftovers by using USES=charsetfix

Remove now useless pre-configure target
While here convert NOPORTDOCS to DOCS option

Reported by:	pointyhat via miwi
Approved by:	portmgr (implicit)
This commit is contained in:
Baptiste Daroussin 2013-04-05 09:22:10 +00:00
parent 2088f09500
commit bc7369ffcd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=315731

View File

@ -11,6 +11,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= gabor@FreeBSD.org
COMMENT= Compression utility designed to be a replacement for compress
USES= charsetfix
GNU_CONFIGURE= yes
MAN1= gunzip.1 gzexe.1 gzip.1 zcat.1 zcmp.1 zdiff.1 zforce.1 \
@ -20,27 +21,22 @@ INFO= gzip
DOC_FILES= AUTHORS COPYING ChangeLog ChangeLog-2007 INSTALL NEWS README \
THANKS TODO
OPTIONS_DEFINE= RSYNCABLE
OPTIONS_DEFINE= RSYNCABLE DOCS
OPTIONS_DEFAULT= RSYNCABLE
RSYNCABLE_DESC= Include --rsyncable patch
.include <bsd.port.pre.mk>
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MRSYNCABLE}
EXTRA_PATCHES= ${FILESDIR}/extra-patch-gzip-rsyncable.diff
.endif
post-configure:
@${REINPLACE_CMD} -e 's|^SHELL =.*|SHELL=/bin/sh|' ${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's|need_charset_alias=true|need_charset_alias=false|g' \
${WRKSRC}/lib/Makefile.in
post-install:
.if !defined(NOPORTDOCS)
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>