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/photoprint/photoprint-0.4.2_pre2.ebuild

52 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoprint/photoprint-0.4.2_pre2.ebuild,v 1.4 2012/06/11 17:23:09 radhermit Exp $
EAPI=4
inherit eutils autotools
MY_P=${P/_/-}
DESCRIPTION="A utility for printing digital photographs"
HOMEPAGE="http://www.blackfiveimaging.co.uk/index.php?article=02Software%2F01PhotoPrint"
SRC_URI="http://www.blackfiveimaging.co.uk/photoprint/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cups"
RDEPEND="cups? ( net-print/cups )
dev-libs/glib:2
media-libs/lcms:0
media-libs/netpbm
media-libs/tiff
>=net-print/gutenprint-5
virtual/jpeg
>=x11-libs/gtk+-2.4:2
x11-libs/libX11
x11-proto/xproto"
DEPEND="${RDEPEND}
sys-devel/gettext
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-cups-automagic.patch \
"${FILESDIR}"/${P}-tests.patch \
"${FILESDIR}"/${P}-underlinking.patch \
"${FILESDIR}"/${P}-glib-2.32.patch
# Ships with po/Makefile.in.in from gettext-0.17
# which fails with >=gettext-0.18
sed -i -e "/AM_GNU_GETTEXT_VERSION/s/17/18/" configure.ac || die
eautoreconf
}
src_configure() {
econf \
$(use_enable cups)
}