diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2007-06-04 16:52:10 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2007-06-04 16:52:10 +0000 |
commit | 3648c9582a447eab281432628217f8df6756fc30 (patch) | |
tree | 7c92c9fc7dd0d06349494dc1b106c7ec468072c9 /x11-themes | |
parent | Simpler config script (hardcode paths) (diff) | |
download | gnustep-3648c9582a447eab281432628217f8df6756fc30.tar.gz gnustep-3648c9582a447eab281432628217f8df6756fc30.tar.bz2 gnustep-3648c9582a447eab281432628217f8df6756fc30.zip |
Split extra camaelon themes in a separate package
svn path=/overlay/; revision=88
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/camaelon-themes/Manifest | 3 | ||||
-rw-r--r-- | x11-themes/camaelon-themes/camaelon-themes-0.1.ebuild | 31 |
2 files changed, 34 insertions, 0 deletions
diff --git a/x11-themes/camaelon-themes/Manifest b/x11-themes/camaelon-themes/Manifest new file mode 100644 index 0000000..5daaa21 --- /dev/null +++ b/x11-themes/camaelon-themes/Manifest @@ -0,0 +1,3 @@ +DIST IndustrialTheme.tar.bz2 49338 RMD160 794adb1bd117e038a1211c33bb9740cd1ca9be9c SHA1 b61abb20b5cfdd56851c8f102d5f0779c7f29110 SHA256 29f9c2d0599a7ca84682e406eca2a546479c8cad386f19969ba437731e2b1379 +DIST MaxCurve-0.2.tar.bz2 48965 RMD160 29b910b8d1696633727f33bd1a8de11b21b56365 SHA1 5afaa87019821949b1df0ac1e21f79a645bbce8e SHA256 808b872ba00c02616b6d9754acb1533cd9139da88c22954506d236517d0b7202 +EBUILD camaelon-themes-0.1.ebuild 772 RMD160 7053c7f8ed516dd2d3cbcc8e84f936cff12429d1 SHA1 fc70c7410f7884219a59e2c87f895f0276b07a9e SHA256 7e479a93c446f181f66386455b88392fcd7d93b9c1efd89b3cacf1c5f30d6d1e diff --git a/x11-themes/camaelon-themes/camaelon-themes-0.1.ebuild b/x11-themes/camaelon-themes/camaelon-themes-0.1.ebuild new file mode 100644 index 0000000..e384e92 --- /dev/null +++ b/x11-themes/camaelon-themes/camaelon-themes-0.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit gnustep-2 + +S=${WORKDIR}/${PN/c/C} + +DESCRIPTION="Additional themes for GNUstep Camaelon theme engine" + +HOMEPAGE="http://www.etoile-project.org/etoile/mediawiki/index.php?title=Camaelon" +SRC_URI="http://brante.dyndns.org/gnustep/download/MaxCurve-0.2.tar.bz2 + mirror://sourceforge/mpdcon/IndustrialTheme.tar.bz2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64" +SLOT="0" +LICENSE="LGPL-2.1" + +IUSE="" +DEPEND="${GS_DEPEND}" +RDEPEND="${GS_RDEPEND}" + +src_compile() { + einfo "Nothing to compile" +} + +src_install() { + egnustep_env + #install themes + mkdir -p ${D}${GNUSTEP_SYSTEM_LIBRARY}/Themes + cp -R ${WORKDIR}/*theme ${D}${GNUSTEP_SYSTEM_LIBRARY}/Themes/ +} |