diff options
author | bsam <bsam@FreeBSD.org> | 2013-09-06 04:18:30 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2013-09-06 04:18:30 +0800 |
commit | d4be7ebb16af8657e516c12bf0574fb925a3f26f (patch) | |
tree | 3b1d1321b78dcf4a659d95ca332649d8253316c1 /palm | |
parent | d17cc05291e2481f97fd8cd319a6585d4004ffad (diff) | |
download | freebsd-ports-gnome-d4be7ebb16af8657e516c12bf0574fb925a3f26f.tar.gz freebsd-ports-gnome-d4be7ebb16af8657e516c12bf0574fb925a3f26f.tar.zst freebsd-ports-gnome-d4be7ebb16af8657e516c12bf0574fb925a3f26f.zip |
. introduce ICONV_CONFIGURE_BASE variable at Mk/Uses/iconv.mk. It's value is
"--with-libiconv=${LOCALBASE}" at systems pre OSVERSION 100043 and "" (null)
otherwise;
. convert all ports which has CONFIGURE_ARGS=--with-libiconv=${LOCALBASE}.
Approved by: portmgr (bapt, implicit)
Diffstat (limited to 'palm')
-rw-r--r-- | palm/pilot-link/Makefile | 2 | ||||
-rw-r--r-- | palm/synce-librapi2/Makefile | 3 | ||||
-rw-r--r-- | palm/synce-vdccm/Makefile | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/palm/pilot-link/Makefile b/palm/pilot-link/Makefile index 9e6b8477816b..5095a119e2e4 100644 --- a/palm/pilot-link/Makefile +++ b/palm/pilot-link/Makefile @@ -17,7 +17,7 @@ USES= pathfix pkgconfig iconv USE_BZIP2= yes GNU_CONFIGURE= yes CFLAGS+= -I${WRKSRC}/popt -I${LOCALBASE}/include -CONFIGURE_ARGS+=--with-libiconv=${LOCALBASE} --with-included-popt --enable-conduits --enable-xsltproc +CONFIGURE_ARGS+=${ICONV_CONFIGURE_BASE} --with-included-popt --enable-conduits --enable-xsltproc USE_LDCONFIG= yes OPTIONS_DEFINE= PNG THREADS USB diff --git a/palm/synce-librapi2/Makefile b/palm/synce-librapi2/Makefile index 26fa61905cdd..0dade463a536 100644 --- a/palm/synce-librapi2/Makefile +++ b/palm/synce-librapi2/Makefile @@ -21,8 +21,7 @@ GNU_CONFIGURE= yes USE_AUTOTOOLS= libtool USES= pathfix iconv pkgconfig USE_LDCONFIG= yes -CONFIGURE_ARGS= --with-libiconv="${LOCALBASE}" \ - --with-libsynce="${LOCALBASE}" +CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} --with-libsynce="${LOCALBASE}" .include <bsd.port.pre.mk> diff --git a/palm/synce-vdccm/Makefile b/palm/synce-vdccm/Makefile index 4bc3bcc18ba7..fea3754098e0 100644 --- a/palm/synce-vdccm/Makefile +++ b/palm/synce-vdccm/Makefile @@ -20,7 +20,7 @@ DESKTOP_DESC= Desktop integration GNU_CONFIGURE= yes WANT_GNOME= yes USES= iconv pkgconfig -CONFIGURE_ARGS= --with-libiconv=${LOCALBASE} \ +CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} \ --with-libsynce=${LOCALBASE} MAN1= triggerconnection.1 ${PORTNAME}.1 |