* [gentoo-commits] proj/lisp:master commit in: app-office/texmacs/, app-office/texmacs/files/
@ 2020-12-21 12:58 Ulrich Müller
0 siblings, 0 replies; only message in thread
From: Ulrich Müller @ 2020-12-21 12:58 UTC (permalink / raw
To: gentoo-commits
commit: f2ce117de3a76d016370d52f8f10c2e741250273
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 21 12:57:44 2020 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Dec 21 12:57:44 2020 +0000
URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=f2ce117d
app-office/texmacs: Remove package.
Does not build, some dependencies (Qt4!) no longer exist, produces
global QA warnings.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-office/texmacs/files/TeXmacs.desktop | 10 -
.../texmacs/files/texmacs-force-guile-18.patch | 217 ---------------------
app-office/texmacs/files/texmacs-plugins.patch | 48 -----
app-office/texmacs/files/texmacs-updates.patch | 29 ---
app-office/texmacs/texmacs-1.0.7.16-r2.ebuild | 72 -------
5 files changed, 376 deletions(-)
diff --git a/app-office/texmacs/files/TeXmacs.desktop b/app-office/texmacs/files/TeXmacs.desktop
deleted file mode 100644
index 24344ee5..00000000
--- a/app-office/texmacs/files/TeXmacs.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Version=1.0
-Type=Application
-Exec=texmacs
-Icon=/usr/share/TeXmacs/misc/pixmaps/TeXmacs.xpm
-Name=TeXmacs
-GenericName=Scientific Word Processor
-Comment=A scientific word processing application.
-Categories=Application;Office;WordProcessor;
diff --git a/app-office/texmacs/files/texmacs-force-guile-18.patch b/app-office/texmacs/files/texmacs-force-guile-18.patch
deleted file mode 100644
index dfaf83d3..00000000
--- a/app-office/texmacs/files/texmacs-force-guile-18.patch
+++ /dev/null
@@ -1,217 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index 5037c6a..d2c2846 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -266,7 +266,7 @@ COPY_SOURCES_TGZ: COPY_SOURCES
- cd ../distr/build; tar -czf $(tm_devel).tar.gz $(tm_devel)
-
- COPY_GUILE:
-- GUILE_DATA_PATH=`guile-config info pkgdatadir`; \
-+ GUILE_DATA_PATH=`guile-config-1.8 info pkgdatadir`; \
- export GUILE_DATA_PATH; \
- GUILE_LOAD_PATH=`find $$GUILE_DATA_PATH -type d | grep ice-9`; \
- export GUILE_LOAD_PATH; \
-@@ -521,7 +521,7 @@ WINDOWS_BUNDLE: TEXMACS
- $(MV) $(WINDOWS_BUILD_DIR)/bin/texmacs.bin \
- $(WINDOWS_BUILD_DIR)/bin/texmacs.exe
- $(RM) -r $(WINDOWS_BUILD_DIR)/bin/texmacs
-- GUILE_DATA_PATH=`guile-config info pkgdatadir`; \
-+ GUILE_DATA_PATH=`guile-config-1.8 info pkgdatadir`; \
- export GUILE_DATA_PATH; \
- GUILE_LOAD_PATH=`find $$GUILE_DATA_PATH -type d | grep ice-9`; \
- export GUILE_LOAD_PATH; \
-diff --git a/aclocal.m4 b/aclocal.m4
-index e994b4f..edb8f08 100644
---- a/aclocal.m4
-+++ b/aclocal.m4
-@@ -8,15 +8,15 @@ AC_DEFUN([GUILE_FLAGS],[
- ## The GUILE_FLAGS macro.
- ## First, let's just see if we can find Guile at all.
- AC_MSG_CHECKING(for Guile)
-- guile-config link > /dev/null || {
-- echo "configure: cannot find guile-config; is Guile installed?" 1>&2
-+ guile-config-1.8 link > /dev/null || {
-+ echo "configure: cannot find guile-config-1.8; is Guile installed?" 1>&2
- exit 1
- }
-- GUILE_ORIGINAL_CFLAGS="`guile-config compile`"
-+ GUILE_ORIGINAL_CFLAGS="`guile-config-1.8 compile`"
- GUILE_CFLAGS="$GUILE_ORIGINAL_CFLAGS"
- GUILE_VARIANT_CFLAGS="$GUILE_ORIGINAL_CFLAGS $GUILE_ORIGINAL_CFLAGS/guile $GUILE_ORIGINAL_CFLAGS/libguile"
-- GUILE_LDFLAGS="`guile-config link`"
-- GUILE_VARIANT_LDFLAGS="-L`guile-config info libdir` -lguile -lreadline -ltermcap"
-+ GUILE_LDFLAGS="`guile-config-1.8 link`"
-+ GUILE_VARIANT_LDFLAGS="-L`guile-config-1.8 info libdir` -lguile -lreadline -ltermcap"
- AC_SUBST(GUILE_CFLAGS)
- AC_SUBST(GUILE_LDFLAGS)
- AC_MSG_RESULT(yes)
-diff --git a/cmake/FindGuile.cmake b/cmake/FindGuile.cmake
-index b2e9a30..da7fdb7 100644
---- a/cmake/FindGuile.cmake
-+++ b/cmake/FindGuile.cmake
-@@ -6,15 +6,15 @@
- # Guile_LIBRARIES - link these to use Freetype
- # Guile_VERSION_STRING - version of Guile
-
--FIND_PROGRAM(GUILECONFIG_EXECUTABLE NAMES guile-config )
-+FIND_PROGRAM(GUILECONFIG_EXECUTABLE NAMES guile-config-1.8 )
-
--# if guile-config has been found
-+# if guile-config-1.8 has been found
- IF(GUILECONFIG_EXECUTABLE)
-
- EXECUTE_PROCESS(COMMAND ${GUILECONFIG_EXECUTABLE} link
- OUTPUT_VARIABLE _guileconfigDevNull RESULT_VARIABLE _return_VALUE )
-
-- # and if the package of interest also exists for guile-config, then get the information
-+ # and if the package of interest also exists for guile-config-1.8, then get the information
- IF(NOT _return_VALUE)
-
- EXECUTE_PROCESS(COMMAND ${GUILECONFIG_EXECUTABLE} link
-@@ -80,13 +80,13 @@ IF(GUILECONFIG_EXECUTABLE)
-
- ELSE( NOT _return_VALUE)
-
-- MESSAGE(STATUS "guile-config not working; I assume guile is not installed.")
-+ MESSAGE(STATUS "guile-config-1.8 not working; I assume guile is not installed.")
-
- ENDIF(NOT _return_VALUE)
-
- ELSE(GUILECONFIG_EXECUTABLE)
-
-- MESSAGE(STATUS "guile-config not found; I assume guile is not installed.")
-+ MESSAGE(STATUS "guile-config-1.8 not found; I assume guile is not installed.")
-
-
- ENDIF(GUILECONFIG_EXECUTABLE)
-diff --git a/configure b/configure
-index 5cde705..6b19305 100755
---- a/configure
-+++ b/configure
-@@ -3941,15 +3941,15 @@ if test -z "$GUILE_CFLAGS" -a -z "$GUILE_LDFLAGS"; then
- ## First, let's just see if we can find Guile at all.
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Guile" >&5
- $as_echo_n "checking for Guile... " >&6; }
-- guile-config link > /dev/null || {
-- echo "configure: cannot find guile-config; is Guile installed?" 1>&2
-+ guile-config-1.8 link > /dev/null || {
-+ echo "configure: cannot find guile-config-1.8; is Guile installed?" 1>&2
- exit 1
- }
-- GUILE_ORIGINAL_CFLAGS="`guile-config compile`"
-+ GUILE_ORIGINAL_CFLAGS="`guile-config-1.8 compile`"
- GUILE_CFLAGS="$GUILE_ORIGINAL_CFLAGS"
- GUILE_VARIANT_CFLAGS="$GUILE_ORIGINAL_CFLAGS $GUILE_ORIGINAL_CFLAGS/guile $GUILE_ORIGINAL_CFLAGS/libguile"
-- GUILE_LDFLAGS="`guile-config link`"
-- GUILE_VARIANT_LDFLAGS="-L`guile-config info libdir` -lguile -lreadline -ltermcap"
-+ GUILE_LDFLAGS="`guile-config-1.8 link`"
-+ GUILE_VARIANT_LDFLAGS="-L`guile-config-1.8 info libdir` -lguile -lreadline -ltermcap"
-
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-@@ -3966,7 +3966,7 @@ $as_echo "$GUILE_VERSION" >&6; }
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking guile data path" >&5
- $as_echo_n "checking guile data path... " >&6; }
- if test -z "$GUILE_DATA_PATH" ; then
-- GUILE_DATA_PATH=`guile-config info pkgdatadir`
-+ GUILE_DATA_PATH=`guile-config-1.8 info pkgdatadir`
- fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GUILE_DATA_PATH" >&5
- $as_echo "$GUILE_DATA_PATH" >&6; }
-@@ -6139,7 +6139,7 @@ fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ... arguments behave correctly" >&5
- $as_echo_n "checking whether ... arguments behave correctly... " >&6; }
- if test -z "$GUILE_CFLAGS"; then
-- CXXFLAGS="`guile-config compile`"
-+ CXXFLAGS="`guile-config-1.8 compile`"
- else
- CXXFLAGS="$GUILE_CFLAGS"
- fi
-@@ -6181,7 +6181,7 @@ CXXFLAGS=""
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking the size_t of guile strings" >&5
- $as_echo_n "checking the size_t of guile strings... " >&6; }
- if test -z "$GUILE_CFLAGS"; then
-- CXXFLAGS="`guile-config compile`"
-+ CXXFLAGS="`guile-config-1.8 compile`"
- else
- CXXFLAGS="$GUILE_CFLAGS"
- fi
-diff --git a/configure.in b/configure.in
-index 522098b..8daafa6 100644
---- a/configure.in
-+++ b/configure.in
-@@ -76,7 +76,7 @@ fi
- AC_MSG_RESULT($GUILE_VERSION)
- AC_MSG_CHECKING(guile data path)
- if test -z "$GUILE_DATA_PATH" ; then
-- GUILE_DATA_PATH=`guile-config info pkgdatadir`
-+ GUILE_DATA_PATH=`guile-config-1.8 info pkgdatadir`
- fi
- AC_MSG_RESULT($GUILE_DATA_PATH)
-
-@@ -445,7 +445,7 @@ fi
-
- AC_MSG_CHECKING(whether ... arguments behave correctly)
- if test -z "$GUILE_CFLAGS"; then
-- CXXFLAGS="`guile-config compile`"
-+ CXXFLAGS="`guile-config-1.8 compile`"
- else
- CXXFLAGS="$GUILE_CFLAGS"
- fi
-@@ -466,7 +466,7 @@ CXXFLAGS=""
-
- AC_MSG_CHECKING(the size_t of guile strings)
- if test -z "$GUILE_CFLAGS"; then
-- CXXFLAGS="`guile-config compile`"
-+ CXXFLAGS="`guile-config-1.8 compile`"
- else
- CXXFLAGS="$GUILE_CFLAGS"
- fi
-diff --git a/packages/redhat/TeXmacs.spec b/packages/redhat/TeXmacs.spec
-index 586dd47..750a474 100644
---- a/packages/redhat/TeXmacs.spec
-+++ b/packages/redhat/TeXmacs.spec
-@@ -43,7 +43,7 @@ make STATIC_TEXMACS
-
- %install
- make DESTDIR=$RPM_BUILD_ROOT install
--export GUILE_DATA_PATH=`guile-config info pkgdatadir`
-+export GUILE_DATA_PATH=`guile-config-1.8 info pkgdatadir`
- export GUILE_LOAD_PATH=`find $GUILE_DATA_PATH -type d | grep ice-9`
- cp -r -f $GUILE_LOAD_PATH $RPM_BUILD_ROOT%{_datadir}/TeXmacs/progs
- chmod -f 644 $RPM_BUILD_ROOT%{_datadir}/TeXmacs/progs/ice-9/*
-diff --git a/packages/redhat/TeXmacs.spec.in b/packages/redhat/TeXmacs.spec.in
-index 695c8a8..aa0e5f7 100644
---- a/packages/redhat/TeXmacs.spec.in
-+++ b/packages/redhat/TeXmacs.spec.in
-@@ -43,7 +43,7 @@ make STATIC_TEXMACS
-
- %install
- make DESTDIR=$RPM_BUILD_ROOT install
--export GUILE_DATA_PATH=`guile-config info pkgdatadir`
-+export GUILE_DATA_PATH=`guile-config-1.8 info pkgdatadir`
- export GUILE_LOAD_PATH=`find $GUILE_DATA_PATH -type d | grep ice-9`
- cp -r -f $GUILE_LOAD_PATH $RPM_BUILD_ROOT%{_datadir}/TeXmacs/progs
- chmod -f 644 $RPM_BUILD_ROOT%{_datadir}/TeXmacs/progs/ice-9/*
-diff --git a/src/System/Boot/init_texmacs.cpp b/src/System/Boot/init_texmacs.cpp
-index 32e66a5..669db24 100644
---- a/src/System/Boot/init_texmacs.cpp
-+++ b/src/System/Boot/init_texmacs.cpp
-@@ -168,7 +168,7 @@ init_guile () {
- /*
- if (!exists ("$GUILE_LOAD_PATH/ice-9/boot-9.scm")) {
- int i;
-- string guile_data = var_eval_system ("guile-config info datadir");
-+ string guile_data = var_eval_system ("guile-config-1.8 info datadir");
- string guile_version = var_eval_system ("guile --version");
- for (i=0; i<N(guile_version); i++)
- if (guile_version[i] == '\n') break;
-@@ -177,7 +177,7 @@ init_guile () {
- if (guile_version[i-1] == ' ') break;
- guile_version= guile_version (i, N (guile_version));
- if (guile_version == "") {
-- var_eval_system ("guile-config info top_srcdir");
-+ var_eval_system ("guile-config-1.8 info top_srcdir");
- for (i=N(guile_version); i>0; i--)
- if (guile_version[i-1] == '-') break;
- guile_version= guile_version (i, N (guile_version));
diff --git a/app-office/texmacs/files/texmacs-plugins.patch b/app-office/texmacs/files/texmacs-plugins.patch
deleted file mode 100644
index bb6197ff..00000000
--- a/app-office/texmacs/files/texmacs-plugins.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -r -U1 TeXmacs-1.0.7.16-src.orig/plugins/axiom/Makefile TeXmacs-1.0.7.16-src/plugins/axiom/Makefile
---- TeXmacs-1.0.7.16-src.orig/plugins/axiom/Makefile 2010-12-18 01:02:16.000000000 +0600
-+++ TeXmacs-1.0.7.16-src/plugins/axiom/Makefile 2012-09-13 00:38:53.000000000 +0700
-@@ -16,3 +16,3 @@
- bin/tm_axiom: src/tm_axiom.c
-- $(CC) $(CPPFLAGS) $(CFLAGS) src/tm_axiom.c -o bin/tm_axiom
-+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/tm_axiom.c -o bin/tm_axiom
-
-diff -r -U1 TeXmacs-1.0.7.16-src.orig/plugins/graphviz/Makefile TeXmacs-1.0.7.16-src/plugins/graphviz/Makefile
---- TeXmacs-1.0.7.16-src.orig/plugins/graphviz/Makefile 2010-12-18 01:02:15.000000000 +0600
-+++ TeXmacs-1.0.7.16-src/plugins/graphviz/Makefile 2012-09-13 00:38:58.000000000 +0700
-@@ -16,3 +16,3 @@
- bin/tm_graphviz: src/tm_graphviz.c
-- $(CC) $(CPPFLAGS) $(CFLAGS) src/tm_graphviz.c -o bin/tm_graphviz
-+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/tm_graphviz.c -o bin/tm_graphviz
-
-diff -r -U1 TeXmacs-1.0.7.16-src.orig/plugins/maple/Makefile TeXmacs-1.0.7.16-src/plugins/maple/Makefile
---- TeXmacs-1.0.7.16-src.orig/plugins/maple/Makefile 2010-12-18 01:02:16.000000000 +0600
-+++ TeXmacs-1.0.7.16-src/plugins/maple/Makefile 2012-09-13 00:39:59.000000000 +0700
-@@ -17,3 +17,3 @@
- bin/tm_maple_5: src/tm_maple_5.cpp
-- $(CXX) $(CPPFLAGS) $(CXXFLAGS) src/tm_maple_5.cpp -o bin/tm_maple_5
-+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) src/tm_maple_5.cpp -o bin/tm_maple_5
-
-diff -r -U1 TeXmacs-1.0.7.16-src.orig/plugins/mathematica/Makefile TeXmacs-1.0.7.16-src/plugins/mathematica/Makefile
---- TeXmacs-1.0.7.16-src.orig/plugins/mathematica/Makefile 2010-12-18 01:02:15.000000000 +0600
-+++ TeXmacs-1.0.7.16-src/plugins/mathematica/Makefile 2012-09-13 00:40:18.000000000 +0700
-@@ -14,3 +14,3 @@
- bin/realpath: src/realpath.c
-- $(CC) $(CPPFLAGS) $(CFLAGS) src/realpath.c -o bin/realpath
-+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/realpath.c -o bin/realpath
-
-diff -r -U1 TeXmacs-1.0.7.16-src.orig/plugins/r/Makefile TeXmacs-1.0.7.16-src/plugins/r/Makefile
---- TeXmacs-1.0.7.16-src.orig/plugins/r/Makefile 2010-12-18 01:02:16.000000000 +0600
-+++ TeXmacs-1.0.7.16-src/plugins/r/Makefile 2012-09-13 00:41:16.000000000 +0700
-@@ -16,3 +16,3 @@
- bin/tm_r: src/tm_r.c
-- $(CC) $(CPPFLAGS) $(CFLAGS) -I../../src/System src/tm_r.c -o bin/tm_r -lutil
-+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -I../../src/System src/tm_r.c -o bin/tm_r -lutil
-
-diff -r -U1 TeXmacs-1.0.7.16-src.orig/plugins/shell/Makefile TeXmacs-1.0.7.16-src/plugins/shell/Makefile
---- TeXmacs-1.0.7.16-src.orig/plugins/shell/Makefile 2010-12-18 01:02:15.000000000 +0600
-+++ TeXmacs-1.0.7.16-src/plugins/shell/Makefile 2012-09-13 00:41:57.000000000 +0700
-@@ -16,3 +16,3 @@
- bin/tm_shell: src/tm_shell.cpp
-- $(CXX) $(CPPFLAGS) $(CXXFLAGS) -I../../src/System -lutil src/tm_shell.cpp -o bin/tm_shell
-+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -I../../src/System -lutil src/tm_shell.cpp -o bin/tm_shell
-
diff --git a/app-office/texmacs/files/texmacs-updates.patch b/app-office/texmacs/files/texmacs-updates.patch
deleted file mode 100644
index f9517cd2..00000000
--- a/app-office/texmacs/files/texmacs-updates.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -r -U1 TeXmacs-1.0.7.16-src.orig/Makefile.in TeXmacs-1.0.7.16-src/Makefile.in
---- TeXmacs-1.0.7.16-src.orig/Makefile.in 2012-07-09 21:33:36.000000000 +0700
-+++ TeXmacs-1.0.7.16-src/Makefile.in 2012-09-16 11:20:06.000000000 +0700
-@@ -171,3 +171,2 @@
- $(DESTDIR)$(datadir)/applications
-- @update-desktop-database 2>/dev/null || :
- $(MKDIR) $(DESTDIR)$(datadir)/application-registry
-@@ -181,3 +180,2 @@
- $(CP) $(tmdir)/misc/mime/texmacs.xml $(DESTDIR)$(datadir)/mime/packages
-- @update-mime-database $(DESTDIR)$(datadir)/mime/ 2>/dev/null || :
- $(MKDIR) $(DESTDIR)$(datadir)/pixmaps
-@@ -193,4 +191,2 @@
- $(DESTDIR)$(datadir)/icons/gnome/scalable/mimetypes
-- @gtk-update-icon-cache -t --force \
-- $(DESTDIR)$(datadir)/icons/gnome 2>/dev/null || :
- @echo installed TeXmacs mime info in $(DESTDIR)$(datadir)
-@@ -223,3 +219,2 @@
- $(RM) $(datadir)/applications/texmacs.desktop
-- @update-desktop-database 2>/dev/null || :
- $(RM) $(datadir)/application-registry/texmacs.applications
-@@ -228,3 +223,2 @@
- $(RM) $(datadir)/mime/packages/texmacs.xml
-- @update-mime-database $(DESTDIR)$(datadir)/mime/ 2>/dev/null || :
- $(RM) $(datadir)/pixmaps/TeXmacs.xpm
-@@ -232,4 +226,2 @@
- $(RM) $(datadir)/icons/gnome/scalable/mimetypes/text-texmacs.svg
-- @gtk-update-icon-cache -t --force \
-- $(DESTDIR)$(datadir)/icons/gnome 2>/dev/null || :
- @echo removed TeXmacs mime info from $(datadir)
diff --git a/app-office/texmacs/texmacs-1.0.7.16-r2.ebuild b/app-office/texmacs/texmacs-1.0.7.16-r2.ebuild
deleted file mode 100644
index e45e0e1c..00000000
--- a/app-office/texmacs/texmacs-1.0.7.16-r2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils fdo-mime gnome2-utils
-
-MY_P=${P/tex/TeX}-src
-
-DESCRIPTION="Wysiwyg text processor with high-quality maths"
-HOMEPAGE="http://www.texmacs.org/"
-SRC_URI="ftp://ftp.texmacs.org/pub/TeXmacs/tmftp/source/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="imlib jpeg netpbm qt4 svg spell"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND=">=dev-scheme/guile-1.8.8-r2:12[deprecated]
- virtual/latex-base
- app-text/ghostscript-gpl
- media-libs/freetype
- x11-libs/libXext
- x11-apps/xmodmap
- qt4? ( dev-qt/qtgui:4 )
- imlib? ( media-libs/imlib2 )
- jpeg? ( || ( media-gfx/imagemagick media-gfx/jpeg2ps ) )
- svg? ( || ( media-gfx/inkscape gnome-base/librsvg:2 ) )
- netpbm? ( media-libs/netpbm )
- spell? ( app-text/aspell )"
-DEPEND="${RDEPEND}
- x11-proto/xproto"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- # respect LDFLAGS, bug #338459
- epatch "${FILESDIR}"/${PN}-plugins.patch
-
- # dont update mime and desktop databases and icon cache
- epatch "${FILESDIR}"/${PN}-updates.patch
-
- # Force building against SLOTed guile-1.8
- epatch "${FILESDIR}"/${PN}-force-guile-18.patch
-
- eapply_user
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with imlib imlib2) \
- --enable-optimize="${CXXFLAGS}" \
- $(use_enable qt4 qt)
-}
-
-src_install() {
- default
- domenu "${FILESDIR}"/TeXmacs.desktop
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
- fdo-mime_mime_database_update
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
- fdo-mime_mime_database_update
- gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-12-21 12:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-21 12:58 [gentoo-commits] proj/lisp:master commit in: app-office/texmacs/, app-office/texmacs/files/ Ulrich Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox