From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Ravri-0007rJ-QG for garchives@archives.gentoo.org; Wed, 14 Dec 2011 20:55:51 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC00721C0D1; Wed, 14 Dec 2011 20:55:46 +0000 (UTC) Received: from mail-ww0-f53.google.com (mail-ww0-f53.google.com [74.125.82.53]) by pigeon.gentoo.org (Postfix) with ESMTP id 68BCB21C0D1 for ; Wed, 14 Dec 2011 20:55:46 +0000 (UTC) Received: by wgbds1 with SMTP id ds1so2209041wgb.10 for ; Wed, 14 Dec 2011 12:55:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=d+P4H/yEYcp+/xB+Z9DwH/OQZPFKitsQjrOWB9ilSvs=; b=N0BGmeZkOXN6deh11doafUJ6slJAcQgUwvl/fpgyrJlQCWQ4uKRzw6al9xTIDgDMYL 5EKTSp7HaAKb6lAuZquFaf8bZswIj5nf+EuiHdhEdLm7RAljpspR7W2YElAL4pngj5NZ TUgHkcwStgY80iQTzjdrVtwTaeYWsOJQHokGY= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Discussions centering around the Python ecosystem in Gentoo Linux X-BeenThere: gentoo-python@gentoo.org X-BeenThere: gentoo-python@lists.gentoo.org MIME-Version: 1.0 Received: by 10.227.209.82 with SMTP id gf18mr267123wbb.8.1323896145527; Wed, 14 Dec 2011 12:55:45 -0800 (PST) Received: by 10.216.1.70 with HTTP; Wed, 14 Dec 2011 12:55:45 -0800 (PST) Date: Wed, 14 Dec 2011 15:55:45 -0500 Message-ID: Subject: [gentoo-python] Trying to write an ebuild From: Michael Cordingley To: gentoo-python@lists.gentoo.org Content-Type: text/plain; charset=ISO-8859-1 X-Archives-Salt: dbd5998b-8659-4790-883b-1c35cd522e72 X-Archives-Hash: b753022615ca3f75d60bccc9fda5188d Hi there, I'm trying to create an ebuild for a package that isn't yet in Portage. QuantLib-0.9.6 is currently in, but no bindings for it in any other languages are yet there, so I thought I'd try to write up an ebuild for the python bindings. So far, the ebuild works, right up to the compile stage. It fails there, and I can't figure out why. The output of the ebuild command can be found here: http://pastebin.com/a4Cx2AYi The current version of the ebuild is here: http://pastebin.com/PB0f1uSf The package that it downloads is a package of SWIG bindings for several different languages. Doing the normal ./configure && make && make install would try to build and install all of the bindings. I'm trying to do ./configure && make -C Python && make install to build only the python bindings. The idea is one package per set of bindings. Any help would be much appreciated. Thanks!