diff options
author | Chuck Short <zul@gentoo.org> | 2004-03-06 13:29:50 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2004-03-06 13:29:50 +0000 |
commit | 7526a30f83d92ff0bf0ccf431fb48b6d9d7c7eae (patch) | |
tree | b6d62140349c638e10db0173b4c2731b4b8e1b41 /net-irc | |
parent | Version bump, closes #43371. (diff) | |
download | historical-7526a30f83d92ff0bf0ccf431fb48b6d9d7c7eae.tar.gz historical-7526a30f83d92ff0bf0ccf431fb48b6d9d7c7eae.tar.bz2 historical-7526a30f83d92ff0bf0ccf431fb48b6d9d7c7eae.zip |
Version bump, closes #43371.
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/lostirc/Manifest | 4 | ||||
-rw-r--r-- | net-irc/lostirc/files/digest-lostirc-0.3.2 | 1 | ||||
-rw-r--r-- | net-irc/lostirc/lostirc-0.3.2.ebuild | 32 |
3 files changed, 35 insertions, 2 deletions
diff --git a/net-irc/lostirc/Manifest b/net-irc/lostirc/Manifest index 8c0fa8846989..a54888e6e0c1 100644 --- a/net-irc/lostirc/Manifest +++ b/net-irc/lostirc/Manifest @@ -4,9 +4,9 @@ MD5 3f3ff15c08346f2339a247f3d90a87b9 lostirc-0.2.5.ebuild 606 MD5 ef8536221081f108737de0edd5abc725 lostirc-0.2.7.ebuild 925 MD5 6f7f4307ac692c5e15fe113b6d4ebff7 lostirc-0.3.0.ebuild 904 MD5 cf4876ff627cd1b1589e5ee916cec468 lostirc-0.2.4.ebuild 607 -MD5 1a5ddc60fd9234f64031b9f90fb68437 lostirc-0.3.2.ebuild 903 +MD5 14e7208b06d7534163d148273f8bfa5a lostirc-0.3.2.ebuild 903 MD5 1f497208d59890997c30f195f38df010 lostirc-0.2.6.ebuild 607 -MD5 fe61ea0cb4e8a2039ea2dbae7ebdedfb ChangeLog 3828 +MD5 4abfdb238033f6567e8bc44c35ae1ea0 ChangeLog 3956 MD5 44c39c6ad372a8e5a5e7ee3311f703a7 metadata.xml 160 MD5 6d024fccbfa473f557df28846ad9427a files/digest-lostirc-0.2.3 65 MD5 ec3e532fb997534700e71043a8a39c2a files/digest-lostirc-0.2.4 65 diff --git a/net-irc/lostirc/files/digest-lostirc-0.3.2 b/net-irc/lostirc/files/digest-lostirc-0.3.2 new file mode 100644 index 000000000000..b9afb6bd999a --- /dev/null +++ b/net-irc/lostirc/files/digest-lostirc-0.3.2 @@ -0,0 +1 @@ +MD5 551f5c344b14b1fdd8f9f54792a69afc lostirc-0.3.2.tar.gz 557774 diff --git a/net-irc/lostirc/lostirc-0.3.2.ebuild b/net-irc/lostirc/lostirc-0.3.2.ebuild new file mode 100644 index 000000000000..4efe2fea3eac --- /dev/null +++ b/net-irc/lostirc/lostirc-0.3.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/lostirc/lostirc-0.3.2.ebuild,v 1.1 2004/03/06 13:29:33 zul Exp $ + +inherit base + +IUSE="kde gnome" +DESCRIPTION="A simple but functional graphical IRC client" +HOMEPAGE="http://lostirc.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~ppc" +S=${WORKDIR}/${P} +DEPEND=">=sys-apps/sed-4* + >=dev-cpp/gtkmm-2.0 + >=dev-libs/libsigc++-1.2" + +src_compile() { + # patch po/Makefile.in.in + sed -i -r 's:(^mkinstalldirs = ).*:\1$(MKINSTALLDIRS):' po/Makefile.in.in || die + local myconf="" + myconf="${myconf} `use_with gnome`" + myconf="${myconf} `use_with kde`" + econf ${myconf} || die + base_src_compile make +} + +src_install() { + base_src_install + dodoc AUTHORS ChangeLog COPYING INSTALL README TODO NEWS +} |