# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=4 inherit autotools-utils subversion DESCRIPTION="puppylinux soundmixer toolbar" HOMEPAGE="http://puppylinux.svn.sourceforge.net/viewvc/puppylinux/retrovol" SRC_URI="" ESVN_REPO_URI="https://puppylinux.svn.sourceforge.net/svnroot/puppylinux/retrovol/trunk" ESVN_PROJECT="retrovol" ESVN_REVISION="181" LICENSE="GPL-3 LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="nls" DEPEND="virtual/pkgconfig nls? ( sys-devel/gettext ) x11-libs/gtk+:2" AUTOTOOLS_IN_SOURCE_BUILD=1 LANGS="de fr" for X in ${LANGS} ; do IUSE="${IUSE} linguas_${X}" done src_prepare() { eautoreconf } src_configure() { econf $(use_enable nls) } src_install() { emake DESTDIR="${D}" install dodoc ChangeLog dodoc README dodoc TODO } pkg_postinst() { elog elog "You can find a sample configuration file at ${ROOT%/}/usr/share/retrovol/dot.retrovolrc." elog "To customize, copy it to ~/.retrovolrc and edit it to your liking." elog }