diff options
author | Andreas Proschofsky <suka@gentoo.org> | 2012-05-19 15:16:18 +0000 |
---|---|---|
committer | Andreas Proschofsky <suka@gentoo.org> | 2012-05-19 15:16:18 +0000 |
commit | 6ad0418600b7627d332e5dc7de8d95f5c17d5f31 (patch) | |
tree | d4ff6f8c14f420c2e67cb7f0abd1fafaf42fa19d /eclass/gnome2-la.eclass | |
parent | Another one bites the dust (diff) | |
download | suka-6ad0418600b7627d332e5dc7de8d95f5c17d5f31.tar.gz suka-6ad0418600b7627d332e5dc7de8d95f5c17d5f31.tar.bz2 suka-6ad0418600b7627d332e5dc7de8d95f5c17d5f31.zip |
Remove a whole bunch of outdated stuff
svn path=/; revision=326
Diffstat (limited to 'eclass/gnome2-la.eclass')
-rw-r--r-- | eclass/gnome2-la.eclass | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/eclass/gnome2-la.eclass b/eclass/gnome2-la.eclass deleted file mode 100644 index e9506c3..0000000 --- a/eclass/gnome2-la.eclass +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -# -# gnome2-la.eclass -# -# Original Author: Nirbheek Chauhan <nirbheek@gentoo.org> -# Purpose: Temporary eclass for facilitating .la file removal -# -# Only for usage in the overlay. This eclass will be redundant once this feature -# is reviewed and patched into gnome2.eclass (in-tree) -# - -inherit gnome2 - -EXPORT_FUNCTIONS src_install - -# Remove .la files in src_install? -G2PUNT_LA=${G2PUNT_LA:-"no"} - -gnome2-la_src_install() { - gnome2_src_install - - # Remove .la files if they're unneeded - # Be *absolutely* sure before doing this and read - # http://dev.gentoo.org/~nirbheek/gnome/gnome-policy.xml#doc_chap3 - if [[ "${G2PUNT_LA}" = "yes" ]]; then - ebegin "Removing .la files" - find "${D}" -name '*.la' -delete - eend - fi -} |