diff options
Diffstat (limited to 'gentoo/trinity-base/noatun-plugins/noatun-plugins-9999.ebuild')
-rw-r--r-- | gentoo/trinity-base/noatun-plugins/noatun-plugins-9999.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gentoo/trinity-base/noatun-plugins/noatun-plugins-9999.ebuild b/gentoo/trinity-base/noatun-plugins/noatun-plugins-9999.ebuild new file mode 100644 index 000000000..9e59012b7 --- /dev/null +++ b/gentoo/trinity-base/noatun-plugins/noatun-plugins-9999.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ +EAPI="5" +TRINITY_MODULE_NAME="tdeaddons" + +inherit trinity-meta db-use + +DESCRIPTION="Various plugins for Noatun." +KEYWORDS="" +IUSE="arts sdl berkdb" + +COMMON_DEPEND=" + >=trinity-base/noatun-${PV}:${SLOT} + arts? ( >=trinity-base/arts-${PV}:${SLOT} ) + berkdb? ( =sys-libs/db-4*:= ) +" +DEPEND="${COMMON_DEPEND} + sdl? ( >=media-libs/libsdl-1.2 ) +" + +RDEPEND="${COMMON_DEPEND} + sdl? ( >=media-libs/libsdl-1.2[X] ) +" + +src_compile() { + mycmakeargs=( + "-DWITH_ARTS=$(usex arts)" + "-DWITH_SDL=$(usex sdl)" + ) + + if use berkdb; then + mycmakeargs=( "${mycmakeargs[@]}" + "-DWITH_BERKELEY_DB=ON" + "-DBERKELEY_DB_LIBS=$(db_libname)" + "-DBERKELEY_DB_INCLUDE_DIRS==${ROOT}$(db_includedir)" + ) + else + mycmakeargs=( "${mycmakeargs[@]}" + "-DWITH_BERKELEY_DB=OFF" + ) + fi + + trinity-meta_src_configure +} |