mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
sci-chemistry/massxpert: remove old
Package-Manager: portage-2.2.24
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST massxpert-2.0.5.tar.gz 13603475 SHA256 11f7f1599a587be923ed0b58e753e1f9296e0c3c0acfb5e3980579e768600e5c SHA512 49c1d8fa4324907d04c79dddad66eecae34ba1dded98594838b4cbb88ad022abe3f8fbd7f2aeee73baafc17a03397b1776f2e6fdabf4e2ac4e4f6d6eeb86ca2f WHIRLPOOL dba641144835d303eaf181a70aabee11dc14a43c8fe508ad33eb2ffe3c1c8a11eaa1ae066a8e9134e9d6c891cea5fc2dba503ca5e53acf62eb8b532d52c1bf3e
|
||||
DIST massxpert-3.4.0.tar.bz2 16544044 SHA256 b06314722b4cbdf68dc76e55933a79487848c655fc65341a8dbc707ed89cc9e8 SHA512 50e8eaab145ab7fa225725b113d6840168b88db7d2ee194b176bc88eabf4f44c20f8dc0680986d659de1f94f2e0c6ae10d54e17e2d8b3b5aa6a9a9bf57a508de WHIRLPOOL 4578801c2dd4eee7390eadb299f3d55af29d0a48365f96ba6d6488a07792e47882e191f8eda05b6b261d9a972bf7f92f160d4a5fbbcc216ed7ffda32fcfee6ed
|
||||
|
||||
@@ -1,84 +0,0 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 8085e0a..eaae8ce 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -23,10 +23,10 @@ SET (CMAKE_VERBOSE_MAKEFILE ON)
|
||||
|
||||
#############################################################
|
||||
# Enable warnings and treat them as errors
|
||||
-SET (PEDANTIC TRUE CACHE BOOL "Should we compile with -Wall -Werror.")
|
||||
+SET (PEDANTIC TRUE CACHE BOOL "Should we compile with -Wall.")
|
||||
|
||||
IF (PEDANTIC)
|
||||
- ADD_DEFINITIONS (-Wall -Werror)
|
||||
+ ADD_DEFINITIONS (-Wall)
|
||||
ENDIF (PEDANTIC)
|
||||
|
||||
#############################################################
|
||||
@@ -51,9 +51,9 @@ ENDIF (WIN32)
|
||||
IF (UNIX AND NOT APPLE)
|
||||
SET (MASSXPERT_BIN_DIR ${CMAKE_INSTALL_PREFIX}/bin)
|
||||
SET (MASSXPERT_DATA_DIR ${CMAKE_INSTALL_PREFIX}/share/massxpert)
|
||||
- SET (MASSXPERT_PLUGIN_DIR ${CMAKE_INSTALL_PREFIX}/lib/massxpert/plugins)
|
||||
+ SET (MASSXPERT_PLUGIN_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/massxpert/plugins)
|
||||
SET (MASSXPERT_LOCALE_DIR ${CMAKE_INSTALL_PREFIX}/share/massxpert/locales)
|
||||
- SET (MASSXPERT_DOC_DIR ${CMAKE_INSTALL_PREFIX}/share/doc/massxpert)
|
||||
+ SET (MASSXPERT_DOC_DIR ${CMAKE_INSTALL_PREFIX}/share/doc/massxpert-${VERSION})
|
||||
SET (MASSXPERT_USERMAN_DIR ${MASSXPERT_DOC_DIR}/usermanual)
|
||||
ENDIF (UNIX AND NOT APPLE)
|
||||
|
||||
@@ -122,10 +122,6 @@ IF (${BUILD_PROGRAM})
|
||||
###############
|
||||
# install stuff
|
||||
|
||||
- # The license file
|
||||
- INSTALL (FILES COPYING
|
||||
- DESTINATION ${MASSXPERT_DOC_DIR})
|
||||
-
|
||||
# The desktop file
|
||||
IF (UNIX AND NOT APPLE)
|
||||
INSTALL (FILES massxpert.desktop
|
||||
@@ -165,10 +161,6 @@ IF (${BUILD_DATA})
|
||||
###############
|
||||
# install stuff
|
||||
|
||||
- # The license file
|
||||
- INSTALL (FILES COPYING
|
||||
- DESTINATION ${MASSXPERT_DOC_DIR})
|
||||
-
|
||||
# The manual pages (data)
|
||||
IF (UNIX AND NOT APPLE)
|
||||
INSTALL (FILES massxpert-data.7
|
||||
@@ -201,10 +193,6 @@ IF (${BUILD_USERMANUAL})
|
||||
###############
|
||||
# install stuff
|
||||
|
||||
- # The license file
|
||||
- INSTALL (FILES COPYING
|
||||
- DESTINATION ${MASSXPERT_DOC_DIR})
|
||||
-
|
||||
# The manual pages (user manual)
|
||||
IF (UNIX AND NOT APPLE)
|
||||
INSTALL (FILES massxpert-doc.7
|
||||
diff --git a/gui/configurationSettingsDlg.cpp b/gui/configurationSettingsDlg.cpp
|
||||
index bf595d5..82cad21 100644
|
||||
--- a/gui/configurationSettingsDlg.cpp
|
||||
+++ b/gui/configurationSettingsDlg.cpp
|
||||
@@ -309,13 +309,11 @@ namespace massXpert
|
||||
bool
|
||||
ConfigurationSettingsDlg::checkLocalizationDir(const QDir &dir)
|
||||
{
|
||||
- // At the moment there is the french translation: massxpert_fr.qm
|
||||
+ // Gentoo provides optional installing of translations.
|
||||
+ // If you decide not to have translations, then this check
|
||||
+ // would fail.
|
||||
|
||||
- QString filePath(dir.absolutePath() +
|
||||
- QDir::separator() +
|
||||
- "massxpert_fr.qm");
|
||||
-
|
||||
- return QFile::exists(filePath);
|
||||
+ return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,56 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI="2"
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="A software suite to predict/analyze mass spectrometric data on (bio)polymers"
|
||||
HOMEPAGE="http://massxpert.org"
|
||||
SRC_URI="http://download.tuxfamily.org/${PN}/source/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="debug doc"
|
||||
|
||||
RDEPEND="dev-qt/qtsvg:4[debug?]"
|
||||
DEPEND="${DEPEND}
|
||||
doc? ( virtual/latex-base )"
|
||||
|
||||
MASSXPERT_LANGS="fr"
|
||||
|
||||
for L in ${MASSXPERT_LANGS}; do
|
||||
IUSE="${IUSE} linguas_${L}"
|
||||
done
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${P}-gentoo.patch"
|
||||
|
||||
local langs=
|
||||
for lingua in ${LINGUAS}; do
|
||||
if has ${lingua} ${MASSXPERT_LANGS}; then
|
||||
langs="${langs} ${PN}_${lingua}.qm"
|
||||
fi
|
||||
done
|
||||
|
||||
sed -i -e "s/\(SET (massxpert_TRANSLATIONS \).*/\1${langs})/" \
|
||||
gui/CMakeLists.txt || die "setting up translations failed"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_PROGRAM=1
|
||||
-DBUILD_DATA=1
|
||||
)
|
||||
use doc && mycmakeargs+=( -DBUILD_USERMANUAL=1 )
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
doicon "gui/images/${PN}-icon-32.xpm" || die "installing icon failed"
|
||||
dodoc TODO || die "dodoc failed"
|
||||
}
|
||||
Reference in New Issue
Block a user