ChangeLog

# ChangeLog for dev-lisp/cl-jpeg
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-jpeg/ChangeLog,v 1.11 2006/04/24 21:40:59 mkennedy Exp $

24 Apr 2006; Matthew Kennedy
+files/1.033-quantize-optimization-clisp-gentoo.patch,
cl-jpeg-1.033-r1.ebuild:
Don't try the compile-time *quantization-optimization* test when CLISP is
being used; Resolves Bug #104857.

24 May 2005; cl-jpeg-1.033-r1.ebuild:
Keywording ~sparc

16 Apr 2005; Matthew Kennedy
cl-jpeg-1.033-r1.ebuild:
Keywording; Removed old ebuilds

28 Mar 2005; Matthew Kennedy
+files/1.033-exports-gentoo.patch, cl-jpeg-1.033-r1.ebuild:
Change JPEG package behavior so that ENCODE-IMAGE, DECODE-IMAGE and
JPEG-TO-BMP are external symbols at load time.

22 Mar 2005; Matthew Kennedy
cl-jpeg-1.033-r1.ebuild:
Keywording for ~amd64

04 Feb 2005; Matthew Kennedy metadata.xml,
+files/1.033-defconstant-gentoo.patch, -cl-jpeg-1.032.1.ebuild,
cl-jpeg-1.033-r1.ebuild, -cl-jpeg-1.033.ebuild:
Include compatibility/ANSI compliance fix for DEFCONSTANT; Tag stable
keywords for x86; Expand metadata.xml; Remove old ebuilds.

*cl-jpeg-1.033-r1 (12 Feb 2004)

12 Feb 2004; cl-jpeg-1.033-r1.ebuild:
Cleanup for eclass changes.

*cl-jpeg-1.033 (06 Jan 2004)

06 Jan 2004; cl-jpeg-1.033.ebuild:
new upstream version

16 Oct 2003; Matthew Kennedy cl-jpeg-1.032.1.ebuild,
metadata.xml:
preinst, postrm

*cl-jpeg-1.032.1 (07 Jul 2003)

07 Jul 2003; Matthew Kennedy :
initial import

Manifest

AUX 1.033-defconstant-gentoo.patch 3012 RMD160 cb123508112dcda30896e164808d2bce6064a954 SHA1 84d03357ad996334d1892be67d6f1f1ba9a65330 SHA256 2cf4e2fc251e43b552c7070b63bf687de3369a950e9c9ee1c82a1c33e527985b
AUX 1.033-exports-gentoo.patch 916 RMD160 068d0fe9b06e1388dbb36451751ba30b9432af59 SHA1 89b61cc885a777e80dd4c014a96a9f88dbb75773 SHA256 047a4d9a951eea2ccfd05200d59f50cf376436f5c03f3a2512c2dca76ce483ce
AUX 1.033-quantize-optimization-clisp-gentoo.patch 499 RMD160 cd2c6269e2eea2b9c92f294bf5373375ba63f067 SHA1 440e0c94a1f35816851c890517e004c9874d14c8 SHA256 e47b5a6bd59bdbb167fde43f53afda059cced53857fa430fab1c54a098ef989f
DIST cljl-1.033.tar.gz 21269 RMD160 8e0d5e5ddf1a2c7804cf695a751eb46b30a00fc0 SHA1 62063a5ef74ae9ef253d1d8849a1a7f412795922 SHA256 7a3c17cd2cfcd46a703468f90a9e71493cbd6e99fe5d94319fd5142cda2de19d
EBUILD cl-jpeg-1.033-r1.ebuild 987 RMD160 403f90f1898af5e7df21f9725c0670c1d67acb77 SHA1 d56a056da3513a813409b9faa32e9ee37227030f SHA256 889e845f23e1c597a79781dda4a83ddb85c5237ca9aa4b7cda1656bcdd359438
MISC ChangeLog 1768 RMD160 d840244f4bba1e61083e44938086b2b4854dd7dc SHA1 f5ace97f7560bb978797af75c671e8ee6e11439e SHA256 f390c74f4331042e49ba9fbe27c9e275c567662bf431af8694d434bf88f7d730
MISC metadata.xml 313 RMD160 7aef34885fe0ed0414ae7a56fbecf1547938a9bf SHA1 1a65663732459ef422cf173caeb7ceb5b1600a1a SHA256 557a1acdf695fe1c9d3ed0d0541ab4a9879fb80e8f9d95c3ce4adb2d879f3e7f

cl-jpeg-1.033-r1.ebuild

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-jpeg/cl-jpeg-1.033-r1.ebuild,v 1.9 2006/04/24 21:40:59 mkennedy Exp $

inherit common-lisp eutils

DESCRIPTION="A JPEG library for Common Lisp"
HOMEPAGE="http://sourceforge.net/projects/cljl"
SRC_URI="mirror://sourceforge/cljl/cljl-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="dev-lisp/cl-plus"

CLPACKAGE=cl-jpeg

S=${WORKDIR}/cljl

src_unpack() {
unpack ${A}
# patch: defconstant - compilation fix for SBCL
# patch: exports - export symbols at load time as well
# patch: quantize-optimization-clisp - dont bother on CLISP
epatch ${FILESDIR}/${PV}-defconstant-gentoo.patch
epatch ${FILESDIR}/${PV}-exports-gentoo.patch
epatch ${FILESDIR}/${PV}-quantize-optimization-clisp-gentoo.patch
}

src_install() {
common-lisp-install *.lisp *.asd
common-lisp-system-symlink
dodoc LICENSE
}

files

metadata.xml




common-lisp

Common Lisp JPEG Library implements baseline JPEG image
compression/decompression routines in ANSI Common Lisp