diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-26 14:18:32 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-26 14:18:32 +0000 |
commit | 2dfe0509dcd8675dc18efc67cbdf71d06eb377a9 (patch) | |
tree | ffd2cd97c2685c219bb72efafd80e35ab263a0fc /dev-util/xxdiff | |
parent | x86 stable wrt security bug #362025 (diff) | |
download | gentoo-2-2dfe0509dcd8675dc18efc67cbdf71d06eb377a9.tar.gz gentoo-2-2dfe0509dcd8675dc18efc67cbdf71d06eb377a9.tar.bz2 gentoo-2-2dfe0509dcd8675dc18efc67cbdf71d06eb377a9.zip |
Initial commit. Or sort of restore it back since Qt3 copy of this was once in tree.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/xxdiff')
-rw-r--r-- | dev-util/xxdiff/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/xxdiff/metadata.xml | 9 | ||||
-rw-r--r-- | dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild | 63 |
3 files changed, 82 insertions, 0 deletions
diff --git a/dev-util/xxdiff/ChangeLog b/dev-util/xxdiff/ChangeLog new file mode 100644 index 000000000000..1dde1dd9320b --- /dev/null +++ b/dev-util/xxdiff/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-util/xxdiff +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/xxdiff/ChangeLog,v 1.52 2011/04/26 14:18:32 ssuominen Exp $ + +*xxdiff-4.0_beta1_p20110426 (26 Apr 2011) + + 26 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> + +xxdiff-4.0_beta1_p20110426.ebuild: + Initial commit. + diff --git a/dev-util/xxdiff/metadata.xml b/dev-util/xxdiff/metadata.xml new file mode 100644 index 000000000000..7cc5007c5d79 --- /dev/null +++ b/dev-util/xxdiff/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>ssuominen@gentoo.org</email> + <name>Samuli Suominen</name> + </maintainer> +</pkgmetadata> diff --git a/dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild b/dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild new file mode 100644 index 000000000000..122582a5a30f --- /dev/null +++ b/dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild,v 1.1 2011/04/26 14:18:32 ssuominen Exp $ + +EAPI=3 + +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils qt4-r2 + +DESCRIPTION="A graphical file and directories comparator and merge tool" +HOMEPAGE="http://furius.ca/xxdiff/" +SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/qt-gui:4" +DEPEND="${RDEPEND}" + +src_prepare() { + pushd src >/dev/null + qt4-r2_src_prepare + popd + + distutils_src_prepare +} + +src_configure() { + pushd src >/dev/null + qt4-r2_src_configure + cat Makefile.extra >> Makefile + popd +} + +src_compile() { + pushd src >/dev/null + qt4-r2_src_compile + popd + + distutils_src_compile +} + +src_install() { + dobin bin/xxdiff || die + + distutils_src_install + + dodoc CHANGES README* TODO doc/*.txt + + dohtml doc/*.{png,html} + + # example tools, use these to build your own ones + insinto /usr/share/doc/${PF} + doins -r tools || die + + # missing EAPI=4 support in distutils.eclass, forced to use prepalldocs + prepalldocs +} |