Portage is a package management system used by Gentoo Linux
# ChangeLog for net-irc/scrollz
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/scrollz/ChangeLog,v 1.29 2008/01/16 20:49:32 grobian Exp $
16 Jan 2008; Fabian Groffen
Dropped ppc-macos keyword, see you in prefix
14 Apr 2007; Raúl Porcel
-files/scrollz-1.9.5-gcc4.patch, -scrollz-1.9.5.ebuild:
old
14 Apr 2007;
Stable on amd64 wrt armin76
14 Apr 2007; Raúl Porcel
ia64 + x86 stable
*scrollz-1.9.99 (13 Mar 2007)
13 Mar 2007; Raúl Porcel
+scrollz-1.9.99.ebuild:
Version bump, drop old
*scrollz-1.9.98.1 (26 Oct 2006)
26 Oct 2006; Markus Ullmann
+scrollz-1.9.98.1.ebuild:
Version bump wrt bug #114923
02 Sep 2005; Fabian Groffen
+files/scrollz-1.9.5-gcc4.patch, scrollz-1.9.5.ebuild:
Adding a GCC4 compilation patch and marking ~ppc-macos (bug #90165)
27 Aug 2005; Sven Wegener
Remmove old ebuild.
24 Aug 2005; Aron Griffis
stable on ia64
18 Aug 2005; Sven Wegener
-scrollz-1.9.4-r1.ebuild:
Removed old ebuilds.
15 Aug 2005; Luis Medinas
Marked Stable on AMD64.
05 Jul 2005; Sven Wegener
Marked stable on x86.
*scrollz-1.9.5 (14 May 2005)
14 May 2005; Sven Wegener
Version bump, bug #92618.
07 Apr 2005; Simon Stelling
stable on amd64
17 Feb 2005; Sven Wegener
Marked stable on x86.
*scrollz-1.9.4-r1 (01 Jan 2005)
01 Jan 2005; Sven Wegener
-scrollz-1.9.4.ebuild:
Revision bump. The old 1.9.4 was a beta release, this -r1 is the real 1.9.4
release.
*scrollz-1.9.4 (13 Nov 2004)
13 Nov 2004; Sven Wegener
Version bump.
19 Oct 2004; Dylan Carlson
Stable on amd64.
17 Jul 2004; Sven Wegener
Marked stable on x86.
01 Jul 2004; Jeremy Huddleston
scrollz-1.9.ebuild:
virtual/glibc -> virtual/libc
*scrollz-1.9.3 (20 Jun 2004)
20 Jun 2004; Sven Wegener
Version bump.
29 May 2004; Pieter Van den Abeele
Masked scrollz-1.9.ebuild testing for ppc
16 Dec 2003; Chuck Short
Marked stable for amd64 and ia64.
18 Oct 2003; Chuck Short
Added ~amd64 to keywords.
05 Oct 2003; Chuck Short
Added ~ia64 to keywords.
*scrollz-1.9 (29 Jun 2003)
29 Jun 2003; Mike Frysinger
Version bump for Manel Miravalls Joan
*scrollz-1.8m (11 Dec 2002)
11 Dec 2002; phoen][x
files/digest-scrollz-1.8m:
Initial import. Ebuild submitted by Cory Visi
Thanks for the contribution. This closes bug 9808.
DIST ScrollZ-1.9.99.tar.bz2 694658 RMD160 51badd8540ec1f8977241cbdb5b80003ad305abe SHA1 52d9cfb4c0e61075f5f2c64b477333f1bed06f8a SHA256 01f5bbcd4b4ebf57bd03c018feaa295cc44afdb50e1dbf2f1c4779d88b3e2e90
EBUILD scrollz-1.9.99.ebuild 1035 RMD160 d774a186fe9019421a65a8736aa7b67ddfb05b94 SHA1 00f6eb92d6c4b2f7a7d468766966fff6a8752e33 SHA256 bb04d86814f696abf5ca220385af2738d04f3cced2862005dd62f5c96c4b21c2
MISC ChangeLog 3546 RMD160 0c6cfa01fca75d7b2343323619b3f7c6bb97b3e8 SHA1 ef0e1fb917ba66c83af03272f7ea72fb32278908 SHA256 f18db4b700b6f2d78cf48d07ccd832d3c7e72bfd41873bab97017185a60375e7
MISC metadata.xml 160 RMD160 279429d1df694561fc2b163cb81c09387b9d940c SHA1 97da1b72eecc5585c65717da08eaccc9bc1cf7cd SHA256 5e058419199e306612929b80a996e3d16c6b20de674a56bb60558d3d36524fe2
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/scrollz/scrollz-1.9.99.ebuild,v 1.4 2008/01/16 20:49:32 grobian Exp $
inherit eutils
MY_P=ScrollZ-${PV}
DESCRIPTION="Advanced IRC client based on ircII"
SRC_URI="http://www.scrollz.com/${MY_P}.tar.bz2"
HOMEPAGE="http://www.scrollz.com/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ia64 ~ppc x86"
IUSE="ipv6 socks5 ssl"
DEPEND="ssl? ( net-libs/gnutls )"
S="${WORKDIR}"/${MY_P}
src_compile() {
if use ssl; then
myconf="--with-ssl"
fi
econf \
--with-default-server=irc.freenode.net \
$(use_enable ipv6) \
$(use_enable socks5) \
${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
dodir /usr/share/man/man1
einstall \
sharedir="${D}"/usr/share \
mandir="${D}"/usr/share/man/man1 \
install \
|| die "einstall failed"
dodoc ChangeLog* README* || die "dodoc failed"
# fix perms of manpage
fperms 644 /usr/share/man/man1/scrollz.1
}