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 | a50f9361286ddd5a46e7eec291485507818607df (patch) | |
tree | a3a352d77ab63d6697b4e09f26623319e3c3b914 /dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild | |
parent | x86 stable wrt security bug #362025 (diff) | |
download | historical-a50f9361286ddd5a46e7eec291485507818607df.tar.gz historical-a50f9361286ddd5a46e7eec291485507818607df.tar.bz2 historical-a50f9361286ddd5a46e7eec291485507818607df.zip |
Initial commit. Or sort of restore it back since Qt3 copy of this was once in tree.
Package-Manager: portage-2.2.0_alpha30/cvs/Linux x86_64
Diffstat (limited to 'dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild')
-rw-r--r-- | dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
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 +} |