mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
MonoDevelop is a free GNOME integrated development environment (IDE)
primarily designed for C# and other .NET languages. The main features of MonoDevelop are: * Code Completion * Class Management * Built-in Help * Project Support * Add-ins PR: 117545 Submitted by: Romain Tartiere <romain at blogreen.org> (latest version)
This commit is contained in:
parent
1f1c71e610
commit
3fb3b0682c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=240995
devel
Makefile
monodevelop
Makefiledistinfo
files
patch-LibApr.cspatch-LibSvnClient.cspatch-SystemAssemblyService.cspatch-WelcomePageContent.xmlpatch-src_addins_CBinding_Navigation_ProjectNodeBuilderExtension.cspatch-src_addins_CBinding_Parser_TagDatabaseManager.cspatch-src_addins_MonoDevelop.Autotools_SolutionDeployer.cspatch-src_core_MonoDevelop.Projects_MonoDevelop.Projects.dll.configpatch-theme-icons_icon-theme-installer
pkg-descrpkg-plist@ -869,6 +869,7 @@
|
||||
SUBDIR += mob
|
||||
SUBDIR += mono-addins
|
||||
SUBDIR += mono-tools
|
||||
SUBDIR += monodevelop
|
||||
SUBDIR += monotone
|
||||
SUBDIR += monotone-viz
|
||||
SUBDIR += motor
|
||||
|
59
devel/monodevelop/Makefile
Normal file
59
devel/monodevelop/Makefile
Normal file
@ -0,0 +1,59 @@
|
||||
# New ports collection makefile for: monodevelop
|
||||
# Date created: 20040906
|
||||
# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
# $Id: Makefile,v 1.48 2007/11/07 20:30:04 killfill Exp $
|
||||
#
|
||||
|
||||
PORTNAME= monodevelop
|
||||
PORTVERSION= 2.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://ftp.novell.com/pub/mono/sources/${PORTNAME}/
|
||||
|
||||
MAINTAINER= mono@FreeBSD.org
|
||||
COMMENT= IDE for the .NET platform
|
||||
|
||||
BUILD_DEPENDS= mautil:${PORTSDIR}/devel/mono-addins \
|
||||
update-desktop-database:${PORTSDIR}/devel/desktop-file-utils
|
||||
RUN_DEPENDS= ${LOCALBASE}/lib/libgdiplus.a:${PORTSDIR}/x11-toolkits/libgdiplus \
|
||||
exctags:${PORTSDIR}/devel/ctags \
|
||||
mautil:${PORTSDIR}/devel/mono-addins
|
||||
|
||||
USE_GNOME= gnometarget gnomehack gtksharp20 gnomesharp20
|
||||
USE_GMAKE= yes
|
||||
USE_AUTOTOOLS= libtool:22
|
||||
USE_BZIP2= yes
|
||||
CONFIGURE_ARGS+= DATADIRNAME=share GMSGFMT=msgfmt \
|
||||
--enable-aspnet --enable-aspnetedit
|
||||
MAN1= mdtool.1 monodevelop.1
|
||||
USE_GETTEXT= yes
|
||||
INSTALLS_ICONS= yes
|
||||
|
||||
OPTIONS= SVN "Enable subversion support" on
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if !defined(WITHOUT_SVN)
|
||||
RUN_DEPENDS+= svn:${PORTSDIR}/devel/subversion
|
||||
CONFIGURE_ARGS+= --enable-subversion
|
||||
PLIST_SUB+= SVN=""
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-subversion
|
||||
PLIST_SUB+= SVN="@comment "
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|[(]gnome_data[)]/mime$$|(prefix)/share/mime|g ; \
|
||||
s|[(]gnome_data[)]/mime/packages$$|(prefix)/share/mime/packages|g ; \
|
||||
s|[(]prefix[)]/lib/pkgconfig|(prefix)/libdata/pkgconfig|g' \
|
||||
${WRKSRC}/Makefile.in
|
||||
@${REINPLACE_CMD} -e 's|/bin/bash|/usr/bin/env bash|' \
|
||||
${WRKSRC}/monodevelop.in \
|
||||
${WRKSRC}/mdtool.in
|
||||
|
||||
post-install:
|
||||
@-update-desktop-database
|
||||
|
||||
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
|
||||
.include <bsd.port.post.mk>
|
3
devel/monodevelop/distinfo
Normal file
3
devel/monodevelop/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (monodevelop-2.0.tar.bz2) = 0f527204ffd4785284d9556a75524c3e
|
||||
SHA256 (monodevelop-2.0.tar.bz2) = 573fd6dda40f6b46866bb8b40b92d2ed279be504d2e943ab5ae65e38c136d984
|
||||
SIZE (monodevelop-2.0.tar.bz2) = 5010211
|
11
devel/monodevelop/files/patch-LibApr.cs
Normal file
11
devel/monodevelop/files/patch-LibApr.cs
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion/LibApr.cs.orig 2008-12-22 19:02:40.000000000 -0300
|
||||
+++ src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion/LibApr.cs 2008-12-22 19:02:53.000000000 -0300
|
||||
@@ -65,7 +65,7 @@
|
||||
|
||||
public class LibApr0: LibApr
|
||||
{
|
||||
- private const string aprlib = "libapr-0.so.0";
|
||||
+ private const string aprlib = "libapr-1.so.3";
|
||||
|
||||
public override void initialize() { apr_initialize (); }
|
||||
public override IntPtr pool_create_ex (out IntPtr pool, IntPtr parent, IntPtr abort, IntPtr allocator) { return apr_pool_create_ex(out pool, parent, abort, allocator); }
|
53
devel/monodevelop/files/patch-LibSvnClient.cs
Normal file
53
devel/monodevelop/files/patch-LibSvnClient.cs
Normal file
@ -0,0 +1,53 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion/LibSvnClient.cs.orig
|
||||
+++ src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/MonoDevelop.VersionControl.Subversion/LibSvnClient.cs
|
||||
@@ -600,6 +600,7 @@
|
||||
|
||||
public class LibSvnClient0 : LibSvnClient {
|
||||
private const string svnclientlib = "libsvn_client-1.so.0";
|
||||
+ private const string svnsubrlib = "libsvn_subr-1.so.0";
|
||||
|
||||
public override void config_ensure (string config_dir, IntPtr pool)
|
||||
{
|
||||
@@ -843,11 +844,11 @@
|
||||
return svn_client_prop_get (out value, name, target, ref revision, recurse, ctx, pool);
|
||||
}
|
||||
|
||||
- [DllImport(svnclientlib)] static extern void svn_config_ensure (string config_dir, IntPtr pool);
|
||||
- [DllImport(svnclientlib)] static extern void svn_config_get_config (ref IntPtr cfg_hash, string config_dir, IntPtr pool);
|
||||
- [DllImport(svnclientlib)] static extern void svn_auth_open (out IntPtr auth_baton, IntPtr providers, IntPtr pool);
|
||||
- [DllImport(svnclientlib)] static extern void svn_auth_set_parameter (IntPtr auth_baton, string name, IntPtr value);
|
||||
- [DllImport(svnclientlib)] static extern IntPtr svn_auth_get_parameter (IntPtr auth_baton, string name);
|
||||
+ [DllImport(svnsubrlib)] static extern void svn_config_ensure (string config_dir, IntPtr pool);
|
||||
+ [DllImport(svnsubrlib)] static extern void svn_config_get_config (ref IntPtr cfg_hash, string config_dir, IntPtr pool);
|
||||
+ [DllImport(svnsubrlib)] static extern void svn_auth_open (out IntPtr auth_baton, IntPtr providers, IntPtr pool);
|
||||
+ [DllImport(svnsubrlib)] static extern void svn_auth_set_parameter (IntPtr auth_baton, string name, IntPtr value);
|
||||
+ [DllImport(svnsubrlib)] static extern IntPtr svn_auth_get_parameter (IntPtr auth_baton, string name);
|
||||
[DllImport(svnclientlib)] static extern void svn_client_get_simple_provider (IntPtr item, IntPtr pool);
|
||||
[DllImport(svnclientlib)] static extern void svn_client_get_simple_prompt_provider (IntPtr item, svn_auth_simple_prompt_func_t prompt_func, IntPtr prompt_batton, [MarshalAs (UnmanagedType.SysInt)] int retry_limit, IntPtr pool);
|
||||
[DllImport(svnclientlib)] static extern void svn_client_get_username_provider (IntPtr item, IntPtr pool);
|
||||
@@ -880,7 +881,7 @@
|
||||
IntPtr receiver_baton,
|
||||
IntPtr ctx, IntPtr pool);
|
||||
|
||||
- [DllImport(svnclientlib)] static extern IntPtr svn_time_from_cstring (out long aprtime, string time, IntPtr pool);
|
||||
+ [DllImport(svnsubrlib)] static extern IntPtr svn_time_from_cstring (out long aprtime, string time, IntPtr pool);
|
||||
|
||||
[DllImport(svnclientlib)] static extern IntPtr svn_client_url_from_path (ref IntPtr url, string path_or_url, IntPtr pool);
|
||||
|
||||
@@ -889,11 +890,11 @@
|
||||
ref Rev revision,
|
||||
IntPtr ctx, IntPtr pool);
|
||||
|
||||
- [DllImport(svnclientlib)] static extern IntPtr svn_stream_create (IntPtr baton, IntPtr pool);
|
||||
+ [DllImport(svnsubrlib)] static extern IntPtr svn_stream_create (IntPtr baton, IntPtr pool);
|
||||
|
||||
//[DllImport(svnclientlib)] static extern IntPtr svn_stream_set_read (IntPtr stream, svn_readwrite_fn_t reader);
|
||||
|
||||
- [DllImport(svnclientlib)] static extern IntPtr svn_stream_set_write (IntPtr stream, svn_readwrite_fn_t writer);
|
||||
+ [DllImport(svnsubrlib)] static extern IntPtr svn_stream_set_write (IntPtr stream, svn_readwrite_fn_t writer);
|
||||
|
||||
[DllImport(svnclientlib)] static extern IntPtr svn_client_update (IntPtr result_rev, string path, ref Rev revision,
|
||||
int recurse, IntPtr ctx, IntPtr pool);
|
13
devel/monodevelop/files/patch-SystemAssemblyService.cs
Normal file
13
devel/monodevelop/files/patch-SystemAssemblyService.cs
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/core/MonoDevelop.Core/MonoDevelop.Core/SystemAssemblyService.cs.orig
|
||||
+++ src/core/MonoDevelop.Core/MonoDevelop.Core/SystemAssemblyService.cs
|
||||
@@ -412,6 +412,7 @@
|
||||
|
||||
string[] suffixes = new string [] {
|
||||
Path.Combine ("lib", "pkgconfig"),
|
||||
+ Path.Combine ("libdata", "pkgconfig"),
|
||||
Path.Combine ("lib64", "pkgconfig"),
|
||||
Path.Combine ("share", "pkgconfig"),
|
||||
};
|
14
devel/monodevelop/files/patch-WelcomePageContent.xml
Normal file
14
devel/monodevelop/files/patch-WelcomePageContent.xml
Normal file
@ -0,0 +1,14 @@
|
||||
--- src/addins/WelcomePage/WelcomePageContent.xml.orig 2008-12-22 20:22:30.000000000 -0300
|
||||
+++ src/addins/WelcomePage/WelcomePageContent.xml 2008-12-22 20:24:10.000000000 -0300
|
||||
@@ -16,6 +16,11 @@
|
||||
|
||||
<Links _title="Support Links">
|
||||
<Link
|
||||
+ href="http://www.mono-project.com/Mono:FreeBSD"
|
||||
+ _title="BSD# Project Home Page"
|
||||
+ />
|
||||
+ <Link
|
||||
+
|
||||
href="http://www.monodevelop.com"
|
||||
_title="MonoDevelop Home Page"
|
||||
/>
|
@ -0,0 +1,14 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/addins/CBinding/Navigation/ProjectNodeBuilderExtension.cs.orig
|
||||
+++ src/addins/CBinding/Navigation/ProjectNodeBuilderExtension.cs
|
||||
@@ -97,7 +97,7 @@
|
||||
check_ctags = true;
|
||||
|
||||
try {
|
||||
- ProcessWrapper p = Runtime.ProcessService.StartProcess ("ctags", "--version", null, null);
|
||||
+ ProcessWrapper p = Runtime.ProcessService.StartProcess ("exctags", "--version", null, null);
|
||||
p.WaitForOutput ();
|
||||
have_ctags = true;
|
||||
} catch {
|
@ -0,0 +1,32 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/addins/CBinding/Parser/TagDatabaseManager.cs.orig
|
||||
+++ src/addins/CBinding/Parser/TagDatabaseManager.cs
|
||||
@@ -86,7 +86,7 @@
|
||||
return false;
|
||||
}
|
||||
try {
|
||||
- Runtime.ProcessService.StartProcess ("ctags", "--version", null, null).WaitForOutput ();
|
||||
+ Runtime.ProcessService.StartProcess ("exctags", "--version", null, null).WaitForOutput ();
|
||||
} catch {
|
||||
LoggingService.LogWarning ("Cannot update C/C++ tags database because exuberant ctags is not installed.");
|
||||
return false;
|
||||
@@ -273,7 +273,7 @@
|
||||
try {
|
||||
output = new System.IO.StringWriter ();
|
||||
|
||||
- p = Runtime.ProcessService.StartProcess ("ctags", ctags_options, null, null, output, null);
|
||||
+ p = Runtime.ProcessService.StartProcess ("exctags", ctags_options, null, null, output, null);
|
||||
p.WaitForOutput (10000);
|
||||
if (p.ExitCode != 0 || !File.Exists (tagFullFileName)) {
|
||||
LoggingService.LogError ("Ctags did not successfully populate the tags database '{0}' within ten seconds.\nOutput: {1}", tagFullFileName, output.ToString ());
|
||||
@@ -377,7 +377,7 @@
|
||||
output = new System.IO.StringWriter ();
|
||||
error = new System.IO.StringWriter ();
|
||||
|
||||
- p = Runtime.ProcessService.StartProcess ("ctags", ctags_options, project.BaseDirectory, output, error, null);
|
||||
+ p = Runtime.ProcessService.StartProcess ("exctags", ctags_options, project.BaseDirectory, output, error, null);
|
||||
p.WaitForOutput (10000);
|
||||
if (p.ExitCode != 0) {
|
||||
LoggingService.LogError ("Ctags did not successfully populate the tags database from '{0}' within ten seconds.\nError output: {1}", filename, error.ToString ());
|
@ -0,0 +1,23 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/addins/MonoDevelop.Autotools/SolutionDeployer.cs.orig
|
||||
+++ src/addins/MonoDevelop.Autotools/SolutionDeployer.cs
|
||||
@@ -171,7 +171,7 @@
|
||||
chainedOutput.ChainWriter (monitor.Log);
|
||||
chainedOutput.ChainWriter (sw);
|
||||
|
||||
- ProcessWrapper process = Runtime.ProcessService.StartProcess ( "make",
|
||||
+ ProcessWrapper process = Runtime.ProcessService.StartProcess ( "gmake",
|
||||
"dist",
|
||||
baseDir,
|
||||
chainedOutput,
|
||||
@@ -180,7 +180,7 @@
|
||||
process.WaitForOutput ();
|
||||
|
||||
if ( process.ExitCode > 0 )
|
||||
- throw new Exception ( GettextCatalog.GetString ("An unspecified error occurred while running '{0}'", "make dist") );
|
||||
+ throw new Exception ( GettextCatalog.GetString ("An unspecified error occurred while running '{0}'", "gmake dist") );
|
||||
|
||||
monitor.Step ( 1 );
|
||||
|
@ -0,0 +1,11 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/core/MonoDevelop.Projects/MonoDevelop.Projects.dll.config.orig
|
||||
+++ src/core/MonoDevelop.Projects/MonoDevelop.Projects.dll.config
|
||||
@@ -1,4 +1,4 @@
|
||||
<configuration>
|
||||
- <dllmap dll="libglib-2.0-0.dll" target="libglib-2.0.so.0" os="linux" />
|
||||
+ <dllmap dll="libglib-2.0-0.dll" target="libglib-2.0.so.0" os="!osx,windows" />
|
||||
<dllmap dll="libglib-2.0-0.dll" target="libglib-2.0.dylib" os="osx" />
|
||||
</configuration>
|
@ -0,0 +1,26 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- theme-icons/icon-theme-installer.orig
|
||||
+++ theme-icons/icon-theme-installer
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/bin/bash
|
||||
+#!/usr/bin/env bash
|
||||
|
||||
# icon-theme-installer
|
||||
# Copyright (C) 2006 Novell, Inc.
|
||||
@@ -101,12 +101,12 @@
|
||||
exit 1
|
||||
fi
|
||||
|
||||
-if test ! -x $(echo "$MKINSTALLDIRS_EXEC" | cut -f1 -d' '); then
|
||||
+if ! which $(echo "$MKINSTALLDIRS_EXEC" | cut -f1 -d' '); then
|
||||
echo "Cannot find '$MKINSTALLDIRS_EXEC'; You probably want to pass -m \$(mkinstalldirs)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
-if test ! -x $(echo "$INSTALL_DATA_EXEC" | cut -f1 -d' '); then
|
||||
+if ! which $(echo "$INSTALL_DATA_EXEC" | cut -f1 -d' '); then
|
||||
echo "Cannot find '$INSTALL_DATA_EXEC'; You probably want to pass -x \$(INSTALL_DATA)"
|
||||
exit 1
|
||||
fi
|
14
devel/monodevelop/pkg-descr
Normal file
14
devel/monodevelop/pkg-descr
Normal file
@ -0,0 +1,14 @@
|
||||
MonoDevelop is a free GNOME integrated development environment (IDE)
|
||||
primarily designed for C# and other .NET languages.
|
||||
|
||||
It was originally a port of SharpDevelop 0.98.
|
||||
|
||||
The main features of MonoDevelop are:
|
||||
|
||||
* Code Completion
|
||||
* Class Management
|
||||
* Built-in Help
|
||||
* Project Support
|
||||
* Add-ins
|
||||
|
||||
WWW: http://monodevelop.com/
|
262
devel/monodevelop/pkg-plist
Normal file
262
devel/monodevelop/pkg-plist
Normal file
@ -0,0 +1,262 @@
|
||||
bin/mdtool
|
||||
bin/monodevelop
|
||||
lib/monodevelop/AddIns/BackendBindings/ILAsmBinding.dll
|
||||
lib/monodevelop/AddIns/BackendBindings/ILAsmBinding.dll.mdb
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.CBinding.dll
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.CBinding.dll.mdb
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.CSharpBinding.Autotools.dll
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.CSharpBinding.Autotools.dll.mdb
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.CSharpBinding.dll
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.CSharpBinding.dll.mdb
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.VBNetBinding.dll
|
||||
lib/monodevelop/AddIns/BackendBindings/MonoDevelop.VBNetBinding.dll.mdb
|
||||
lib/monodevelop/AddIns/ChangeLogAddIn/ChangeLogAddIn.dll
|
||||
lib/monodevelop/AddIns/ChangeLogAddIn/ChangeLogAddIn.dll.mdb
|
||||
lib/monodevelop/AddIns/GnomePlatform/GnomePlatform.dll
|
||||
lib/monodevelop/AddIns/GnomePlatform/GnomePlatform.dll.config
|
||||
lib/monodevelop/AddIns/GnomePlatform/GnomePlatform.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.AspNet/MonoDevelop.AspNet.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.AspNet/MonoDevelop.AspNet.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.AspNet/Schemas/W3C-License.html
|
||||
lib/monodevelop/AddIns/MonoDevelop.AspNet/Schemas/readme.txt
|
||||
lib/monodevelop/AddIns/MonoDevelop.AspNet/Schemas/xhtml1-frameset.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.AspNet/Schemas/xhtml1-strict.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.AspNet/Schemas/xhtml1-transitional.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.AssemblyBrowser.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.AssemblyBrowser.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/Makefile.am.project.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/Makefile.include
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/Makefile.noauto.project.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/Makefile.solution.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/MonoDevelop.Autotools.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/MonoDevelop.Autotools.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/autogen.sh.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/configure.ac.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/configure.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/exe.wrapper.in.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/expansions.m4
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/make-dist.targets
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/package.pc.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/rules.make
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/Makefile.am.project.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/Makefile.include
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/Makefile.noauto.project.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/Makefile.solution.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/autogen.sh.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/configure.ac.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/configure.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/exe.wrapper.in.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/expansions.m4
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/make-dist.targets
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/package.pc.template
|
||||
lib/monodevelop/AddIns/MonoDevelop.Autotools/templates/rules.make
|
||||
lib/monodevelop/AddIns/MonoDevelop.CodeMetrics/MonoDevelop.CodeMetrics.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.CodeMetrics/MonoDevelop.CodeMetrics.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.Debugger/MonoDevelop.Debugger.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.Debugger/MonoDevelop.Debugger.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.Deployment/MonoDevelop.Deployment.Linux.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.Deployment/MonoDevelop.Deployment.Linux.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.Deployment/MonoDevelop.Deployment.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.Deployment/MonoDevelop.Deployment.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.Gettext/MonoDevelop.Gettext.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.Gettext/MonoDevelop.Gettext.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/MonoDevelop.GtkCore.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/MonoDevelop.GtkCore.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/libstetic.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/libstetic.dll.config
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/libstetic.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/libsteticui.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/libsteticui.dll.config
|
||||
lib/monodevelop/AddIns/MonoDevelop.GtkCore/libsteticui.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.MsVisualStudio/MonoDevelop.MsVisualStudio.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.MsVisualStudio/MonoDevelop.MsVisualStudio.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.RegexToolkit/MonoDevelop.RegexToolkit.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.RegexToolkit/MonoDevelop.RegexToolkit.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.SourceEditor2.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.SourceEditor2.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.WebReferences/MonoDevelop.WebReferences.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.WebReferences/MonoDevelop.WebReferences.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/MonoDevelop.XmlEditor.dll
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/MonoDevelop.XmlEditor.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/MonoDevelopAddIn.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/W3C-License.html
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/XMLSchema.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/appconfig.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/manifest.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/nant.xsd
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/readme.txt
|
||||
lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas/xslt.xsd
|
||||
lib/monodevelop/AddIns/MonoDeveloperExtensions/MonoDeveloperExtensions.dll
|
||||
lib/monodevelop/AddIns/MonoDeveloperExtensions/MonoDeveloperExtensions.dll.mdb
|
||||
lib/monodevelop/AddIns/MonoDeveloperExtensions/MonoDeveloperExtensions_nunit.dll
|
||||
lib/monodevelop/AddIns/MonoDeveloperExtensions/MonoDeveloperExtensions_nunit.dll.mdb
|
||||
lib/monodevelop/AddIns/NUnit/MonoDevelop.NUnit.dll
|
||||
lib/monodevelop/AddIns/NUnit/MonoDevelop.NUnit.dll.mdb
|
||||
lib/monodevelop/AddIns/NUnit/NUnitRunner.dll
|
||||
lib/monodevelop/AddIns/NUnit/NUnitRunner.dll.mdb
|
||||
lib/monodevelop/AddIns/NUnit/nunit.core.dll
|
||||
lib/monodevelop/AddIns/NUnit/nunit.core.interfaces.dll
|
||||
lib/monodevelop/AddIns/NUnit/nunit.framework.dll
|
||||
lib/monodevelop/AddIns/NUnit/nunit.util.dll
|
||||
lib/monodevelop/AddIns/VersionControl/Diff.dll
|
||||
lib/monodevelop/AddIns/VersionControl/Diff.dll.mdb
|
||||
lib/monodevelop/AddIns/VersionControl/DiffWidget.dll
|
||||
lib/monodevelop/AddIns/VersionControl/DiffWidget.dll.mdb
|
||||
%%SVN%%lib/monodevelop/AddIns/VersionControl/MonoDevelop.VersionControl.Subversion.dll
|
||||
%%SVN%%lib/monodevelop/AddIns/VersionControl/MonoDevelop.VersionControl.Subversion.dll.config
|
||||
%%SVN%%lib/monodevelop/AddIns/VersionControl/MonoDevelop.VersionControl.Subversion.dll.mdb
|
||||
lib/monodevelop/AddIns/VersionControl/MonoDevelop.VersionControl.dll
|
||||
lib/monodevelop/AddIns/VersionControl/MonoDevelop.VersionControl.dll.mdb
|
||||
lib/monodevelop/AddIns/WelcomePage/WelcomePage.css
|
||||
lib/monodevelop/AddIns/WelcomePage/WelcomePage.dll
|
||||
lib/monodevelop/AddIns/WelcomePage/WelcomePage.dll.mdb
|
||||
lib/monodevelop/AddIns/WelcomePage/mono-bg.png
|
||||
lib/monodevelop/AddIns/WelcomePage/mono-decoration.png
|
||||
lib/monodevelop/AddIns/WelcomePage/mono-logo.png
|
||||
lib/monodevelop/bin/Mono.Cecil.Mdb.dll
|
||||
lib/monodevelop/bin/Mono.Cecil.Mdb.dll.mdb
|
||||
lib/monodevelop/bin/Mono.Cecil.dll
|
||||
lib/monodevelop/bin/Mono.Cecil.dll.mdb
|
||||
lib/monodevelop/bin/Mono.Debugging.dll
|
||||
lib/monodevelop/bin/Mono.Debugging.dll.mdb
|
||||
lib/monodevelop/bin/Mono.TextEditor.dll
|
||||
lib/monodevelop/bin/Mono.TextEditor.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.Components.dll
|
||||
lib/monodevelop/bin/MonoDevelop.Components.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.Core.Gui.dll
|
||||
lib/monodevelop/bin/MonoDevelop.Core.Gui.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.Core.dll
|
||||
lib/monodevelop/bin/MonoDevelop.Core.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.Dock.dll
|
||||
lib/monodevelop/bin/MonoDevelop.Dock.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.Ide.dll
|
||||
lib/monodevelop/bin/MonoDevelop.Ide.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.Projects.Gui.dll
|
||||
lib/monodevelop/bin/MonoDevelop.Projects.Gui.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.Projects.dll
|
||||
lib/monodevelop/bin/MonoDevelop.Projects.dll.config
|
||||
lib/monodevelop/bin/MonoDevelop.Projects.dll.mdb
|
||||
lib/monodevelop/bin/MonoDevelop.exe
|
||||
lib/monodevelop/bin/MonoDevelop.exe.addins
|
||||
lib/monodevelop/bin/MonoDevelop.exe.config
|
||||
lib/monodevelop/bin/MonoDevelop.exe.mdb
|
||||
lib/monodevelop/bin/NRefactory.dll
|
||||
lib/monodevelop/bin/NRefactory.dll.mdb
|
||||
lib/monodevelop/bin/mdhost.exe
|
||||
lib/monodevelop/bin/mdhost.exe.mdb
|
||||
lib/monodevelop/bin/mdrun.exe
|
||||
lib/monodevelop/bin/mdrun.exe.config
|
||||
lib/monodevelop/bin/mdrun.exe.mdb
|
||||
lib/monodevelop/data/options/DefaultEditingLayout.xml
|
||||
lib/monodevelop/data/options/MonoDevelop-templates.xml
|
||||
lib/monodevelop/data/options/MonoDevelop-tools.xml
|
||||
lib/monodevelop/data/options/MonoDevelopProperties.xml
|
||||
lib/monodevelop/data/options/StandardHeader.xml
|
||||
lib/monodevelop/data/options/TipsOfTheDay.xml
|
||||
libdata/pkgconfig/monodevelop-core-addins.pc
|
||||
libdata/pkgconfig/monodevelop.pc
|
||||
share/applications/monodevelop.desktop
|
||||
share/icons/hicolor/16x16/apps/monodevelop.png
|
||||
share/icons/hicolor/22x22/apps/monodevelop.png
|
||||
share/icons/hicolor/24x24/apps/monodevelop.png
|
||||
share/icons/hicolor/32x32/apps/monodevelop.png
|
||||
share/icons/hicolor/48x48/apps/monodevelop.png
|
||||
share/icons/hicolor/scalable/apps/monodevelop.svg
|
||||
share/locale/ca/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/cs/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/da/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/de/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/es/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/fr/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/gl/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/hu/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/id/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/it/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/ja/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/nl/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/pl/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/pt/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/ru/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/sl/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/sv/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/tr/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/monodevelop.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/monodevelop.mo
|
||||
share/mime/XMLnamespaces
|
||||
share/mime/aliases
|
||||
share/mime/application/x-asax.xml
|
||||
share/mime/application/x-ascx.xml
|
||||
share/mime/application/x-ashx.xml
|
||||
share/mime/application/x-asix.xml
|
||||
share/mime/application/x-asmx.xml
|
||||
share/mime/application/x-aspx.xml
|
||||
share/mime/application/x-axd.xml
|
||||
share/mime/application/x-cmbx.xml
|
||||
share/mime/application/x-config.xml
|
||||
share/mime/application/x-disco.xml
|
||||
share/mime/application/x-machine-config.xml
|
||||
share/mime/application/x-master-page.xml
|
||||
share/mime/application/x-mdp.xml
|
||||
share/mime/application/x-mds.xml
|
||||
share/mime/application/x-mdsx.xml
|
||||
share/mime/application/x-prjx.xml
|
||||
share/mime/application/x-remoting.xml
|
||||
share/mime/application/x-resources.xml
|
||||
share/mime/application/x-resourcesx.xml
|
||||
share/mime/application/x-soap-remoting.xml
|
||||
share/mime/application/x-web-config.xml
|
||||
share/mime/application/x-wsdl.xml
|
||||
share/mime/generic-icons
|
||||
share/mime/globs
|
||||
share/mime/globs2
|
||||
share/mime/icons
|
||||
share/mime/magic
|
||||
share/mime/mime.cache
|
||||
share/mime/packages/monodevelop.xml
|
||||
share/mime/subclasses
|
||||
share/mime/text/x-csharp.xml
|
||||
share/mime/text/x-js.xml
|
||||
share/mime/text/x-msil.xml
|
||||
share/mime/text/x-nemerle.xml
|
||||
share/mime/text/x-vb.xml
|
||||
share/mime/treemagic
|
||||
share/mime/types
|
||||
@dirrmtry share/applications
|
||||
@dirrmtry share/locale/sv/LC_MESSAGES
|
||||
@dirrmtry share/locale/sv
|
||||
@dirrmtry share/locale/ja/LC_MESSAGES
|
||||
@dirrmtry share/locale/ja
|
||||
@dirrm lib/monodevelop/data/options
|
||||
@dirrm lib/monodevelop/data
|
||||
@dirrm lib/monodevelop/bin
|
||||
@dirrm lib/monodevelop/AddIns/WelcomePage
|
||||
@dirrm lib/monodevelop/AddIns/VersionControl
|
||||
@dirrm lib/monodevelop/AddIns/NUnit
|
||||
@dirrm lib/monodevelop/AddIns/MonoDeveloperExtensions
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.XmlEditor/schemas
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.XmlEditor
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.WebReferences
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.RegexToolkit
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.MsVisualStudio
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.GtkCore
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.Gettext
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.DesignerSupport
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.Deployment
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.Debugger
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.CodeMetrics
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.Autotools/templates
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.Autotools
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.AspNet/Schemas
|
||||
@dirrm lib/monodevelop/AddIns/MonoDevelop.AspNet
|
||||
@dirrm lib/monodevelop/AddIns/GnomePlatform
|
||||
@dirrm lib/monodevelop/AddIns/ChangeLogAddIn
|
||||
@dirrm lib/monodevelop/AddIns/BackendBindings
|
||||
@dirrm lib/monodevelop/AddIns
|
||||
@dirrm lib/monodevelop
|
||||
@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
|
||||
@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
|
||||
@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
|
||||
@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
|
Loading…
Reference in New Issue
Block a user