From owner-freebsd-ports@FreeBSD.ORG Sun Oct 29 19:57:38 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1390416A403; Sun, 29 Oct 2006 19:57:38 +0000 (UTC) (envelope-from nox@saturn.kn-bremen.de) Received: from gwyn.kn-bremen.de (gwyn.kn-bremen.de [212.63.36.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1691C43D55; Sun, 29 Oct 2006 19:57:36 +0000 (GMT) (envelope-from nox@saturn.kn-bremen.de) Received: from gwyn.kn-bremen.de (gwyn [127.0.0.1]) by gwyn.kn-bremen.de (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k9TJvZ86032630 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 29 Oct 2006 20:57:35 +0100 Received: from saturn.kn-bremen.de (uucp@localhost) by gwyn.kn-bremen.de (8.13.4/8.13.4/Submit) with UUCP id k9TJvZUB032628; Sun, 29 Oct 2006 20:57:35 +0100 Received: from saturn.kn-bremen.de (nox@localhost [127.0.0.1]) by saturn.kn-bremen.de (8.13.6/8.13.6) with ESMTP id k9TJtJhi010118; Sun, 29 Oct 2006 20:55:19 +0100 (CET) (envelope-from nox@saturn.kn-bremen.de) Received: (from nox@localhost) by saturn.kn-bremen.de (8.13.6/8.13.6/Submit) id k9TJtJ6p010117; Sun, 29 Oct 2006 20:55:19 +0100 (CET) (envelope-from nox) From: Juergen Lock Date: Sun, 29 Oct 2006 20:55:19 +0100 To: freebsd-ports@freebsd.org, jylefort@freebsd.org Message-ID: <20061029195519.GA9948@saturn.kn-bremen.de> Mail-Followup-To: freebsd-ports@freebsd.org, jylefort@FreeBSD.org References: <20061029183825.GA85830@saturn.kn-bremen.de> <20061029194131.GA89632@saturn.kn-bremen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061029194131.GA89632@saturn.kn-bremen.de> User-Agent: Mutt/1.5.11 Cc: Subject: Re: automake question (astro/celestia-gtk not installing .3ds files) 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: Sun, 29 Oct 2006 19:57:38 -0000 On Sun, Oct 29, 2006 at 08:41:31PM +0100, Juergen Lock wrote: > On Sun, Oct 29, 2006 at 07:38:25PM +0100, Juergen Lock wrote: > > Hi! > > > > I was wondering why I don't see things like the ISS in celestia > > even when it knows them (tho with outdated ISS orbit elements, > > I updated them as explained here, > > http://www.shatters.net/forum/viewtopic.php?p=41069#41069 > > ) when I found out the port just doesn't install the .3ds files > > that do come with the distribution. Looking at > > work/celestia-1.4.1/models/Makefile.am > > I see $(wildcard *.3ds) mentioned in EXTRA_DIST, which makes me > > suspect somehow the automake magic doesn't work as expected on > > FreeBSD. Is this assumption right? And does anyone have an idea > > how to fix this? > > Hah, that guess was wrong. :) found this thread: > http://www.shatters.net/forum/viewtopic.php?p=71982 > > So the real problem is that there are no cmod files for ISS and some > other .3ds files: > http://www.shatters.net/forum/viewtopic.php?p=71982#71982 > which means the real fix seems toe be to either generate cmod files > for those, or install just these .3ds files. So I just patched > astro/celestia like this and am now compiling: (should I send-pr > this when I know it works?) > >[patch snipped] Hmm it works but I had to symlink a few .la files to get it to build: # ln -s ../../local/lib/libgtk-x11-2.0.la /usr/X11R6/lib # ln -s ../../local/lib/libgdk-x11-2.0.la /usr/X11R6/lib # ln -s ../../local/lib/libgdk_pixbuf-2.0.la /usr/X11R6/lib # ln -s ../../local/lib/libpangocairo-1.0.la /usr/X11R6/lib # ln -s ../../local/lib/libpangoft2-1.0.la /usr/X11R6/lib # ln -s ../../local/lib/libpangox-1.0.la /usr/X11R6/lib # ln -s ../../local/lib/libpango-1.0.la /usr/X11R6/lib Is this a problem in the port or just something messed up in my installation? (I did the big gnome/gtk port update a while ago and I know these moved...) Thanx, Juergen