diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-29 17:30:36 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-29 17:32:25 +0100 |
commit | 56d213fa951b11c0bbb574b9391ff3c0f9fbb575 (patch) | |
tree | cc1351612d605f3fedd609b20591f4dc09cfd211 /app-editors | |
parent | www-client/qutebrowser: use xdg-utils eclass (diff) | |
download | gentoo-56d213fa951b11c0bbb574b9391ff3c0f9fbb575.tar.gz gentoo-56d213fa951b11c0bbb574b9391ff3c0f9fbb575.tar.bz2 gentoo-56d213fa951b11c0bbb574b9391ff3c0f9fbb575.zip |
app-editors/juffed: Drop old, qscintilla[qt4]-rdep
A snapshot remains, at ~arch.
Closes: https://bugs.gentoo.org/527562
Package-Manager: Portage-2.3.13, Repoman-2.3.4
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/juffed/Manifest | 1 | ||||
-rw-r--r-- | app-editors/juffed/files/0.10-link-libjuff-against-libenca.patch | 24 | ||||
-rw-r--r-- | app-editors/juffed/juffed-0.10-r1.ebuild | 44 |
3 files changed, 0 insertions, 69 deletions
diff --git a/app-editors/juffed/Manifest b/app-editors/juffed/Manifest index 17ac4b5aa2a7..3e3176cc4126 100644 --- a/app-editors/juffed/Manifest +++ b/app-editors/juffed/Manifest @@ -1,2 +1 @@ -DIST juffed-0.10-1054.tar.bz2 1657118 SHA256 ac58d32acaf9d60e4758e9ae05b1a6b7fc0cb7ecd3b207db769dbb9c747be16c SHA512 023e9fca1f02fdb39645bd41700c7481fe8d6ae08ec62b0bf5ba58f627eb6872f96d27f05eae4bc92d90fd204dd0c30f868c858de873ab6511ac21748254b47c WHIRLPOOL ceb9e0dc9100dd5f2578abc14fff336adf664726d8e347f9832ffc4942c36e6e28aaff931fd528e6f572bcb29e4027ee486a82ee93d216d0751b5d8aa4233f6c DIST juffed-0.10_p20160323.tar.gz 1617451 SHA256 15d84bbda71cc8f44f7e0f2c114609859ca90602e86e40f00394d372ab87b5cf SHA512 a49837b199db35c5e7a7580aa4025a2c056b55cef6e98e22f239fc9e455cde3a451d6a0971fb02697c63f3f156d85aaf8021ea13ea3a9e6867ae419f772484b5 WHIRLPOOL 1aac9f820fd842890784979436a7e5afe706af62bcbaf6d5d837749ab26bae79ed5b4d10bc833351f8b2eafd1760f86e3f7f1ca51774a282ffdd85482152c68b diff --git a/app-editors/juffed/files/0.10-link-libjuff-against-libenca.patch b/app-editors/juffed/files/0.10-link-libjuff-against-libenca.patch deleted file mode 100644 index 5bd3882309ae..000000000000 --- a/app-editors/juffed/files/0.10-link-libjuff-against-libenca.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index ccad5d1..304c0aa 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -190,6 +190,9 @@ add_library ( ${JUFFLIB} SHARED - target_link_libraries ( ${JUFFLIB} - ${QT_LIBRARIES} - ) -+if (ENCA_FOUND) -+ target_link_libraries( ${JUFFLIB} ${ENCA_LIBRARIES} ) -+endif (ENCA_FOUND) - - add_library ( ${QSCI_ENGINE} SHARED - ${juffed_qsci_SRCS} -@@ -277,9 +280,6 @@ target_link_libraries ( ${JUFFED} - ${QT_LIBRARIES} - ${QT_QTNETWORK_LIBRARY} - ) --if (ENCA_FOUND) -- target_link_libraries( ${JUFFED} ${ENCA_LIBRARIES} ) --endif (ENCA_FOUND) - - if ( UNIX ) - set(CMAKE_CXX_FLAGS "-Wall -Werror -Wextra") diff --git a/app-editors/juffed/juffed-0.10-r1.ebuild b/app-editors/juffed/juffed-0.10-r1.ebuild deleted file mode 100644 index 66870bccf3c3..000000000000 --- a/app-editors/juffed/juffed-0.10-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils - -DESCRIPTION="QScintilla-based tabbed text editor with syntax highlighting" -HOMEPAGE="http://juffed.com/en/" -SRC_URI="mirror://sourceforge/${PN}/${P}-1054.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86" -IUSE="debug" - -RDEPEND=" - app-i18n/enca - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtsingleapplication[qt4(+),X] - x11-libs/qscintilla:=[qt4(-)] -" -DEPEND="${RDEPEND}" - -DOCS=( ChangeLog README ) - -PATCHES=( - # bug 540554 - "${FILESDIR}/0.10-link-libjuff-against-libenca.patch" -) - -src_prepare() { - cmake-utils_src_prepare - - sed -i -e '/set(CMAKE_CXX_FLAGS/d' CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DUSE_SYSTEM_QTSINGLEAPPLICATION=ON - ) - cmake-utils_src_configure -} |