blob: ff377bcf44350f6cc56952df23035c4d8be04849 (
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
35
|
# 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.2.ebuild,v 1.4 2004/07/15 01:12:52 agriffis Exp $
inherit eutils
DESCRIPTION="libyahoo2 is a C library interface to the new Yahoo! Messenger protocol. It supports almost all current features of the protocol."
HOMEPAGE="http://libyahoo2.sourceforge.net/"
SRC_URI="mirror://sourceforge/libyahoo2/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/sample_client.c-gentoo.patch
}
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
}
|