summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /eclass/wxwidgets.eclass
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'eclass/wxwidgets.eclass')
-rw-r--r--eclass/wxwidgets.eclass145
1 files changed, 145 insertions, 0 deletions
diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass
new file mode 100644
index 000000000000..f26f13d50459
--- /dev/null
+++ b/eclass/wxwidgets.eclass
@@ -0,0 +1,145 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# @ECLASS: wxwidgets.eclass
+# @MAINTAINER:
+# wxwidgets@gentoo.org
+# @BLURB: Manages build configuration for wxGTK-using packages.
+# @DESCRIPTION:
+# This eclass gives ebuilds the ability to build against a specific wxGTK
+# SLOT and profile without interfering with the system configuration. Any
+# ebuild with a x11-libs/wxGTK dependency must use this eclass.
+#
+# There are two ways to do it:
+#
+# - set WX_GTK_VER before inheriting the eclass
+# - set WX_GTK_VER and call need-wxwidgets from a phase function
+#
+# (where WX_GTK_VER is the SLOT you want)
+#
+# If your package has optional support for wxGTK (ie. by a USE flag) then
+# you should use need-wxwidgets. This is important because some packages
+# will force-enable wxGTK if they find WX_CONFIG set in the environment.
+#
+# @CODE
+# inherit wxwidgets
+#
+# IUSE="X wxwidgets"
+# DEPEND="wxwidgets? ( x11-libs/wxGTK:2.8[X?] )"
+#
+# src_configure() {
+# if use wxwidgets; then
+# WX_GTK_VER="2.8"
+# if use X; then
+# need-wxwidgets unicode
+# else
+# need-wxwidgets base-unicode
+# fi
+# fi
+# econf --with-wx-config="${WX_CONFIG}"
+# }
+# @CODE
+#
+# That's about as complicated as it gets. 99% of ebuilds can get away with:
+#
+# @CODE
+# inherit wxwidgets
+# DEPEND="wxwidgets? ( x11-libs/wxGTK:2.8[X] )
+# ...
+# WX_GTK_VER=2.8 need-wxwidgets unicode
+# @CODE
+#
+# Note: unless you know your package works with wxbase (which is very
+# doubtful), always depend on wxGTK[X].
+
+inherit eutils multilib
+
+# We do this in global scope so ebuilds can get sane defaults just by
+# inheriting.
+if [[ -z ${WX_CONFIG} ]]; then
+ if [[ -n ${WX_GTK_VER} ]]; then
+ for wxtoolkit in mac gtk2 base; do
+ # newer versions don't have a seperate debug profile
+ for wxdebug in xxx release- debug-; do
+ wxconf="${wxtoolkit}-unicode-${wxdebug/xxx/}${WX_GTK_VER}"
+
+ [[ -f ${EPREFIX}/usr/$(get_libdir)/wx/config/${wxconf} ]] || continue
+
+ WX_CONFIG="${EPREFIX}/usr/$(get_libdir)/wx/config/${wxconf}"
+ WX_ECLASS_CONFIG="${WX_CONFIG}"
+ break
+ done
+ [[ -n ${WX_CONFIG} ]] && break
+ done
+ [[ -n ${WX_CONFIG} ]] && export WX_CONFIG WX_ECLASS_CONFIG
+ fi
+fi
+
+# @FUNCTION: need-wxwidgets
+# @USAGE: <profile>
+# @DESCRIPTION:
+#
+# Available configurations are:
+#
+# unicode (USE="X")
+# base-unicode (USE="-X")
+
+need-wxwidgets() {
+ local wxtoolkit wxdebug wxconf
+
+ if [[ -z ${WX_GTK_VER} ]]; then
+ eerror "WX_GTK_VER must be set before calling $FUNCNAME."
+ echo
+ die
+ fi
+
+ if [[ ${WX_GTK_VER} != 2.8 && ${WX_GTK_VER} != 2.9 && ${WX_GTK_VER} != 3.0 ]]; then
+ eerror "Invalid WX_GTK_VER: ${WX_GTK_VER} - must be set to a valid wxGTK SLOT."
+ echo
+ die
+ fi
+
+ case $1 in
+ unicode|base-unicode) ;;
+ *) eerror "Invalid $FUNCNAME profile: $1"
+ echo
+ die
+ ;;
+ esac
+
+ # wxbase is provided by both gtk2 and base installations
+ if has_version "x11-libs/wxGTK:${WX_GTK_VER}[aqua]"; then
+ wxtoolkit="mac"
+ elif has_version "x11-libs/wxGTK:${WX_GTK_VER}[X]"; then
+ wxtoolkit="gtk2"
+ else
+ wxtoolkit="base"
+ fi
+
+ # 2.8 has a separate debug element
+ if [[ ${WX_GTK_VER} == 2.8 ]]; then
+ if has_version "x11-libs/wxGTK:${WX_GTK_VER}[debug]"; then
+ wxdebug="debug-"
+ else
+ wxdebug="release-"
+ fi
+ fi
+
+ wxconf="${wxtoolkit}-unicode-${wxdebug}${WX_GTK_VER}"
+
+ if [[ ! -f ${EPREFIX}/usr/$(get_libdir)/wx/config/${wxconf} ]]; then
+ echo
+ eerror "Failed to find configuration ${wxconf}"
+ echo
+ die
+ fi
+
+ export WX_CONFIG="${EPREFIX}/usr/$(get_libdir)/wx/config/${wxconf}"
+ export WX_ECLASS_CONFIG="${WX_CONFIG}"
+
+ echo
+ einfo "Requested wxWidgets: ${1} ${WX_GTK_VER}"
+ einfo "Using wxWidgets: ${wxconf}"
+ echo
+}