blob: 9d5695becf4c7218a26791a3f806d933d33f2eed (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/booh/booh-0.2.0.ebuild,v 1.3 2005/05/22 15:19:45 swegener Exp $
inherit eutils
DESCRIPTION="Static HTML photo album generator"
HOMEPAGE="http://www.zarb.org/~gc/html/booh.html"
SRC_URI="http://www.zarb.org/~gc/resource/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="gtk"
DEPEND=">=dev-lang/ruby-1.8.2
>=dev-ruby/ruby-gettext-0.8.0
gtk? (
>=dev-ruby/ruby-gtk2-0.12.0
>=x11-libs/gtk+-2.6.0
)
media-gfx/exif
>=media-gfx/imagemagick-6.2.0.4"
src_compile() {
if ! use gtk; then
rm bin/booh-gui
fi
ruby setup.rb config
ruby setup.rb setup
}
src_install() {
ruby setup.rb install --prefix="${D}"
dodoc AUTHORS COPYING INTERNALS README VERSION
}
|