diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2016-08-24 20:19:25 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2016-08-24 20:23:36 -0400 |
commit | 318245424e1faaee6c754e18279bca6e1fbfc4a7 (patch) | |
tree | 9fde2734ce1e006e200200305cba6c0d83133e46 /x11-terms | |
parent | games-board/stockfish: new version 7 that respects $CC; remove old ones. (diff) | |
download | gentoo-318245424e1faaee6c754e18279bca6e1fbfc4a7.tar.gz gentoo-318245424e1faaee6c754e18279bca6e1fbfc4a7.tar.bz2 gentoo-318245424e1faaee6c754e18279bca6e1fbfc4a7.zip |
x11-terms/valaterm: new EAPI=6 revision with fixed HOMEPAGE and SRC_URI.
Gentoo-Bug: 544872
Package-Manager: portage-2.2.28
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/valaterm/valaterm-0.6-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/x11-terms/valaterm/valaterm-0.6-r1.ebuild b/x11-terms/valaterm/valaterm-0.6-r1.ebuild new file mode 100644 index 000000000000..f6b1ea3e8ede --- /dev/null +++ b/x11-terms/valaterm/valaterm-0.6-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +VALA_MIN_API_VERSION="0.16" + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE='threads(+)' + +inherit python-any-r1 waf-utils vala + +DESCRIPTION="A lightweight vala based terminal" +HOMEPAGE="https://github.com/jpdeplaix/${PN}" +SRC_URI="${HOMEPAGE}archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=dev-libs/glib-2 + x11-libs/gtk+:3 + x11-libs/vte:2.90" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + $(vala_depend) + virtual/pkgconfig + nls? ( + dev-util/intltool + sys-devel/gettext + )" + +S="${WORKDIR}/${PN}-${PN}" + +src_prepare() { + # Temporary workaround for the fact that vala.eclass doesn't support + # EAPI=6. + eapply_user + vala_src_prepare +} + +src_configure() { + # If you try --enable-nls, it barfs. + local myconf='' + use nls || myconf='--disable-nls' + waf-utils_src_configure --custom-flags --verbose ${myconf} +} |