blob: d5929d703bba642c506d85d2e38c82ed967d907a (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimmage/gimmage-0.2.3.ebuild,v 1.2 2008/01/15 00:38:51 maekke Exp $
DESCRIPTION="A slim GTK-based image browser"
HOMEPAGE="http://gimmage.berlios.de/"
SRC_URI="http://download.berlios.de/gimmage/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug"
DEPEND="dev-cpp/cairomm
>=dev-cpp/gtkmm-2.6.2
dev-util/pkgconfig
net-misc/curl
sys-apps/file
sys-devel/gettext"
src_compile() {
econf $(use_enable debug) || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die "einstall failed"
}
|