sci-chemistry/gelemental: drop old

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Matthias Maier <tamiko@gentoo.org>
This commit is contained in:
Matthias Maier
2020-05-01 12:51:39 -05:00
parent 0400de6701
commit a5e7c23227
6 changed files with 0 additions and 169 deletions

View File

@@ -1,3 +1 @@
DIST gelemental-1.2.0.tar.bz2 460757 BLAKE2B 53fd40cdc37909495cd9051c83418ace482fdf17930df2a94d8cb7f44a8eff2a5e7c37e54dac4e72810b1420d0bf2722eca47eb8c375fc05ecf26b753beb4e9d SHA512 2e6ef2c22b389cff69728b01e1eb397578974362356f5132098f29a9e01a64be228a24686738bd84ea575cee5aef068d9ab3d6c20233f995ccc5f1a1cb5d5673
DIST gelemental-2.0.0.tar.gz 779052 BLAKE2B 86f98a97acaf84c2bd6e03e991e226f19e65ed9c06fc43c809278d5e6d8b93645aa64ac4983166fad6b6b9b3d0ad5bba7a7cbfe2dccbbe2ea093deaaa8bdfabd SHA512 86b0f59a3508560e3882f40b820d7b24b780bb4d1619df94f3410b0832255deec8e55d11c5ad960f96fc3e16d8a624279bf53bf178bf1dacdfe80a72181e48d6
DIST gelemental_1.2.0-8.debian.tar.gz 29877 BLAKE2B a19c853cd426e1abdf73b48a21d1d7c830a613dc5802b1478d699d21b3211060b150c25bd525414147d02972dd9ac0940468a2f873aad03f9b7c522e862f29a7 SHA512 83c236e3b91af304c96f28c0f12577821ee2f47c9e01fb1f3664228afb002dc19b1a71e6dcd6040d09ea991d131b147ea5b36283d8ead290d50014c15e69878c

View File

@@ -1,30 +0,0 @@
Author: Joachim Reichel <reichel@debian.org>
Description: Skip installing (no longer generated) .dot and .gif files
Origin: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=590382#15
Bug-Debian: http://bugs.debian.org/590382
Reviewed-By: Michael Banck <mbanck@debian.org>
Forwarded: no
Last-Update: 2010-09-22
--- a/docs/api/Makefile.am
+++ b/docs/api/Makefile.am
@@ -12,7 +12,7 @@
install-api: $(srcdir)/html/index.html
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)/$(apidir)
- @dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot ; do \
+ @dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png ; do \
f="`echo $$p | sed -e 's|^.*/||'`"; \
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(apidir)/$$f"; \
$(INSTALL_DATA) $$p $(DESTDIR)$(apidir)/$$f; \
--- a/docs/api/Makefile.in
+++ b/docs/api/Makefile.in
@@ -393,7 +393,7 @@
install-api: $(srcdir)/html/index.html
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)/$(apidir)
- @dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot ; do \
+ @dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png ; do \
f="`echo $$p | sed -e 's|^.*/||'`"; \
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(apidir)/$$f"; \
$(INSTALL_DATA) $$p $(DESTDIR)$(apidir)/$$f; \

View File

@@ -1,14 +0,0 @@
Fix building with C++14, which errors out due to bool -> T* conversions
See also: https://bugs.gentoo.org/show_bug.cgi?id=593994
--- a/src/dialogs.cc
+++ b/src/dialogs.cc
@@ -255,7 +255,7 @@
const Gtk::TreePath& tpath, bool)
{
Gtk::TreeIter iter = store->get_iter (tpath);
- return iter ? iter->get_value (cols.property) : false;
+ return iter ? iter->get_value (cols.property) : NULL;
}

View File

@@ -1,12 +0,0 @@
diff -Naru gelemental-1.2.0/libelemental/value.tcc gelemental-1.2.0.new/libelemental/value.tcc
--- gelemental-1.2.0/libelemental/value.tcc 2007-09-25 01:10:16.000000000 -0400
+++ gelemental-1.2.0.new/libelemental/value.tcc 2008-10-19 10:08:35.000000000 -0400
@@ -26,6 +26,8 @@
#error "value.tcc must be included from value.hh."
#endif
+#include <limits>
+
namespace Elemental {

View File

@@ -1,46 +0,0 @@
libelemental/misc/extras.cc | 2 +-
libelemental/misc/widgets.cc | 2 +-
src/main.cc | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libelemental/misc/extras.cc b/libelemental/misc/extras.cc
index a8e5720..c042604 100644
--- a/libelemental/misc/extras.cc
+++ b/libelemental/misc/extras.cc
@@ -21,7 +21,7 @@
#include <algorithm>
#include <stdexcept>
-#include <glib/gmem.h>
+#include <glib.h>
#include <glibmm/utility.h>
namespace misc {
diff --git a/libelemental/misc/widgets.cc b/libelemental/misc/widgets.cc
index 002310c..941d881 100644
--- a/libelemental/misc/widgets.cc
+++ b/libelemental/misc/widgets.cc
@@ -20,7 +20,7 @@
#include "macros.hh"
#include "widgets.hh"
-#include <glib/gmessages.h>
+#include <glib.h>
#include <gtkmm/alignment.h>
#include <gtkmm/image.h>
#include <gtkmm/label.h>
diff --git a/src/main.cc b/src/main.cc
index 41cfe03..68bbb4c 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -26,8 +26,8 @@
#include <clocale>
#include <iostream>
#include <locale>
-#include <glib/goption.h>
-#include <glib/gutils.h>
+#include <glib.h>
+#include <glib.h>
#include <glibmm/optionentry.h>
#include <gtk/gtkaboutdialog.h>
#include <gtk/gtkversion.h>

View File

@@ -1,65 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools-utils fdo-mime flag-o-matic gnome2-utils eutils
DESCRIPTION="Periodic table viewer with detailed information on the chemical elements"
HOMEPAGE="https://github.com/ginggs/gelemental/"
SRC_URI="
http://www.kdau.com/files/${P}.tar.bz2
mirror://debian/pool/main/g/${PN}/${PN}_${PV}-8.debian.tar.gz"
LICENSE="GPL-3 MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc static-libs"
RDEPEND="
dev-cpp/gtkmm:2.4
dev-cpp/glibmm:2"
DEPEND="${RDEPEND}
virtual/pkgconfig
sys-devel/gettext
dev-util/intltool
doc? ( app-doc/doxygen )"
PATCHES=(
"${FILESDIR}"/${P}-gcc4.3.patch
"${FILESDIR}"/${P}-glib-2.32.patch
"${FILESDIR}"/${P}-doxygen.patch
"${WORKDIR}"/debian/patches/579183_adjust_size_middle_button.patch
"${WORKDIR}"/debian/patches/604612_fix_menu_category.patch
"${WORKDIR}"/debian/patches/604618_scrollable_properties_dialog.patch
"${WORKDIR}"/debian/patches/656372_element_renames.patch
"${WORKDIR}"/debian/patches/add_new_wave_theme.patch
"${WORKDIR}"/debian/patches/czech_translation_559028.patch
"${WORKDIR}"/debian/patches/fix_gtkmm_2.18.patch
"${WORKDIR}"/debian/patches/fix_zinc_german_translation.patch
"${WORKDIR}"/debian/patches/ftbfs_missing_limits.patch
"${WORKDIR}"/debian/patches/lp673285_link_in_about.patch
"${FILESDIR}"/${PN}-1.2.0-fix-c++14.patch
)
AUTOTOOLS_IN_SOURCE_BUILD=1
src_configure() {
append-cxxflags -std=c++11 #566450
local myeconfargs=( $(use_enable doc api-docs) )
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install apidir="/usr/share/doc/${PF}/html"
}
pkg_postinst() {
gnome2_icon_cache_update
fdo-mime_desktop_database_update
}
pkg_postrm() {
gnome2_icon_cache_update
fdo-mime_desktop_database_update
}