summaryrefslogtreecommitdiff
path: root/app-office/plan
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-09-16 22:05:01 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-09-16 22:05:01 +0100
commitcc4618c9ba3d974948ebf340b542d8cb01db2f55 (patch)
tree125ee67bb9e0d548771cf7b61d04bb1f0dc57687 /app-office/plan
parent677b7ba5c317778df2ad7e70df94b9b7eec4adbc (diff)
gentoo resync : 16.09.2021
Diffstat (limited to 'app-office/plan')
-rw-r--r--app-office/plan/Manifest4
-rw-r--r--app-office/plan/metadata.xml5
-rw-r--r--app-office/plan/plan-1.10.ebuild65
3 files changed, 0 insertions, 74 deletions
diff --git a/app-office/plan/Manifest b/app-office/plan/Manifest
deleted file mode 100644
index e459ad4105cf..000000000000
--- a/app-office/plan/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST plan-1.10-patches.txz 6132 BLAKE2B 617c68a012e4757f7ef039557cfe15e04706129501f044005e554a50aa9ebbe9e33e2e406ec5647060a7b67efb81b671c35eb6846d426a26c517c38b10e7eabb SHA512 c0802f12e935d7ab18d89b6c4e8ae8373ca620b8149520b8bc9d9fb8e871ad4c2b0bc0e7ca84c34e72d0a25cb406af51fac1fc1907844867f4fd7fdff8a06d54
-DIST plan-1.10.tar.gz 460150 BLAKE2B a44c79537ff6aae8fa5c65c8b6514f0f37d1417522f4e54823ad14cf6306bb88223377de13f22c365516e2861fa561902e31245c9729786f425140bed30b320d SHA512 fde17ef17f25412cbe69427364f4130564f46a940859066c25d837d14eca6920752b843211192a6c1cdc83be05de9ac57c88424ca555928b67eb219fa8564fe8
-EBUILD plan-1.10.ebuild 1495 BLAKE2B 370173539537d06515024aa34377a6d6e3bb762d020b33c55e4de5e70b5dba45ca0f19b77e0cefb2ae71ecb47660873c3c2dab6d38d04c3f3ca3b36a8bf98683 SHA512 087c4ebdecfcd9cfb469b0e4ab7d9a088564e450e5290c716d729a86166aa3187b94deb814574eb49abdd85a1f8ddb23473e41808ba6c2ec688c36ef2d2744bd
-MISC metadata.xml 167 BLAKE2B e4dadf27fd344484f2bccb5b904909c89aac568c32e5b3c44bdf139eacefd4b4fae74419f503d2b7da0dccc1b68ba05d777d11292c0f89270d1ac5c9c703e8ca SHA512 7c8decb24ee3a850e38186cf3c7f8933a28017426806870ad6ef9ceb2533be147a2681fc789b535a81cb528af8c29d90d3006e4f250aee23bd7dea4561294e33
diff --git a/app-office/plan/metadata.xml b/app-office/plan/metadata.xml
deleted file mode 100644
index 7a38bb900964..000000000000
--- a/app-office/plan/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/app-office/plan/plan-1.10.ebuild b/app-office/plan/plan-1.10.ebuild
deleted file mode 100644
index e16129ffdb18..000000000000
--- a/app-office/plan/plan-1.10.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Motif based schedule planner"
-HOMEPAGE="https://www.bitrot.de/plan.html"
-SRC_URI="
- ftp://ftp.fu-berlin.de/unix/X11/apps/plan/${P}.tar.gz
- https://dev.gentoo.org/~soap/distfiles/${P}-patches.txz"
-
-LICENSE="GPL-2+" #448646
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
-
-RDEPEND="
- x11-libs/libX11
- x11-libs/libXt
- x11-libs/motif:0"
-DEPEND="${RDEPEND}"
-BDEPEND="
- sys-devel/bison
- sys-devel/flex"
-
-PATCHES=( "${WORKDIR}"/patches )
-
-src_compile() {
- emake -C src CC="$(tc-getCC)" SHARE=/usr/share/plan linux
-}
-
-src_install() {
- emake -C src \
- DESTDIR="${ED}" \
- SHARE=/usr/share/plan \
- install
- keepdir /usr/share/plan/netplan.dir
-
- dodoc HISTORY README
-
- pushd misc >/dev/null || die
- doman netplan.1 plan.1 plan.4
- insinto /usr/share/${PN}/misc
- doins netplan.boot BlackWhite Monochrome plan.fti Plan.xpm plan.xpm
- exeinto /usr/share/${PN}/misc
- doexe Killpland cvs vsc msschedule2plan plan2vcs
- popd >/dev/null || die
-
- pushd web >/dev/null || die
- insinto /usr/share/${PN}/web
- doins help.html bottom.html cgi-lib.pl common.pl holiday_webplan rtsban.jpg
- exeinto /usr/share/${PN}/web
- doexe *.cgi
- popd >/dev/null || die
-}
-
-pkg_postinst() {
- elog
- elog " Check /usr/share/${PN}/holiday for examples to set your"
- elog " ~/.holiday according to your country."
- elog
- elog " WebPlan ${PV} can be found in /usr/share/${PN}/web."
- elog
-}