diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-01 05:01:07 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-01 05:01:07 +0000 |
commit | b6680760fa1fad33ae57e27735e43e7bfc215170 (patch) | |
tree | c942a05a53219959422b8d3927cbe3f87ddadddb /net-irc/lostirc | |
parent | prototype ebuild for new gnome2 eclass (diff) | |
download | historical-b6680760fa1fad33ae57e27735e43e7bfc215170.tar.gz historical-b6680760fa1fad33ae57e27735e43e7bfc215170.tar.bz2 historical-b6680760fa1fad33ae57e27735e43e7bfc215170.zip |
package lostirc was added.
Diffstat (limited to 'net-irc/lostirc')
-rw-r--r-- | net-irc/lostirc/ChangeLog | 13 | ||||
-rw-r--r-- | net-irc/lostirc/files/digest-lostirc-0.1.0 | 1 | ||||
-rw-r--r-- | net-irc/lostirc/lostirc-0.1.0.ebuild | 45 |
3 files changed, 59 insertions, 0 deletions
diff --git a/net-irc/lostirc/ChangeLog b/net-irc/lostirc/ChangeLog new file mode 100644 index 000000000000..c7d90d018694 --- /dev/null +++ b/net-irc/lostirc/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for net-irc/lostirc +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/lostirc/ChangeLog,v 1.1 2002/06/01 05:01:07 stroke Exp $ + +*lostirc-0.1.0 (01 June 2002) + + 01 June 2002; Lasse Mikkelsen <lbm@fatalerror.dk> lostirc-0.1.0.ebuild: + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/net-irc/lostirc/files/digest-lostirc-0.1.0 b/net-irc/lostirc/files/digest-lostirc-0.1.0 new file mode 100644 index 000000000000..12aab0d7f86c --- /dev/null +++ b/net-irc/lostirc/files/digest-lostirc-0.1.0 @@ -0,0 +1 @@ +MD5 78f33a839a8c63deaf62b582e4680748 lostirc-0.1.0.tar.gz 201962 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 + +} |