blob: a3729f1d95887e108cdb26f2b48fce572e69e767 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gtk-systrace/gtk-systrace-0.1-r2.ebuild,v 1.3 2003/09/07 02:52:05 msterret Exp $
DESCRIPTION="Systrace gtk notification gui"
HOMEPAGE="http://www.systrace.org"
SRC_URI="http://www.citi.umich.edu/u/provos/systrace/gtk-systrace-2003-06-23.tar.gz"
SLOT="0"
LICENSE="GPL-2"
S="${WORKDIR}/${P}"
FILESDIR="${WORKDIR}/notification-0.1"
KEYWORDS="~x86"
IUSE="gtk"
DEPEND="sys-apps/systrace
gtk? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* )"
src_compile() {
cd ${FILESDIR}
./autogen.sh || die
emake || die
}
src_install() {
cp ${FILESDIR}/src/notification xsystrace
exeinto /usr/X11R6/bin
doexe xsystrace
dodir /usr/local/share/notification/pixmaps
insinto /usr/local/share/notification/pixmaps
doins ${FILESDIR}/pixmaps/*.xpm
}
|