blob: fd71153e751561231f154d4718883f3486022f9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# 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"
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"
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/
}
|