Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Sep 2013 19:58:20 +0000 (UTC)
From:      Boris Samorodov <bsam@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r328855 - in head: devel/xdg-user-dirs games/instead shells/fish www/xapian-omega
Message-ID:  <201309301958.r8UJwKsO093291@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bsam
Date: Mon Sep 30 19:58:20 2013
New Revision: 328855
URL: http://svnweb.freebsd.org/changeset/ports/328855

Log:
  Fix using iconv at ports:
  . shells/fish;
  . games/instead;
  . www/xapian-omega;
  . devel/xdg-user-dirs.
  
  Submitted by:	marino (via e-mail)
  Approved by:	portmgr (bapt, implicit)

Modified:
  head/devel/xdg-user-dirs/Makefile
  head/games/instead/Makefile
  head/shells/fish/Makefile
  head/www/xapian-omega/Makefile

Modified: head/devel/xdg-user-dirs/Makefile
==============================================================================
--- head/devel/xdg-user-dirs/Makefile	Mon Sep 30 19:41:57 2013	(r328854)
+++ head/devel/xdg-user-dirs/Makefile	Mon Sep 30 19:58:20 2013	(r328855)
@@ -15,7 +15,7 @@ GNU_CONFIGURE=	yes
 USES=		gettext iconv
 USE_GMAKE=	yes
 USE_GNOME=	libxslt:build
-LDFLAGS+=	-L${LOCALBASE}/lib
+LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
 CFLAGS+=	-I${LOCALBASE}/include
 
 MAN1=		xdg-user-dir.1 xdg-user-dirs-update.1

Modified: head/games/instead/Makefile
==============================================================================
--- head/games/instead/Makefile	Mon Sep 30 19:41:57 2013	(r328854)
+++ head/games/instead/Makefile	Mon Sep 30 19:58:20 2013	(r328855)
@@ -17,6 +17,7 @@ USE_GNOME=	gtk20
 USE_LUA=	5.1
 USE_SDL=	sdl image ttf mixer
 USES=		pkgconfig iconv
+LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
 
 CONFIGURE_SCRIPT=	configure.sh
 CONFIGURE_ENV=	PREFIX="${PREFIX}"

Modified: head/shells/fish/Makefile
==============================================================================
--- head/shells/fish/Makefile	Mon Sep 30 19:41:57 2013	(r328854)
+++ head/shells/fish/Makefile	Mon Sep 30 19:58:20 2013	(r328855)
@@ -20,7 +20,7 @@ USE_AUTOTOOLS=	autoconf
 CONFIGURE_ARGS=	--docdir=${WRKDIR}/tmproot
 
 CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib -pthread
+LDFLAGS+=	-L${LOCALBASE}/lib -pthread ${ICONV_LIB}
 
 MAN1=		fish.1 fish_indent.1 fish_pager.1 fishd.1 mimedb.1
 

Modified: head/www/xapian-omega/Makefile
==============================================================================
--- head/www/xapian-omega/Makefile	Mon Sep 30 19:41:57 2013	(r328854)
+++ head/www/xapian-omega/Makefile	Mon Sep 30 19:58:20 2013	(r328855)
@@ -41,6 +41,7 @@ NO_STAGE=	yes
 
 .if ${PORT_OPTIONS:MICONV}
 USES+=		iconv
+LDFLAGS+=	${ICONV_LIB}
 CONFIGURE_ARGS+=--with-iconv
 .else
 CONFIGURE_ARGS+=--without-iconv



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309301958.r8UJwKsO093291>