Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/files/
Date: Mon, 29 Aug 2016 14:02:15
Message-Id: 1472479311.61ffd52bc6a32bef40c8fe975cb6f3aafb34fd68.jer@gentoo
1 commit: 61ffd52bc6a32bef40c8fe975cb6f3aafb34fd68
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 14:01:51 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 14:01:51 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ffd52b
7
8 sys-fs/ncdu: Drop obsolete patch.
9
10 Package-Manager: portage-2.3.0
11
12 sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch | 39 ------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch b/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch
16 deleted file mode 100644
17 index 0d180b3..00000000
18 --- a/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 - configure.in | 21 ++++++++++++---------
22 - 1 file changed, 12 insertions(+), 9 deletions(-)
23 -
24 -diff --git a/configure.in b/configure.in
25 -index f4a4a2d..1333234 100644
26 ---- a/configure.in
27 -+++ b/configure.in
28 -@@ -36,19 +36,22 @@ AC_ARG_WITH([ncursesw],
29 - AC_HELP_STRING([--with-ncursesw], [compile/link with wide-char ncurses library @<:@default@:>@]),
30 - [ncurses=ncursesw])
31 - if test "$ncurses" = "auto" -o "$ncurses" = "ncursesw"; then
32 -- AC_CHECK_LIB([ncursesw],
33 -- [initscr],
34 -- [LIBS="$LIBS -lncursesw"; ncurses=ncursesw],
35 -- [ncurses=ncurses])
36 -+ PKG_CHECK_MODULES([NCURSES], [ncursesw], [LIBS="$LIBS $NCURSES_LIBS"; ncurses=ncursesw],
37 -+ [AC_CHECK_LIB([ncursesw],
38 -+ [initscr],
39 -+ [LIBS="$LIBS -lncursesw"; ncurses=ncursesw],
40 -+ [ncurses=ncurses])
41 -+ ])
42 - fi
43 - if test "$ncurses" = "ncurses"; then
44 -- AC_CHECK_LIB([ncurses],
45 -- [initscr],
46 -- [LIBS="$LIBS -lncurses"],
47 -- [AC_MSG_ERROR(ncurses library is required)])
48 -+ PKG_CHECK_MODULES([NCURSES], [ncurses], [LIBS="$LIBS $NCURSES_LIBS"],
49 -+ [AC_CHECK_LIB([ncurses],
50 -+ [initscr],
51 -+ [LIBS="$LIBS -lncurses"],
52 -+ [AC_MSG_ERROR(ncurses library is required)])
53 -+ ])
54 - fi
55 -
56 -
57 -
58 - AC_OUTPUT([Makefile])
59 --