diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-04 21:03:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-04 21:03:41 +0000 |
commit | 38c44f9ee2436f2ad21aa6e3a30edc42072493f7 (patch) | |
tree | 353ce14ee652f1f0492540d5d23960e02668b72a /eclass | |
parent | Remove bundled libsqlite. (diff) | |
download | historical-38c44f9ee2436f2ad21aa6e3a30edc42072493f7.tar.gz historical-38c44f9ee2436f2ad21aa6e3a30edc42072493f7.tar.bz2 historical-38c44f9ee2436f2ad21aa6e3a30edc42072493f7.zip |
declare maintainer and cleanup a little
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/libtool.eclass | 35 |
1 files changed, 8 insertions, 27 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index c016322024d0..0bffb7428f2b 100644 --- a/eclass/libtool.eclass +++ b/eclass/libtool.eclass @@ -1,20 +1,15 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.74 2007/03/01 18:48:02 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.75 2007/03/04 21:03:41 vapier Exp $ # -# Author: Martin Schlemmer <azarah@gentoo.org> +# Maintainer: base-system@gentoo.org # # This eclass patches ltmain.sh distributed with libtoolized packages with the # relink and portage patch among others - - -# 2004.09.25 rac -# i have verified that at least one package can use this eclass and -# build properly even without libtool installed yet, probably using -# the files in the distribution. eliminating this dependency fixes -# bug 65209, which is a showstopper for people doing installs using -# stageballs <3. if anybody decides to revert this, please attempt -# to find an alternate way of resolving that bug at the same time. +# +# Note, this eclass does not require libtool as it only applies patches to +# generated libtool files. We do not run the libtoolize program because that +# requires a regeneration of the main autotool files in order to work properly. DESCRIPTION="Based on the ${ECLASS} eclass" @@ -341,21 +336,7 @@ elibtoolize() { ${deptoremove} == "" ]] then ewarn "Cannot apply any patches, please file a bug about this" - break - - # Sometimes ltmain.sh is in a subdirectory ... - if [[ ! -f ${x}/configure.in && ! -f ${x}/configure.ac ]] ; then - if [[ -f ${x}/../configure.in || -f ${x}/../configure.ac ]] ; then - cd "${x}"/../ - fi - fi - - if type -p libtoolize &> /dev/null ; then - ewarn "Cannot apply any patches, running libtoolize..." - libtoolize --copy --force - fi - cd "${x}" - break + die fi fi |