diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-10-14 03:07:44 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-10-14 03:07:44 +0000 |
commit | 6ed22e5ea8c658e58e395f9c8e199a9e0fe3ab74 (patch) | |
tree | b415c86b11fafca42383d9810d9db2b09cee653e /eclass | |
parent | ver bump (diff) | |
download | historical-6ed22e5ea8c658e58e395f9c8e199a9e0fe3ab74.tar.gz historical-6ed22e5ea8c658e58e395f9c8e199a9e0fe3ab74.tar.bz2 historical-6ed22e5ea8c658e58e395f9c8e199a9e0fe3ab74.zip |
common lisp common split
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/common-lisp-common.eclass | 20 | ||||
-rw-r--r-- | eclass/common-lisp.eclass | 8 |
2 files changed, 27 insertions, 1 deletions
diff --git a/eclass/common-lisp-common.eclass b/eclass/common-lisp-common.eclass new file mode 100644 index 000000000000..2b8f0fa43a3d --- /dev/null +++ b/eclass/common-lisp-common.eclass @@ -0,0 +1,20 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/eclass/common-lisp-common.eclass,v 1.1 2003/10/14 03:07:44 mkennedy Exp $ +# +# Author Matthew Kennedy <mkennedy@gentoo.org> +# +# Sundy code common to many Common Lisp related ebuilds. + +do-debian-credits() { + docinto debian + for i in copyright README.Debian changelog; do + dodoc ${S}/debian/${i} + done + docinto . +} + +# Local Variables: *** +# mode: shell-script *** +# tab-width: 4 *** +# End: ***
\ No newline at end of file diff --git a/eclass/common-lisp.eclass b/eclass/common-lisp.eclass index 0bcba9902e4b..a27aad06d0f6 100644 --- a/eclass/common-lisp.eclass +++ b/eclass/common-lisp.eclass @@ -1,12 +1,13 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/common-lisp.eclass,v 1.3 2003/07/22 04:47:33 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/common-lisp.eclass,v 1.4 2003/10/14 03:07:44 mkennedy Exp $ # # Author Matthew Kennedy <mkennedy@gentoo.org> # # This eclass supports the common-lisp-controller installation of many # Common Lisp libraries +inherit common-lisp-common ECLASS=common-lisp INHERITED="$INHERITED $ECLASS" @@ -38,3 +39,8 @@ common-lisp-system-symlink() { done fi } + +# Local Variables: *** +# mode: shell-script *** +# tab-width: 4 *** +# End: *** |