public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [RFC] new vala.eclass
@ 2012-08-25 16:09 Alexandre Rostovtsev
  2012-08-25 17:25 ` Tomáš Chvátal
                   ` (4 more replies)
  0 siblings, 5 replies; 18+ messages in thread
From: Alexandre Rostovtsev @ 2012-08-25 16:09 UTC (permalink / raw
  To: gentoo-dev

Here's a proposed new eclass to make it less painful to build vala
bindings in the new, vala-0.18.x, vapigen.m4-using era. See
https://bugzilla.gnome.org/show_bug.cgi?id=682202 for why messing around
with PKG_CONFIG_PATH is unfortunately needed for vapigen.m4-using
packages from gnome-3.6 such as librsvg-2.36.2, networkmanager-0.9.6.0,
libsecret-0.9.x, libgnome-keyring-3.6.x, accountsservice-0.6.24, etc.


# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

# @ECLASS: vala.eclass
# @MAINTAINER:
# gnome@gentoo.org
# @AUTHOR:
# Alexandre Rostovtsev <tetromino@gentoo.org>
# @BLURB: Sets up the environment for using a specific version of vala.
# @DESCRIPTION:
# This eclass sets up commonly used environment variables for using a specific
# version of dev-lang/vala to configure and build a package. It is needed for
# packages whose build systems assume the existence of certain unversioned vala
# executables, pkgconfig files, etc., which Gentoo does not provide.
#
# This eclass provides one phase function: pkg_setup.

inherit multilib

case "${EAPI:-0}" in
	0|1|2)
		die "EAPI=${EAPI} is not supported"
		;;
	*)
		EXPORT_FUNCTIONS pkg_setup
		;;
esac

# @ECLASS-VARIABLE: VALA_API_VERSION
# @DEFAULT_UNSET
# @DESCRIPTION:
# Vala API version (e.g. 0.16).

# @FUNCTION: vala_pkg_setup
# @DESCRIPTION:
# Sets up the environment variables and pkgconfig files for $VALA_API_VERSION.
vala_pkg_setup() {
	if [[ -z "${VALA_API_VERSION}" ]]; then
		die "VALA_API_VERSION not set"
	fi

	export VALAC=$(type -P valac-${VALA_API_VERSION})
	export VALA=$(type -P vala-${VALA_API_VERSION})
	export VALA_GEN_INTROSPECT=$(type -P vala-gen-introspect-${VALA_API_VERSION})
	export VAPIGEN="$(type -P vapigen-${VALA_API_VERSION})"
	export VAPIGEN_MAKEFILE="${EPREFIX}/usr/share/vala-${VALA_API_VERSION}/Makefile.vapigen"
	export VAPIGEN_VAPIDIR="${EPREFIX}/usr/share/vala/vapi"

	if ! [[ -d "${T}/pkgconfig" ]]; then
		mkdir "${T}/pkgconfig" || die "mkdir failed"
	fi
	local p
	for p in libvala vapigen; do
		local d
		for d in "${EPREFIX}/usr/$(get_libdir)/pkgconfig" "${EPREFIX}/usr/share/pkgconfig"; do
			if [[ -e "${d}/${p}-${VALA_API_VERSION}.pc" ]]; then
				ln -s "${d}/${p}-${VALA_API_VERSION}.pc" "${T}/pkgconfig/${p}.pc" || die "ln failed"
				break
			fi
		done
	done
	: ${PKG_CONFIG_PATH:="${EPREFIX}/usr/$(get_libdir)/pkgconfig:${EPREFIX}/usr/share/pkgconfig"}
	export PKG_CONFIG_PATH="${T}/pkgconfig:${PKG_CONFIG_PATH}"
}



^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2012-09-12 20:25 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-25 16:09 [gentoo-dev] [RFC] new vala.eclass Alexandre Rostovtsev
2012-08-25 17:25 ` Tomáš Chvátal
2012-08-25 18:29   ` Diego Elio Pettenò
2012-08-25 21:04 ` Alexandre Rostovtsev
2012-08-25 21:45   ` Ulrich Mueller
2012-08-26  6:59     ` Alexandre Rostovtsev
2012-08-26  7:08       ` Alexandre Rostovtsev
2012-08-26  7:20       ` Alexandre Rostovtsev
2012-08-26 22:45       ` Zac Medico
2012-08-26 23:43         ` Alexandre Rostovtsev
2012-08-27  2:45           ` Alexis Ballier
2012-08-27  4:45             ` Alexandre Rostovtsev
2012-08-27 12:19               ` Alexis Ballier
2012-08-26 22:32   ` [gentoo-dev] " Duncan
2012-08-27  1:20 ` [gentoo-dev] " Alexandre Rostovtsev
2012-08-27 13:21 ` Alexandre Rostovtsev
2012-09-10  2:09 ` Alexandre Rostovtsev
2012-09-12 20:24   ` Alexandre Rostovtsev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox