Portage is a package management system used by Gentoo Linux
# ChangeLog for app-arch/ncompress
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/ncompress/ChangeLog,v 1.39 2007/11/19 01:19:59 kumba Exp $
19 Nov 2007; Joshua Kinard
Stable on mips, per #198597.
13 Nov 2007; Jeroen Roovers
Stable for HPPA (bug #198597).
11 Nov 2007; Raúl Porcel
alpha/ia64 stable wrt #198597
10 Nov 2007; Markus Rothe
Stable on ppc64; bug #198597
10 Nov 2007; Ferris McCormick
ncompress-4.2.4.2.ebuild:
Sparc stable --- Bug #198597 --- works so far as I can tell.
10 Nov 2007; Samuli Suominen
amd64 stable wrt #198597
10 Nov 2007; nixnut
Stable on ppc wrt bug 198597
10 Nov 2007; Dawid Węgliński
Stable on x86 (bug #198597)
*ncompress-4.2.4.2 (07 Sep 2007)
07 Sep 2007; Mike Frysinger
Version bump.
06 Oct 2006; Guy Martin
Stable on hppa.
05 Oct 2006; Thomas Cort
Stable on alpha wrt security Bug #141728.
03 Oct 2006; Joshua Jackson
Stable x86; bug #141728
02 Oct 2006; Daniel Gryniewicz
Marked stable on amd64 for bug #141728
29 Sep 2006; Jason Wever
Stable on SPARC wrt security bug #141728.
29 Sep 2006; Tobias Scherbaum
ncompress-4.2.4.1.ebuild:
ppc stable, bug #141728
29 Sep 2006; Brent Baude
Marking ncompress-4.2.4.1 ppc64 stable
*ncompress-4.2.4.1 (29 Sep 2006)
29 Sep 2006; Mike Frysinger
Version bump to fix CVE-2006-1168 #141728.
28 Dec 2004; Ciaran McCreesh
Change encoding to UTF-8 for GLEP 31 compliance
09 Oct 2004; Tom Gall
stable on ppc64, bug #66251
07 Oct 2004; Jeremy Huddleston
ncompress-4.2.4-r1.ebuild:
Stable amd64.
07 Oct 2004; Olivier Crete
Marking stable on x86 wrt security bug #66251
07 Oct 2004; Ferris McCormick
Stable for sparc. Bug 66251.
07 Oct 2004; Bryan Østergaard
Stable on alpha, bug 66251.
07 Oct 2004; Lars Weiler
Stable on ppc as requested in bug #66251.
*ncompress-4.2.4-r1 (06 Oct 2004)
06 Oct 2004;
This update adds bounds checking to command line options used by ncompress bug
#66251. Also minor clode cleanups and a bugfixes by using debian patch from
http://packages.qa.debian.org/n/ncompress.html
15 Jun 2004;
skip manfile when USE=build is set
26 Apr 2004; Travis Tilley
ncompress-4.2.4.ebuild:
gcc 3.4 fix
02 Mar 2004; Brian Jackson
adding initial s390 support
18 May 2003; Tavis Ormandy
removing hardcoded compiler.
09 Feb 2003; Guy Martin
Added hppa to keywords.
06 Dec 2002; Rodney Rees
*ncompress-4.2.4 (1 Feb 2002)
27 Feb 2003; Zach Welch
add arm keyword
18 Jan 2003; Jan Seidel
Added mips to keywords
15 Jul 2002; Owen Stampflee
Added KEYWORDS.
1 Feb 2002; G.Bevin
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
DIST ncompress-4.2.4.2.tar.gz 32978 RMD160 5d35bdfd7fea51a8ff20c7ee2d4897eaafe45b37 SHA1 8f135bb2f8985768acc0a688832f02d47458c130 SHA256 38158c792b769fe23c74f8d3ea0e27569a9b1d21b53a4faf8acbb1ac03743221
EBUILD ncompress-4.2.4.2.ebuild 905 RMD160 2ab5322db77885d207f2b35c80ba06260bd022a6 SHA1 852fb4d8d4ce59fbab82ab87a9335e7cd151e975 SHA256 5a32dec4fd299e77188610e43b7070e9fc6b2c6ca777d75a9a1faca7f1834fab
MISC ChangeLog 4537 RMD160 e233d0b34f7970019b7cc6075202e6ca3d5beeb3 SHA1 bda5cc69f629235327c6bc0fc264153fcd7ff591 SHA256 90bef846aca78dcb1b6093b214693d2c823ab400cad7c87d9285d225fd0c3012
MISC metadata.xml 164 RMD160 f43cbec30b7074319087c9acffdb9354b17b0db3 SHA1 9c213f5803676c56439df3716be07d6692588856 SHA256 f5f2891f2a4791cd31350bb2bb572131ad7235cd0eeb124c9912c187ac10ce92
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/ncompress/ncompress-4.2.4.2.ebuild,v 1.10 2007/12/11 08:52:07 vapier Exp $
inherit toolchain-funcs
DESCRIPTION="Another uncompressor for compatibility"
HOMEPAGE="http://ncompress.sourceforge.net/"
SRC_URI="mirror://sourceforge/ncompress/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
sed \
-e 's:options= :options= $(CFLAGS) -DNOFUNCDEF -DUTIME_H $(LDFLAGS) :' \
-e "s:CC=cc:CC=$(tc-getCC):" \
Makefile.def > Makefile
}
src_install() {
dobin compress || die
dosym compress /usr/bin/uncompress
doman compress.1
echo '.so compress.1' > "${D}"/usr/share/man/man1/uncompress.1
dodoc Acknowleds Changes LZW.INFO README
}