diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-09-01 19:50:35 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-09-01 19:50:35 +0000 |
commit | 75074c576b4526376250afcd1023ec19b3262aea (patch) | |
tree | 6b19e21aa773508e610c45151e11d6c91d2f48d7 /dev-lisp | |
parent | initial import (diff) | |
download | gentoo-2-75074c576b4526376250afcd1023ec19b3262aea.tar.gz gentoo-2-75074c576b4526376250afcd1023ec19b3262aea.tar.bz2 gentoo-2-75074c576b4526376250afcd1023ec19b3262aea.zip |
initial import
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/cl-gd/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lisp/cl-gd/Manifest | 4 | ||||
-rw-r--r-- | dev-lisp/cl-gd/cl-gd-0.1.0.ebuild | 50 | ||||
-rw-r--r-- | dev-lisp/cl-gd/files/digest-cl-gd-0.1.0 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-who/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lisp/cl-who/Manifest | 4 | ||||
-rw-r--r-- | dev-lisp/cl-who/cl-who-0.3.0.ebuild | 27 | ||||
-rw-r--r-- | dev-lisp/cl-who/files/digest-cl-who-0.3.0 | 1 |
8 files changed, 99 insertions, 4 deletions
diff --git a/dev-lisp/cl-gd/ChangeLog b/dev-lisp/cl-gd/ChangeLog new file mode 100644 index 000000000000..8bacab7d5e3c --- /dev/null +++ b/dev-lisp/cl-gd/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-lisp/cl-gd +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-gd/ChangeLog,v 1.1 2003/09/01 19:50:32 mkennedy Exp $ + +*cl-gd-0.1.0 (26 Aug 2003) + + 26 Aug 2003; Matthew Kennedy <mkennedy@gentoo.org> : + Initial import. diff --git a/dev-lisp/cl-gd/Manifest b/dev-lisp/cl-gd/Manifest index 6e8d392ae054..63cbb00bf20b 100644 --- a/dev-lisp/cl-gd/Manifest +++ b/dev-lisp/cl-gd/Manifest @@ -1,3 +1,3 @@ -MD5 c6e7a91fd97d5f8b5088ccd90adda5fe cl-gd-0.1.0.ebuild 1166 -MD5 22edaa966330e3498f8ddab38dd1094c cl-gd-0.1.0.ebuild~ 895 +MD5 205ce94dca8bb27ae8969b8ea346f26d cl-gd-0.1.0.ebuild 1453 +MD5 f6cd504631ed7e897f6b7206e9c0d011 ChangeLog 315 MD5 f47a6f22326f50ee0123303a9672eeab files/digest-cl-gd-0.1.0 63 diff --git a/dev-lisp/cl-gd/cl-gd-0.1.0.ebuild b/dev-lisp/cl-gd/cl-gd-0.1.0.ebuild new file mode 100644 index 000000000000..90ec00f97a75 --- /dev/null +++ b/dev-lisp/cl-gd/cl-gd-0.1.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-gd/cl-gd-0.1.0.ebuild,v 1.1 2003/09/01 19:50:32 mkennedy Exp $ + +inherit common-lisp + +DESCRIPTION="CL-GD is a library for Common Lisp which provides an interface to the GD Graphics Library for the dynamic creation of images. It is based on UFFI and should thus be portable to all CL implementations supported by UFFI." +HOMEPAGE="http://weitz.de/cl-gd + http://www.cliki.net/cl-gd" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="dev-lisp/common-lisp-controller + >=dev-lisp/cl-uffi-1.3.4 + media-libs/libpng + media-libs/jpeg + media-libs/freetype + >=media-libs/libgd-2.0.15 + sys-libs/zlib + virtual/commonlisp" + +CLPACKAGE=cl-gd + +S=${WORKDIR}/${P} + +src_compile() { + gcc ${CFLAGS} -fPIC -c cl-gd-glue.c + ld -lgd -lz -lpng -ljpeg -lfreetype -lm -shared cl-gd-glue.o -o cl-gd-glue.so + rm cl-gd-glue.o +} + +src_install() { + insinto /usr/lib + doins cl-gd-glue.so + + common-lisp-install *.asd *.lisp + dodir /usr/share/common-lisp/systems + dosym /usr/share/common-lisp/source/cl-gd/cl-gd.asd \ + /usr/share/common-lisp/systems/cl-gd.asd + +# dosym /usr/share/common-lisp/source/cl-gd/cl-gd-test.asd \ +# /usr/share/common-lisp/systems/cl-gd.asd +# insinto /usr/share/common-lisp/source/cl-gd/test +# doins test/* + + dodoc CHANGELOG README + dohtml doc/*.html +} diff --git a/dev-lisp/cl-gd/files/digest-cl-gd-0.1.0 b/dev-lisp/cl-gd/files/digest-cl-gd-0.1.0 new file mode 100644 index 000000000000..68aadfa12aae --- /dev/null +++ b/dev-lisp/cl-gd/files/digest-cl-gd-0.1.0 @@ -0,0 +1 @@ +MD5 f3ad1287683210a34a9d69e94df2cfd9 cl-gd-0.1.0.tar.gz 192675 diff --git a/dev-lisp/cl-who/ChangeLog b/dev-lisp/cl-who/ChangeLog new file mode 100644 index 000000000000..4e16e0191e44 --- /dev/null +++ b/dev-lisp/cl-who/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-lisp/cl-who +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-who/ChangeLog,v 1.1 2003/09/01 19:50:06 mkennedy Exp $ + +*cl-who-0.3.0 (26 Aug 2003) + + 26 Aug 2003; Matthew Kennedy <mkennedy@gentoo.org> + Initial import. diff --git a/dev-lisp/cl-who/Manifest b/dev-lisp/cl-who/Manifest index f502f968e65e..26544c1487f8 100644 --- a/dev-lisp/cl-who/Manifest +++ b/dev-lisp/cl-who/Manifest @@ -1,3 +1,3 @@ -MD5 09212b2cba6aeac2b7997d2c391e7125 cl-who-0.3.0.ebuild 995 -MD5 39d14e110445cd04977dff560b296011 cl-who-0.3.0.ebuild~ 1194 +MD5 7931e5af19c906efd59745f003191dc3 cl-who-0.3.0.ebuild 975 +MD5 3aef590a6b3fbc170edeb43657c57f88 ChangeLog 315 MD5 e8bfc2f726389e4690ccfb89886d6fff files/digest-cl-who-0.3.0 63 diff --git a/dev-lisp/cl-who/cl-who-0.3.0.ebuild b/dev-lisp/cl-who/cl-who-0.3.0.ebuild new file mode 100644 index 000000000000..ee106b29ed48 --- /dev/null +++ b/dev-lisp/cl-who/cl-who-0.3.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-who/cl-who-0.3.0.ebuild,v 1.1 2003/09/01 19:50:06 mkennedy Exp $ + +inherit common-lisp + +DESCRIPTION="CL-WHO (where WHO means "with-html-output" for want of a better acronym) is probably just as good or bad as the next one. They are all more or less similar in that they provide convenient means to convert S-expressions intermingled with code into (X)HTML, XML, or whatever but differ with respect to syntax, implementation, and API." +HOMEPAGE="http://weitz.de/cl-who/ + http://www.cliki.net/cl-who" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="dev-lisp/common-lisp-controller + virtual/commonlisp" + +CLPACKAGE=cl-who + +S=${WORKDIR}/${P} + +src_install() { + common-lisp-install *.lisp *.asd + common-lisp-system-symlink + dodoc CHANGELOG INSTALLATION + dohtml doc/*.html +} diff --git a/dev-lisp/cl-who/files/digest-cl-who-0.3.0 b/dev-lisp/cl-who/files/digest-cl-who-0.3.0 new file mode 100644 index 000000000000..1b80581c5adc --- /dev/null +++ b/dev-lisp/cl-who/files/digest-cl-who-0.3.0 @@ -0,0 +1 @@ +MD5 7e4ba57fad93516f24d7ce407b8dd7ef cl-who-0.3.0.tar.gz 14827 |