diff options
Diffstat (limited to 'media-sound/gogglesmm/gogglesmm-0.12.2.ebuild')
-rw-r--r-- | media-sound/gogglesmm/gogglesmm-0.12.2.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/media-sound/gogglesmm/gogglesmm-0.12.2.ebuild b/media-sound/gogglesmm/gogglesmm-0.12.2.ebuild new file mode 100644 index 000000000..b6254bc9b --- /dev/null +++ b/media-sound/gogglesmm/gogglesmm-0.12.2.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=2 + +inherit autotools-utils + +DESCRIPTION="Lightweight FOX music collection manager and player" +HOMEPAGE="http://gogglesmm.googlecode.com/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus gcrypt" + +RDEPEND="dev-db/sqlite:3 + media-libs/taglib + media-libs/xine-lib + net-misc/curl + x11-libs/fox[png] + dbus? ( sys-apps/dbus ) + gcrypt? ( dev-libs/libgcrypt )" +DEPEND="${RDEPEND}" + +DOCS=(AUTHORS README) +# Upstream patch to fix parallel builds. Won't be needed >=0.12.3 +PATCHES=( "${FILESDIR}/${PN}-parallel-make.patch" ) + +AUTOTOOLS_IN_SOURCE_BUILD=0 + +src_prepare() { + sed -i -e 's:icons/hicolor/48x48/apps:pixmaps:' Makefile || die + autotools-utils_src_prepare +} + +src_configure() { + local myeconfargs="" + + if use gcrypt ; then + myeconfargs="--with-md5=gcrypt" + else + myeconfargs="--with-md5=internal" + fi + + myeconfargs="${myeconfargs} $(use_with dbus)" + + autotools-utils_src_configure +} + +pkg_postinst() { + elog "For asf and/or mp4 tag support, build " + elog " media-libs/taglib with USE='asf mp4'" +} |