2018-04-26 11:31:45 +03:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
|
|
|
inherit autotools
|
|
|
|
|
|
|
|
DESCRIPTION="GXml library"
|
|
|
|
HOMEPAGE="https://wiki.gnome.org/GXml"
|
|
|
|
SRC_URI="https://github.com/GNOME/${PN}/archive/${PV}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="LGPL-2.1"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
2018-04-26 11:41:03 +03:00
|
|
|
src_unpack() {
|
|
|
|
default
|
|
|
|
mv "${WORKDIR}/gxml-${PV}" "${S}"
|
|
|
|
}
|
|
|
|
|
2018-04-26 11:31:45 +03:00
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
./autogen.sh || die
|
|
|
|
}
|