[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2024-02-27 Thread Florian Schmaus
commit: 1475ed75eed4adc0f5b7528ab197f4f997665d56
Author: Florian Schmaus  gentoo  org>
AuthorDate: Tue Feb 27 15:18:34 2024 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Tue Feb 27 15:18:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1475ed75

app-text/xdvik: drop long obsolete blocker

Signed-off-by: Florian Schmaus  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index a12b97aef76f..4e52dfa0e6d1 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -34,7 +34,7 @@ DEPEND=">=media-libs/freetype-2.9.1-r2:2
dev-libs/kpathsea:="
 RDEPEND="${DEPEND}
virtual/latex-base
-   !

[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/files/, app-text/xdvik/

2024-02-27 Thread Florian Schmaus
commit: 281631c0ee38b5793bd4bc30e9dcde99905e41b9
Author: Christopher Fore  posteo  net>
AuthorDate: Tue Feb 27 02:18:16 2024 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Tue Feb 27 15:17:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=281631c0

app-text/xdvik: Fix compilation on GCC 14

- Casts page_info.page_labels to _Xconst char** to correct an
  incompatible pointer type
- Moves patches into an array

gui/pagesel.c: In function ‘xaw_update_list’:
gui/pagesel.c:541:41: error: passing argument 2 of ‘XawListChange’ from 
incompatible pointer type [-Wincompatible-pointer-types]
  541 | XawListChange(LIST_WIDGET, page_info.page_labels, 0,
  |~^~~~
  | |
  | char **

https://wiki.gentoo.org/wiki/Modern_C_porting

Unfortunately upstream rejected the PR due to backwards compatability
issues

Upstream PR: https://github.com/TeX-Live/texlive-source/pull/64
Mailing List: https://tug.org/pipermail/tex-k/2024-February/004008.html
Closes: https://bugs.gentoo.org/919069
Signed-off-by: Christopher Fore  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/35546
Signed-off-by: Florian Schmaus  gentoo.org>

 app-text/xdvik/files/xdvik-22.87.06-c99-fix.patch | 40 +++
 app-text/xdvik/xdvik-22.87.06-r1.ebuild   |  6 +++-
 2 files changed, 45 insertions(+), 1 deletion(-)

diff --git a/app-text/xdvik/files/xdvik-22.87.06-c99-fix.patch 
b/app-text/xdvik/files/xdvik-22.87.06-c99-fix.patch
new file mode 100644
index ..d22c473f42d3
--- /dev/null
+++ b/app-text/xdvik/files/xdvik-22.87.06-c99-fix.patch
@@ -0,0 +1,40 @@
+From 6d1fbe75ed92a7e1aea9d74e601dace6d24f721b Mon Sep 17 00:00:00 2001
+From: Christopher Fore 
+Date: Thu, 15 Feb 2024 15:20:34 -0500
+Subject: [PATCH] xdvik/gui: Fix compilation on GCC 14
+
+Starting in GCC 14, what used to be warnings from incompatible pointer
+types are now errors.
+
+https://www.gnu.org/software/gcc/gcc-14/porting_to.html
+
+Error message:
+gui/pagesel.c:541:41: error: passing argument 2 of `XawListChange' from
+incompatible pointer type [-Wincompatible-pointer-types]
+  541 | XawListChange(LIST_WIDGET, page_info.page_labels, 0,
+  |~^~~~
+  | |
+  | char **
+
+This mismatch is simply from XawListChange taking in a const whilst the
+argument given was not a const.
+
+Gentoo bug: https://bugs.gentoo.org/919069
+Signed-off-by: Christopher Fore 
+---
+ texk/xdvik/gui/pagesel.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/gui/pagesel.c b/gui/pagesel.c
+index 945ae760fa..913db11264 100644
+--- a/gui/pagesel.c
 b/gui/pagesel.c
+@@ -538,7 +538,7 @@ xaw_update_list(void)
+ button_width = get_panel_width() - 2 * (resource.btn_side_spacing + 
resource.btn_border_width);
+ /* delete and re-create list */
+ ASSERT(total_pages <= (int)page_info.index_size, "");
+-XawListChange(LIST_WIDGET, page_info.page_labels, 0,
++XawListChange(LIST_WIDGET, (_Xconst char**) page_info.page_labels, 0,
+ MAX(button_width, pagelist_width), False);
+ /* restore selected item */
+ if (idx != XAW_LIST_NONE) {

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index 42dbb86d80dd..a12b97aef76f 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -39,6 +39,11 @@ BDEPEND="app-alternatives/lex
app-alternatives/yacc
virtual/pkgconfig"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-22.87.06-configure-clang16.patch
+   "${FILESDIR}"/${PN}-22.87.06-c99-fix.patch
+)
+
 src_prepare() {
default
 
@@ -51,7 +56,6 @@ src_prepare() {
 
cd "${WORKDIR}/${P}" || die
cd "${S}" || die
-   eapply "${FILESDIR}"/${PN}-22.87.06-configure-clang16.patch
eautoreconf
 }
 



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/files/, app-text/xdvik/

2023-08-27 Thread David Seifert
commit: d9b55a53eeeda3b14c67303c0cc33eead91839ad
Author: David Seifert  gentoo  org>
AuthorDate: Sun Aug 27 14:24:21 2023 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Aug 27 14:24:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b55a53

app-text/xdvik: drop 22.87.03-r4, 22.87.06

Signed-off-by: David Seifert  gentoo.org>

 app-text/xdvik/Manifest|   1 -
 .../files/xdvik-22.87.03-freetype2-config.patch|  23 -
 app-text/xdvik/xdvik-22.87.03-r4.ebuild| 114 -
 app-text/xdvik/xdvik-22.87.06.ebuild   | 114 -
 4 files changed, 252 deletions(-)

diff --git a/app-text/xdvik/Manifest b/app-text/xdvik/Manifest
index 946aa23510de..b17947255f53 100644
--- a/app-text/xdvik/Manifest
+++ b/app-text/xdvik/Manifest
@@ -1,3 +1,2 @@
-DIST xdvik-22.87.03.tar.gz 4760306 BLAKE2B 
d242696fadf2980cd307d4a172d2af06d98d07b090279440117f869c9a623bcade8745d7a4d3c108c4eafbdeaadefb8d5ba1ea00bdf77d350cbf83c49c2ca0fb
 SHA512 
d4d418d78658f16d4d278e387ed484b291afc8623b00acaf4110e9f123ed76568714ad50f80588373657f412e8fff36f3e76b3e43f69756d46f031c0f2269a88
 DIST xdvik-22.87.06.tar.gz 5922131 BLAKE2B 
88821b7642d2d79158f5b49a7d23dad2209750a44d2b75f131d77a5ee326670d2a9cf09246ea9226a386bce429890459625d87df697599529de1bfc32438bf64
 SHA512 
93fb231f20ef76e170ae954d076ac5421669b3db71e3a96561626736d516f639227e3e502012ba4612fd238172b82f512985c571702d6c0ce078e60a67e5b19f
 DIST xdvik_192.png 77893 BLAKE2B 
533910801cd981a39c42851be2779f98ecf7fcec8ef2a167005521e39d8ef66d8eb806b382451ebf88da62ba61afba82b8d15a60ef6ba347bd2ff848f10253ed
 SHA512 
7fa6becc3601df01134cd163e461780b9ab4ee855788e38dc3d255d491294c033f040326016df7671ff301cc8f91462209e1fda5e50cb383f5407f0c1021d71d

diff --git a/app-text/xdvik/files/xdvik-22.87.03-freetype2-config.patch 
b/app-text/xdvik/files/xdvik-22.87.03-freetype2-config.patch
deleted file mode 100644
index 6387b28c8ba2..
--- a/app-text/xdvik/files/xdvik-22.87.03-freetype2-config.patch
+++ /dev/null
@@ -1,23 +0,0 @@
 a/m4/kpse-freetype2-flags.m4   2018-09-19 10:19:06.437789178 +0100
-+++ b/m4/kpse-freetype2-flags.m4   2018-09-19 10:23:48.556050046 +0100
-@@ -21,17 +21,10 @@
- 
- # KPSE_FREETYPE2_OPTIONS([WITH-SYSTEM])
- # -
--AC_DEFUN([KPSE_FREETYPE2_OPTIONS], [_KPSE_LIB_OPTIONS([freetype2], [$1], 
[freetype-config])])
-+AC_DEFUN([KPSE_FREETYPE2_OPTIONS], [_KPSE_LIB_OPTIONS([freetype2], [$1], 
[pkg-config])])
- 
- # KPSE_FREETYPE2_SYSTEM_FLAGS
- # ---
- AC_DEFUN([KPSE_FREETYPE2_SYSTEM_FLAGS], [dnl
--AC_REQUIRE([AC_CANONICAL_HOST])[]dnl
--AC_CHECK_TOOL([FT2_CONFIG], [freetype-config], [false])[]dnl
--if $FT2_CONFIG --ftversion >/dev/null 2>&1; then
--  FREETYPE2_INCLUDES=`$FT2_CONFIG --cflags`
--  FREETYPE2_LIBS=`$FT2_CONFIG --libs`
--elif test "x$need_freetype2:$with_system_freetype2" = xyes:yes; then
--  AC_MSG_ERROR([did not find freetype-config required for system freetype2 
library])
--fi
--]) # KPSE_FREETYPE2_SYSTEM_FLAGS
-+_KPSE_PKG_CONFIG_FLAGS([freetype2], [freetype2])])
-+

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
deleted file mode 100644
index 516a2fd525d4..
--- a/app-text/xdvik/xdvik-22.87.03-r4.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg
-
-DESCRIPTION="DVI previewer for X Window System"
-HOMEPAGE="https://xdvi.sourceforge.net/;
-SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
-S="${WORKDIR}"/${P}/texk/xdvik
-
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="motif neXt Xaw3d emacs"
-
-DEPEND=">=media-libs/freetype-2.9.1-r2:2
-   x11-libs/libX11
-   x11-libs/libXi
-   x11-libs/libXmu
-   x11-libs/libXpm
-   x11-libs/libXt
-   emacs? ( >=app-editors/emacs-23.1:* )
-   motif? ( >=x11-libs/motif-2.3:0 )
-   !motif? (
-   neXt? ( x11-libs/neXtaw )
-   !neXt? (
-   Xaw3d? ( x11-libs/libXaw3d )
-   !Xaw3d? ( x11-libs/libXaw )
-   )
-   )
-   dev-libs/kpathsea:="
-RDEPEND="${DEPEND}
-   virtual/latex-base
-   ! ${i} || die
-   done
-
-   cd "${WORKDIR}/${P}" || die
-   eapply "${FILESDIR}"/${P}-freetype2-config.patch
-   cd "${S}" || die
-   eautoreconf
-}
-
-src_configure() {
-   has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags 
"$($(tc-getPKG_CONFIG) --cflags kpathsea)"
-
-   local toolkit
-   if use motif ; then
-   toolkit="motif"
-   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
-   

[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-07-07 Thread Conrad Kostecki
commit: 4fb4f162d8d0243a39661eb68c87d557c987c7ee
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Jul  5 07:14:23 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Jul  7 21:53:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fb4f162

app-text/xdvik: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r4.ebuild | 4 ++--
 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 app-text/xdvik/xdvik-22.87.06.ebuild| 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
index 790948a43266..516a2fd525d4 100644
--- a/app-text/xdvik/xdvik-22.87.03-r4.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
 inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg
 
 DESCRIPTION="DVI previewer for X Window System"
-HOMEPAGE="http://xdvi.sourceforge.net/;
+HOMEPAGE="https://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index e6c2a4836bb2..47b8e3a712c7 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg
 
 DESCRIPTION="DVI viewer for X Window System"
-HOMEPAGE="http://xdvi.sourceforge.net/;
+HOMEPAGE="https://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik

diff --git a/app-text/xdvik/xdvik-22.87.06.ebuild 
b/app-text/xdvik/xdvik-22.87.06.ebuild
index 9ef9fef738e5..82c80c752d0d 100644
--- a/app-text/xdvik/xdvik-22.87.06.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg
 
 DESCRIPTION="DVI previewer for X Window System"
-HOMEPAGE="http://xdvi.sourceforge.net/;
+HOMEPAGE="https://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-27 Thread Arthur Zamarin
commit: 0103530c694a519b3e88a097cfa16b2ed36dc2ce
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat May 27 13:31:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat May 27 13:31:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0103530c

app-text/xdvik: Stabilize 22.87.06-r1 ppc64, #906738

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index bb64636f5a6f..e6c2a4836bb2 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-27 Thread Sam James
commit: a1f424bca59418a7374b4689714a2daf75a8aaf0
Author: Sam James  gentoo  org>
AuthorDate: Sat May 27 10:12:58 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat May 27 10:12:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1f424bc

app-text/xdvik: Stabilize 22.87.06-r1 ppc, #906738

Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index b03bc731a2ef..bb64636f5a6f 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-22 Thread Sam James
commit: 9615bf1c337d506abe864e52c748890b7811eeed
Author: Sam James  gentoo  org>
AuthorDate: Tue May 23 00:10:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May 23 00:10:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9615bf1c

app-text/xdvik: Stabilize 22.87.06-r1 arm64, #906738

Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index 4dbf48716054..6669629ca549 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-19 Thread Sam James
commit: 15eae5c56648d38b50e8de20bcfc7f618cc3b6ba
Author: Sam James  gentoo  org>
AuthorDate: Fri May 19 17:49:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 19 17:49:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15eae5c5

app-text/xdvik: Stabilize 22.87.06-r1 arm, #906738

Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index 0b5623606b08..4dbf48716054 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-19 Thread Sam James
commit: b47ada1d28c88d1c80713d184c2902dd063727df
Author: Sam James  gentoo  org>
AuthorDate: Fri May 19 17:44:23 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 19 17:44:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b47ada1d

app-text/xdvik: Stabilize 22.87.06-r1 amd64, #906738

Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index 9d5ae6fed3d0..0b5623606b08 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-19 Thread Sam James
commit: 63c35a4bcccd55bb7342606e06a192309d288ed4
Author: Sam James  gentoo  org>
AuthorDate: Fri May 19 17:44:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 19 17:44:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c35a4b

app-text/xdvik: Stabilize 22.87.06-r1 x86, #906738

Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index 8db1bb80a71f..9d5ae6fed3d0 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-19 Thread Arthur Zamarin
commit: 4fd22e267e2eeeae53852fcf59c81540ee3b956c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri May 19 10:41:51 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri May 19 10:41:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd22e26

app-text/xdvik: Stabilize 22.87.06-r1 sparc, #906738

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
index 4e0b3e1fbc70..8db1bb80a71f 100644
--- a/app-text/xdvik/xdvik-22.87.06-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-05-05 Thread Arthur Zamarin
commit: c77d7751e03fc9ced9670a1cfdc9170fca695d69
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri May  5 10:43:35 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri May  5 10:43:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c77d7751

app-text/xdvik: Stabilize 22.87.06 sparc, #902661

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.06.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06.ebuild 
b/app-text/xdvik/xdvik-22.87.06.ebuild
index 207fad17d7ec..795de4ca9300 100644
--- a/app-text/xdvik/xdvik-22.87.06.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-03-24 Thread Arthur Zamarin
commit: 58103c88f9f7837895b5771132c307313a595945
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 24 14:08:38 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 24 14:08:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58103c88

app-text/xdvik: Stabilize 22.87.06 arm64, #902661

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.06.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.06.ebuild 
b/app-text/xdvik/xdvik-22.87.06.ebuild
index 203540097055..207fad17d7ec 100644
--- a/app-text/xdvik/xdvik-22.87.06.ebuild
+++ b/app-text/xdvik/xdvik-22.87.06.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2023-02-23 Thread Pacho Ramos
commit: 542dbffa42c3dd739ba66516609968170d539a6d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Feb 23 15:25:59 2023 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Feb 23 15:28:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=542dbffa

app-text/xdvik: Use a higher resolution icon

Use an icon with higher resolution for the menu entry. Also handle the
duplicated desktop file as upstream started to provide a (partially incomplete)
one. Rely on our generated file for now after syncing both as much as possible.

Closes: https://bugs.gentoo.org/882737
Signed-off-by: Pacho Ramos  gentoo.org>

 app-text/xdvik/Manifest |   1 +
 app-text/xdvik/xdvik-22.87.06-r1.ebuild | 117 
 2 files changed, 118 insertions(+)

diff --git a/app-text/xdvik/Manifest b/app-text/xdvik/Manifest
index df2f7b7bf9c2..946aa23510de 100644
--- a/app-text/xdvik/Manifest
+++ b/app-text/xdvik/Manifest
@@ -1,2 +1,3 @@
 DIST xdvik-22.87.03.tar.gz 4760306 BLAKE2B 
d242696fadf2980cd307d4a172d2af06d98d07b090279440117f869c9a623bcade8745d7a4d3c108c4eafbdeaadefb8d5ba1ea00bdf77d350cbf83c49c2ca0fb
 SHA512 
d4d418d78658f16d4d278e387ed484b291afc8623b00acaf4110e9f123ed76568714ad50f80588373657f412e8fff36f3e76b3e43f69756d46f031c0f2269a88
 DIST xdvik-22.87.06.tar.gz 5922131 BLAKE2B 
88821b7642d2d79158f5b49a7d23dad2209750a44d2b75f131d77a5ee326670d2a9cf09246ea9226a386bce429890459625d87df697599529de1bfc32438bf64
 SHA512 
93fb231f20ef76e170ae954d076ac5421669b3db71e3a96561626736d516f639227e3e502012ba4612fd238172b82f512985c571702d6c0ce078e60a67e5b19f
+DIST xdvik_192.png 77893 BLAKE2B 
533910801cd981a39c42851be2779f98ecf7fcec8ef2a167005521e39d8ef66d8eb806b382451ebf88da62ba61afba82b8d15a60ef6ba347bd2ff848f10253ed
 SHA512 
7fa6becc3601df01134cd163e461780b9ab4ee855788e38dc3d255d491294c033f040326016df7671ff301cc8f91462209e1fda5e50cb383f5407f0c1021d71d

diff --git a/app-text/xdvik/xdvik-22.87.06-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
new file mode 100644
index ..4e0b3e1fbc70
--- /dev/null
+++ b/app-text/xdvik/xdvik-22.87.06-r1.ebuild
@@ -0,0 +1,117 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg
+
+DESCRIPTION="DVI viewer for X Window System"
+HOMEPAGE="http://xdvi.sourceforge.net/;
+SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
+   https://dev.gentoo.org/~pacho/${PN}/${PN}_192.png;
+S="${WORKDIR}"/${P}/texk/xdvik
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="motif neXt Xaw3d emacs"
+
+DEPEND=">=media-libs/freetype-2.9.1-r2:2
+   x11-libs/libX11
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXpm
+   x11-libs/libXt
+   emacs? ( >=app-editors/emacs-23.1:* )
+   motif? ( >=x11-libs/motif-2.3:0 )
+   !motif? (
+   neXt? ( x11-libs/neXtaw )
+   !neXt? (
+   Xaw3d? ( x11-libs/libXaw3d )
+   !Xaw3d? ( x11-libs/libXaw )
+   )
+   )
+   dev-libs/kpathsea:="
+RDEPEND="${DEPEND}
+   virtual/latex-base
+   ! ${i} || die
+   done
+
+   cd "${WORKDIR}/${P}" || die
+   cd "${S}" || die
+   eapply "${FILESDIR}"/${PN}-22.87.06-configure-clang16.patch
+   eautoreconf
+}
+
+src_configure() {
+   has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags 
"$($(tc-getPKG_CONFIG) --cflags kpathsea)"
+
+   local toolkit
+   if use motif ; then
+   toolkit="motif"
+   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by 
motif)"
+   elif use neXt ; then
+   toolkit="neXtaw"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by neXt)"
+   elif use Xaw3d ; then
+   toolkit="xaw3d"
+   else
+   toolkit="xaw"
+   fi
+
+   econf \
+   --with-system-freetype2 \
+   --with-system-kpathsea \
+   --with-kpathsea-include="${EPREFIX}"/usr/include/kpathsea \
+   --with-xdvi-x-toolkit="${toolkit}" \
+   --x-includes="${ESYSROOT}"/usr/include \
+   --x-libraries="${ESYSROOT}"/usr/$(get_libdir)
+}
+
+src_compile() {
+   emake kpathsea_dir="${EPREFIX}"/usr/include/kpathsea
+
+   use emacs && elisp-compile xdvi-search.el
+}
+
+src_install() {
+   dodir /usr/share/texmf-dist/dvips/config
+
+   emake DESTDIR="${D}" install
+
+   dosym ../../texmf-dist/xdvi/XDvi /usr/share/X11/app-defaults/XDvi
+
+   dodoc BUGS FAQ README.*
+
+   use emacs && elisp-install tex-utils *.el *.elc
+
+   doicon "${FILESDIR}"/${PN}.xpm
+   

[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/, app-text/xdvik/files/

2023-02-14 Thread Sam James
commit: e7a43cae248406d2c069e09f0cb83bcd1bf7b397
Author: Sam James  gentoo  org>
AuthorDate: Wed Feb 15 01:58:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Feb 15 01:58:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a43cae

app-text/xdvik: add 22.87.06

Closes: https://bugs.gentoo.org/882733
Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/Manifest|   1 +
 .../files/xdvik-22.87.06-configure-clang16.patch   |  51 +
 app-text/xdvik/xdvik-22.87.06.ebuild   | 114 +
 3 files changed, 166 insertions(+)

diff --git a/app-text/xdvik/Manifest b/app-text/xdvik/Manifest
index 5f476a71daf7..df2f7b7bf9c2 100644
--- a/app-text/xdvik/Manifest
+++ b/app-text/xdvik/Manifest
@@ -1 +1,2 @@
 DIST xdvik-22.87.03.tar.gz 4760306 BLAKE2B 
d242696fadf2980cd307d4a172d2af06d98d07b090279440117f869c9a623bcade8745d7a4d3c108c4eafbdeaadefb8d5ba1ea00bdf77d350cbf83c49c2ca0fb
 SHA512 
d4d418d78658f16d4d278e387ed484b291afc8623b00acaf4110e9f123ed76568714ad50f80588373657f412e8fff36f3e76b3e43f69756d46f031c0f2269a88
+DIST xdvik-22.87.06.tar.gz 5922131 BLAKE2B 
88821b7642d2d79158f5b49a7d23dad2209750a44d2b75f131d77a5ee326670d2a9cf09246ea9226a386bce429890459625d87df697599529de1bfc32438bf64
 SHA512 
93fb231f20ef76e170ae954d076ac5421669b3db71e3a96561626736d516f639227e3e502012ba4612fd238172b82f512985c571702d6c0ce078e60a67e5b19f

diff --git a/app-text/xdvik/files/xdvik-22.87.06-configure-clang16.patch 
b/app-text/xdvik/files/xdvik-22.87.06-configure-clang16.patch
new file mode 100644
index ..c3b3f0b98bdb
--- /dev/null
+++ b/app-text/xdvik/files/xdvik-22.87.06-configure-clang16.patch
@@ -0,0 +1,51 @@
+https://github.com/TeX-Live/texlive-source/commit/bb307f8bd91c5ea4f191b9c788056470626893b7
+
+From bb307f8bd91c5ea4f191b9c788056470626893b7 Mon Sep 17 00:00:00 2001
+From: Karl Berry 
+Date: Thu, 2 Feb 2023 22:57:47 +
+Subject: [PATCH] avoid implicit wait and exit declarations for C99
+
+git-svn-id: svn://tug.org/texlive/trunk/Build/source@65717 
c570f23f-e606-0410-a88d-b1316a301751
+--- a/configure
 b/configure
+@@ -16406,6 +16406,9 @@ else $as_nop
+ #ifdef HAVE_UNISTD_H
+ #include 
+ #endif
++#ifdef HAVE_SYS_WAIT_H
++#include 
++#endif
+ #ifdef HAVE_VFORK_H
+ #include 
+ #endif
+@@ -16427,7 +16430,7 @@ main (void)
+ 
+ while (wait() != child)
+   ;
+-exit(
++_exit(
+/* Was there some problem with vforking?  */
+child < 0
+ 
+--- a/m4/xdvi-func-setsid-in-fork.m4
 b/m4/xdvi-func-setsid-in-fork.m4
+@@ -22,6 +22,9 @@ AC_DEFUN([XDVI_FUNC_SETSID_IN_VFORK],
+ #ifdef HAVE_UNISTD_H
+ #include 
+ #endif
++#ifdef HAVE_SYS_WAIT_H
++#include 
++#endif
+ #ifdef HAVE_VFORK_H
+ #include 
+ #endif]],
+@@ -40,7 +43,7 @@ AC_DEFUN([XDVI_FUNC_SETSID_IN_VFORK],
+ 
+ while (wait() != child)
+   ;
+-exit(
++_exit(
+/* Was there some problem with vforking?  */
+child < 0
+ 
+

diff --git a/app-text/xdvik/xdvik-22.87.06.ebuild 
b/app-text/xdvik/xdvik-22.87.06.ebuild
new file mode 100644
index ..37263ea0b5f1
--- /dev/null
+++ b/app-text/xdvik/xdvik-22.87.06.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg
+
+DESCRIPTION="DVI previewer for X Window System"
+HOMEPAGE="http://xdvi.sourceforge.net/;
+SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
+S="${WORKDIR}"/${P}/texk/xdvik
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="motif neXt Xaw3d emacs"
+
+DEPEND=">=media-libs/freetype-2.9.1-r2:2
+   x11-libs/libX11
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXpm
+   x11-libs/libXt
+   emacs? ( >=app-editors/emacs-23.1:* )
+   motif? ( >=x11-libs/motif-2.3:0 )
+   !motif? (
+   neXt? ( x11-libs/neXtaw )
+   !neXt? (
+   Xaw3d? ( x11-libs/libXaw3d )
+   !Xaw3d? ( x11-libs/libXaw )
+   )
+   )
+   dev-libs/kpathsea:="
+RDEPEND="${DEPEND}
+   virtual/latex-base
+   ! ${i} || die
+   done
+
+   cd "${WORKDIR}/${P}" || die
+   cd "${S}" || die
+   eapply "${FILESDIR}"/${PN}-22.87.06-configure-clang16.patch
+   eautoreconf
+}
+
+src_configure() {
+   has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags 
"$($(tc-getPKG_CONFIG) --cflags kpathsea)"
+
+   local toolkit
+   if use motif ; then
+   toolkit="motif"
+   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by 
motif)"
+   elif use neXt ; then
+   toolkit="neXtaw"
+  

[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2022-12-07 Thread WANG Xuerui
commit: 10adfb0a5b8162fce90054647afaf2c5f3c66013
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu Dec  8 07:03:24 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Dec  8 07:36:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10adfb0a

app-text/xdvik: keyword 22.87.03-r4 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
index 3e6355994b24..cb3b471d4d4c 100644
--- a/app-text/xdvik/xdvik-22.87.03-r4.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2022-08-02 Thread Arthur Zamarin
commit: 2fee6bdf78e3bb46acc6220ff6fdd79255212912
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug  2 18:46:53 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug  2 18:46:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fee6bdf

app-text/xdvik: Stabilize 22.87.03-r4 sparc, #861788

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
index de91003a974e..2f0571e7826e 100644
--- a/app-text/xdvik/xdvik-22.87.03-r4.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2022-08-02 Thread Arthur Zamarin
commit: 4d1cf023b0476c5d23523ebcb0573cf0f8579a00
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug  2 16:01:26 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug  2 16:01:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d1cf023

app-text/xdvik: Stabilize 22.87.03-r4 arm, #861788

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
index 867a5ae16c07..c4ef82a07191 100644
--- a/app-text/xdvik/xdvik-22.87.03-r4.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2022-08-02 Thread Arthur Zamarin
commit: e062373f18776810bf2bf9f5ab6dd5ef47b696c7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug  2 16:01:30 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug  2 16:01:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e062373f

app-text/xdvik: Stabilize 22.87.03-r4 arm64, #861788

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
index c4ef82a07191..de91003a974e 100644
--- a/app-text/xdvik/xdvik-22.87.03-r4.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2022-08-02 Thread Joonas Niilola
commit: aa9d4e52478590d57b45fee0c337719c58ffa77c
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Aug  2 07:46:52 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Aug  2 07:46:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa9d4e52

app-text/xdvik: Stabilize 22.87.03-r4 x86, #861788

Signed-off-by: Joonas Niilola  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
index b5cbf4d59c1d..97d8e5edb9de 100644
--- a/app-text/xdvik/xdvik-22.87.03-r4.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 S="${WORKDIR}"/${P}/texk/xdvik
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2022-05-13 Thread Sam James
commit: 119f2ff74998a57d25770ed806f9371c8fbbecad
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 19 15:28:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat May 14 00:45:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=119f2ff7

app-text/xdvik: [QA] inline ESYSROOT, EAPI 8

ESYSROOT is SYSROOT/EPREFIX in >= EAPI 7

Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r4.ebuild | 114 
 1 file changed, 114 insertions(+)

diff --git a/app-text/xdvik/xdvik-22.87.03-r4.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
new file mode 100644
index ..1d19d16bb0f7
--- /dev/null
+++ b/app-text/xdvik/xdvik-22.87.03-r4.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg
+
+DESCRIPTION="DVI previewer for X Window System"
+HOMEPAGE="http://xdvi.sourceforge.net/;
+SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
+S="${WORKDIR}"/${P}/texk/xdvik
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="motif neXt Xaw3d emacs"
+
+DEPEND=">=media-libs/freetype-2.9.1-r2:2
+   x11-libs/libX11
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXpm
+   x11-libs/libXt
+   emacs? ( >=app-editors/emacs-23.1:* )
+   motif? ( >=x11-libs/motif-2.3:0 )
+   !motif? (
+   neXt? ( x11-libs/neXtaw )
+   !neXt? (
+   Xaw3d? ( x11-libs/libXaw3d )
+   !Xaw3d? ( x11-libs/libXaw )
+   )
+   )
+   dev-libs/kpathsea:="
+RDEPEND="${DEPEND}
+   virtual/latex-base
+   ! ${i} || die
+   done
+
+   cd "${WORKDIR}/${P}" || die
+   eapply "${FILESDIR}"/${P}-freetype2-config.patch
+   cd "${S}" || die
+   eautoreconf
+}
+
+src_configure() {
+   has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags 
"$($(tc-getPKG_CONFIG) --cflags kpathsea)"
+
+   local toolkit
+   if use motif ; then
+   toolkit="motif"
+   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by 
motif)"
+   elif use neXt ; then
+   toolkit="neXtaw"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by neXt)"
+   elif use Xaw3d ; then
+   toolkit="xaw3d"
+   else
+   toolkit="xaw"
+   fi
+
+   econf \
+   --with-system-freetype2 \
+   --with-system-kpathsea \
+   --with-kpathsea-include="${EPREFIX}"/usr/include/kpathsea \
+   --with-xdvi-x-toolkit="${toolkit}" \
+   --x-includes="${ESYSROOT}"/usr/include \
+   --x-libraries="${ESYSROOT}"/usr/$(get_libdir)
+}
+
+src_compile() {
+   emake kpathsea_dir="${EPREFIX}"/usr/include/kpathsea
+
+   use emacs && elisp-compile xdvi-search.el
+}
+
+src_install() {
+   dodir /usr/share/texmf-dist/dvips/config
+
+   emake DESTDIR="${D}" install
+
+   dosym ../../texmf-dist/xdvi/XDvi /usr/share/X11/app-defaults/XDvi
+
+   dodoc BUGS FAQ README.*
+
+   use emacs && elisp-install tex-utils *.el *.elc
+
+   doicon "${FILESDIR}"/${PN}.xpm
+   make_desktop_entry xdvi "XDVI" xdvik "Graphics;Viewer"
+   echo "MimeType=application/x-dvi;" >> 
"${ED}"/usr/share/applications/xdvi-"${PN}".desktop
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+
+   if use emacs; then
+   elog "Add"
+   elog "  (add-to-list 'load-path 
\"${EPREFIX}${SITELISP}/tex-utils\")"
+   elog "  (require 'xdvi-search)"
+   elog "to your ~/.emacs file"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2021-12-13 Thread Arthur Zamarin
commit: e4f1bcc0423c9fd2c471b3cb7da90ab8941da871
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Dec 13 18:35:59 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Dec 13 18:36:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f1bcc0

app-text/xdvik: Stabilize 22.87.03-r3 arm64, #805725

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r3.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r3.ebuild
index 113fe335056c..6ae5639b5531 100644
--- a/app-text/xdvik/xdvik-22.87.03-r3.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r3.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2020-09-11 Thread Mikle Kolyada
commit: bad39fe22734ce2a024aaf2e27a5834c87a757f4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Sep 11 09:37:54 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Sep 11 09:37:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bad39fe2

app-text/xdvik: Drop old

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Mikle Kolyada  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r1.ebuild | 109 
 1 file changed, 109 deletions(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r1.ebuild
deleted file mode 100644
index cfe5d3eb3bb..000
--- a/app-text/xdvik/xdvik-22.87.03-r1.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit elisp-common eutils flag-o-matic multilib toolchain-funcs xdg-utils
-
-DESCRIPTION="DVI previewer for X Window System"
-HOMEPAGE="http://xdvi.sourceforge.net/;
-SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
-
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="motif neXt Xaw3d emacs"
-
-RDEPEND="media-libs/freetype:2
-   x11-libs/libX11
-   x11-libs/libXi
-   x11-libs/libXmu
-   x11-libs/libXpm
-   x11-libs/libXt
-   emacs? ( >=app-editors/emacs-23.1:* )
-   motif? ( >=x11-libs/motif-2.3:0 )
-   !motif? (
-   neXt? ( x11-libs/neXtaw )
-   !neXt? (
-   Xaw3d? ( x11-libs/libXaw3d )
-   !Xaw3d? ( x11-libs/libXaw )
-   )
-   )
-   dev-libs/kpathsea"
-DEPEND="sys-devel/flex
-   virtual/yacc
-   virtual/pkgconfig
-   ${RDEPEND}"
-RDEPEND="${RDEPEND}
-   virtual/latex-base
-   ! $i; done
-}
-
-src_configure() {
-   has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags 
"$($(tc-getPKG_CONFIG) --cflags kpathsea)"
-
-   local toolkit
-
-   if use motif ; then
-   toolkit="motif"
-   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
-   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by 
motif)"
-   elif use neXt ; then
-   toolkit="neXtaw"
-   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by neXt)"
-   elif use Xaw3d ; then
-   toolkit="xaw3d"
-   else
-   toolkit="xaw"
-   fi
-
-   econf \
-   --with-system-freetype2 \
-   --with-system-kpathsea \
-   --with-kpathsea-include="${EPREFIX}"/usr/include/kpathsea \
-   --with-xdvi-x-toolkit="${toolkit}" \
-   --x-includes="${SYSROOT}${EPREFIX}"/usr/include \
-   --x-libraries="${SYSROOT}${EPREFIX}"/usr/$(get_libdir)
-}
-
-src_compile() {
-   emake kpathsea_dir="${EPREFIX}/usr/include/kpathsea"
-   use emacs && elisp-compile xdvi-search.el
-}
-
-src_install() {
-   dodir /usr/share/texmf-dist/dvips/config
-
-   emake DESTDIR="${D}" install
-
-   dosym ../../texmf-dist/xdvi/XDvi /usr/share/X11/app-defaults/XDvi
-
-   dodoc BUGS FAQ README.*
-
-   use emacs && elisp-install tex-utils *.el *.elc
-
-   doicon "${FILESDIR}"/${PN}.xpm
-   make_desktop_entry xdvi "XDVI" xdvik "Graphics;Viewer"
-   echo "MimeType=application/x-dvi;" >> 
"${ED}"usr/share/applications/xdvi-"${PN}".desktop
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-
-   if use emacs; then
-   elog "Add"
-   elog "  (add-to-list 'load-path 
\"${EPREFIX}${SITELISP}/tex-utils\")"
-   elog "  (require 'xdvi-search)"
-   elog "to your ~/.emacs file"
-   fi
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2020-08-29 Thread Sam James
commit: 238e73a63050a75354e39e879d64b2101a67d1ec
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 30 01:12:55 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 30 01:13:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=238e73a6

app-text/xdvik: Stabilize 22.87.03-r2 ALLARCHES, #734548

Signed-off-by: Sam James  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r2.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
index 3763c227f7b..4c654107366 100644
--- a/app-text/xdvik/xdvik-22.87.03-r2.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2020-08-28 Thread Mikle Kolyada
commit: 8261bf48d8819a257662a509a0fc0a6cc42722e5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Aug 28 10:25:39 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Aug 28 10:26:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8261bf48

app-text/xdvik: fix inherit

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Mikle Kolyada  gentoo.org>

 app-text/xdvik/xdvik-22.87.03-r2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r2.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
index 49accc94ae4..3763c227f7b 100644
--- a/app-text/xdvik/xdvik-22.87.03-r2.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit autotools elisp-common eutils flag-o-matic multilib toolchain-funcs 
xdg-utils
+
+inherit autotools desktop elisp-common flag-o-matic toolchain-funcs xdg-utils
 
 DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2018-10-10 Thread Naohiro Aota
commit: e75fc086327a710bbc2bc67f9fb7a074478ed220
Author: Naohiro Aota  gentoo  org>
AuthorDate: Wed Oct 10 23:56:38 2018 +
Commit: Naohiro Aota  gentoo  org>
CommitDate: Wed Oct 10 23:57:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e75fc086

app-text/xdvik: add missing dependency to virtual/emacs

Closes: https://bugs.gentoo.org/665154
Signed-off-by: Naohiro Aota  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-text/xdvik/xdvik-22.87.03-r1.ebuild | 3 ++-
 app-text/xdvik/xdvik-22.87.03-r2.ebuild | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03-r1.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r1.ebuild
index 9c61d703650..dc814d5d0db 100644
--- a/app-text/xdvik/xdvik-22.87.03-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,6 +19,7 @@ RDEPEND="media-libs/freetype:2
x11-libs/libXmu
x11-libs/libXpm
x11-libs/libXt
+   emacs? ( virtual/emacs )
motif? ( >=x11-libs/motif-2.3:0 )
!motif? (
neXt? ( x11-libs/neXtaw )

diff --git a/app-text/xdvik/xdvik-22.87.03-r2.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
index 30720be2062..34a4d9669b4 100644
--- a/app-text/xdvik/xdvik-22.87.03-r2.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
@@ -19,6 +19,7 @@ CDEPEND=">=media-libs/freetype-2.9.1-r2:2
x11-libs/libXmu
x11-libs/libXpm
x11-libs/libXt
+   emacs? ( virtual/emacs )
motif? ( >=x11-libs/motif-2.3:0 )
!motif? (
neXt? ( x11-libs/neXtaw )



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/files/, app-text/xdvik/

2018-10-08 Thread Naohiro Aota
commit: a975bbac7fdb2ee7d70131caa9b039a5801ddd13
Author: Naohiro Aota  gentoo  org>
AuthorDate: Mon Oct  8 21:43:02 2018 +
Commit: Naohiro Aota  gentoo  org>
CommitDate: Mon Oct  8 21:51:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a975bbac

app-text/xdvik: use pkg-config instead of freetype-config

Also, bump to EAPI=6 and introduced CDEPEND variable.

Thanks to Aidan Thornton for the patch.

Closes: https://bugs.gentoo.org/655358
Signed-off-by: Naohiro Aota  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 .../files/xdvik-22.87.03-freetype2-config.patch|  23 +
 app-text/xdvik/xdvik-22.87.03-r2.ebuild| 115 +
 2 files changed, 138 insertions(+)

diff --git a/app-text/xdvik/files/xdvik-22.87.03-freetype2-config.patch 
b/app-text/xdvik/files/xdvik-22.87.03-freetype2-config.patch
new file mode 100644
index 000..6387b28c8ba
--- /dev/null
+++ b/app-text/xdvik/files/xdvik-22.87.03-freetype2-config.patch
@@ -0,0 +1,23 @@
+--- a/m4/kpse-freetype2-flags.m4   2018-09-19 10:19:06.437789178 +0100
 b/m4/kpse-freetype2-flags.m4   2018-09-19 10:23:48.556050046 +0100
+@@ -21,17 +21,10 @@
+ 
+ # KPSE_FREETYPE2_OPTIONS([WITH-SYSTEM])
+ # -
+-AC_DEFUN([KPSE_FREETYPE2_OPTIONS], [_KPSE_LIB_OPTIONS([freetype2], [$1], 
[freetype-config])])
++AC_DEFUN([KPSE_FREETYPE2_OPTIONS], [_KPSE_LIB_OPTIONS([freetype2], [$1], 
[pkg-config])])
+ 
+ # KPSE_FREETYPE2_SYSTEM_FLAGS
+ # ---
+ AC_DEFUN([KPSE_FREETYPE2_SYSTEM_FLAGS], [dnl
+-AC_REQUIRE([AC_CANONICAL_HOST])[]dnl
+-AC_CHECK_TOOL([FT2_CONFIG], [freetype-config], [false])[]dnl
+-if $FT2_CONFIG --ftversion >/dev/null 2>&1; then
+-  FREETYPE2_INCLUDES=`$FT2_CONFIG --cflags`
+-  FREETYPE2_LIBS=`$FT2_CONFIG --libs`
+-elif test "x$need_freetype2:$with_system_freetype2" = xyes:yes; then
+-  AC_MSG_ERROR([did not find freetype-config required for system freetype2 
library])
+-fi
+-]) # KPSE_FREETYPE2_SYSTEM_FLAGS
++_KPSE_PKG_CONFIG_FLAGS([freetype2], [freetype2])])
++

diff --git a/app-text/xdvik/xdvik-22.87.03-r2.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
new file mode 100644
index 000..30720be2062
--- /dev/null
+++ b/app-text/xdvik/xdvik-22.87.03-r2.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools elisp-common eutils flag-o-matic multilib toolchain-funcs 
xdg-utils
+
+DESCRIPTION="DVI previewer for X Window System"
+HOMEPAGE="http://xdvi.sourceforge.net/;
+SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="motif neXt Xaw3d emacs"
+
+CDEPEND=">=media-libs/freetype-2.9.1-r2:2
+   x11-libs/libX11
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXpm
+   x11-libs/libXt
+   motif? ( >=x11-libs/motif-2.3:0 )
+   !motif? (
+   neXt? ( x11-libs/neXtaw )
+   !neXt? (
+   Xaw3d? ( x11-libs/libXaw3d )
+   !Xaw3d? ( x11-libs/libXaw )
+   )
+   )
+   dev-libs/kpathsea"
+DEPEND="sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig
+   ${CDEPEND}"
+RDEPEND="${CDEPEND}
+   virtual/latex-base
+   ! $i; done
+
+   cd "${WORKDIR}/${P}"
+   eapply "${FILESDIR}"/${P}-freetype2-config.patch
+   cd "${S}"
+   eautoreconf
+
+   eapply_user
+}
+
+src_configure() {
+   has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags 
"$($(tc-getPKG_CONFIG) --cflags kpathsea)"
+
+   local toolkit
+
+   if use motif ; then
+   toolkit="motif"
+   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by 
motif)"
+   elif use neXt ; then
+   toolkit="neXtaw"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by neXt)"
+   elif use Xaw3d ; then
+   toolkit="xaw3d"
+   else
+   toolkit="xaw"
+   fi
+
+   econf \
+   --with-system-freetype2 \
+   --with-system-kpathsea \
+   --with-kpathsea-include="${EPREFIX}"/usr/include/kpathsea \
+   --with-xdvi-x-toolkit="${toolkit}" \
+   --x-includes="${SYSROOT}${EPREFIX}"/usr/include \
+   --x-libraries="${SYSROOT}${EPREFIX}"/usr/$(get_libdir)
+}
+
+src_compile() {
+   emake kpathsea_dir="${EPREFIX}/usr/include/kpathsea"
+   use emacs && elisp-compile xdvi-search.el
+}
+
+src_install() {
+   dodir /usr/share/texmf-dist/dvips/config
+
+   emake DESTDIR="${D}" install
+
+   dosym ../../texmf-dist/xdvi/XDvi 

[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2018-03-21 Thread Ulrich Müller
commit: 6b1c73ef88f133119523fce53b14972dae11fd58
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Mar 21 21:36:03 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Mar 21 21:38:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b1c73ef

app-text/xdvik: Fix X dependencies.

Non-maintainer commit (with permission from dilfridge).

Closes: https://bugs.gentoo.org/649150
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-text/xdvik/{xdvik-22.87.03.ebuild => xdvik-22.87.03-r1.ebuild} | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03-r1.ebuild
similarity index 97%
rename from app-text/xdvik/xdvik-22.87.03.ebuild
rename to app-text/xdvik/xdvik-22.87.03-r1.ebuild
index 76037612857..9c61d703650 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,10 +14,11 @@ LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"
 
 RDEPEND="media-libs/freetype:2
+   x11-libs/libX11
x11-libs/libXi
x11-libs/libXmu
-   x11-libs/libXp
x11-libs/libXpm
+   x11-libs/libXt
motif? ( >=x11-libs/motif-2.3:0 )
!motif? (
neXt? ( x11-libs/neXtaw )



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-09-28 Thread Mike Gilbert
commit: 729f17f718d0d3abb9eb2b702215d6b44ccc74b2
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Thu Sep 28 16:37:52 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Sep 28 17:11:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=729f17f7

app-text/xdvik: Call xdg_desktop_database_update() (bug #628826).

 app-text/xdvik/xdvik-22.87.03.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index 534a820e633..76037612857 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-inherit eutils flag-o-matic elisp-common toolchain-funcs multilib
+inherit elisp-common eutils flag-o-matic multilib toolchain-funcs xdg-utils
 
 DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
@@ -92,6 +92,8 @@ src_install() {
 }
 
 pkg_postinst() {
+   xdg_desktop_database_update
+
if use emacs; then
elog "Add"
elog "  (add-to-list 'load-path 
\"${EPREFIX}${SITELISP}/tex-utils\")"
@@ -99,3 +101,7 @@ pkg_postinst() {
elog "to your ~/.emacs file"
fi
 }
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/, app-text/xdvik/files/

2017-08-28 Thread Alexis Ballier
commit: d2a9c4964bc2daa20086105db3dfcf22b79725a6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug 28 09:02:01 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug 28 09:02:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a9c496

app-text/xdvik: Remove old

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-text/xdvik/Manifest|   1 -
 app-text/xdvik/files/xdvik-22.85-mksedscript.patch |  15 ---
 .../files/xdvik-22.85-mksedscript_gentoo.patch |  20 
 app-text/xdvik/xdvik-22.85-r1.ebuild   | 103 -
 4 files changed, 139 deletions(-)

diff --git a/app-text/xdvik/Manifest b/app-text/xdvik/Manifest
index b942f28d165..3b47e5d725b 100644
--- a/app-text/xdvik/Manifest
+++ b/app-text/xdvik/Manifest
@@ -1,2 +1 @@
-DIST xdvik-22.85.tar.gz 4128828 SHA256 
91f08103e53ab46efc83053e648bdd07aa100043233dadcb7384efc83fa2dde8 SHA512 
9220bac0dea21d617b4ea7129ca8133fd447fb1adc26c699970cae7d3e168e32f4745b0936d18d8f769f3926c526e085f0c92a4d99d5faff8301e3c4ebc297b5
 WHIRLPOOL 
57ffc2d6a326b754b63aed54836c05b2e9431b01faba6d9bdc347b07094a62a7569d7746f556366b282808cc93a41a81cbda4fd82cdf4972133f8addc74e4e75
 DIST xdvik-22.87.03.tar.gz 4760306 SHA256 
a1b8631b6650c534cf8dc584a9f106b5df0771613743139c8a644a19f14611fc SHA512 
d4d418d78658f16d4d278e387ed484b291afc8623b00acaf4110e9f123ed76568714ad50f80588373657f412e8fff36f3e76b3e43f69756d46f031c0f2269a88
 WHIRLPOOL 
da8227daa34ac69b60c447e3c929aaf353697add104245b64815b2f42ad03c189c353c7b4d34359f5897a26e5dd811fa3ef21254ee18c243d557860f697bfba6

diff --git a/app-text/xdvik/files/xdvik-22.85-mksedscript.patch 
b/app-text/xdvik/files/xdvik-22.85-mksedscript.patch
deleted file mode 100644
index 356b2f1246e..000
--- a/app-text/xdvik/files/xdvik-22.85-mksedscript.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: texk/xdvik/mksedscript
-===
 texk/xdvik/mksedscript (revision 25824)
-+++ texk/xdvik/mksedscript (revision 25826)
-@@ -43,7 +43,9 @@
- 
- # Get arguments from c-auto.h
- 
--eval "`awk '/^#define/ { print "mk_"$2"="$3 }' c-auto.h`"
-+eval "`awk '/^#define/ { printf "mk_%s=%s", $2, $3
-+  for (i = 4; i <= NF; i++) printf " %s", $i
-+  print "" }' c-auto.h`"
- 
- # eval "`cat c-auto.h \
- #   | grep '^[]*#[]*define[   ]' \

diff --git a/app-text/xdvik/files/xdvik-22.85-mksedscript_gentoo.patch 
b/app-text/xdvik/files/xdvik-22.85-mksedscript_gentoo.patch
deleted file mode 100644
index 69873731dd4..000
--- a/app-text/xdvik/files/xdvik-22.85-mksedscript_gentoo.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-This used to eval something like:
-foo=char **
-so, the first match to * would be executed
-causing: https://bugs.gentoo.org/show_bug.cgi?id=410695
-
-remove the quotes and quote again so that we always get foo="char **"
-
-Index: xdvik-22.85/texk/xdvik/mksedscript
-===
 xdvik-22.85.orig/texk/xdvik/mksedscript
-+++ xdvik-22.85/texk/xdvik/mksedscript
-@@ -45,7 +45,7 @@ done
- 
- eval "`awk '/^#define/ { printf "mk_%s=%s", $2, $3
-   for (i = 4; i <= NF; i++) printf " %s", $i
--  print "" }' c-auto.h`"
-+  print "" }' c-auto.h | tr -d '"' |sed -e 's/\(.*\)=\(.*\)$/\1="\2"/'`"
- 
- # eval "`cat c-auto.h \
- #   | grep '^[]*#[]*define[   ]' \

diff --git a/app-text/xdvik/xdvik-22.85-r1.ebuild 
b/app-text/xdvik/xdvik-22.85-r1.ebuild
deleted file mode 100644
index 7825855b076..000
--- a/app-text/xdvik/xdvik-22.85-r1.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit eutils flag-o-matic elisp-common toolchain-funcs multilib
-
-DESCRIPTION="DVI previewer for X Window System"
-HOMEPAGE="http://xdvi.sourceforge.net/;
-SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
-
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="motif neXt Xaw3d emacs"
-
-RDEPEND=">=media-libs/t1lib-5.0.2
-   x11-libs/libXmu
-   x11-libs/libXp
-   x11-libs/libXpm
-   motif? ( >=x11-libs/motif-2.3:0 )
-   !motif? (
-   neXt? ( x11-libs/neXtaw )
-   !neXt? (
-   Xaw3d? ( x11-libs/libXaw3d )
-   !Xaw3d? ( x11-libs/libXaw )
-   )
-   )
-   dev-libs/kpathsea"
-DEPEND="sys-devel/flex
-   virtual/yacc
-   ${RDEPEND}"
-RDEPEND="${RDEPEND}
-   virtual/latex-base
-   ! $i; done
-}
-
-src_configure() {
-   local toolkit
-
-   if use motif ; then
-   toolkit="motif"
-   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
-   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded 

[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-08-24 Thread Michał Górny
commit: 8e1e74e71cb187cb42a7db2b7b07830a4f3129ab
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 24 15:44:04 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 24 15:53:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e1e74e7

app-text/xdvik: [QA] Use relative symlink target(s)

 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index b8a9c44671d..534a820e633 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -80,7 +80,7 @@ src_install() {
 
emake DESTDIR="${D}" install
 
-   dosym /usr/share/texmf-dist/xdvi/XDvi /usr/share/X11/app-defaults/XDvi
+   dosym ../../texmf-dist/xdvi/XDvi /usr/share/X11/app-defaults/XDvi
 
dodoc BUGS FAQ README.*
 



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-06-21 Thread Alexis Ballier
commit: 66048522eaaaddd322d892ba393a7f97d3811791
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jun 21 13:54:43 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jun 21 13:54:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66048522

app-text/xdvik: Honour SYSROOT to fix cross compilation.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/xdvik/xdvik-22.87.03.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index 76d6e684010..1b047f1617f 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -66,8 +66,8 @@ src_configure() {
--with-system-kpathsea \
--with-kpathsea-include="${EPREFIX}"/usr/include/kpathsea \
--with-xdvi-x-toolkit="${toolkit}" \
-   --x-includes="${EPREFIX}"/usr/include \
-   --x-libraries="${EPREFIX}"/usr/$(get_libdir)
+   --x-includes="${SYSROOT}${EPREFIX}"/usr/include \
+   --x-libraries="${SYSROOT}${EPREFIX}"/usr/$(get_libdir)
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-06-17 Thread Sergei Trofimovich
commit: d99bb945400961a3802859788743bec809fea3e4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jun 17 16:50:38 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jun 17 19:15:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99bb945

app-text/xdvik: ia64 stable, bug #621308

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index b607323..76d6e684010 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-06-17 Thread Alexis Ballier
commit: 78b95c9bddd3fc10693fe3435ab9ced2185be198
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jun 17 10:39:59 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jun 17 11:10:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78b95c9b

app-text/xdvik: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index a816979ee09..b607323 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/files/, app-text/xdvik/

2017-06-17 Thread Alexis Ballier
commit: 1904d3e9f6f33a4fb1e6156cefd058dc7764a4e9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jun 17 10:20:46 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jun 17 11:10:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1904d3e9

app-text/xdvik: remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/xdvik/Manifest  |   2 -
 app-text/xdvik/files/xdvik-22.87-xaw3d.patch |  22 --
 app-text/xdvik/xdvik-22.86.ebuild|  96 -
 app-text/xdvik/xdvik-22.87.ebuild| 102 ---
 4 files changed, 222 deletions(-)

diff --git a/app-text/xdvik/Manifest b/app-text/xdvik/Manifest
index 9bf7cb354f3..b942f28d165 100644
--- a/app-text/xdvik/Manifest
+++ b/app-text/xdvik/Manifest
@@ -1,4 +1,2 @@
 DIST xdvik-22.85.tar.gz 4128828 SHA256 
91f08103e53ab46efc83053e648bdd07aa100043233dadcb7384efc83fa2dde8 SHA512 
9220bac0dea21d617b4ea7129ca8133fd447fb1adc26c699970cae7d3e168e32f4745b0936d18d8f769f3926c526e085f0c92a4d99d5faff8301e3c4ebc297b5
 WHIRLPOOL 
57ffc2d6a326b754b63aed54836c05b2e9431b01faba6d9bdc347b07094a62a7569d7746f556366b282808cc93a41a81cbda4fd82cdf4972133f8addc74e4e75
-DIST xdvik-22.86.tar.gz 4412419 SHA256 
a3dffb8d878e6039ebc168d3bd82d194912dac53177673f818d0baac2dc27203 SHA512 
f2cf15b8f94ae1a43b749fc9355eac1b427a41d690299ad4a221d51ef21eb0adcf6986c13f03d8c681e6cc259a2843b5c6f1ad359c5f0a28933e6d11c8eb
 WHIRLPOOL 
8031f1ddc0eb8de415446752c07c0b7a22f35ffcd6f44a2b025cdb1bf1593bbe37306da5c93d620fe9f00b14fd6fc061c0f432afd7294ccf774e5e4e4fbd8f9d
 DIST xdvik-22.87.03.tar.gz 4760306 SHA256 
a1b8631b6650c534cf8dc584a9f106b5df0771613743139c8a644a19f14611fc SHA512 
d4d418d78658f16d4d278e387ed484b291afc8623b00acaf4110e9f123ed76568714ad50f80588373657f412e8fff36f3e76b3e43f69756d46f031c0f2269a88
 WHIRLPOOL 
da8227daa34ac69b60c447e3c929aaf353697add104245b64815b2f42ad03c189c353c7b4d34359f5897a26e5dd811fa3ef21254ee18c243d557860f697bfba6
-DIST xdvik-22.87.tar.gz 4600576 SHA256 
920a20928b4360a1ab83843cffb98c129a54c6462ee014d0e5c4b209b8840ea7 SHA512 
cb0c15e88ce42b25cd5edfc8fb84a8afdcc821a6444ba1c5f9f1365a7f62e57cbf37729b276de033b4abfd0f6fe32fa5789f6efd5a0c042e1195c4dc971c8b9f
 WHIRLPOOL 
06ff8d6920ece92d711a432ed19998290f7bda30ad545b3c2bceb505f0fa3a03d680d6694f60a49c44d1b13b1429b45f6c451ec3f0d8f2723b74190065fc9417

diff --git a/app-text/xdvik/files/xdvik-22.87-xaw3d.patch 
b/app-text/xdvik/files/xdvik-22.87-xaw3d.patch
deleted file mode 100644
index 79e7893a19b..000
--- a/app-text/xdvik/files/xdvik-22.87-xaw3d.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/events.c b/events.c
-index dbb46f0..f9990f9 100644
 a/events.c
-+++ b/events.c
-@@ -5311,7 +5311,7 @@ xi2_emulate_action(struct xdvi_action *actp, struct 
xi2_valinfo *valinfo,
-   }
- 
-   if (actp->proc == Act_wheel) {
--#  if XAW
-+#  if !MOTIF
-   if (globals.widgets.y_bar != NULL)
-   XtCallCallbacks(globals.widgets.y_bar, XtNscrollProc,
- cast_int_to_XtPointer(dist));
-@@ -5322,7 +5322,7 @@ xi2_emulate_action(struct xdvi_action *actp, struct 
xi2_valinfo *valinfo,
- #  endif /* MOTIF */
-   }
-   else {  /* Act_hwheel */
--#  if XAW
-+#  if !MOTIF
-   if (globals.widgets.x_bar != NULL)
-   XtCallCallbacks(globals.widgets.x_bar, XtNscrollProc,
- cast_int_to_XtPointer(dist));

diff --git a/app-text/xdvik/xdvik-22.86.ebuild 
b/app-text/xdvik/xdvik-22.86.ebuild
deleted file mode 100644
index ea6665f07b0..000
--- a/app-text/xdvik/xdvik-22.86.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit eutils flag-o-matic elisp-common toolchain-funcs multilib
-
-DESCRIPTION="DVI previewer for X Window System"
-HOMEPAGE="http://xdvi.sourceforge.net/;
-SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="motif neXt Xaw3d emacs"
-
-RDEPEND="media-libs/freetype:2
-   x11-libs/libXmu
-   x11-libs/libXp
-   x11-libs/libXpm
-   motif? ( >=x11-libs/motif-2.3:0 )
-   !motif? (
-   neXt? ( x11-libs/neXtaw )
-   !neXt? (
-   Xaw3d? ( x11-libs/libXaw3d )
-   !Xaw3d? ( x11-libs/libXaw )
-   )
-   )
-   dev-libs/kpathsea"
-DEPEND="sys-devel/flex
-   virtual/yacc
-   ${RDEPEND}"
-RDEPEND="${RDEPEND}
-   virtual/latex-base
-   ! $i; done
-}
-
-src_configure() {
-   local toolkit
-
-   if use motif ; then
-   toolkit="motif"
-   use neXt && ewarn "neXt USE flag ignored 

[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-02-17 Thread Michael Weber
commit: 62748f16bcc64d9dcf0f2d898c5b0e310b2cae73
Author: Michael Weber  gentoo  org>
AuthorDate: Fri Feb 17 08:14:55 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Fri Feb 17 08:17:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62748f16

app-text/xdvik: ppc64 stable (bug 432144)

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="ppc64"

 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index f6740bb255..e0bd22f955 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-01-29 Thread Fabian Groffen
commit: cb920408b2c2af230443f2357a9f38c862ba6f40
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 29 15:22:50 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 29 15:24:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb920408

app-text/xdvik: dropped ~x86-freebsd

Package-Manager: portage-2.3.3

 app-text/xdvik/xdvik-22.85-r1.ebuild | 4 ++--
 app-text/xdvik/xdvik-22.86.ebuild| 4 ++--
 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 app-text/xdvik/xdvik-22.87.ebuild| 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-text/xdvik/xdvik-22.85-r1.ebuild 
b/app-text/xdvik/xdvik-22.85-r1.ebuild
index 2c6864d..b74bcb0 100644
--- a/app-text/xdvik/xdvik-22.85-r1.ebuild
+++ b/app-text/xdvik/xdvik-22.85-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"

diff --git a/app-text/xdvik/xdvik-22.86.ebuild 
b/app-text/xdvik/xdvik-22.86.ebuild
index 0d43f34..cb409e0 100644
--- a/app-text/xdvik/xdvik-22.86.ebuild
+++ b/app-text/xdvik/xdvik-22.86.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index 0d86c7c..0562546 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"

diff --git a/app-text/xdvik/xdvik-22.87.ebuild 
b/app-text/xdvik/xdvik-22.87.ebuild
index 2c22387..a0241af 100644
--- a/app-text/xdvik/xdvik-22.87.ebuild
+++ b/app-text/xdvik/xdvik-22.87.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-01-22 Thread Agostino Sarubbo
commit: f3001dd87632b638268def08b92c7002ce4c997d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan 22 15:24:54 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan 22 15:24:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3001dd8

app-text/xdvik: ppc stable wrt bug #432144

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index e4c1958..0d86c7c 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-01-22 Thread Tobias Klausmann
commit: 3cc1f6facd03827e9121b3bec781c2f781524803
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jan 22 08:18:02 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jan 22 08:18:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc1f6fa

app-text/xdvik-22.87.03-r0: stable on alpha

Gentoo-Bug: 432144

 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index e793263..e4c1958 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-01-21 Thread Agostino Sarubbo
commit: afaea6f14e94065e0663485de8a98206abade19e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Jan 21 21:53:19 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Jan 21 21:53:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afaea6f1

app-text/xdvik: x86 stable wrt bug #432144

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-text/xdvik/xdvik-22.87.03.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index 87813fd..e793263 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2017-01-21 Thread Agostino Sarubbo
commit: a06c09bf186ab22b83c94c2c2eaa697fdcee1554
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Jan 21 21:41:21 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Jan 21 21:41:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a06c09bf

app-text/xdvik: amd64 stable wrt bug #432144

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-text/xdvik/xdvik-22.87.03.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
index 65a63fa..87813fd 100644
--- a/app-text/xdvik/xdvik-22.87.03.ebuild
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -9,7 +9,7 @@ DESCRIPTION="DVI previewer for X Window System"
 HOMEPAGE="http://xdvi.sourceforge.net/;
 SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="motif neXt Xaw3d emacs"



[gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/

2016-04-05 Thread Alexis Ballier
commit: f5a896b17fdf8594fd8a7da36d7af5fdee58917a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Apr  5 11:27:04 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Apr  5 11:27:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5a896b1

app-text/xdvik: bump to 22.87.03

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 app-text/xdvik/Manifest  |   1 +
 app-text/xdvik/xdvik-22.87.03.ebuild | 102 +++
 2 files changed, 103 insertions(+)

diff --git a/app-text/xdvik/Manifest b/app-text/xdvik/Manifest
index fb266ac..9bf7cb3 100644
--- a/app-text/xdvik/Manifest
+++ b/app-text/xdvik/Manifest
@@ -1,3 +1,4 @@
 DIST xdvik-22.85.tar.gz 4128828 SHA256 
91f08103e53ab46efc83053e648bdd07aa100043233dadcb7384efc83fa2dde8 SHA512 
9220bac0dea21d617b4ea7129ca8133fd447fb1adc26c699970cae7d3e168e32f4745b0936d18d8f769f3926c526e085f0c92a4d99d5faff8301e3c4ebc297b5
 WHIRLPOOL 
57ffc2d6a326b754b63aed54836c05b2e9431b01faba6d9bdc347b07094a62a7569d7746f556366b282808cc93a41a81cbda4fd82cdf4972133f8addc74e4e75
 DIST xdvik-22.86.tar.gz 4412419 SHA256 
a3dffb8d878e6039ebc168d3bd82d194912dac53177673f818d0baac2dc27203 SHA512 
f2cf15b8f94ae1a43b749fc9355eac1b427a41d690299ad4a221d51ef21eb0adcf6986c13f03d8c681e6cc259a2843b5c6f1ad359c5f0a28933e6d11c8eb
 WHIRLPOOL 
8031f1ddc0eb8de415446752c07c0b7a22f35ffcd6f44a2b025cdb1bf1593bbe37306da5c93d620fe9f00b14fd6fc061c0f432afd7294ccf774e5e4e4fbd8f9d
+DIST xdvik-22.87.03.tar.gz 4760306 SHA256 
a1b8631b6650c534cf8dc584a9f106b5df0771613743139c8a644a19f14611fc SHA512 
d4d418d78658f16d4d278e387ed484b291afc8623b00acaf4110e9f123ed76568714ad50f80588373657f412e8fff36f3e76b3e43f69756d46f031c0f2269a88
 WHIRLPOOL 
da8227daa34ac69b60c447e3c929aaf353697add104245b64815b2f42ad03c189c353c7b4d34359f5897a26e5dd811fa3ef21254ee18c243d557860f697bfba6
 DIST xdvik-22.87.tar.gz 4600576 SHA256 
920a20928b4360a1ab83843cffb98c129a54c6462ee014d0e5c4b209b8840ea7 SHA512 
cb0c15e88ce42b25cd5edfc8fb84a8afdcc821a6444ba1c5f9f1365a7f62e57cbf37729b276de033b4abfd0f6fe32fa5789f6efd5a0c042e1195c4dc971c8b9f
 WHIRLPOOL 
06ff8d6920ece92d711a432ed19998290f7bda30ad545b3c2bceb505f0fa3a03d680d6694f60a49c44d1b13b1429b45f6c451ec3f0d8f2723b74190065fc9417

diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild 
b/app-text/xdvik/xdvik-22.87.03.ebuild
new file mode 100644
index 000..65a63fa
--- /dev/null
+++ b/app-text/xdvik/xdvik-22.87.03.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils flag-o-matic elisp-common toolchain-funcs multilib
+
+DESCRIPTION="DVI previewer for X Window System"
+HOMEPAGE="http://xdvi.sourceforge.net/;
+SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="motif neXt Xaw3d emacs"
+
+RDEPEND="media-libs/freetype:2
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXp
+   x11-libs/libXpm
+   motif? ( >=x11-libs/motif-2.3:0 )
+   !motif? (
+   neXt? ( x11-libs/neXtaw )
+   !neXt? (
+   Xaw3d? ( x11-libs/libXaw3d )
+   !Xaw3d? ( x11-libs/libXaw )
+   )
+   )
+   dev-libs/kpathsea"
+DEPEND="sys-devel/flex
+   virtual/yacc
+   virtual/pkgconfig
+   ${RDEPEND}"
+RDEPEND="${RDEPEND}
+   virtual/latex-base
+   ! $i; done
+}
+
+src_configure() {
+   has_version '>=dev-libs/kpathsea-6.2.1' && append-cppflags 
"$($(tc-getPKG_CONFIG) --cflags kpathsea)"
+
+   local toolkit
+
+   if use motif ; then
+   toolkit="motif"
+   use neXt && ewarn "neXt USE flag ignored (superseded by motif)"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by 
motif)"
+   elif use neXt ; then
+   toolkit="neXtaw"
+   use Xaw3d && ewarn "Xaw3d USE flag ignored (superseded by neXt)"
+   elif use Xaw3d ; then
+   toolkit="xaw3d"
+   else
+   toolkit="xaw"
+   fi
+
+   econf \
+   --with-system-freetype2 \
+   --with-system-kpathsea \
+   --with-kpathsea-include="${EPREFIX}"/usr/include/kpathsea \
+   --with-xdvi-x-toolkit="${toolkit}" \
+   --x-includes="${EPREFIX}"/usr/include \
+   --x-libraries="${EPREFIX}"/usr/$(get_libdir)
+}
+
+src_compile() {
+   emake kpathsea_dir="${EPREFIX}/usr/include/kpathsea"
+   use emacs && elisp-compile xdvi-search.el
+}
+
+src_install() {
+   dodir /usr/share/texmf-dist/dvips/config
+
+   emake DESTDIR="${D}" install
+
+   dosym /usr/share/texmf-dist/xdvi/XDvi /usr/share/X11/app-defaults/XDvi
+
+   dodoc BUGS