Portage is a package management system used by Gentoo Linux
# ChangeLog for app-arch/unlzx
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/ChangeLog,v 1.17 2008/01/26 18:43:52 grobian Exp $
26 Jan 2008; Fabian Groffen
Dropped ppc-macos keyword, see you in prefix
21 Feb 2007; Piotr Jaroszyński
Transition to Manifest2.
17 Sep 2005; Fabian Groffen
Marking ~ppc-macos (bug #105868)
28 Dec 2004; Ciaran McCreesh
Change encoding to UTF-8 for GLEP 31 compliance
07 Jun 2004; Daniel Black
unlzx-1.1.ebuild:
QA - IUSE fix
04 May 2004; Bryan Østergaard
Stable on alpha.
05 Jan 2004; Jon Portnoy
AMD64 keywords.
24 Nov 2003; Aron Griffis
Add ~alpha
06 Dec 2002; Rodney Rees
*unlzx-1.1 (23 Feb 2002)
07 Sep 2002; Seemant Kulleen
LICENSE to freedist, thanks to: r.a.mercer@blueyonder.co.uk (Adam Mercer)
in bug #7290.
14 Aug 2002; Pieter Van den Abeele
Added ppc keyword
23 Feb 2002; T.Neidt
Initial commit. Unlzx decompresses Amiga LZX archives.
Version 1.1 supports pipes.
Thanks to Per Wigren for the contribution.
Note: there is no version in the tarball name.
Suggestion on how to handle this welcome.
DIST unlzx.c.gz 9680 RMD160 c6a8b895c74700436c712cefd9ed63d9a3db1511 SHA1 752dd439a30be79da6780683137554db6d84a8a9 SHA256 3cfd5dfe34482f91b6fbfc6a5fdd44c7454ce4867061e99cda8aaba628208f7d
DIST unlzx.c.gz.readme 642 RMD160 f67f1b0cc444ceaf311b285fad43175b9da0921a SHA1 84e4f34af34f740d4f0180515a596c68adb81bb0 SHA256 d7b014b2f04a5112bb1e7a441816cdb0cf71a26bd5ffb31b951f8b5423e4e4b7
EBUILD unlzx-1.1.ebuild 784 RMD160 357fb7b266a7d45483b9e6660c4de4b6aa6d6d93 SHA1 115ff1ba25010cba95db12060f1238cfded2534a SHA256 cfab35daa477631045ac84ca78a965f7acec0530452bf9981123ca3db1c67953
MISC ChangeLog 1654 RMD160 eaec66c1078ebebe34b6ae05c20696051630ce09 SHA1 0b8bca65a7c3b510c2ab8e5f5d25ad735e73e206 SHA256 90848350cdaa305e82e62f16f1f60a6a3d9c60b9de810d1ba3ffc32f7b8505f0
MISC metadata.xml 314 RMD160 25181cde297628576a9545bea3a76601485bfaf3 SHA1 ac16b621acf5a22b64859e3323d466fb556fc4c8 SHA256 736baab77aea9c4da199c01e3cd6877c271bd02357ff9b41b537a2232c6e96d7
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/unlzx-1.1.ebuild,v 1.25 2008/01/26 18:43:52 grobian Exp $
DESCRIPTION="Unarchiver for Amiga LZX archives"
SRC_URI="ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz.readme"
HOMEPAGE="ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz.readme"
SLOT="0"
LICENSE="freedist"
IUSE=""
KEYWORDS="alpha amd64 ~hppa ppc sparc x86"
src_unpack() {
mkdir ${S}
gzip -dc ${DISTDIR}/${PN}.c.gz > ${S}/unlzx.c
cp ${DISTDIR}/${PN}.c.gz.readme ${S}/${PN}.c.gz.readme
}
src_compile() {
gcc ${CFLAGS} -o unlzx unlzx.c || die
}
src_install() {
dobin unlzx
dodoc unlzx.c.gz.readme
}