From owner-freebsd-ports@FreeBSD.ORG Sat Jul 19 20:09:10 2014 Return-Path: Delivered-To: ports@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 92029122 for ; Sat, 19 Jul 2014 20:09:10 +0000 (UTC) Received: from s3.enemy.org (s3.enemy.org [IPv6:2a01:4f8:160:5202::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "s4.enemy.org", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2C6272A39 for ; Sat, 19 Jul 2014 20:09:09 +0000 (UTC) Received: from s3.enemy.org (cjm@localhost [127.0.0.1]) by s3.enemy.org (8.14.7/8.14.7) with ESMTP id s6JK97tT082470 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 19 Jul 2014 22:09:07 +0200 (CEST) (envelope-from cjm@s3.enemy.org) Received: (from cjm@localhost) by s3.enemy.org (8.14.7/8.14.7/Submit) id s6JK96aR082467 for ports@FreeBSD.org; Sat, 19 Jul 2014 22:09:06 +0200 (CEST) (envelope-from cjm) Date: Sat, 19 Jul 2014 22:09:06 +0200 From: "chris j. mutter" To: ports@FreeBSD.org Subject: linphone pkg-plist.patch Message-ID: <20140719200906.GB49498@s3.enemy.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="tKW2IUtsqtDRztdT" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jul 2014 20:09:10 -0000 --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, there seems to be a wrong path to a file during pkg installion of net/linphone: ===> Registering installation for linphone-3.7.0,1 pkg-static: lstat(/usr/ports/net/linphone/work/stage/usr/local/share/locale/nb_NO/LC_MESSAGES/): No such file or directory pkg-static: lstat(/usr/ports/net/linphone/work/stage/usr/local/share/locale/nb_NO/): No such file or directory *** Error code 74 correct directory that the compile generates is "nb/" instead of "nb_NO". regards, cjm -- "God save the queen and her fascist regime" -- Sex Pistols --tKW2IUtsqtDRztdT Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="pkg-plist.patch" --- pkg-plist.orig 2014-07-19 21:54:52.076857044 +0200 +++ pkg-plist 2014-07-19 21:58:21.420827996 +0200 @@ -53,7 +53,7 @@ %%NLS%%share/locale/hu/LC_MESSAGES/linphone.mo %%NLS%%share/locale/it/LC_MESSAGES/linphone.mo %%NLS%%share/locale/ja/LC_MESSAGES/linphone.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/linphone.mo +%%NLS%%share/locale/nb/LC_MESSAGES/linphone.mo %%NLS%%share/locale/nl/LC_MESSAGES/linphone.mo %%NLS%%share/locale/pl/LC_MESSAGES/linphone.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/linphone.mo @@ -114,8 +114,8 @@ @dirrmtry man/cs/man1 @dirrmtry man/cs @dirrm %%DATADIR%% -@dirrmtry share/locale/nb_NO/LC_MESSAGES -@dirrmtry share/locale/nb_NO +@dirrmtry share/locale/nb/LC_MESSAGES +@dirrmtry share/locale/nb @dirrm share/pixmaps/linphone @dirrm share/sounds/linphone/rings @dirrm share/sounds/linphone --tKW2IUtsqtDRztdT--