diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-11-27 09:59:06 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-11-27 09:59:06 +0000 |
commit | 67b3de1e3489b166499e62fa79b545c511540c7e (patch) | |
tree | d1cdc3557f0adf297be0123a455465bd97bdec90 /net-irc | |
parent | Removed old version (diff) | |
download | gentoo-2-67b3de1e3489b166499e62fa79b545c511540c7e.tar.gz gentoo-2-67b3de1e3489b166499e62fa79b545c511540c7e.tar.bz2 gentoo-2-67b3de1e3489b166499e62fa79b545c511540c7e.zip |
Version bump wrt #238918
(Portage version: 2.1.4.5)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/ii/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/ii/ii-1.4.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/net-irc/ii/ChangeLog b/net-irc/ii/ChangeLog index c271d4a3ca49..9836da4b538a 100644 --- a/net-irc/ii/ChangeLog +++ b/net-irc/ii/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/ii # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/ii/ChangeLog,v 1.5 2008/08/05 17:59:35 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/ii/ChangeLog,v 1.6 2008/11/27 09:59:06 armin76 Exp $ + +*ii-1.4 (27 Nov 2008) + + 27 Nov 2008; Raúl Porcel <armin76@gentoo.org> +ii-1.4.ebuild: + Version bump wrt #238918 05 Aug 2008; Raúl Porcel <armin76@gentoo.org> ii-1.3.ebuild: Fix HOMEPAGE, SRC_URI diff --git a/net-irc/ii/ii-1.4.ebuild b/net-irc/ii/ii-1.4.ebuild new file mode 100644 index 000000000000..3ba44cb4b03f --- /dev/null +++ b/net-irc/ii/ii-1.4.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/ii/ii-1.4.ebuild,v 1.1 2008/11/27 09:59:06 armin76 Exp $ + +inherit toolchain-funcs + +DESCRIPTION="A minimalist FIFO and filesystem-based IRC client" +HOMEPAGE="http://www.suckless.org/programs/ii.html" +SRC_URI="http://code.suckless.org/dl/tools/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i \ + -e "s/CFLAGS = -g -O0/CFLAGS += -g/" \ + -e "s/LDFLAGS =/LDFLAGS +=/" \ + config.mk || die "sed failed" +} + +src_compile() { + emake CC=$(tc-getCC) || die "emake failed" +} + +src_install() { + dobin ii + dodoc README FAQ + doman *.1 +} |