blob: 06daa7516d1b2c8c994ca9ce842b4451172ad10a (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libyahoo2/libyahoo2-0.7.4.ebuild,v 1.3 2004/07/15 01:12:52 agriffis Exp $
DESCRIPTION="libyahoo2 is an interface to the new Yahoo! Messenger protocol."
HOMEPAGE="http://libyahoo2.sourceforge.net/"
SRC_URI="mirror://sourceforge/libyahoo2/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dobin src/yahoo
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
dodoc doc/*.txt
docinto sample
dodoc src/sample_client.c src/sample_makefile
}
|