summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2013-02-06 20:31:44 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2013-02-06 20:31:44 +0000
commitac230bf120c6b3d7bc64a03829a07549f5c9dceb (patch)
treed3d7cd8c976f3d5db8651bb22e8c352959a05f03 /dev-util/dwdiff
parentLeave to m-needed@ (diff)
downloadgentoo-2-ac230bf120c6b3d7bc64a03829a07549f5c9dceb.tar.gz
gentoo-2-ac230bf120c6b3d7bc64a03829a07549f5c9dceb.tar.bz2
gentoo-2-ac230bf120c6b3d7bc64a03829a07549f5c9dceb.zip
old
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'dev-util/dwdiff')
-rw-r--r--dev-util/dwdiff/ChangeLog5
-rw-r--r--dev-util/dwdiff/dwdiff-2.0.2.ebuild41
2 files changed, 4 insertions, 42 deletions
diff --git a/dev-util/dwdiff/ChangeLog b/dev-util/dwdiff/ChangeLog
index 31fca613fac8..ceb4b8cdc761 100644
--- a/dev-util/dwdiff/ChangeLog
+++ b/dev-util/dwdiff/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/dwdiff
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.7 2013/02/06 20:30:32 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.8 2013/02/06 20:31:43 ssuominen Exp $
+
+ 06 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> -dwdiff-2.0.2.ebuild:
+ old
06 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> metadata.xml:
Leave to m-needed@
diff --git a/dev-util/dwdiff/dwdiff-2.0.2.ebuild b/dev-util/dwdiff/dwdiff-2.0.2.ebuild
deleted file mode 100644
index 5fa56fd18664..000000000000
--- a/dev-util/dwdiff/dwdiff-2.0.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/dwdiff-2.0.2.ebuild,v 1.1 2012/01/03 09:49:23 ssuominen Exp $
-
-EAPI=4
-inherit toolchain-funcs
-
-DESCRIPTION="A front-end for the diff program that operates at the word level instead of the line level"
-HOMEPAGE="http://os.ghalkes.nl/dwdiff.html"
-SRC_URI="http://os.ghalkes.nl/dist/${P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="nls"
-
-COMMON_DEPEND="dev-libs/icu"
-RDEPEND="${COMMON_DEPEND}
- sys-apps/diffutils"
-DEPEND="${COMMON_DEPEND}
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- sed -i \
- -e '/INSTALL/s:COPYING::' \
- Makefile.in || die
-}
-
-src_configure() {
- ./configure \
- --prefix=/usr \
- $(use_with nls gettext) || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
-}
-
-src_install() {
- emake prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" install
-}