summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/plcedit/Manifest1
-rw-r--r--sci-electronics/plcedit/files/plcedit-2.2.1-gcc47.patch15
-rw-r--r--sci-electronics/plcedit/metadata.xml8
-rw-r--r--sci-electronics/plcedit/plcedit-2.2.1.ebuild42
4 files changed, 0 insertions, 66 deletions
diff --git a/sci-electronics/plcedit/Manifest b/sci-electronics/plcedit/Manifest
deleted file mode 100644
index 3f1e26cfca6e..000000000000
--- a/sci-electronics/plcedit/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST plcedit-2.2.1.tar.gz 2855243 BLAKE2B 8470c587afc647d765fac304b32f1ae3e1ac69005bfa144004f4c861f65d66caac1b7f669da430ceddd73538176c8f061217a77e893dbc108fe563432eceaf5d SHA512 dee6dedd6b7fcd979311fa25e694b53eb9588bf713b9638a3e1355a155c467974c5cc41c4375d4f9f104e9c850024ba51a643011a107e21abbfbfc38c2dae7c2
diff --git a/sci-electronics/plcedit/files/plcedit-2.2.1-gcc47.patch b/sci-electronics/plcedit/files/plcedit-2.2.1-gcc47.patch
deleted file mode 100644
index 046a27cbac8c..000000000000
--- a/sci-electronics/plcedit/files/plcedit-2.2.1-gcc47.patch
+++ /dev/null
@@ -1,15 +0,0 @@
- https://bugs.gentoo.org/450856
-
- src/singleapp/qtlocalpeer.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
---- a/src/singleapp/qtlocalpeer.cpp
-+++ b/src/singleapp/qtlocalpeer.cpp
-@@ -57,6 +57,7 @@ static PProcessIdToSessionId pProcessIdToSessionId = 0;
- #endif
- #if defined(Q_OS_UNIX)
- #include <time.h>
-+#include <unistd.h>
- #endif
-
- namespace QtLP_Private {
diff --git a/sci-electronics/plcedit/metadata.xml b/sci-electronics/plcedit/metadata.xml
deleted file mode 100644
index 18e140956483..000000000000
--- a/sci-electronics/plcedit/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>hwoarang@gentoo.org</email>
- <name>Markos Chandras</name>
- </maintainer>
-</pkgmetadata>
diff --git a/sci-electronics/plcedit/plcedit-2.2.1.ebuild b/sci-electronics/plcedit/plcedit-2.2.1.ebuild
deleted file mode 100644
index 7fbbd69f7560..000000000000
--- a/sci-electronics/plcedit/plcedit-2.2.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils versionator qt4-r2
-MY_PN="PLCEdit"
-
-DESCRIPTION="Qt4 notepad for PLC programming"
-HOMEPAGE="http://www.qt-apps.org/content/show.php/PLCEdit?content=78380"
-#upstreams default tarball is quite messy. Better repack it myself :/
-SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug doc"
-
-RDEPEND="dev-qt/qtgui:4"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc47.patch
-
- if use doc; then
- sed -i -e "/helpDir =/s:Help:html:" \
- -e "s:(QApplication\:\:applicationDirPath():\"/usr/share/doc/${PF}\":g" \
- -e "/ + helpDir/s:helpDir):helpDir:" \
- src/helpwidget.cpp
- fi
- qt4-r2_src_prepare
-}
-
-src_install() {
- newbin release/${MY_PN} ${PN} || die "dobin failed"
- newicon src/ressources/images/icon.png ${PN}.png
- make_desktop_entry ${PN} ${MY_PN} ${PN} 'Qt;Electronics'
- dodoc readme.txt || die "dodoc failed"
- if use doc; then
- dohtml -r Docs/html/* || die "dohtml failed"
- fi
-}