blob: e1cfa030c2e00a3810838502b05ea719e8fd855f (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Gontran Zepeda <gontran@gontran.net>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbpager/bbpager-0.3.0-r2.ebuild,v 1.1 2002/03/15 15:25:07 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="An understated pager for Blackbox."
SRC_URI="http://bbtools.windsofstorm.net/sources/${P}.tar.gz"
HOMEPAGE="http://bbtools.windsofstorm.net/available.phtml#bbpager"
DEPEND="virtual/blackbox"
src_compile() {
./configure --prefix=/usr --host=${CHOST} || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc README TODO NEWS ChangeLog
}
pkg_postinst() {
if [ "`use gnome`" ] ; then
cd ${ROOT}usr/X11R6/bin/wm
if [ ! "`grep bbpager blackbox`" ] ; then
sed -e "s:.*blackbox:exec /usr/bin/bbpager \&\n&:" \
blackbox | cat > blackbox
fi
fi
}
|