summaryrefslogtreecommitdiff
blob: 8ede1ccbde7abc78ca6b54d3f4bd615f47caff89 (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
# 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.1.0.ebuild,v 1.1 2005/04/01 15:44:56 dams 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.10.1)
	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
}