From owner-freebsd-ports@FreeBSD.ORG Fri Feb 9 20:17:57 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0BDD16A401 for ; Fri, 9 Feb 2007 20:17:57 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.freebsd.org (Postfix) with ESMTP id 7D9CF13C471 for ; Fri, 9 Feb 2007 20:17:56 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so2806ugh for ; Fri, 09 Feb 2007 12:17:50 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=mMExydy+yKwiE62CE4HtKP+cCloXY5Z86bf7PFKrS4EOoIskd8uNyWjt+EzAOTiTDaukAqHk+OzENvzID4BfYopHwjDanhwWANq3Ft6sWxcuhP+QPTOYcdafNYwSdH913ktb6BCYrc3+ouZs0hxRtIrGC5Te+ay9eZokSV0usIc= Received: by 10.82.155.10 with SMTP id c10mr4838148bue.1171052269368; Fri, 09 Feb 2007 12:17:49 -0800 (PST) Received: by 10.82.186.2 with HTTP; Fri, 9 Feb 2007 12:17:49 -0800 (PST) Message-ID: <790a9fff0702091217s1d9de07fiec134376a5bc4364@mail.gmail.com> Date: Fri, 9 Feb 2007 14:17:49 -0600 From: "Scot Hetzel" To: molnarcs@gmail.com In-Reply-To: <200702092039.08578.molnarcs@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200702091451.56124.molnarcs@gmail.com> <790a9fff0702090701kcadd613p49ca77875e9e449a@mail.gmail.com> <200702092039.08578.molnarcs@gmail.com> Cc: freebsd-ports@freebsd.org Subject: Re: learning about building ports - please help X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Feb 2007 20:17:58 -0000 On 2/9/07, Csaba Molnar wrote: > > > The CONFIGURE_ENV sets the CPPFLAGS and the LDFLAGS that are passed to > > the configure script. The variable PTHREAD_LIBS has a value of > > -pthread, which should solve your problem with libkdefx.la. > > > > Scot > > -- > > DISCLAIMER: > > No electrons were mamed while sending this message. Only slightly bruised. > > Thanks, that seems to have solved the issue with libkdefx.la. > > Now I ran portlint, fixed whitespace issues, but there is one remaining issue: > > WARN: Makefile: Consider adding support for a WITHOUT_NLS knob to > conditionally disable gettext support. > Portlint wants you to add the following to the port: .if !defined(WITHOUT_NLS) USE_GETTEXT= yes PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif Then modify the pkg-plist: %%NLS%%share/locale/ca_ES/LC_MESSAGES/aquamarine.mo : %%NLS%%share/locale/zh_TW/LC_MESSAGES/aquamarine.mo Also remove all of the @dirrmtry share/locale*, and only add the ones that are missing from /etc/mtree/BSD.local.mk. %%NLS%%@dirrmtry share/locale/zh_TW/LC_MESSAGES %%NLS%%@dirrmtry share/locale/zh_TW Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised.