blob: 842f4cc1b3c45fb9ef8d98dda4f308d6a9fea8bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# 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"
}
|