diff options
author | 2003-01-29 00:03:52 +0000 | |
---|---|---|
committer | 2003-01-29 00:03:52 +0000 | |
commit | 5c05c3e6f4bca04c1f9abea4fb4709657a99818b (patch) | |
tree | 40964b1179691805ea33291d942407f3c12bdef7 /net-p2p/fidelio/fidelio-1.0_beta1.ebuild | |
parent | fix src_uri for the openoffice source tbz2s... (diff) | |
download | gentoo-2-5c05c3e6f4bca04c1f9abea4fb4709657a99818b.tar.gz gentoo-2-5c05c3e6f4bca04c1f9abea4fb4709657a99818b.tar.bz2 gentoo-2-5c05c3e6f4bca04c1f9abea4fb4709657a99818b.zip |
Version bump.
Diffstat (limited to 'net-p2p/fidelio/fidelio-1.0_beta1.ebuild')
-rw-r--r-- | net-p2p/fidelio/fidelio-1.0_beta1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-p2p/fidelio/fidelio-1.0_beta1.ebuild b/net-p2p/fidelio/fidelio-1.0_beta1.ebuild new file mode 100644 index 000000000000..c86e4d25bf15 --- /dev/null +++ b/net-p2p/fidelio/fidelio-1.0_beta1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/fidelio/fidelio-1.0_beta1.ebuild,v 1.1 2003/01/29 00:03:52 raker Exp $ + +IUSE="nls esd" +S=${WORKDIR}/${P/_beta1/b1} +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="mirror://sourceforge/fidelio/${P/_beta1/b1}.tar.gz" +HOMEPAGE="http://fidelio.sourceforge.net/" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc" +DEPEND="=x11-libs/gtk+-1.2* + >=gnome-base/gnome-libs-1.4.1.2 + >=dev-libs/libxml2-2.4.12 + nls? ( sys-devel/gettext ) + 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" + + local myconf + + use nls || myconf="${myconf} --disable-nls" + + econf ${myconf} || die + emake || die + +} + +src_install () { + + einstall || die + + dodoc AUTHORS ChangeLog NEWS README TODO +} |