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 /dev-util/nemiver | |
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 'dev-util/nemiver')
-rw-r--r-- | dev-util/nemiver/Manifest | 1 | ||||
-rw-r--r-- | dev-util/nemiver/metadata.xml | 13 | ||||
-rw-r--r-- | dev-util/nemiver/nemiver-0.9.5.ebuild | 49 |
3 files changed, 63 insertions, 0 deletions
diff --git a/dev-util/nemiver/Manifest b/dev-util/nemiver/Manifest new file mode 100644 index 000000000000..a752215102ef --- /dev/null +++ b/dev-util/nemiver/Manifest @@ -0,0 +1 @@ +DIST nemiver-0.9.5.tar.xz 1396468 SHA256 33590e3964092cabb629a6ba8415786b054702063a944eca5fe4156048baf8d9 SHA512 c8aac934749320caab163d15520cb3eb9a981ca0311c0c9a8b29f31f6e57a7d50d0cdae663d635155f9ed3617462175949ddf2d776058880c0a243b419280b98 WHIRLPOOL 37a1e6077f8b784cfd982bf4df7cd0c9b02081f4dcfeefab15bca89fedbb1df9f8799d1c3336a5eb06b132d745a5d00700b33e8bec89e06bfd024692f1624680 diff --git a/dev-util/nemiver/metadata.xml b/dev-util/nemiver/metadata.xml new file mode 100644 index 000000000000..aaf2445bc9e4 --- /dev/null +++ b/dev-util/nemiver/metadata.xml @@ -0,0 +1,13 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>gnome</herd> + <longdescription> + Nemiver is an on going effort to write an easy to use standalone C/C++ + debugger that integrates well in the GNOME environment. + </longdescription> + <use> + <flag name='memoryview'>Enable the optional hexadecimal memory inspection + with <pkg>app-editors/ghex</pkg>.</flag> + </use> +</pkgmetadata> diff --git a/dev-util/nemiver/nemiver-0.9.5.ebuild b/dev-util/nemiver/nemiver-0.9.5.ebuild new file mode 100644 index 000000000000..4a5831a21c7a --- /dev/null +++ b/dev-util/nemiver/nemiver-0.9.5.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="yes" +GNOME2_LA_PUNT="yes" + +inherit eutils gnome2 + +DESCRIPTION="A gtkmm front end to the GNU Debugger (gdb)" +HOMEPAGE="https://wiki.gnome.org/Apps/Nemiver" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="memoryview" + +RDEPEND=" + >=dev-libs/glib-2.16:2 + >=dev-cpp/glibmm-2.30:2 + >=dev-cpp/gtkmm-3:3.0 + >=dev-cpp/gtksourceviewmm-3:3.0 + >=gnome-base/gsettings-desktop-schemas-0.0.1 + >=gnome-base/libgtop-2.19 + >=x11-libs/vte-0.28:2.90 + >=dev-db/sqlite-3:3 + sys-devel/gdb + dev-libs/boost + memoryview? ( >=app-editors/ghex-2.90:2 ) +" +# FIXME: dynamiclayout needs unreleased stable gdlmm:3 +# dynamiclayout? ( >=dev-cpp/gdlmm-3.0:3 ) +DEPEND="${RDEPEND} + app-text/docbook-xml-dtd:4.1.2 + >=dev-util/intltool-0.40 + >=sys-devel/gettext-0.17 + virtual/pkgconfig +" + +src_configure() { + gnome2_src_configure \ + --disable-dynamiclayout \ + --disable-static \ + --disable-symsvis \ + --enable-gsettings \ + $(use_enable memoryview) \ + ITSTOOL=$(type -P true) +} |