summaryrefslogtreecommitdiff
path: root/community-testing/gphpedit
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/gphpedit')
-rw-r--r--community-testing/gphpedit/PKGBUILD33
-rw-r--r--community-testing/gphpedit/doc-fix.patch20
-rw-r--r--community-testing/gphpedit/gphpedit.install11
3 files changed, 0 insertions, 64 deletions
diff --git a/community-testing/gphpedit/PKGBUILD b/community-testing/gphpedit/PKGBUILD
deleted file mode 100644
index 83287457c..000000000
--- a/community-testing/gphpedit/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 44458 2011-04-07 16:24:21Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: tobias <tobias@archlinux.org>
-# Contributor: Tobias Kieslich <tobias@justdreams.de>
-
-pkgname=gphpedit
-pkgver=0.9.98RC1
-pkgrel=2
-pkgdesc="a scintilla/gnome based editor specialized on php-files"
-arch=(i686 x86_64)
-license=('GPL')
-depends=('libgnomeui>=2.18.1-2' 'libgtkhtml>=2.11.0' 'desktop-file-utils' 'libwebkit')
-url="http://www.gphpedit.org/"
-options=('!makeflags')
-install=gphpedit.install
-source=(http://www.gphpedit.org/sites/default/files/gphpedit-$pkgver.tar.gz
- doc-fix.patch)
-md5sums=('cc3c5f50704fa0ed3ef3d4ac983db525'
- 'db5e427642af2971accbcd90812ae88c')
-
-build() {
- cd ${srcdir}/*$pkgname*
-# patch -Np1 -i ${srcdir}/doc-fix.patch
-
- ./autogen.sh
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
- make
- make DESTDIR=$pkgdir install
-
- # extend MimeType declaration
- echo "MimeType=application/x-php;text-x-php-text/x-php-source;" >> \
- $pkgdir/usr/share/applications/gphpedit.desktop
-}
diff --git a/community-testing/gphpedit/doc-fix.patch b/community-testing/gphpedit/doc-fix.patch
deleted file mode 100644
index 42dae5f72..000000000
--- a/community-testing/gphpedit/doc-fix.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- gphpedit-0.9.91/src/tab.c.orig 2008-07-08 00:21:04.000000000 +0200
-+++ gphpedit-0.9.91/src/tab.c 2008-07-08 00:20:50.000000000 +0200
-@@ -562,6 +562,17 @@
- if (long_filename)
- return long_filename;
-
-+ // For ArchLinux - KISS ;)
-+ long_filename = tab_help_try_filename("/usr/share/doc/php/html/function.", command, ".html");
-+ if (long_filename)
-+ return long_filename;
-+ long_filename = tab_help_try_filename("/usr/share/doc/php/html/ref.", command, ".html");
-+ if (long_filename)
-+ return long_filename;
-+ long_filename = tab_help_try_filename("/usr/share/doc/php/html/", command, NULL);
-+ if (long_filename)
-+ return long_filename;
-+
- // For Gentoo, as much as I love it - it's twatty to put docs in a version specific folder like this!
- long_filename = tab_help_try_filename("/usr/doc/php-docs-200403/html/function.", command, ".html");
- if (long_filename)
diff --git a/community-testing/gphpedit/gphpedit.install b/community-testing/gphpedit/gphpedit.install
deleted file mode 100644
index 39bc96919..000000000
--- a/community-testing/gphpedit/gphpedit.install
+++ /dev/null
@@ -1,11 +0,0 @@
-post_install() {
- update-desktop-database -q
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install
-}