mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
28bac6ebdd
As gnome@ is lacking active committers at the moment, transfer some of its ports [1] up the stack to the desktop@ group, in hope that this way we get some updates in as the set of people that "should feel responsible" grows. As soon as gnome@ grows some committers again, this can (and should) of course be reverted again. [1] The list of ports chosen in this move consits of all the ports that are required to build x11/kde5. Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D26362
39 lines
840 B
Makefile
39 lines
840 B
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libiconv
|
|
PORTVERSION= 1.16
|
|
CATEGORIES= converters devel
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= desktop@FreeBSD.org
|
|
COMMENT= Character set conversion library
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= libtool
|
|
USE_CSTD= gnu89
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-static \
|
|
--disable-nls \
|
|
--docdir=${DOCSDIR} \
|
|
am_cv_func_iconv=no
|
|
INSTALL_TARGET= install-strip
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS ENCODINGS
|
|
OPTIONS_DEFAULT=ENCODINGS
|
|
ENCODINGS_DESC= Include extra character sets
|
|
|
|
ENCODINGS_CONFIGURE_ENABLE= extra-encodings
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's:ei_ksc5601:ei_euc_kr:g' ${WRKSRC}/lib/aliases.h
|
|
@${REINPLACE_CMD} -e 's:gawk:awk:g' ${WRKSRC}/configure \
|
|
${WRKSRC}/libcharset/configure
|
|
|
|
.include <bsd.port.mk>
|