blob: 60ffd9f8b7fca1bb30e165d0a6abcceddd344c95 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmsg/wmmsg-1.0.ebuild,v 1.4 2004/04/26 14:59:56 agriffis Exp $
DESCRIPTION="wmmsg is a dockapp that informs you of new events, such as incoming chat messages, by displaying related icons and arrival times"
HOMEPAGE="http://taxiway.swapspace.net/~matt/wmmsg/"
SRC_URI="http://taxiway.swapspace.net/~matt/wmmsg/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 amd64"
IUSE=""
DEPEND="virtual/x11
=x11-libs/gtk+-1.2*
media-libs/imlib2"
S=${WORKDIR}/${PN}
src_compile() {
econf || die "econf failed"
emake || die
}
src_install() {
einstall
dodoc AUTHORS COPYING INSTALL NEWS README TODO Changelog
insinto /usr/share/doc/${PF}
doins wmmsgrc
}
|