From 775b1124cae66b9d8885581513e4f641d1bd6779 Mon Sep 17 00:00:00 2001 From: Ben de Groot Date: Wed, 29 Jul 2015 12:31:56 +0800 Subject: media-libs/lvtk: moved to main gentoo repo --- media-libs/lvtk/lvtk-1.2.0.ebuild | 51 --------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 media-libs/lvtk/lvtk-1.2.0.ebuild (limited to 'media-libs/lvtk/lvtk-1.2.0.ebuild') diff --git a/media-libs/lvtk/lvtk-1.2.0.ebuild b/media-libs/lvtk/lvtk-1.2.0.ebuild deleted file mode 100644 index eead62c..0000000 --- a/media-libs/lvtk/lvtk-1.2.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="threads(+)" -inherit python-single-r1 waf-utils - -DESCRIPTION="A set of C++ wrappers around the LV2 C API" -HOMEPAGE="http://lvtoolkit.org/" -SRC_URI="https://github.com/lvtk/lvtk/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc examples +gtk2 +tools" - -RDEPEND="media-libs/lv2 - >=dev-libs/boost-1.40.0 - gtk2? ( dev-cpp/gtkmm:2.4 )" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - doc? ( app-doc/doxygen - media-gfx/graphviz ) - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog README ) - -src_configure() { - local mywafconfargs=( - "--docdir=${EPREFIX}/usr/share/doc/${PF}" - "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" - ) - use debug && mywafconfargs+=( "--debug" ) - use doc && mywafconfargs+=( "--docs" ) - use examples || mywafconfargs+=( "--disable-examples" ) - use tools || mywafconfargs+=( "--disable-tools" ) - use gtk2 || mywafconfargs+=( "--disable-ui" ) - waf-utils_src_configure ${mywafconfargs[@]} -} - -src_install() { - waf-utils_src_install - - # It does not respect docdir properly, reported upstream - if use doc; then - mv "${ED}/usr/share/doc/${PF}/lvtk-1.0/html" "${ED}/usr/share/doc/${PF}/html" - rmdir "${ED}/usr/share/doc/${PF}/lvtk-1.0" - fi -} -- cgit v1.2.3-65-gdbad