blob: 9de31c5283ad2e4a30c590ee42390ef7bf18e97b (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/lostirc/lostirc-0.3.3.ebuild,v 1.10 2004/10/16 13:39:26 swegener Exp $
inherit base
IUSE="kde gnome"
DESCRIPTION="A simple but functional graphical IRC client"
HOMEPAGE="http://lostirc.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc ~amd64 ~sparc"
DEPEND=">=sys-apps/sed-4*
>=dev-cpp/gtkmm-2.2.11
>=dev-libs/libsigc++-1.2"
src_compile() {
# patch po/Makefile.in.in
sed -i -r 's:(^mkinstalldirs = ).*:\1$(MKINSTALLDIRS):' po/Makefile.in.in || die
local myconf=""
myconf="${myconf} `use_with gnome`"
myconf="${myconf} `use_with kde`"
econf ${myconf} || die
base_src_compile make
}
src_install() {
base_src_install
dodoc AUTHORS ChangeLog COPYING INSTALL README TODO NEWS
}
|