summaryrefslogtreecommitdiffstats
path: root/development/monodevelop
diff options
context:
space:
mode:
Diffstat (limited to 'development/monodevelop')
-rw-r--r--development/monodevelop/README14
-rw-r--r--development/monodevelop/doinst.sh14
-rw-r--r--development/monodevelop/fix-nuget-mgm.patch12
-rw-r--r--development/monodevelop/monodevelop.SlackBuild123
-rw-r--r--development/monodevelop/monodevelop.info10
-rw-r--r--development/monodevelop/slack-desc19
-rw-r--r--development/monodevelop/srcpkg/makepkg.sh83
7 files changed, 0 insertions, 275 deletions
diff --git a/development/monodevelop/README b/development/monodevelop/README
deleted file mode 100644
index e079b6a90e..0000000000
--- a/development/monodevelop/README
+++ /dev/null
@@ -1,14 +0,0 @@
-MonoDevelop is a cross-platform IDE primarily designed for C# and
-other .NET languages. MonoDevelop enables developers to quickly write
-desktop and ASP.NET Web applications on Linux, Windows and Mac OSX.
-MonoDevelop makes it easy for developers to port .NET applications
-created with Visual Studio to Linux and Mac OSX maintaining a single
-code base for all platforms.
-
-Note: oxygen-gtk causes MonoDevelop source editor to be blank.
-A workaround is to use a different GTK2 Theme; Adwaita,
-Oxygen-Molecule, QtCurve, etc.
-Another workaround is to set OXYGEN_DISABLE_INNER_SHADOWS_HACK=1
-environment variable.
-
-This script will build with GIT support alongside with default SVN.
diff --git a/development/monodevelop/doinst.sh b/development/monodevelop/doinst.sh
deleted file mode 100644
index 0fb9c8b686..0000000000
--- a/development/monodevelop/doinst.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -x /usr/bin/update-mime-database ]; then
- /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
diff --git a/development/monodevelop/fix-nuget-mgm.patch b/development/monodevelop/fix-nuget-mgm.patch
deleted file mode 100644
index 17a83aab11..0000000000
--- a/development/monodevelop/fix-nuget-mgm.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur monodevelop.old/main/monodevelop.desktop monodevelop/main/monodevelop.desktop
---- monodevelop.old/main/monodevelop.desktop 2017-04-12 10:50:03.000000000 -0300
-+++ monodevelop/main/monodevelop.desktop 2017-07-09 19:04:01.306846766 -0300
-@@ -6,7 +6,7 @@
- GenericName[ja]=統合開発環境
- Comment=Develop .NET applications in an Integrated Development Environment
- Comment[ja]=.NETアプリケーション開発を行うための統合開発環境
--Exec=monodevelop %F
-+Exec=env MONO_TLS_PROVIDER=legacy monodevelop %F
- TryExec=monodevelop
- Icon=monodevelop
- StartupNotify=true
diff --git a/development/monodevelop/monodevelop.SlackBuild b/development/monodevelop/monodevelop.SlackBuild
deleted file mode 100644
index b3044ca62b..0000000000
--- a/development/monodevelop/monodevelop.SlackBuild
+++ /dev/null
@@ -1,123 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for MonoDevelop
-
-# Written by Andre Barboza <bmg.andre@gmail.com>
-
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=monodevelop
-VERSION=${VERSION:-6.3.0.864}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-mkdir $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 --strip-components 1 -C $PRGNAM-$VERSION
-cd $PRGNAM-$VERSION
-
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-# https://bugzilla.xamarin.com/show_bug.cgi?id=57019
-patch -p 1 < ${CWD}/fix-nuget-mgm.patch
-
-pushd main
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --enable-release \
- --enable-git \
- --disable-update-mimedb \
- --disable-update-desktopdb
-
-make -j1
-make install DESTDIR=$PKG
-
-# Fix pkg-config prefix
-if [ "$ARCH" = "x86_64" ]; then
- mkdir -p $PKG/usr/lib64
- mv $PKG/usr/lib/pkgconfig $PKG/usr/lib64/pkgconfig
-fi
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING TUTORIALS README $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/development/monodevelop/monodevelop.info b/development/monodevelop/monodevelop.info
deleted file mode 100644
index 6e70cd6348..0000000000
--- a/development/monodevelop/monodevelop.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="monodevelop"
-VERSION="6.3.0.864"
-HOMEPAGE="http://monodevelop.com/"
-DOWNLOAD="http://sourceforge.net/projects/slackbuildsdirectlinks/files/monodevelop/monodevelop-6.3.0.864.tar.bz2"
-MD5SUM="24591aefcf745f511d83513ef211d374"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="gnome-sharp nuget fsharp referenceassemblies-pcl"
-MAINTAINER="Andre Barboza"
-EMAIL="bmg.andre@gmail.com"
diff --git a/development/monodevelop/slack-desc b/development/monodevelop/slack-desc
deleted file mode 100644
index a349edef32..0000000000
--- a/development/monodevelop/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-monodevelop: monodevelop (IDE for .NET languages)
-monodevelop:
-monodevelop: MonoDevelop is a cross-platform IDE primarily designed for C# and
-monodevelop: other .NET languages. MonoDevelop enables developers to quickly write
-monodevelop: desktop and ASP.NET Web applications on Linux, Windows and Mac OSX.
-monodevelop: MonoDevelop makes it easy for developers to port .NET applications
-monodevelop: created with Visual Studio to Linux and Mac OSX maintaining a single
-monodevelop: code base for all platforms.
-monodevelop:
-monodevelop: Homepage: http://monodevelop.com/
-monodevelop:
diff --git a/development/monodevelop/srcpkg/makepkg.sh b/development/monodevelop/srcpkg/makepkg.sh
deleted file mode 100644
index ccb2e3dc18..0000000000
--- a/development/monodevelop/srcpkg/makepkg.sh
+++ /dev/null
@@ -1,83 +0,0 @@
-#! /bin/bash
-
-# Written by Andre Barboza <bmg.andre@gmail.com>
-
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-PRGNAM=monodevelop
-VERSION=${VERSION:-6.3.0.864}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo/sources}
-OUTPUT=${OUTPUT:-/tmp}
-
-set -e
-
-mkdir -p $TMP
-cd $TMP
-
-if [ ! -d "$PRGNAM" ]; then
- git clone https://github.com/mono/monodevelop.git
-else
- pushd $PRGNAM
- git clean -dfx
- git reset --hard
- git submodule foreach --recursive git reset --hard
- git submodule foreach --recursive git clean -dfx
- git fetch
- popd #$PRGNAM
-fi
-
-cd $PRGNAM
-git submodule update --init --recursive
-git checkout tags/${PRGNAM}-${VERSION}
-scripts/configure.sh gen-buildinfo main
-
-./configure \
- --profile=stable \
- --enable-release \
- --prefix=/usr
-
-pushd main
- nuget restore
-
- for top_dir in external contrib src/addins src/core
- do
- pushd $top_dir
- find . -type d -maxdepth 1 |
- while read dir
- do
- pushd $dir
- nuget restore || :
- popd #$dir
- done
- popd #$top_dir
- done
-
- pushd external/fsharpbinding
- mono .paket/paket.bootstrapper.exe
- popd
-popd #main
-
-cd $TMP
-tar -cvjf $OUTPUT/$PRGNAM-$VERSION.tar.bz2 \
- --exclude $PRGNAM/.git \
- --exclude $PRGNAM/*.gitted \
- --ignore-case --exclude $PRGNAM/*/resources/*.git \
- --ignore-case --exclude $PRGNAM/*/resources/*dot_git \
- $PRGNAM