From owner-svn-ports-all@FreeBSD.ORG Wed May 7 15:44:57 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8AB17E1; Wed, 7 May 2014 15:44:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 961A7941; Wed, 7 May 2014 15:44:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s47Fivp4043423; Wed, 7 May 2014 15:44:57 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s47FivA7043422; Wed, 7 May 2014 15:44:57 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201405071544.s47FivA7043422@svn.freebsd.org> From: John Marino Date: Wed, 7 May 2014 15:44:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353170 - head/chinese/oxim X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 15:44:57 -0000 Author: marino Date: Wed May 7 15:44:57 2014 New Revision: 353170 URL: http://svnweb.freebsd.org/changeset/ports/353170 QAT: https://qat.redports.org/buildarchive/r353170/ Log: chinese/exim: Unbreak on F10+ by satisfying explicit linking requirements During linking, the linker needs symbols from Xext and libfontconfig, so add these to the dependency list and LDFLAGS to unbreak to port. Bump due to dependency changes. (Just fix it Blanket) Modified: head/chinese/oxim/Makefile Modified: head/chinese/oxim/Makefile ============================================================================== --- head/chinese/oxim/Makefile Wed May 7 15:44:01 2014 (r353169) +++ head/chinese/oxim/Makefile Wed May 7 15:44:57 2014 (r353170) @@ -3,7 +3,7 @@ PORTNAME= oxim PORTVERSION= 1.2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= chinese textproc MASTER_SITES= ftp://ftp.opendesktop.org.tw/odp/OXIM/Source/ \ ftp://140.111.128.66/odp/OXIM/Source/ @@ -11,6 +11,7 @@ MASTER_SITES= ftp://ftp.opendesktop.org. MAINTAINER= clsung@FreeBSD.org COMMENT= Open X Input Method server +LIB_DEPENDS= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= ${LOCALBASE}/share/fonts/TrueType/fireflysung.ttf:${PORTSDIR}/chinese/fireflyttf OPTIONS_DEFINE= GTK2 CHEWING UNICODE @@ -20,13 +21,13 @@ CHEWING_DESC= Chewing input module UNICODE_DESC= Unicode input module USES= iconv pkgconfig -USE_XORG= x11 xft xpm xtst +USE_XORG= x11 xft xpm xtst xext WANT_GNOME= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} +LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} -lfontconfig -lXext CONFIGURE_ARGS+=--disable-bimsphone-module \ --disable-static \ --with-conf-dir=${PREFIX}/etc/${PORTNAME} \