diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-28 16:48:25 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-28 16:48:25 +0000 |
commit | 5e3bf19817492988f76e2622b1c6019ed36cdfbb (patch) | |
tree | a2b657fc3353eb951f4b872553af48578141ba28 /dev-libs/libdbusmenu | |
parent | Provide GTK+-3.0 version in SLOT="3" (diff) | |
download | gentoo-2-5e3bf19817492988f76e2622b1c6019ed36cdfbb.tar.gz gentoo-2-5e3bf19817492988f76e2622b1c6019ed36cdfbb.tar.bz2 gentoo-2-5e3bf19817492988f76e2622b1c6019ed36cdfbb.zip |
old
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libdbusmenu')
-rw-r--r-- | dev-libs/libdbusmenu/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/libdbusmenu/libdbusmenu-0.5.1.ebuild | 80 |
2 files changed, 5 insertions, 81 deletions
diff --git a/dev-libs/libdbusmenu/ChangeLog b/dev-libs/libdbusmenu/ChangeLog index da9d644f23fd..0162a74e3e1e 100644 --- a/dev-libs/libdbusmenu/ChangeLog +++ b/dev-libs/libdbusmenu/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/libdbusmenu # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdbusmenu/ChangeLog,v 1.12 2011/11/28 16:47:52 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdbusmenu/ChangeLog,v 1.13 2011/11/28 16:48:25 ssuominen Exp $ + + 28 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> + -libdbusmenu-0.5.1.ebuild: + old *libdbusmenu-0.5.1-r300 (28 Nov 2011) *libdbusmenu-0.5.1-r200 (28 Nov 2011) diff --git a/dev-libs/libdbusmenu/libdbusmenu-0.5.1.ebuild b/dev-libs/libdbusmenu/libdbusmenu-0.5.1.ebuild deleted file mode 100644 index 149fdb581433..000000000000 --- a/dev-libs/libdbusmenu/libdbusmenu-0.5.1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdbusmenu/libdbusmenu-0.5.1.ebuild,v 1.3 2011/11/20 12:41:25 pacho Exp $ - -EAPI=4 - -inherit eutils versionator virtualx - -MY_MAJOR_VERSION="$(get_version_component_range 1-2)" -if version_is_at_least "${MY_MAJOR_VERSION}.50" ; then - MY_MAJOR_VERSION="$(get_major_version).$(($(get_version_component_range 2)+1))" -fi - -DESCRIPTION="Library to pass menu structure across DBus" -HOMEPAGE="https://launchpad.net/dbusmenu" -SRC_URI="http://launchpad.net/dbusmenu/${MY_MAJOR_VERSION}/${PV}/+download/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gtk gtk3 +introspection test vala" - -RDEPEND=" - dev-libs/glib:2 - dev-libs/dbus-glib - dev-libs/libxml2:2 - gtk? ( - gtk3? ( x11-libs/gtk+:3 ) - !gtk3? ( x11-libs/gtk+:2 ) - ) -" - -DEPEND="${RDEPEND} - introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) - test? ( - dev-libs/json-glib[introspection?] - dev-util/dbus-test-runner - ) - vala? ( dev-lang/vala:0.14 ) - app-text/gnome-doc-utils - dev-util/intltool - dev-util/pkgconfig -" - -REQUIRED_USE="vala? ( introspection )" - -src_prepare() { - # Drop DEPRECATED flags, bug #391103 - sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \ - libdbusmenu-glib/Makefile.am libdbusmenu-glib/Makefile.in \ - libdbusmenu-gtk/Makefile.am libdbusmenu-gtk/Makefile.in \ - tests/Makefile.am tests/Makefile.in \ - configure.ac configure || die -} - -src_configure() { - local gtkconf - if use gtk3 ; then - gtkconf=" --with-gtk=3" - else - gtkconf=" --with-gtk=2" - fi - - VALA_API_GEN=$(type -p vapigen-0.14) \ - econf \ - ${gtkconf} \ - $(use_enable gtk) \ - $(use_enable gtk dumper) \ - $(use_enable introspection) \ - $(use_enable test tests) \ - $(use_enable vala) -} - -src_test() { - Xemake check || die "testsuite failed" -} - -src_install() { - MAKEOPTS="-j1" default -} |