diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /x11-terms/valaterm | |
download | gentoo-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 'x11-terms/valaterm')
-rw-r--r-- | x11-terms/valaterm/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/valaterm/metadata.xml | 11 | ||||
-rw-r--r-- | x11-terms/valaterm/valaterm-0.6.ebuild | 42 |
3 files changed, 54 insertions, 0 deletions
diff --git a/x11-terms/valaterm/Manifest b/x11-terms/valaterm/Manifest new file mode 100644 index 000000000000..1badde23a231 --- /dev/null +++ b/x11-terms/valaterm/Manifest @@ -0,0 +1 @@ +DIST valaterm-0.6.tar.gz 173874 SHA256 3220bb1ec444b339c1c46d3922fbd2741a34667b3ddf744e70b3c30e84bf2298 SHA512 a593b28e437287869020150314e2058f441f0435580b1d95cf2652b81f60fa9a11d59b8ec2dd68801dbc82d1ca070c9135b805c4d771bb4f099f13ebff243ad4 WHIRLPOOL a3822ef2f7479f297cc9a36750f8787988fd1c715f938c7b4aa1dc61533762a3c9da24e63d0db588fa3b9b8472653b345a34f60d5c2939a17eb15e6a4f03e830 diff --git a/x11-terms/valaterm/metadata.xml b/x11-terms/valaterm/metadata.xml new file mode 100644 index 000000000000..2a3ba4a1c032 --- /dev/null +++ b/x11-terms/valaterm/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>ssuominen@gentoo.org</email> + <name>Samuli Suominen</name> + </maintainer> + <upstream> + <remote-id type="gitorious">valaterm</remote-id> + </upstream> +</pkgmetadata> diff --git a/x11-terms/valaterm/valaterm-0.6.ebuild b/x11-terms/valaterm/valaterm-0.6.ebuild new file mode 100644 index 000000000000..c28b65a3ff2a --- /dev/null +++ b/x11-terms/valaterm/valaterm-0.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 +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="http://gitorious.org/valaterm" +SRC_URI="http://gitorious.org/${PN}/${PN}/archive-tarball/${PV} -> ${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 + )" + +DOCS="AUTHORS ChangeLog README TODO" + +S=${WORKDIR}/${PN}-${PN} + +src_configure() { + local myconf + use nls || myconf='--disable-nls' + waf-utils_src_configure --custom-flags --verbose ${myconf} +} |