blob: dbc59c8856c0ae912442df8c2d36c824fb3bd84d (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/ikons/ikons-0.5.8.ebuild,v 1.5 2002/08/02 17:54:50 seemant Exp $
S="${WORKDIR}/iKons_058"
DESCRIPTION="iKons iconset for KDE 2.x"
SRC_URI="http://www.kde-look.org/content/files/602-iKons_058_devel.tar.gz"
HOMEPAGE="http://users.skynet.be/bk369046/icon.htm"
KEYWORDS="x86"
SLOT="0"
LICENSE="as-is"
src_compile() {
return 1
}
src_install(){
cd ${S}
if [ -d ${KDE2DIR} ] ; then
mkdir -p ${D}/${KDE2DIR}/share/icons/
cp -rf ${S} ${D}/${KDE2DIR}/share/icons/iKons_058
fi
if [ -d ${KDE3DIR} ] ; then
mkdir -p ${D}/${KDE3DIR}/share/icons/
cp -rf ${S} ${D}/${KDE3DIR}/share/icons/iKons_058
fi
}
|