2012-07-27 02:10:14 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2012-07-27 02:10:14 +04:00
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
inherit autotools-utils
|
|
|
|
|
|
|
|
DESCRIPTION="A tool for exporting C libraries into Scheme"
|
|
|
|
HOMEPAGE="http://www.nongnu.org/g-wrap/"
|
|
|
|
SRC_URI="http://download.savannah.gnu.org/releases/g-wrap/${P}.tar.gz"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
LICENSE="GPL-2"
|
2012-08-27 23:21:12 +04:00
|
|
|
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
|
2012-07-27 02:10:14 +04:00
|
|
|
IUSE="static-libs"
|
|
|
|
|
|
|
|
# guile-lib for srfi-34, srfi-35
|
|
|
|
RDEPEND="
|
|
|
|
dev-libs/glib:2
|
|
|
|
dev-scheme/guile-lib
|
|
|
|
dev-scheme/guile[deprecated]
|
|
|
|
virtual/libffi"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
virtual/pkgconfig
|
|
|
|
dev-util/indent"
|
|
|
|
|
|
|
|
MAKEOPTS+=" -j1"
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local myeconfargs=( --disable-Werror --with-glib )
|
|
|
|
autotools-utils_src_configure
|
|
|
|
}
|