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-misc/grun | |
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-misc/grun')
-rw-r--r-- | x11-misc/grun/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/grun/files/grun-0.9.3-no_nls.patch | 13 | ||||
-rw-r--r-- | x11-misc/grun/grun-0.9.3-r1.ebuild | 46 | ||||
-rw-r--r-- | x11-misc/grun/metadata.xml | 8 |
4 files changed, 68 insertions, 0 deletions
diff --git a/x11-misc/grun/Manifest b/x11-misc/grun/Manifest new file mode 100644 index 000000000000..f9f5f8860788 --- /dev/null +++ b/x11-misc/grun/Manifest @@ -0,0 +1 @@ +DIST grun-0.9.3.tar.gz 368318 SHA256 c484d80e4636a69c6ad6491a4769f555be20595e67cb4bfd34c3c91e501b95dd SHA512 cac78955f59d9981b2b39dce701fa508d00b1d39c8c05ac417cf8ed81419092949765e572f2f3d01bc1d916c28d0a428f84282111264adda9078261fa286e7d0 WHIRLPOOL 12e7278201eab7750dbe4258116c980d376c28cd2f037ef18ab23c5b98aa94332757c7d4dad762e2c3c18187dfca2a909d9ac608e43e10db9b74fe0af940930f diff --git a/x11-misc/grun/files/grun-0.9.3-no_nls.patch b/x11-misc/grun/files/grun-0.9.3-no_nls.patch new file mode 100644 index 000000000000..61b3f33c9ca8 --- /dev/null +++ b/x11-misc/grun/files/grun-0.9.3-no_nls.patch @@ -0,0 +1,13 @@ +http://bugs.gentoo.org/237046 + +--- a/grun.c ++++ b/grun.c +@@ -30,8 +30,6 @@ + + #if defined (HAVE_GETTEXT) || defined (HAVE_CATGETS) + #include <libintl.h> +-#else +-#include "intl/libintl.h" + #endif + + #define PATH_CHAR ":" diff --git a/x11-misc/grun/grun-0.9.3-r1.ebuild b/x11-misc/grun/grun-0.9.3-r1.ebuild new file mode 100644 index 000000000000..ebc39634a8f6 --- /dev/null +++ b/x11-misc/grun/grun-0.9.3-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils + +DESCRIPTION="gRun is a GTK based Run dialog that closely resembles the Windows Run dialog, just like xexec" +HOMEPAGE="http://code.google.com/p/grun/" +SRC_URI="http://grun.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86 ~x86-fbsd" +IUSE="nls" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_prepare() { + epatch "${FILESDIR}"/${P}-no_nls.patch +} + +src_configure() { + [[ -z ${TERM} ]] && TERM=xterm + + econf \ + $(use_enable nls) \ + --disable-gtktest \ + --enable-associations \ + --enable-testfile \ + --with-default-xterm=${TERM} +} + +src_install() { + default + dodoc AUTHORS BUGS ChangeLog NEWS README TODO +} diff --git a/x11-misc/grun/metadata.xml b/x11-misc/grun/metadata.xml new file mode 100644 index 000000000000..11cb726ccd43 --- /dev/null +++ b/x11-misc/grun/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> + <upstream> + <remote-id type="google-code">grun</remote-id> + </upstream> +</pkgmetadata> |