summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2018-03-10 11:05:53 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2018-03-10 11:05:53 +0000
commit1ff8be3dbc4c2e3e3b5687f26bbb9150a6a22429 (patch)
tree3bd7dafa0bd97de6c3d5e7c4018d9daa9222bb9c /dev-util
parentdev-util/xxdiff: grab 4.0.1_p20170622 qt5-compatibe snapshot, bug #644380 (diff)
downloadgentoo-1ff8be3dbc4c2e3e3b5687f26bbb9150a6a22429.tar.gz
gentoo-1ff8be3dbc4c2e3e3b5687f26bbb9150a6a22429.tar.bz2
gentoo-1ff8be3dbc4c2e3e3b5687f26bbb9150a6a22429.zip
dev-util/xxdiff: drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/xxdiff/xxdiff-4.0.1.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/dev-util/xxdiff/xxdiff-4.0.1.ebuild b/dev-util/xxdiff/xxdiff-4.0.1.ebuild
deleted file mode 100644
index 9ba26ac0ea35..000000000000
--- a/dev-util/xxdiff/xxdiff-4.0.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils qt4-r2
-
-DESCRIPTION="A graphical file and directories comparator and merge tool"
-HOMEPAGE="http://furius.ca/xxdiff/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-qt/qtgui:4"
-DEPEND="${RDEPEND}
- virtual/yacc"
-
-src_prepare() {
- pushd src >/dev/null
- sed -i -e '/qPixmapFromMimeSource/d' *.ui || die #365019
- qt4-r2_src_prepare
- popd
-
- distutils-r1_src_prepare
-}
-
-src_configure() {
- pushd src >/dev/null
- qt4-r2_src_configure
- cat Makefile.extra >> Makefile
- popd
-
- distutils-r1_src_configure
-}
-
-src_compile() {
- pushd src >/dev/null
- qt4-r2_src_compile
- popd
-
- distutils-r1_src_compile
-}
-
-src_install() {
- dobin bin/xxdiff
-
- distutils-r1_src_install
-
- dodoc CHANGES README* TODO doc/*.txt src/doc.txt
-
- dohtml doc/*.{png,html} src/doc.html
-
- # example tools, use these to build your own ones
- insinto /usr/share/doc/${PF}
- doins -r tools
-}