blob: c7d05886e934feb7ac47bbf989b7d6e6cd1b03ff (
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
29
30
31
32
|
# Copyright 1999-2008 Gentoo Foundationq
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/xxv-skins/xxv-skins-1.2.ebuild,v 1.2 2008/05/04 14:18:16 drac Exp $
inherit eutils
DESCRIPTION="Additional skins for XXV"
HOMEPAGE="http://xxv.berlios.de/content/view/38/1/"
SRC_URI="mirror://berlios/xxv/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND=">=net-www/xxv-${PV}
!x11-themes/xxv-xstyle"
#S=${WORKDIR}
SKINROOT=/usr/share/xxv/skins
src_compile() {
:
}
src_install() {
insinto ${SKINROOT}
cd "${S}"
cp -a * "${D}${SKINROOT}"
}
|