You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-gfx/gimmage/gimmage-0.2.3-r1.ebuild

41 lines
845 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils flag-o-matic
DESCRIPTION="A slim GTK-based image browser"
HOMEPAGE="https://sourceforge.net/projects/gimmage.berlios/"
SRC_URI="mirror://sourceforge/project/${PN}.berlios/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="debug"
RDEPEND="
dev-cpp/cairomm
>=dev-cpp/gtkmm-2.6.2:2.4
net-misc/curl
sys-apps/file"
DEPEND="${RDEPEND}
sys-devel/gettext
virtual/pkgconfig"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-gcc43.patch \
"${FILESDIR}"/${P}-as-needed.patch \
"${FILESDIR}"/${P}-desktop-entry.patch \
"${FILESDIR}"/${P}-gcc47.patch
eautoreconf
}
src_configure() {
local myconf
use debug && myconf="--enable-debug"
append-cxxflags -std=c++11
econf ${myconf}
}