diff options
author | Joshua Baergen <joshuabaergen@gentoo.org> | 2006-01-19 04:38:27 +0000 |
---|---|---|
committer | Joshua Baergen <joshuabaergen@gentoo.org> | 2006-01-19 04:38:27 +0000 |
commit | 6da97fbe9fd3d33faf3161ab2c9e290cff1bc5eb (patch) | |
tree | b479305c44161d9f11ff2f4e23e7cc5590eb57a9 /eclass/x-modular.eclass | |
parent | Update kdrive's licenses. (diff) | |
download | historical-6da97fbe9fd3d33faf3161ab2c9e290cff1bc5eb.tar.gz historical-6da97fbe9fd3d33faf3161ab2c9e290cff1bc5eb.tar.bz2 historical-6da97fbe9fd3d33faf3161ab2c9e290cff1bc5eb.zip |
Set the license of modular X packages to the name of the package itself.
Diffstat (limited to 'eclass/x-modular.eclass')
-rw-r--r-- | eclass/x-modular.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index 6b16fb6993f9..340837db6c38 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.39 2006/01/13 18:47:52 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.40 2006/01/19 04:38:27 joshuabaergen Exp $ # # Author: Donnie Berkholz <spyderous@gentoo.org> # @@ -46,9 +46,12 @@ SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" -LICENSE="X11" SLOT="0" +# Set the license for the package. This can be overridden by setting +# LICENSE after the inherit. +LICENSE=${PN} + # Set up shared dependencies if [[ -n "${SNAPSHOT}" ]]; then # FIXME: What's the minimal libtool version supporting arbitrary versioning? |