summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-20 16:13:30 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-20 16:43:29 +0100
commit642ed91d0bea4271dad13c2d11e09916a7035679 (patch)
treef13274da8f61ff149a4902782eecf1d90bc3790f
parentd5a8b71a0768579bfbab5b6bc91b2445069282d1 (diff)
downloadabslibre-642ed91d0bea4271dad13c2d11e09916a7035679.tar.gz
abslibre-642ed91d0bea4271dad13c2d11e09916a7035679.tar.bz2
abslibre-642ed91d0bea4271dad13c2d11e09916a7035679.zip
pcr/theide: removed
-rw-r--r--pcr/theide/PKGBUILD54
-rw-r--r--pcr/theide/license.txt9
-rw-r--r--pcr/theide/theide.install3
3 files changed, 0 insertions, 66 deletions
diff --git a/pcr/theide/PKGBUILD b/pcr/theide/PKGBUILD
deleted file mode 100644
index 215b4493b..000000000
--- a/pcr/theide/PKGBUILD
+++ /dev/null
@@ -1,54 +0,0 @@
-# Contributor (Arch): Jan Dolinar <dolik.rce@gmail.com>
-# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>
-
-pkgname=theide
-pkgver=5485
-pkgrel=1
-pkgdesc="Modern IDE designed for developping large U++/C++ applications"
-arch=('i686' 'x86_64')
-url="http://www.ultimatepp.org"
-license=('BSD')
-groups=()
-depends=('gtk2' 'libnotify' 'desktop-file-utils')
-makedepends=()
-provides=('theide')
-conflicts=('theide')
-replaces=()
-backup=()
-options=(!makeflags emptydirs)
-install='theide.install'
-source=('http://downloads.sourceforge.net/project/upp/upp/'$pkgver'/upp-x11-src-'$pkgver'.tar.gz'
- 'http://upp-mirror.googlecode.com/svn-history/r'$pkgver'/trunk/uppbox/lpbuild2/mkfile'
- 'http://upp-mirror.googlecode.com/svn-history/r'$pkgver'/trunk/uppbox/lpbuild2/theide.1'
- 'http://upp-mirror.googlecode.com/svn-history/r'$pkgver'/trunk/uppbox/lpbuild2/umk.1'
- 'license.txt')
-noextract=()
-
-build() {
- cd "$srcdir/upp-x11-src-$pkgver"
- #build
- echo "#define IDE_VERSION \"$pkgver-Arch-$(uname -m)\"" > "uppsrc/ide/version.h"
- msg2 "Building $pkgname..."
- make -f "$srcdir/mkfile" PKG=umk FLAGS="GCC" NESTS="uppsrc" TIME= COLOR=0 USEMAINCFG=0 JOBS=5 ECHO=0 TARGET="$srcdir/umk"
- make -f "$srcdir/mkfile" PKG=ide FLAGS="GCC GUI" NESTS="uppsrc" TIME= COLOR=0 USEMAINCFG=0 JOBS=5 ECHO=0 TARGET="$srcdir/theide"
-}
-
-package(){
- #license
- install -D "$srcdir/license.txt" "$pkgdir/usr/share/licenses/$pkgname/license.txt"
- #man pagess
- install -D "$srcdir/theide.1" "$pkgdir/usr/share/man/man1/theide.1"
- install -D "$srcdir/umk.1" "$pkgdir/usr/share/man/man1/umk.1"
- #desktop entry
- install -D "$srcdir/upp-x11-src-$pkgver/uppsrc/ide/theide.desktop" "$pkgdir/usr/share/applications/theide.desktop"
- #icon
- install -D "$srcdir/upp-x11-src-$pkgver/uppsrc/ide/theide-48.png" "$pkgdir/usr/share/pixmaps/theide.png"
- #fix permissions
- find "$pkgdir/usr/" -print0 | xargs -0 chown root:root
- find "$pkgdir/usr/" -type f -print0 | xargs -0 chmod 644
- find "$pkgdir/usr/" -type d -print0 | xargs -0 chmod 755
- #install applications
- install -D "$srcdir/umk" "$pkgdir/usr/bin/umk"
- install -D "$srcdir/theide" "$pkgdir/usr/bin/theide"
-}
-
diff --git a/pcr/theide/license.txt b/pcr/theide/license.txt
deleted file mode 100644
index 6cea058a6..000000000
--- a/pcr/theide/license.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Copyright (C) 2010 Mirek Fidler, Tomas Rylek and various contributors (see AUTHORS)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies of the Software and its Copyright notices. In addition publicly documented acknowledgment must be given that this software has been used if no source code of this software is made available publicly. This includes
-acknowledgments in either Copyright notices, Manuals, Publicity and Marketing documents or any documentation provided with any product containing this software. This License does not apply to any software that links to the libraries provided by this software (statically or dynamically), but only to
-the software provided.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/pcr/theide/theide.install b/pcr/theide/theide.install
deleted file mode 100644
index 5e16c038a..000000000
--- a/pcr/theide/theide.install
+++ /dev/null
@@ -1,3 +0,0 @@
-post_install() {
- update-desktop-database -q
-}