linamh/media-gfx/gphoto2/gphoto2-2.4.5.ebuild
2009-08-31 20:26:35 +00:00

52 lines
1.3 KiB
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.5.ebuild,v 1.4 2009/08/16 10:01:09 maekke Exp $
EAPI=2
inherit eutils
DESCRIPTION="free, redistributable digital camera software application"
HOMEPAGE="http://www.gphoto.org/"
SRC_URI="mirror://sourceforge/gphoto/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="aalib exif ncurses nls readline"
# aalib -> needs libjpeg
# raise libgphoto to get a proper .pc
RDEPEND="=virtual/libusb-0*
dev-libs/popt
>=media-libs/libgphoto2-2.4.5[exif]
ncurses? ( dev-libs/cdk )
aalib? (
media-libs/aalib
media-libs/jpeg )
exif? ( media-libs/libexif )
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( >=sys-devel/gettext-0.14 )"
src_configure() {
econf \
--docdir=/usr/share/doc/${PF} \
$(use_with aalib) \
$(use_with aalib jpeg) \
$(use_with exif libexif auto) \
$(use_with ncurses cdk) \
$(use_enable nls) \
$(use_with readline)
}
src_install() {
emake DESTDIR="${D}" \
HTML_DIR="${D}"/usr/share/doc/${PF}/sgml \
install || die "installation failed"
dodoc ChangeLog NEWS* README AUTHORS || die "dodoc failed"
rm -rf "${D}"/usr/share/doc/${PF}/sgml/gphoto2
}