blob: 68d40d8d7fd40ce0ec38c7e01ec5ced7f4a78a45 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/lostirc/lostirc-0.4.0.ebuild,v 1.2 2004/06/24 23:07:19 agriffis Exp $
inherit base
IUSE="kde gnome debug"
DESCRIPTION="A simple but functional graphical IRC client"
HOMEPAGE="http://lostirc.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
RDEPEND="=dev-cpp/gtkmm-2.4*
=dev-cpp/glibmm-2.4*
=dev-libs/libsigc++-2.0*"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
econf \
`use_with gnome` \
`use_with kde` \
`use_enable debug logdebug` \
|| die "econf failed"
base_src_compile make
}
src_install() {
base_src_install
dodoc AUTHORS ChangeLog README TODO NEWS || die "dodoc failed"
}
|