diff options
author | Kathryn Kulick <gothgirl@gentoo.org> | 2005-11-07 23:35:37 +0000 |
---|---|---|
committer | Kathryn Kulick <gothgirl@gentoo.org> | 2005-11-07 23:35:37 +0000 |
commit | 20b26e7f5c5406f2dd0dbc0c2b9b4255eeef03e8 (patch) | |
tree | 2661de9e814ea7d75c5cb646688acfcb15d242f6 /x11-plugins | |
parent | add support for linux-2.6.14+ with a fix by Michael Cramer #111059 (diff) | |
download | gentoo-2-20b26e7f5c5406f2dd0dbc0c2b9b4255eeef03e8.tar.gz gentoo-2-20b26e7f5c5406f2dd0dbc0c2b9b4255eeef03e8.tar.bz2 gentoo-2-20b26e7f5c5406f2dd0dbc0c2b9b4255eeef03e8.zip |
version bump
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/ignorance/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/ignorance/Manifest | 2 | ||||
-rw-r--r-- | x11-plugins/ignorance/files/digest-ignorance-2.3 | 1 | ||||
-rw-r--r-- | x11-plugins/ignorance/ignorance-2.3.ebuild | 27 |
4 files changed, 36 insertions, 1 deletions
diff --git a/x11-plugins/ignorance/ChangeLog b/x11-plugins/ignorance/ChangeLog index d4c864433df3..a84aa75a8656 100644 --- a/x11-plugins/ignorance/ChangeLog +++ b/x11-plugins/ignorance/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/ignorance # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/ignorance/ChangeLog,v 1.7 2005/10/17 03:38:51 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/ignorance/ChangeLog,v 1.8 2005/11/07 23:35:37 gothgirl Exp $ + +*ignorance-2.3 (08 Nov 2005) + + 08 Nov 2005; <gothgirl@gentoo.org> +ignorance-2.3.ebuild: + version bump 17 Oct 2005; <gothgirl@gentoo.org> -ignorance-1.3.0.ebuild, -ignorance-1.3.1.2.ebuild, -ignorance-1.3.1.3.ebuild, diff --git a/x11-plugins/ignorance/Manifest b/x11-plugins/ignorance/Manifest index bc2c9fe6f2a0..e9015e1f2142 100644 --- a/x11-plugins/ignorance/Manifest +++ b/x11-plugins/ignorance/Manifest @@ -1,4 +1,6 @@ MD5 442130528aafb95b044fff4c72edcef4 ChangeLog 1280 MD5 81c72ec6f81e47c93cc33969dfb0b8f5 files/digest-ignorance-2.0 66 +MD5 d413c075b955943cd5d23d853ab98810 files/digest-ignorance-2.3 66 MD5 5006f4dfd97bd95191cc2a158745e975 ignorance-2.0.ebuild 737 +MD5 5006f4dfd97bd95191cc2a158745e975 ignorance-2.3.ebuild 737 MD5 003482320f46f06d6cb0c5e55681fefc metadata.xml 336 diff --git a/x11-plugins/ignorance/files/digest-ignorance-2.3 b/x11-plugins/ignorance/files/digest-ignorance-2.3 new file mode 100644 index 000000000000..bffe8418e6c3 --- /dev/null +++ b/x11-plugins/ignorance/files/digest-ignorance-2.3 @@ -0,0 +1 @@ +MD5 480911401c623fc7fbd2d7265cddfbe2 ignorance-2.3.tar.bz2 298258 diff --git a/x11-plugins/ignorance/ignorance-2.3.ebuild b/x11-plugins/ignorance/ignorance-2.3.ebuild new file mode 100644 index 000000000000..ff6f105b877e --- /dev/null +++ b/x11-plugins/ignorance/ignorance-2.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/ignorance/ignorance-2.3.ebuild,v 1.1 2005/11/07 23:35:37 gothgirl Exp $ + +inherit eutils + +DESCRIPTION="GAIM Advanced Ignore filter" +HOMEPAGE="http://ignorance.sf.net" +SRC_URI="mirror:sourceforge/ignorance/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +DEPEND=">=net-im/gaim-1.0.1" + +src_unpack() { + unpack ${A} + # Set correct plugindir + sed -i -e "s:^\(plugindir = \$(prefix)/\)lib/:\1$(get_libdir)/:" \ + ${S}/Makefile.in || die "sed failed" +} +src_install() { + emake install DESTDIR=${D} || die "Install failed" + dodoc ChangeLog INSTALL README AUTHORS +} |