blob: 66f67de93895d66191b72df71e95f9f6fced6a14 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
DESCRIPTION="Tools for extracting information from Gimp XCF files"
HOMEPAGE="https://github.com/j-jorge/xcftools/"
SRC_URI="http://henning.makholm.net/${PN}/${P}.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}-6.debian.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
CDEPEND="media-libs/libpng:*"
DEPEND="${CDEPEND}
dev-lang/perl"
RDEPEND="${CDEPEND}
x11-misc/xdg-utils"
DOCS=( ChangeLog README )
src_prepare() {
rm "${WORKDIR}"/debian/patches/series || die
epatch "${WORKDIR}"/debian/patches/*
eapply_user
}
|