mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
43 lines
958 B
Makefile
43 lines
958 B
Makefile
# New ports collection makefile for: icoutils
|
|
# Date created: Sun Jun 12 10:19:46 UTC 2005
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= icoutils
|
|
PORTVERSION= 0.26.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Convert/extract images in Microsoft Windows(R) icon/cursor files
|
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
|
|
|
USE_GETTEXT= yes
|
|
USE_PERL5_RUN= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
LIBS="-lintl"
|
|
|
|
MAN1= extresso.1 genresscript.1 icotool.1 wrestool.1
|
|
|
|
PLIST_FILES= \
|
|
bin/extresso \
|
|
bin/genresscript \
|
|
bin/icotool \
|
|
bin/wrestool
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -type f -print0 | \
|
|
${XARGS} -0 -x -n 10 \
|
|
${REINPLACE_CMD} -E \
|
|
-e 's|stdint\.h|inttypes\.h|g' \
|
|
-e 's|/usr/bin/perl|${PERL5}|'
|
|
|
|
.include <bsd.port.mk>
|