blob: 72a2f6bc4eb3394da4581d382a9b8b22341c130d (
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
35
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-lqr/gimp-lqr-0.7.1.ebuild,v 1.6 2013/11/17 23:59:41 phajdan.jr Exp $
EAPI="4"
inherit autotools eutils
MY_P="${PN}-plugin-${PV}"
DESCRIPTION="Content-aware resizing for the GIMP"
HOMEPAGE="http://liquidrescale.wikidot.com/"
SRC_URI="http://liquidrescale.wikidot.com/local--files/en:download-page-sources/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="media-gfx/gimp
media-libs/liblqr"
DEPEND="dev-util/intltool
${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/${PN}-no-deprecated.patch"
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS BUGS ChangeLog NEWS README TODO
}
|