blob: 384f344b0457d6489b56888bdcd258e9d08a3aa5 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/silky/silky-0.5.5.ebuild,v 1.4 2007/08/21 22:40:19 ticho Exp $
DESCRIPTION="Simple and easy to use GTK+ based os-independent SILC client."
HOMEPAGE="http://silky.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
KEYWORDS="ppc ~sparc x86"
LICENSE="GPL-2"
IUSE=""
SLOT="0"
DEPEND=">=gnome-base/libglade-2
>=x11-libs/gtk+-2.2
x11-libs/pango
app-misc/mime-types
=net-im/silc-toolkit-1.0*"
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
}
|