diff options
author | garga <garga@FreeBSD.org> | 2012-01-06 01:07:47 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2012-01-06 01:07:47 +0800 |
commit | 555e63ce8730a7cac0bf07553a5b8196bf9d096e (patch) | |
tree | 4c623ff10f4a682e4dc59e87d4e5d9460bf44dff | |
parent | 72e5553431d45ccaee0a15f6ddd09595bb9d3f16 (diff) | |
download | freebsd-ports-gnome-555e63ce8730a7cac0bf07553a5b8196bf9d096e.tar.gz freebsd-ports-gnome-555e63ce8730a7cac0bf07553a5b8196bf9d096e.tar.zst freebsd-ports-gnome-555e63ce8730a7cac0bf07553a5b8196bf9d096e.zip |
Don't require iconv when WITHOUT_NLS is set
PR: ports/163708
Submitted by: Takefu <takefu@airport.fm>
-rw-r--r-- | www/sarg/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/sarg/Makefile b/www/sarg/Makefile index 642c0518dd48..dcba15b547be 100644 --- a/www/sarg/Makefile +++ b/www/sarg/Makefile @@ -7,6 +7,7 @@ PORTNAME= sarg PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -18,7 +19,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE OPTIONS= GD "Enable GD support" on -USE_ICONV= yes USE_GMAKE= yes GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes @@ -42,6 +42,7 @@ CONFIGURE_ARGS+= --disable-nls .else PLIST_SUB+= NLS="" USE_GETTEXT= yes +USE_ICONV= yes .endif .if !defined(WITHOUT_GD) |