blob: ac6c7e5c6d05d8dbe2c588bf201b940b1a1f88c7 (
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
45
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
MY_P="${PN}091"
DESCRIPTION="picture manager / organizer written in Perl/Tk"
HOMEPAGE="http://mapivi.sourceforge.net/mapivi.shtml"
SRC_URI="mirror://sourceforge/mapivi/${MY_P}.tgz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-lang/perl
>=dev-perl/perl-tk-804.025
dev-perl/ImageInfo
media-gfx/jhead
media-gfx/imagemagick
media-libs/jpeg
dev-perl/Image-MetaData-JPEG"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's:$configdir/PlugIns:/usr/share/mapivi/plugins:' mapivi
}
src_install() {
dobin mapivi
exeinto /usr/share/mapivi/plugins
doexe PlugIns/{Channel-Separator,Join-RGB,checkDir-plugin,filelist-plugin,test-plugin}
dodoc Changes.txt FAQ README Tips.txt ToDo
}
pkg_postinst() {
ewarn "If your Gimp version is 2.3 from CVS you should run:"
ewarn "sed -i 's:gimp-remote -n :gimp-remote:g' /usr/bin/mapivi"
ewarn "sed -i '22732,22734s:^.:\#:g' /usr/bin/mapivi"
ewarn "sed -i '22735s:\#execute:execute:g' /usr/bin/mapivi"
ewarn "after instalation to have edit in Gimp option work."
}
|