blob: 4c11982fb115e11850b78a347d4617721f4424b1 (
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
28
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/camaelon-themes/camaelon-themes-0.1.ebuild,v 1.1 2007/10/08 20:12:36 voyageur Exp $
inherit gnustep-2
S=${WORKDIR}
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
dodir ${GNUSTEP_SYSTEM_LIBRARY}/Themes
insinto ${GNUSTEP_SYSTEM_LIBRARY}/Themes/
doins -r "${S}"/*theme
}
|