summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2015-06-04 16:54:48 +0000
committerDavide Pesavento <pesa@gentoo.org>2015-06-04 16:54:48 +0000
commitbdc4b0e5aebf8ad2392c43ceeb4b0dad07d98248 (patch)
treea9daa78e395349c3674748989f7bc64fb66103b9 /x11-misc/tinymount
parentAdd Perl 5.22 version, remove old (diff)
downloadgentoo-2-bdc4b0e5aebf8ad2392c43ceeb4b0dad07d98248.tar.gz
gentoo-2-bdc4b0e5aebf8ad2392c43ceeb4b0dad07d98248.tar.bz2
gentoo-2-bdc4b0e5aebf8ad2392c43ceeb4b0dad07d98248.zip
old
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)
Diffstat (limited to 'x11-misc/tinymount')
-rw-r--r--x11-misc/tinymount/ChangeLog5
-rw-r--r--x11-misc/tinymount/tinymount-0.2.6-r1.ebuild62
2 files changed, 4 insertions, 63 deletions
diff --git a/x11-misc/tinymount/ChangeLog b/x11-misc/tinymount/ChangeLog
index 8cbbcb2c630a..8c7f78c0e550 100644
--- a/x11-misc/tinymount/ChangeLog
+++ b/x11-misc/tinymount/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-misc/tinymount
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/tinymount/ChangeLog,v 1.7 2015/02/03 05:54:47 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/tinymount/ChangeLog,v 1.8 2015/06/04 16:54:48 pesa Exp $
+
+ 04 Jun 2015; Davide Pesavento <pesa@gentoo.org> -tinymount-0.2.6-r1.ebuild:
+ old
*tinymount-0.2.8 (03 Feb 2015)
diff --git a/x11-misc/tinymount/tinymount-0.2.6-r1.ebuild b/x11-misc/tinymount/tinymount-0.2.6-r1.ebuild
deleted file mode 100644
index ffce7ea91244..000000000000
--- a/x11-misc/tinymount/tinymount-0.2.6-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2013 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-r1.ebuild,v 1.2 2013/03/02 23:53:47 hwoarang 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="dev-qt/qtgui:4
- dev-qt/qtdbus: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
-
- # bug #441986
- sed -i src/src.pro -e 's|-Werror||g' || die # bug #441986
-
- epatch "${FILESDIR}"/${P}-libnotify.patch
-
- qt4-r2_src_prepare
-}
-
-src_configure() {
- local params="PREFIX=/usr"
- use libnotify && params="${params} CONFIG+=with_libnotify"
- eqmake4 ${params}
-}