mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
40 lines
752 B
Makefile
40 lines
752 B
Makefile
# Created by: Konstantin Chuguev <Konstantin.Chuguev@dante.org.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iconv
|
|
PORTVERSION= 2.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= converters
|
|
MASTER_SITES= LOCAL/bland
|
|
|
|
MAINTAINER= bland@FreeBSD.org
|
|
COMMENT= Charset conversion library and utilities
|
|
|
|
USES= shebangfix perl5 uidfix
|
|
USE_PERL5= build
|
|
USE_LDCONFIG= yes
|
|
SHEBANG_FILES= iconv_builtin ccs/iconv_mktbl
|
|
|
|
OPTIONS_DEFINE= CCSUTIL
|
|
OPTIONS_DEFAULT=CCSUTIL
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
CCSUTIL_DESC= Install Coded character set (CCS) util
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCCSUTIL}
|
|
USE_PERL5+= run
|
|
.else
|
|
EXTRA_PATCHES= ${FILESDIR}/extra-patch-ccs_Makefile
|
|
.endif
|
|
|
|
.if defined(NO_PROFILE)
|
|
PLIST_SUB+= PROFILE="@comment "
|
|
.else
|
|
PLIST_SUB+= PROFILE=""
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|