blob: c6504e259f2c0bcb62daf9f322fce0f7e3de910b (
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
33
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/sylpheed-theme/sylpheed-theme-2.ebuild,v 1.3 2002/06/29 10:38:54 seemant Exp $
DESCRIPTION="Theme packs for sylpheed and sylpheed-claws and sylpheed-claws-nc"
HOMEPAGE="http://sylpheed-claws.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
RDEPEND="virtual/sylpheed"
MY_P=${PN}-pak${PV}
SRC_URI="mirror://sourceforge/sylpheed-claws/${MY_P}.tar.bz2"
S=${WORKDIR}
src_compile() {
einfo "Nothing to compile"
}
src_install () {
dodoc README
THEMEDIR=/usr/share/sylpheed/themes
dodir ${THEMEDIR}
rm README
cp -a * ${D}/${THEMEDIR}
}
|