2014-10-16 15:33:25 +04:00
|
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
inherit cmake-utils
|
|
|
|
|
|
|
|
if [[ ${PV} == "9999" ]] ; then
|
|
|
|
EGIT_REPO_URI=${EGIT_REPO_URI:-"git://git.backbone.ws/gobject/plugin.git"}
|
2015-10-12 19:44:08 +03:00
|
|
|
inherit git-r3
|
2014-10-16 15:33:25 +04:00
|
|
|
KEYWORDS=""
|
|
|
|
else
|
|
|
|
#SRC_URI="ftp://ftp.backbone.ws/projects/gobject-plugin/${P}.tar.bz2"
|
2014-10-26 18:27:58 +03:00
|
|
|
SRC_URI="https://git.backbone.ws/gobject/plugin/archive-tarball/v${PVR}.tgz -> gobject-plugin-${PVR}.tar.gz"
|
2014-10-16 15:33:25 +04:00
|
|
|
KEYWORDS="-* ~x86 ~amd64"
|
|
|
|
fi
|
|
|
|
|
|
|
|
DESCRIPTION="Host/Plugin Interfaces for GObject Based Applications/Libraries."
|
|
|
|
|
|
|
|
HOMEPAGE="https://redmine.backbone.ws/projects/plugin"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
LICENSE="LGPL-3"
|
|
|
|
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=">=dev-lang/vala-0.26
|
|
|
|
>=dev-libs/glib-2.40
|
|
|
|
>=dev-libs/libgee-0.16"
|
|
|
|
|
|
|
|
RDEPEND="${DEPEND}"
|