summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-06-26 13:11:56 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-06-26 13:11:56 +0000
commit3a888bc3c6b7c4c6fdf95624e8c40953ee796964 (patch)
treedd6815e966066d2d7381037620ff9f778003e0d4 /dev-util
parentRemove old. (diff)
downloadgentoo-2-3a888bc3c6b7c4c6fdf95624e8c40953ee796964.tar.gz
gentoo-2-3a888bc3c6b7c4c6fdf95624e8c40953ee796964.tar.bz2
gentoo-2-3a888bc3c6b7c4c6fdf95624e8c40953ee796964.zip
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/dwdiff/ChangeLog7
-rw-r--r--dev-util/dwdiff/dwdiff-2.0.7.ebuild42
-rw-r--r--dev-util/dwdiff/files/dwdiff-2.0.7-configure_fixes.patch21
3 files changed, 5 insertions, 65 deletions
diff --git a/dev-util/dwdiff/ChangeLog b/dev-util/dwdiff/ChangeLog
index f35b4f308181..00b291034e64 100644
--- a/dev-util/dwdiff/ChangeLog
+++ b/dev-util/dwdiff/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/dwdiff
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.13 2014/01/05 18:00:05 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.14 2014/06/26 13:11:55 kensington Exp $
+
+ 26 Jun 2014; Michael Palimaka <kensington@gentoo.org> -dwdiff-2.0.7.ebuild,
+ -files/dwdiff-2.0.7-configure_fixes.patch:
+ Remove old.
*dwdiff-2.0.9 (05 Jan 2014)
@@ -62,4 +66,3 @@
07 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> +dwdiff-1.8.ebuild:
Initial commit.
-
diff --git a/dev-util/dwdiff/dwdiff-2.0.7.ebuild b/dev-util/dwdiff/dwdiff-2.0.7.ebuild
deleted file mode 100644
index 29de180c5681..000000000000
--- a/dev-util/dwdiff/dwdiff-2.0.7.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/dwdiff-2.0.7.ebuild,v 1.1 2014/01/02 09:33:14 polynomial-c Exp $
-
-EAPI=5
-inherit eutils 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() {
- epatch "${FILESDIR}"/${PN}-2.0.7-configure_fixes.patch
- 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
-}
diff --git a/dev-util/dwdiff/files/dwdiff-2.0.7-configure_fixes.patch b/dev-util/dwdiff/files/dwdiff-2.0.7-configure_fixes.patch
deleted file mode 100644
index e93f37f5762b..000000000000
--- a/dev-util/dwdiff/files/dwdiff-2.0.7-configure_fixes.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- dwdiff-2.0.7/config.pkg
-+++ dwdiff-2.0.7/config.pkg
-@@ -104,6 +104,7 @@
-
- if [ "yes" = "${with_dwfilter}" ] ; then
- cat > .config.c <<EOF
-+#include <sys/types.h>
- #include <unistd.h>
-
- int main(int argc, char *argv[]) {
-@@ -114,8 +115,8 @@
- clean .config.o
-
- test_link "required functions for dwfilter" || {
-- checkfunction "fork" 'pid_t pid = fork();' "<unistd.h>"
-- checkfunction "open" 'execvp("test", NULL);' "<unistd.h>"
-+ checkfunction "fork" 'pid_t pid = fork();' "<unistd.h>" "<sys/types.h>"
-+ checkfunction "open" 'execvp("test", NULL);' "<unistd.h>" "<sys/types.h>"
- check_message_result "!! A required function for dwfilter is not availabe. Try configuring with --without-dwfilter"
- exit 1
- }