diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-19 07:04:25 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-19 07:04:25 +0000 |
commit | 6f69a634fd6edf83e4915a9bca89a48ae37e3164 (patch) | |
tree | e735eda7e61c06b756b5bf733b27c7a0ad32c9bd /net-www/mod_lisp | |
parent | new ebuild (diff) | |
download | gentoo-2-6f69a634fd6edf83e4915a9bca89a48ae37e3164.tar.gz gentoo-2-6f69a634fd6edf83e4915a9bca89a48ae37e3164.tar.bz2 gentoo-2-6f69a634fd6edf83e4915a9bca89a48ae37e3164.zip |
new ebuild
Diffstat (limited to 'net-www/mod_lisp')
-rw-r--r-- | net-www/mod_lisp/ChangeLog | 9 | ||||
-rw-r--r-- | net-www/mod_lisp/Manifest | 3 | ||||
-rw-r--r-- | net-www/mod_lisp/files/digest-mod_lisp-2.32 | 1 | ||||
-rw-r--r-- | net-www/mod_lisp/mod_lisp-2.32.ebuild | 28 |
4 files changed, 41 insertions, 0 deletions
diff --git a/net-www/mod_lisp/ChangeLog b/net-www/mod_lisp/ChangeLog new file mode 100644 index 000000000000..4a51dbc99848 --- /dev/null +++ b/net-www/mod_lisp/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-www/mod_lisp +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_lisp/ChangeLog,v 1.1 2003/06/19 07:04:21 mkennedy Exp $ + +*mod_lisp-2.31 (18 Jun 2003) + + 18 Jun 2003; Matthew Kennedy <mkennedy@gentoo.org> : + Initial import. + diff --git a/net-www/mod_lisp/Manifest b/net-www/mod_lisp/Manifest index e69de29bb2d1..c29614757192 100644 --- a/net-www/mod_lisp/Manifest +++ b/net-www/mod_lisp/Manifest @@ -0,0 +1,3 @@ +MD5 1fe7cd8bcd340a452e848a741907f50b mod_lisp-2.32.ebuild 741 +MD5 0dd6a9b5a941b1b9dd340a33d9d00ea4 ChangeLog 320 +MD5 848495fae43277daf91aee9c8e502437 files/digest-mod_lisp-2.32 59 diff --git a/net-www/mod_lisp/files/digest-mod_lisp-2.32 b/net-www/mod_lisp/files/digest-mod_lisp-2.32 new file mode 100644 index 000000000000..f501bbe9770d --- /dev/null +++ b/net-www/mod_lisp/files/digest-mod_lisp-2.32 @@ -0,0 +1 @@ +MD5 30e388b74d28eccf8c0608d343ad701f mod_lisp-2.32.c 48137 diff --git a/net-www/mod_lisp/mod_lisp-2.32.ebuild b/net-www/mod_lisp/mod_lisp-2.32.ebuild new file mode 100644 index 000000000000..318b32c0fba0 --- /dev/null +++ b/net-www/mod_lisp/mod_lisp-2.32.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_lisp/mod_lisp-2.32.ebuild,v 1.1 2003/06/19 07:04:22 mkennedy Exp $ + +DESCRIPTION="mod_lisp is an Apache module to easily write web applications in Common Lisp" +HOMEPAGE="http://www.fractalconcept.com/asp/sdataQIceRsMvtN9fDM==/sdataQuvY9x3g$ecX" +SRC_URI="http://www.fractalconcept.com/fcweb/download/${P}.c" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="=net-www/apache-1*" + +S=${WORKDIR}/${P} + +src_unpack() { + mkdir ${S} + cp ${DISTDIR}/${P}.c ${S}/${PN}.c +} + +src_compile() { + apxs -c ${PN}.c || die +} + +src_install() { + exeinto /usr/lib/apache-extramodules + doexe *.so +} |