blob: 53fa1510c0d307837a9356b92015d8d5a802b2cf (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/smartirc4net/smartirc4net-0.4.5.1.ebuild,v 1.2 2009/02/01 02:19:37 mr_bones_ Exp $
EAPI="2"
inherit mono
HOMEPAGE="http://www.smuxi.org/page/Download"
SRC_URI="http://smuxi.meebey.net/jaws/data/files/${P}.tar.gz"
DESCRIPTION="SmartIrc4net is a multi-threaded and thread-safe IRC library written in C#"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
LICENSE="|| ( LGPL-2.1 LGPL-3 )"
RDEPEND=">=dev-lang/mono-2.0"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.23"
src_install() {
emake DESTDIR="${D}" install
dodoc FEATURES TODO API_CHANGE CHANGELOG README || die "dodoc failed"
}
|