diff options
author | 2004-11-17 14:37:46 +0000 | |
---|---|---|
committer | 2004-11-17 14:37:46 +0000 | |
commit | 54fb560dc0fa58a705e91af3918dd690d60361d8 (patch) | |
tree | a00d708185497b60907a8971895db314dbf23ab3 /eclass/toolchain.eclass | |
parent | Version bumped. (Manifest recommit) (diff) | |
download | gentoo-2-54fb560dc0fa58a705e91af3918dd690d60361d8.tar.gz gentoo-2-54fb560dc0fa58a705e91af3918dd690d60361d8.tar.bz2 gentoo-2-54fb560dc0fa58a705e91af3918dd690d60361d8.zip |
define LICENSE/HOMEPAGE
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 7a294e72b2ad..83ac94bc4c90 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.50 2004/11/15 00:35:25 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.51 2004/11/17 14:37:46 vapier Exp $ # # This eclass should contain general toolchain-related functions that are # expected to not change, or change much. @@ -8,9 +8,11 @@ inherit eutils versionator libtool ECLASS=toolchain INHERITED="$INHERITED $ECLASS" -DESCRIPTION="Based on the ${ECLASS} eclass" EXPORT_FUNCTIONS src_unpack pkg_setup src_compile src_install +DESCRIPTION="Based on the ${ECLASS} eclass" +HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" + export CTARGET="${CTARGET:-${CHOST}}" if [ "${ETYPE}" == "gcc-library" ] ; then @@ -27,7 +29,7 @@ else SLOT="${CTARGET}-${PV%.*}" fi fi - +LICENSE="GPL-2 LGPL-2.1" gcc_setup_static_vars() { #MY_PV="`echo ${PV} | awk -F. '{ gsub(/_pre.*|_alpha.*/, ""); print $1 "." $2 }'`" |