mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Mart Raudsepp <leio@gentoo.org>
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
PYTHON_COMPAT=( python{3_5,3_6,3_7} )
|
|
GNOME_ORG_MODULE="glib"
|
|
|
|
inherit gnome.org python-single-r1
|
|
|
|
DESCRIPTION="Build utilities for GLib using projects"
|
|
HOMEPAGE="https://www.gtk.org/"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0" # /usr/bin utilities that can't be parallel installed by their nature
|
|
IUSE=""
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
!<dev-libs/glib-2.56.2:2
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() { :; }
|
|
|
|
src_compile() {
|
|
sed -e "s:@VERSION@:${PV}:g;s:@PYTHON@:python:g" gobject/glib-genmarshal.in > gobject/glib-genmarshal
|
|
sed -e "s:@VERSION@:${PV}:g;s:@PYTHON@:python:g" gobject/glib-mkenums.in > gobject/glib-mkenums
|
|
}
|
|
|
|
src_install() {
|
|
python_fix_shebang gobject/glib-genmarshal
|
|
python_fix_shebang gobject/glib-mkenums
|
|
python_fix_shebang glib/gtester-report
|
|
exeinto /usr/bin
|
|
doexe gobject/glib-genmarshal
|
|
doexe gobject/glib-mkenums
|
|
doexe glib/gtester-report
|
|
doman docs/reference/gobject/glib-genmarshal.1
|
|
doman docs/reference/gobject/glib-mkenums.1
|
|
doman docs/reference/glib/gtester-report.1
|
|
}
|