diff options
Diffstat (limited to 'app-misc/vcp')
| -rw-r--r-- | app-misc/vcp/files/vcp-2.2-fno-common.patch | 47 | ||||
| -rw-r--r-- | app-misc/vcp/vcp-2.2-r2.ebuild | 8 |
2 files changed, 52 insertions, 3 deletions
diff --git a/app-misc/vcp/files/vcp-2.2-fno-common.patch b/app-misc/vcp/files/vcp-2.2-fno-common.patch new file mode 100644 index 000000000000..394cbaede850 --- /dev/null +++ b/app-misc/vcp/files/vcp-2.2-fno-common.patch @@ -0,0 +1,47 @@ +--- a/common.h ++++ b/common.h +@@ -23,8 +23,8 @@ + #define T_DIR 1 /* -> DIR */ + #define T_NED 2 /* DIR -> NON-EXISTENT DIR */ + +-WINDOW *mainw; +-WINDOW *logw; ++extern WINDOW *mainw; ++extern WINDOW *logw; + + struct dest_new { + char *opath; +--- a/log.c ++++ b/log.c +@@ -13,6 +13,8 @@ + #include "screen.h" + #include "color.h" + ++extern WINDOW *logw; ++ + int logaddi(int code, char *base, int var, int var2) { + + if(code == LOG_VRB && !vflag) +--- a/misc.c ++++ b/misc.c +@@ -22,6 +22,8 @@ + #include "color.h" + #include "screen.h" + ++extern WINDOW *logw; ++ + int statit(char *path,struct stat *st,int cmdline) { + if(Rflag) { + if(pflag || ((Hflag) && !cmdline)) +--- a/screen.c ++++ b/screen.c +@@ -17,6 +17,9 @@ + int winw,winh,mainww; + int mainwsbw; /* width of status bar */ + ++WINDOW *mainw; ++WINDOW *logw; ++ + /* create windows, draw border and title */ + void scrn_draw() { + int dev_null; diff --git a/app-misc/vcp/vcp-2.2-r2.ebuild b/app-misc/vcp/vcp-2.2-r2.ebuild index de130d5ed1d0..f778892bbc00 100644 --- a/app-misc/vcp/vcp-2.2-r2.ebuild +++ b/app-misc/vcp/vcp-2.2-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit flag-o-matic toolchain-funcs @@ -17,8 +17,10 @@ DEPEND="sys-libs/ncurses:0=" RDEPEND="${DEPEND}" DOCS=( Changelog README INSTALL ) + PATCHES=( - "${FILESDIR}"/${PN}-2.2-tinfo.patch + "${FILESDIR}"/${P}-tinfo.patch + "${FILESDIR}"/${P}-fno-common.patch ) src_compile() { |
