blob: e22113e2c7e3936e1f52151dd8790998091041a8 (
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
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/karamba-albums/karamba-albums-1.5a.ebuild,v 1.7 2004/06/24 23:00:53 agriffis Exp $
IUSE=""
DESCRIPTION="Image albums plugin for Karamba"
HOMEPAGE="http://www.kdelook.org/content/show.php?content=5692"
SRC_URI="http://www.kdelook.org/content/files/5692-albums_${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
RDEPEND="|| ( >=x11-misc/karamba-0.17 >=x11-misc/superkaramba-0.21 )"
src_unpack () {
unpack ${A}
mv albums_1.5a ${P}
}
src_compile () {
echo -n ""
}
src_install () {
dodir /usr/share/karamba/themes/albums
mv pictures.pl pictures.pl~
sed -e 's#/usr/mark/karamba.themes/#/usr/share/karamba/themes/albums/#' \
pictures.pl~ >pictures.pl
sed -e 's#pictures.pl#~/.karamba/pictures.pl#g' \
-e 's#mailcheck.pl#~/.karamba/mailcheck.pl#g' \
albums.theme > ${D}/usr/share/karamba/themes/albums/albums.theme
sed -e 's#pictures.pl#~/.karamba/pictures.pl#g' \
-e 's#mailcheck.pl#~/.karamba/mailcheck.pl#g' \
albumsclock.theme > ${D}/usr/share/karamba/themes/albums/albumsclock.theme
sed -e 's#pictures.pl#~/.karamba/pictures.pl#g' \
-e 's#mailcheck.pl#~/.karamba/mailcheck.pl#g' \
albumsmail.theme > ${D}/usr/share/karamba/themes/albums/albumsmail.theme
cp -r pics ${D}/usr/share/karamba/themes/albums
chmod -R go=u,go-w ${D}/usr/share/karamba/themes/albums
dodoc pictures.pl mailcheck.pl
}
|