# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tinymount/tinymount-0.2.6.ebuild,v 1.1 2012/11/06 06:39:30 pinkbyte Exp $ EAPI=4 unset _live_inherits PLOCALES="ru" if [[ ${PV} == *9999* ]]; then _live_inherits="git-2" EGIT_REPO_URI="git://github.com/limansky/${PN}.git" else SRC_URI="mirror://github/limansky/${PN}/${P}.tar.bz2" KEYWORDS="~amd64 ~x86" fi inherit l10n qt4-r2 ${_live_inherits} DESCRIPTION="Simple disk mount utility" HOMEPAGE="http://github.com/limansky/tinymount" LICENSE="GPL-2" SLOT="0" IUSE="debug libnotify" COMMON_DEPEND="x11-libs/qt-gui:4 x11-libs/qt-dbus:4 libnotify? ( x11-libs/libnotify )" DEPEND="${COMMON_DEPEND} virtual/pkgconfig" RDEPEND="${COMMON_DEPEND} sys-fs/udisks:0" DOCS=( ChangeLog README.md ) src_prepare() { remove_locale() { # this is nonfatal sed, so '|| die' unneeded here sed -i -e "/TRANSLATIONS/s/translations\/${PN}_${1}.ts//" src/src.pro } # Check for locales added/removed from previous version l10n_find_plocales_changes "src/translations" "${PN}_" '.ts' # Prevent disabled locales from being built l10n_for_each_disabled_locale_do remove_locale qt4-r2_src_prepare } src_configure() { local params="PREFIX=/usr" use libnotify && params="${params} CONFIG+=with_libnotify" eqmake4 ${params} }