From owner-svn-ports-all@FreeBSD.ORG Wed Sep 5 08:35:38 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F3EBC106566B; Wed, 5 Sep 2012 08:35:37 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AC0428FC15; Wed, 5 Sep 2012 08:35:37 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q858Zbe1003788; Wed, 5 Sep 2012 08:35:37 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q858ZbAm003785; Wed, 5 Sep 2012 08:35:37 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201209050835.q858ZbAm003785@svn.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 5 Sep 2012 08:35:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303690 - in head/chinese/gcin: . files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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, 05 Sep 2012 08:35:38 -0000 Author: vanilla Date: Wed Sep 5 08:35:37 2012 New Revision: 303690 URL: http://svn.freebsd.org/changeset/ports/303690 Log: fix build. Obtained from: pointyhat@ Added: head/chinese/gcin/files/patch-modules_Makefile (contents, props changed) Modified: head/chinese/gcin/Makefile Modified: head/chinese/gcin/Makefile ============================================================================== --- head/chinese/gcin/Makefile Wed Sep 5 08:02:32 2012 (r303689) +++ head/chinese/gcin/Makefile Wed Sep 5 08:35:37 2012 (r303690) @@ -7,7 +7,7 @@ PORTNAME= gcin PORTVERSION= 2.7.8 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= chinese textproc gnome MASTER_SITES= http://www.csie.nctu.edu.tw/~cp76/gcin/download/:main DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:main Added: head/chinese/gcin/files/patch-modules_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/gcin/files/patch-modules_Makefile Wed Sep 5 08:35:37 2012 (r303690) @@ -0,0 +1,29 @@ +--- modules/Makefile.orig 2012-09-05 15:46:26.000000000 +0800 ++++ modules/Makefile 2012-09-05 15:49:16.000000000 +0800 +@@ -3,15 +3,18 @@ include ../suffixes-rule + + CFLAGS+=-I.. -I../IMdkit/include + GCIN_MODULE=intcode-module.so ++SOURCES=intcode.cpp win-int.cpp + + ifeq ($(USE_ANTHY),Y) + GCIN_MODULE+=anthy-module.so ++SOURCES+=anthy.cpp + endif + + ifeq ($(USE_CHEWING),Y) + GCIN_MODULE+=chewing-module.so + CHEWING_DATADIR=$(shell pkg-config --variable=datadir chewing) + CFLAGS += -DCHEWING_DATADIR=\"$(CHEWING_DATADIR)\" ++SOURCES+=chewing-conf.cpp chewing.cpp gcin-setup-chewing.cpp + endif + + all: $(GCIN_MODULE) +@@ -35,6 +38,6 @@ install: + clean: + rm -f *.pico *.so *.o .depend + .depend: +- $(CCX) $(CFLAGS) -MM *.cpp > $@ ++ $(CCX) $(CFLAGS) -MM $(SOURCES) > $@ + + include .depend