From owner-freebsd-ports@FreeBSD.ORG Sat Sep 18 00:20:53 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB3A6106566C; Sat, 18 Sep 2010 00:20:53 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0DAE08FC12; Sat, 18 Sep 2010 00:20:52 +0000 (UTC) Received: by bwz15 with SMTP id 15so4046113bwz.13 for ; Fri, 17 Sep 2010 17:20:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=rvvaoiEi5oSFdJEzVVnhnweMR5ufK3zpn78QIsrjgZs=; b=UWzp9oH+4c5+5XEK8WjPR7RwhlaP5KPRpLR7VNWYTT6lceTgTh224jenUEa+7eEpj6 UKwOtSq4GXJ9KNX/wasCv9w5o3kp0EjP5ESy14snBe4qiGzk8mroK1mesbj9nc6uc2Z8 BIBmzDVgE1sQpvnKW3LYeRMrBgaDrhdisvV2o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=DpqSviSdD8q81slyan2f3nZqsEyqxd2PLP5yL/cwRgbeMDUZ/WHDRMpGgV3DZ1DBPF FlaO2xMxAjTuTs3Hf13HmJjMJUiyVlbLTM0/kQP0j7+U1jvGw+S3J90qlH1DXjkRd25h S7sTO95Kz3xsgClPWDxL8ksgtGG6wvc/thx/U= Received: by 10.204.99.131 with SMTP id u3mr4492934bkn.41.1284767763128; Fri, 17 Sep 2010 16:56:03 -0700 (PDT) Received: from localhost (tor-exit-proxy1-readme.formlessnetworking.net [208.53.142.37]) by mx.google.com with ESMTPS id x13sm4122614bki.12.2010.09.17.16.56.00 (version=SSLv3 cipher=RC4-MD5); Fri, 17 Sep 2010 16:56:02 -0700 (PDT) From: Anonymous To: jhell References: <4C93AA31.5080202@DataIX.net> Date: Sat, 18 Sep 2010 03:52:17 +0400 In-Reply-To: <4C93AA31.5080202@DataIX.net> (jhell@dataix.net's message of "Fri, 17 Sep 2010 13:49:37 -0400") Message-ID: <86fwx8exn2.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: FreeBSD Ports , obrien@FreeBSD.org Subject: Re: editors/vim installs to / 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: Sat, 18 Sep 2010 00:20:53 -0000 jhell writes: > After a force upgrade of vim that had failed unfortunately not > registering the files it installed already I found out that it is > installing to / ~!!!!! ugh. Does the following diff fixes it? %% Index: editors/vim/Makefile =================================================================== RCS file: /a/.cvsup/ports/editors/vim/Makefile,v retrieving revision 1.357 diff -u -p -r1.357 Makefile --- editors/vim/Makefile 17 Sep 2010 00:46:45 -0000 1.357 +++ editors/vim/Makefile 17 Sep 2010 23:47:49 -0000 @@ -166,7 +166,7 @@ MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=n MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable-tclinterp --disable-rubyinterp" .endif # LITE -.if exists(${PREFIX}/lib/libiconv.so) +.if exists(${LOCALBASE}/lib/libiconv.so) USE_ICONV= yes .endif @@ -211,7 +211,7 @@ pre-configure: .endif post-configure: - @(cd ${WRKSRC} ; ${MAKE} scratch config) + @(cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_ARGS} scratch config) # Clean up junk files to keep them from being installed. pre-install: %%