diff options
Diffstat (limited to 'net-irc/lostirc/lostirc-0.1.0.ebuild')
-rw-r--r-- | net-irc/lostirc/lostirc-0.1.0.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/net-irc/lostirc/lostirc-0.1.0.ebuild b/net-irc/lostirc/lostirc-0.1.0.ebuild new file mode 100644 index 000000000000..b139686e6d60 --- /dev/null +++ b/net-irc/lostirc/lostirc-0.1.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/lostirc/lostirc-0.1.0.ebuild,v 1.1 2002/06/01 05:01:07 stroke Exp $ + +DESCRIPTION="A simple but functional graphical IRC client" +HOMEPAGE="A simple but functional graphical IRC client." +LICENSE="GPL-2" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/lostirc/${P}.tar.gz + http://telia.dl.sourceforge.net/sourceforge/lostirc/${P}.tar.gz + http://belnet.dl.sourceforge.net/sourceforge/lostirc/${P}.tar.gz" + +SLOT="0" + +DEPEND=">=x11-libs/gtkmm-1.2.9-r1 + >=dev-libs/libsigc++-1.0.4-r1" + + +S=${WORKDIR}/${P} + +src_compile() { + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die + + emake || die + #make || die + +} + +src_install () { + + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + + rm ${D}/usr/share/gnome -fr + + dodoc AUTHORS ChangeLog COPYING INSTALL README TODO + +} |