summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago M. Mola <coldwind@gentoo.org>2008-09-08 09:28:26 +0000
committerSantiago M. Mola <coldwind@gentoo.org>2008-09-08 09:28:26 +0000
commit91735b80ea9116e8b55598391f17582833c95911 (patch)
treebd63c051c870729c4daf1d1f6ab223bdc257878c /x11-misc/grun
parentInitial commit (#235891). Thanks to Nick Prater for the ebuild. (diff)
downloadgentoo-2-91735b80ea9116e8b55598391f17582833c95911.tar.gz
gentoo-2-91735b80ea9116e8b55598391f17582833c95911.tar.bz2
gentoo-2-91735b80ea9116e8b55598391f17582833c95911.zip
Removed old ebuild.
(Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Diffstat (limited to 'x11-misc/grun')
-rw-r--r--x11-misc/grun/ChangeLog5
-rw-r--r--x11-misc/grun/grun-0.9.2.ebuild77
2 files changed, 4 insertions, 78 deletions
diff --git a/x11-misc/grun/ChangeLog b/x11-misc/grun/ChangeLog
index 8c05b14d077f..386d2e24b168 100644
--- a/x11-misc/grun/ChangeLog
+++ b/x11-misc/grun/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-misc/grun
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/grun/ChangeLog,v 1.25 2008/08/17 15:59:11 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/grun/ChangeLog,v 1.26 2008/09/08 09:28:26 coldwind Exp $
+
+ 08 Sep 2008; Santiago M. Mola <coldwind@gentoo.org> -grun-0.9.2.ebuild:
+ Removed old ebuild.
17 Aug 2008; Markus Meier <maekke@gentoo.org> grun-0.9.2-r1.ebuild:
x86 stable, bug #226639
diff --git a/x11-misc/grun/grun-0.9.2.ebuild b/x11-misc/grun/grun-0.9.2.ebuild
deleted file mode 100644
index 842f4cc1b3c4..000000000000
--- a/x11-misc/grun/grun-0.9.2.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/grun/grun-0.9.2.ebuild,v 1.32 2007/10/28 06:53:56 drac Exp $
-
-inherit eutils
-
-PATCH_LEVEL="14"
-RESTRICT="mirror"
-
-DESCRIPTION="a GTK+ application launcher with nice features such as a history"
-HOMEPAGE="http://packages.qa.debian.org/g/grun.html"
-SRC_URI="mirror://debian/pool/main/g/grun/${PN}_${PV}.orig.tar.gz
- mirror://debian/pool/main/g/grun/${PN}_${PV}-${PATCH_LEVEL}.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
-IUSE="nls"
-
-RDEPEND=">=dev-libs/glib-2
- >=x11-libs/gtk+-2"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- nls? ( sys-devel/gettext )
- sys-devel/gnuconfig
- sys-devel/automake"
-
-src_unpack() {
- unpack ${A}
- epatch ${WORKDIR}/${PN}_${PV}-${PATCH_LEVEL}.diff
-}
-
-src_compile() {
- local myconf
-
- use nls && myconf="--enable-nls" || myconf="--disable-nls"
-
- if [ -z ${TERM} ] ; then
- TERM=xterm
- fi
-
- ebegin "Running automake"
- automake --add-missing &>/dev/null
- eend $?
-
- econf \
- --enable-testfile \
- --with-default-xterm=${TERM} \
- --enable-associations \
- ${myconf}
- emake || die "emake failed."
-}
-
-src_install() {
- einstall || die "einstall failed."
- dodoc AUTHORS BUGS ChangeLog LANGUAGES NEWS README TODO
-}
-
-pkg_postinst() {
- elog "It is recommended to bind grun to a keychain. Fluxbox users can"
- elog "do this by appending e.g. the following line to ~/.fluxbox/keys:"
- elog
- elog "Mod4 r :ExecCommand grun"
- elog
- elog "Then reconfigure Fluxbox (using the menu) and hit <WinKey>-<r>"
- elog
- elog "The default system-wide definition file for associating file"
- elog "extensions with applications is /usr/share/grun/gassoc, the"
- elog "default system-wide definition file for recognized console"
- elog "applications is /usr/share/grun/consfile. They can be overridden"
- elog "on a per user basis by ~/.gassoc and ~/.consfile respectively."
- elog
- elog "To change the default terminal application grun uses, adjust the"
- elog "TERM environment variable accordingly and remerge grun, e.g."
- elog
- elog "export TERM=Eterm && emerge grun"
-}