diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-02-18 15:24:31 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-02-18 15:24:31 +0000 |
commit | ea65200ce736a85d9f60e0bee53fffbfc515535b (patch) | |
tree | 02e0800486f8e4de784bc5870bf367738342ceb4 | |
parent | Stable on ppc wrt bug 166529 (diff) | |
download | gentoo-2-ea65200ce736a85d9f60e0bee53fffbfc515535b.tar.gz gentoo-2-ea65200ce736a85d9f60e0bee53fffbfc515535b.tar.bz2 gentoo-2-ea65200ce736a85d9f60e0bee53fffbfc515535b.zip |
Version bump to fix bug 152483 and directly stable x86
(Portage version: 2.1.2-r9)
-rw-r--r-- | net-irc/ninja/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/ninja/files/digest-ninja-1.5.9_pre14 | 3 | ||||
-rw-r--r-- | net-irc/ninja/ninja-1.5.9_pre14.ebuild | 28 |
3 files changed, 37 insertions, 1 deletions
diff --git a/net-irc/ninja/ChangeLog b/net-irc/ninja/ChangeLog index ca9b73c1e164..8e295119e9e9 100644 --- a/net-irc/ninja/ChangeLog +++ b/net-irc/ninja/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/ninja # Copyright 2003-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/ninja/ChangeLog,v 1.16 2007/02/09 08:08:32 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/ninja/ChangeLog,v 1.17 2007/02/18 15:24:31 armin76 Exp $ + +*ninja-1.5.9_pre14 (18 Feb 2007) + + 18 Feb 2007; Raúl Porcel <armin76@gentoo.org> +ninja-1.5.9_pre14.ebuild: + Version bump to fix bug 152483 and directly stable x86 09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/net-irc/ninja/files/digest-ninja-1.5.9_pre14 b/net-irc/ninja/files/digest-ninja-1.5.9_pre14 new file mode 100644 index 000000000000..e29555337a8d --- /dev/null +++ b/net-irc/ninja/files/digest-ninja-1.5.9_pre14 @@ -0,0 +1,3 @@ +MD5 d7daf4d5b5dfd012b88c35e372318e08 ninja-1.5.9pre14.tar.gz 920668 +RMD160 171665e766aafc8f4c3f28ad6998149312fca97b ninja-1.5.9pre14.tar.gz 920668 +SHA256 151422413acf67a6d695346fa21d8b9ce8901ee31d0e6ac07d997d5793ff3c38 ninja-1.5.9pre14.tar.gz 920668 diff --git a/net-irc/ninja/ninja-1.5.9_pre14.ebuild b/net-irc/ninja/ninja-1.5.9_pre14.ebuild new file mode 100644 index 000000000000..46d0992adeaa --- /dev/null +++ b/net-irc/ninja/ninja-1.5.9_pre14.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/ninja/ninja-1.5.9_pre14.ebuild,v 1.1 2007/02/18 15:24:31 armin76 Exp $ + +S=${WORKDIR}/${P/_*/} + +DESCRIPTION="Ninja IRC Client" +HOMEPAGE="http://ninja.qoop.org/" +SRC_URI="ftp://qoop.org/ninja/stable/${P/_/}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc x86" +IUSE="ncurses ipv6 ssl" + +DEPEND="virtual/libc + ncurses? ( sys-libs/ncurses ) + ssl? ( dev-libs/openssl )" + +MAKEOPTS="${MAKEOPTS} -j1" + +src_compile() { + econf $(use_enable ipv6) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |