From owner-cvs-all@FreeBSD.ORG Mon May 23 20:37:03 2011 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2AF1106566B; Mon, 23 May 2011 20:37:03 +0000 (UTC) (envelope-from inyaoo@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id EFABD8FC1C; Mon, 23 May 2011 20:37:02 +0000 (UTC) Received: by wwc33 with SMTP id 33so6337495wwc.31 for ; Mon, 23 May 2011 13:37:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:in-reply-to:references :user-agent:date:message-id:mime-version:content-type; bh=CeVAPXq0K2q14kF9S7XCc2/xSVbI6LFC+j+X0ndSqt4=; b=U/W+cEvtDbh4diQKnTBsg0hz+9Wu54BbX/4u0pMn+tl6ZScW7FUXMV52/2CBjl/DxM DFqDQmWJ8sUcmKhyJ+RhYKTvDw/XWYmCOws2Uth64xoYKLmYVYEOLzCmJx1PGXEyywfG KfiSjEOOPNZ4Mgm6ZNFrV1S+B0xxKzVDfbiKE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:in-reply-to:references:user-agent:date :message-id:mime-version:content-type; b=H4FjkRNVeXMewjkVARbzE1t18szvrzHlmFfBleotdYgRE1YLCBlTVbngNbdzsnl6/l 21+xkm1DUNAMLgaEkeF6Tyixc056hBQP8zKjLuLbLkxQnLHlQoAwTGXk9iagoP17smbM zHTNuh685mnEhSOby8kNLBi/gCqNHDxILXL4s= Received: by 10.216.255.206 with SMTP id j56mr2913847wes.39.1306183021485; Mon, 23 May 2011 13:37:01 -0700 (PDT) Received: from localhost (zeller.torservers.net [74.120.12.135]) by mx.google.com with ESMTPS id o6sm3475313wep.17.2011.05.23.13.36.55 (version=SSLv3 cipher=OTHER); Mon, 23 May 2011 13:36:59 -0700 (PDT) From: Pan Tsu To: Gerald Pfeifer In-Reply-To: <201105151529.p4FFTU8x067633__20240.4801188552$1305473416$gmane$org@repoman.freebsd.org> (Gerald Pfeifer's message of "Sun, 15 May 2011 15:29:30 +0000 (UTC)") References: <201105151529.p4FFTU8x067633__20240.4801188552$1305473416$gmane$org@repoman.freebsd.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) Date: Tue, 24 May 2011 00:36:45 +0400 Message-ID: <864o4lb1cy.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain Cc: cvs-ports@FreeBSD.org, David Naylor , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/emulators Makefile ports/emulators/wine-gecko Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2011 20:37:04 -0000 Gerald Pfeifer writes: > gerald 2011-05-15 15:29:30 UTC > > FreeBSD ports repository > > Modified files: > emulators Makefile > Added files: > emulators/wine-gecko Makefile distinfo pkg-descr pkg-plist > Log: > Add the new wine-gecko port, that complements the existing wine port. > > Wine implements its own version of Internet Explorer which is based on > a custom version of Mozilla's Gecko Layout Engine. This engine is down- > loaded automatically the first time a web page is loaded unless, as done > by this port, the engine is pre-installed on the user's system. > > PR: 156001 > Submitted by: David Naylor Does wine find gecko with DATADIR != PREFIX/share/wine ? Please, either document it in the pkg-message that .msi file should be copied/symlinked from PREFIX/wine-gecko/wine/gecko/*.msi or redefine DATADIR properly. %% Index: emulators/wine-gecko/Makefile =================================================================== RCS file: /a/.cvsup/ports/emulators/wine-gecko/Makefile,v retrieving revision 1.1 diff -u -p -r1.1 Makefile --- emulators/wine-gecko/Makefile 15 May 2011 15:29:30 -0000 1.1 +++ emulators/wine-gecko/Makefile 23 May 2011 20:27:04 -0000 @@ -18,12 +18,15 @@ COMMENT= Gecko Layout Engine for Wine (H NO_BUILD= yes PLIST_SUB+= GECKO_VERSION="${DISTVERSION}" +DATADIR= ${PREFIX}/share/wine +PLIST_FILES= %%DATADIR%%/gecko/wine_gecko-%%GECKO_VERSION%%-x86.msi +PLIST_DIRSTRY= %%DATADIR%%/gecko %%DATADIR%% LICENSE= MPL GPLv2 GPLv3 LGPL21 LGPL3 LICENSE_COMB= multi do-install: - ${MKDIR} ${DATADIR}/wine/gecko - ${INSTALL_DATA} ${DISTDIR}/wine_gecko-${DISTVERSION}-x86.msi ${DATADIR}/wine/gecko + ${MKDIR} ${DATADIR}/gecko + ${INSTALL_DATA} ${DISTDIR}/wine_gecko-${DISTVERSION}-x86.msi ${DATADIR}/gecko .include Index: emulators/wine-gecko/pkg-plist =================================================================== RCS file: emulators/wine-gecko/pkg-plist diff -N emulators/wine-gecko/pkg-plist --- emulators/wine-gecko/pkg-plist 15 May 2011 15:29:30 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,4 +0,0 @@ -%%DATADIR%%/wine/gecko/wine_gecko-%%GECKO_VERSION%%-x86.msi -@dirrm %%DATADIR%%/wine/gecko -@dirrmtry %%DATADIR%%/wine -@dirrmtry %%DATADIR%% %%