diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-07-21 23:20:44 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-07-21 23:20:44 +0000 |
commit | 3da59bcf77dd4e607e762063149901a3e1c3e310 (patch) | |
tree | 6933f0928a41cbe24ebe8804207679699b903ce3 /net-irc | |
parent | Marked ppc stable for bug #99578. (diff) | |
download | gentoo-2-3da59bcf77dd4e607e762063149901a3e1c3e310.tar.gz gentoo-2-3da59bcf77dd4e607e762063149901a3e1c3e310.tar.bz2 gentoo-2-3da59bcf77dd4e607e762063149901a3e1c3e310.zip |
Version bump, bug #99812.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/loqui/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/loqui/Manifest | 12 | ||||
-rw-r--r-- | net-irc/loqui/files/digest-loqui-0.4.1 | 1 | ||||
-rw-r--r-- | net-irc/loqui/loqui-0.4.1.ebuild | 32 |
4 files changed, 41 insertions, 11 deletions
diff --git a/net-irc/loqui/ChangeLog b/net-irc/loqui/ChangeLog index 4e751061614a..db192f5873b0 100644 --- a/net-irc/loqui/ChangeLog +++ b/net-irc/loqui/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/loqui # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/loqui/ChangeLog,v 1.25 2005/07/07 16:23:05 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/loqui/ChangeLog,v 1.26 2005/07/21 23:20:44 swegener Exp $ + +*loqui-0.4.1 (21 Jul 2005) + + 21 Jul 2005; Sven Wegener <swegener@gentoo.org> +loqui-0.4.1.ebuild: + Version bump, bug #99812. *loqui-0.4.0 (07 Jul 2005) diff --git a/net-irc/loqui/Manifest b/net-irc/loqui/Manifest index 74ce52e6687c..e650bf4f0392 100644 --- a/net-irc/loqui/Manifest +++ b/net-irc/loqui/Manifest @@ -1,16 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 9f8ef7004267ef51809697094733b366 ChangeLog 4154 MD5 2e02a8fe6daa05f7a2b04a0207c16aa9 files/digest-loqui-0.3.9 63 MD5 247502d788c7e00e2048298095b9929d files/digest-loqui-0.4.0 63 +MD5 c1bb1a08be714780754a25f709e9248d files/digest-loqui-0.4.1 63 MD5 2f2a08fadcb42f102df9170240a14d72 loqui-0.3.9.ebuild 816 MD5 b03352a0cbb417e2f2ac6c53d4c8c7ec loqui-0.4.0.ebuild 859 +MD5 b03352a0cbb417e2f2ac6c53d4c8c7ec loqui-0.4.1.ebuild 859 MD5 44c39c6ad372a8e5a5e7ee3311f703a7 metadata.xml 160 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCzVcCI1lqEGTUzyQRAmXgAJ9Co1wrnL9e1JnFAqElwaE1mkqYjgCePnBr -QxE5KAH+rAoZFZ61yt7co1c= -=/9t/ ------END PGP SIGNATURE----- diff --git a/net-irc/loqui/files/digest-loqui-0.4.1 b/net-irc/loqui/files/digest-loqui-0.4.1 new file mode 100644 index 000000000000..290e5afcfcd4 --- /dev/null +++ b/net-irc/loqui/files/digest-loqui-0.4.1 @@ -0,0 +1 @@ +MD5 f690d74dd3a43fdddab437fc47cbebb5 loqui-0.4.1.tar.gz 753033 diff --git a/net-irc/loqui/loqui-0.4.1.ebuild b/net-irc/loqui/loqui-0.4.1.ebuild new file mode 100644 index 000000000000..c8260708ebce --- /dev/null +++ b/net-irc/loqui/loqui-0.4.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/loqui/loqui-0.4.1.ebuild,v 1.1 2005/07/21 23:20:44 swegener Exp $ + +MY_P="${P/_}" + +DESCRIPTION="Loqui is a graphical IRC client for GNOME2 on UNIX like operating system." +SRC_URI="http://loqui.good-day.net/src/${MY_P}.tar.gz" +HOMEPAGE="http://loqui.good-day.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" +IUSE="nls" + +RDEPEND=">=dev-libs/glib-2.2.1 + >=x11-libs/gtk+-2.4 + >=net-libs/gnet-2.0.3" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +S="${WORKDIR}"/${MY_P} + +src_compile() { + econf $(use_enable nls) || die "Configure failed" + emake || die "Compile failed" +} + +src_install() { + make DESTDIR="${D}" install || die "Install failed" + dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" +} |