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.
54 lines
1.4 KiB
54 lines
1.4 KiB
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/libappindicator-12.10.0.ebuild,v 1.3 2013/05/12 14:40:30 pacho Exp $
|
|
|
|
EAPI=4
|
|
VALA_MIN_API_VERSION="0.16"
|
|
VALA_USE_DEPEND="vapigen"
|
|
|
|
inherit eutils vala
|
|
|
|
DESCRIPTION="A library to allow applications to export a menu into the Unity Menu bar"
|
|
HOMEPAGE="http://launchpad.net/libappindicator"
|
|
SRC_URI="http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1 LGPL-3"
|
|
SLOT="3"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="+introspection"
|
|
|
|
RDEPEND=">=dev-libs/dbus-glib-0.98
|
|
>=dev-libs/glib-2.26
|
|
>=dev-libs/libdbusmenu-0.6.2:3[gtk]
|
|
>=dev-libs/libindicator-12.10.0:3
|
|
>=x11-libs/gtk+-3.2:3
|
|
introspection? ( >=dev-libs/gobject-introspection-1 )"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
introspection? ( $(vala_depend) )"
|
|
|
|
src_prepare() {
|
|
# Disable MONO for now because of http://bugs.gentoo.org/382491
|
|
sed -i -e '/^MONO_REQUIRED_VERSION/s:=.*:=9999:' configure || die
|
|
use introspection && vala_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
# http://bugs.gentoo.org/409133
|
|
export APPINDICATOR_PYTHON_CFLAGS=' '
|
|
export APPINDICATOR_PYTHON_LIBS=' '
|
|
|
|
econf \
|
|
--disable-silent-rules \
|
|
--disable-static \
|
|
--with-html-dir=/usr/share/doc/${PF}/html \
|
|
--with-gtk=3
|
|
}
|
|
|
|
src_install() {
|
|
emake -j1 DESTDIR="${D}" install
|
|
dodoc AUTHORS ChangeLog
|
|
|
|
prune_libtool_files
|
|
}
|