diff options
author | 2007-05-06 14:11:32 +0000 | |
---|---|---|
committer | 2007-05-06 14:11:32 +0000 | |
commit | 0dac3b9ff6ffa3718136b9112bbe96b216cb048d (patch) | |
tree | 397c7328a099946d5f11d32cc8dd5e6c2cc299fe | |
parent | Install a .desktop file for ida (bug #175574). (diff) | |
download | gentoo-2-0dac3b9ff6ffa3718136b9112bbe96b216cb048d.tar.gz gentoo-2-0dac3b9ff6ffa3718136b9112bbe96b216cb048d.tar.bz2 gentoo-2-0dac3b9ff6ffa3718136b9112bbe96b216cb048d.zip |
New function, xfce44_zipped() for .zipped plugins
-rw-r--r-- | eclass/xfce44.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/xfce44.eclass b/eclass/xfce44.eclass index dd3721c0b66c..81b701b5df67 100644 --- a/eclass/xfce44.eclass +++ b/eclass/xfce44.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfce44.eclass,v 1.18 2007/03/07 19:37:16 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfce44.eclass,v 1.19 2007/05/06 14:11:32 drac Exp $ # Xfce44 Eclass # @@ -49,6 +49,11 @@ xfce44_gzipped() { COMPRESS=".tar.gz" } +## plugins and base packages default to tar.bz2 unless zipped is called +xfce44_zipped() { + COMPRESS=".zip" +} + ## adds the -plugin string to $P and adds the depend on panel version xfce44_plugin() { [[ -z ${MY_PN} ]] && MY_PN="${PN}-plugin" |