diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-30 09:22:36 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-30 09:22:36 +0000 |
commit | 46a98b4741570701c69f796e6e8643b643c4384c (patch) | |
tree | f3d16b2cf546a6e160e821dc61716c0528260fc1 /eclass | |
parent | Obsolete xfce44.eclass with comments and minimalizing it a bit. (diff) | |
download | historical-46a98b4741570701c69f796e6e8643b643c4384c.tar.gz historical-46a98b4741570701c69f796e6e8643b643c4384c.tar.bz2 historical-46a98b4741570701c69f796e6e8643b643c4384c.zip |
Mark these obsolete as well.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xfce4.eclass | 4 | ||||
-rw-r--r-- | eclass/xfce42.eclass | 52 |
2 files changed, 12 insertions, 44 deletions
diff --git a/eclass/xfce4.eclass b/eclass/xfce4.eclass index 637759ac1be7..e2a371ee268c 100644 --- a/eclass/xfce4.eclass +++ b/eclass/xfce4.eclass @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfce4.eclass,v 1.31 2009/09/07 18:20:47 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfce4.eclass,v 1.32 2009/09/30 09:22:36 ssuominen Exp $ + +# OBSOLETE ECLASS. Unused and doesn't work. Delete soon as allowed. # @ECLASS: xfce4.eclass # @MAINTAINER: diff --git a/eclass/xfce42.eclass b/eclass/xfce42.eclass index fd0c2b226f4d..54ce0f9a3eb2 100644 --- a/eclass/xfce42.eclass +++ b/eclass/xfce42.eclass @@ -1,31 +1,20 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfce42.eclass,v 1.8 2007/05/30 13:25:32 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfce42.eclass,v 1.9 2009/09/30 09:22:36 ssuominen Exp $ -# DEPRECATED ECLASS. - -## set some variable values: -## COMPRESS is the default compression extension -## ZIP is added to src directory of Xfce packages for when upstream releases .tar.bz2 versions -## INSTALL is default make install directive -## XFCE_VERSION sets the minimum version required for the panel +# OBSOLETE ECLASS. Unused and doesn't work. Delete soon as allowed. COMPRESS=".tar.gz" - ZIP="" - INSTALL="make DESTDIR=${D} install" - XFCE_VERSION="4.2" +HOMEPAGE="" -## plugins and base packages default to tar.gz unless bzipped is called -## ZIP is added to the src directory for when the Xfce team releases .tar.bz2 packages bzipped() { COMPRESS=".tar.bz2" ZIP="-bz2" } -## plugin function adds the -plugin string to $P and adds the depend on panel version plugin() { [[ -z ${MY_P} ]] && MY_P="${PN}-plugin-${PV}" S="${WORKDIR}/${MY_P}" @@ -34,63 +23,40 @@ plugin() { !>=xfce-base/xfce4-panel-4.3" } -## goodies function sets SRC_URI and HOMEPAGE to berlios goodies() { SRC_URI="http://download.berlios.de/xfce-goodies/${MY_P:-${P}}${COMPRESS}" [[ -z ${HOMEPAGE} ]] && HOMEPAGE="http://xfce-goodies.berlios.de/" S="${WORKDIR}/${MY_P:-${P}}" } -## goodies_plugin calls plugin and goodies funtions in correct order goodies_plugin() { plugin goodies S="${WORKDIR}/${MY_P}" } -## core_package sets SRC_URI and HOMPAGE for all Xfce core pacgages core_package() { SRC_URI="http://www.xfce.org/archive/xfce-${PV}/src${ZIP}/${P}${COMPRESS}" - HOMEPAGE="http://www.xfce.org/" } -## single_make sets the -j value to 1 eliminationg parallel builds for broken autotools scripts single_make() { - JOBS="-j1" + JOBS="" } -## want_einstall want_einstall() { - INSTALL="einstall" + INSTALL="true" } -## LICENSE is set to Xfce base packages default -LICENSE="GPL-2" +LICENSE="" SLOT="0" - IUSE="${IUSE}" -RDEPEND=">=x11-libs/gtk+-2.2 - dev-libs/libxml2 - >=dev-libs/dbh-1.0.20 - >=x11-themes/gtk-engines-xfce-2.2.5 - ${RDEPEND}" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -#S="${WORKDIR}/${MY_P:-${P}}" - xfce42_src_compile() { - ## XFCE_CONFIG sets extra config parameters - ## JOBS is unset and defaults to make.conf settings - ## unless set by single_make - econf ${XFCE_CONFIG} || die - emake ${JOBS} || die + true } xfce42_src_install() { - ## INSTALL is default make install string - ${INSTALL} || die + true } EXPORT_FUNCTIONS src_compile src_install |