blob: 82f6709baf46b248435aecec6d65f9570aeb6321 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/booh/booh-0.9.3.ebuild,v 1.2 2011/03/01 18:40:59 graaff Exp $
EAPI="2"
USE_RUBY="ruby18"
inherit eutils bash-completion ruby-ng
DESCRIPTION="Static HTML photo album generator"
HOMEPAGE="http://booh.org/index.html"
SRC_URI="http://booh.org/packages/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="gtk encode exif"
CDEPEND="media-gfx/exiv2
gtk? ( >=x11-libs/gtk+-2.8:2 )"
DEPEND="${DEPEND} ${CDEPEND}"
RDEPEND="${RDEPEND} ${CDEPEND}
|| ( media-gfx/imagemagick[jpeg,png] media-gfx/graphicsmagick[jpeg,png] )
exif? ( media-gfx/exif )
encode? ( media-video/mplayer )"
ruby_add_rdepend "
>=dev-ruby/ruby-gettext-0.8.0
dev-ruby/ruby-glib2
gtk? ( >=dev-ruby/ruby-gtk2-0.12 )"
all_ruby_prepare() {
epatch "${FILESDIR}"/${PN}-0.9.2.2-stdc.patch
# Remove scripts requiring gtk if gtk is not used
if ! use gtk; then
rm bin/booh bin/booh-classifier bin/booh-fix-whitebalance \
bin/booh-gamma-correction
fi
}
each_ruby_configure() {
${RUBY} setup.rb config || die "ruby setup.rb config failed"
${RUBY} setup.rb setup || die "ruby setup.rb setup failed"
cd ext
${RUBY} extconf.rb || die "ruby extconf.rb failed"
sed -i -e 's:-Wl,--no-undefined ::' Makefile || die "--no-undefined removal failed"
sed -i -e 's:-Wl,-R$(libdir)::' -e 's:-Wl,-R -Wl,$(libdir)::' Makefile || die "Fix insecure RUNPATH failed"
}
each_ruby_compile() {
emake -Cext || die
}
each_ruby_install() {
${RUBY} setup.rb install \
--prefix="${D}" || die "ruby setup.rb install failed"
cd ext
emake install \
DESTDIR=${D} \
libdir=${D}/`ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']"` \
archdir=${D}/`ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']"` \
|| die "emake install failed"
cd ..
}
all_ruby_install() {
domenu desktop/booh-classifier.desktop desktop/booh.desktop || die "domenu failed"
doicon desktop/booh-48x48.png || die "doicon failed"
dobashcompletion booh.bash-completion || die "dobashcompletion failed"
dodoc AUTHORS ChangeLog INTERNALS README VERSION THEMES \
|| die "dodoc failed"
}
|