blob: 67c6ec985a0af106ff4abb416074f3dbb865adec (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-p2p/fidelio/fidelio-0.9.6-r1.ebuild,v 1.3 2002/07/11 06:30:49 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Fidelio is a Linux/Unix client for Hotline, a proprietary protocol that combines ftp-like, irc-like and news-like functions with user authentication and permissions in one package."
SRC_URI="http://download.sourceforge.net/fidelio/${PN}-${PV}.tar.gz"
HOMEPAGE="http://fidelio.sourceforge.net/"
SLOT="0"
DEPEND="virtual/glibc
virtual/x11
=x11-libs/gtk+-1.2*
>=gnome-base/gnome-libs-1.4.1.2
>=dev-libs/libxml2-2.4.12
esd? ( >=media-sound/esound-0.2.23 )"
src_compile() {
CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml"
CXXFLAGS="${CXXFLAGS} -I/usr/include/libxml2/libxml"
export CPPFLAGS="-I/usr/include/libxml2"
export XML_CONFIG="/usr/bin/xml2-config"
econf || die
emake || die
}
src_install () {
einstall || die
}
|