rpms/monodevelop/F-9 import.log, NONE, 1.1 monodevelop-1.0.spec, NONE, 1.1 monodevelop-1.9-libdir.patch, NONE, 1.1 monodevelop-0.19-use-system-Mono.Cecil.patch, 1.1, 1.2 mdtool.patch, 1.1, NONE monodevelop-config.patch, 1.6, NONE monodevelop-libdir.patch, 1.4, NONE monodevelop.spec, 1.28, NONE

Paul F. Johnson pfj at fedoraproject.org
Wed Sep 10 19:50:52 UTC 2008


Author: pfj

Update of /cvs/pkgs/rpms/monodevelop/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13256/F-9

Modified Files:
	monodevelop-0.19-use-system-Mono.Cecil.patch 
Added Files:
	import.log monodevelop-1.0.spec monodevelop-1.9-libdir.patch 
Removed Files:
	mdtool.patch monodevelop-config.patch monodevelop-libdir.patch 
	monodevelop.spec 
Log Message:

Update to MD 1.0 



--- NEW FILE import.log ---
monodevelop-1_0-6_fc10:F-9:monodevelop-1.0-6.fc10.src.rpm:1221076216


--- NEW FILE monodevelop-1.0.spec ---
%define debug_package %{nil}

%define cecilver %(gacutil -l Mono.Cecil |grep Mono.Cecil | cut -d "=" -f 2 | cut -d "," -f 1)
%define ceciltoken %(gacutil -l Mono.Cecil |grep Mono.Cecil | cut -d "=" -f 4)
%define cecilmdbver %(gacutil -l Mono.Cecil.Mdb |grep Mono.Cecil.Mdb | cut -d "=" -f 2 | cut -d "," -f 1)
%define cecilmdbtoken %(gacutil -l Mono.Cecil.Mdb |grep Mono.Cecil.Mdb | cut -d "=" -f 4)

#%(gacutil -l nunit.core | tail -n 2 | grep nunit.core | cut -d "=" -f 2 | cut -d "," -f 1)
%define nunitver 2.2.10.0

Summary:        A full-featured IDE for mono
Name:           monodevelop
Version:        1.0
Release:        6%{?dist}

Group:          Development/Tools
License:        GPLv2+
URL:            http://monodevelop.com/
Source0:        http://go-mono.com/sources/monodevelop/monodevelop-%{version}.tar.bz2
Patch0:         monodevelop-1.9-libdir.patch
Patch1:		monodevelop-0.19-use-system-Mono.Cecil.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildRequires:  mono-devel mono-addins-devel gtk-sharp2-devel monodoc-devel
BuildRequires:  gnome-sharp-devel gnome-desktop-sharp-devel mono-nunit-devel
# for the NUnit add-in
BuildRequires:  mono-nunit22 gtksourceview-sharp-devel
BuildRequires:  autoconf desktop-file-utils intltool
Requires:	mono-addins
Requires:       mono-basic
# Using system nunit, but dependency not automatically picked up by RPM
Requires:	mono(nunit.core) = 2.2.10.0
Requires:	mono(nunit.framework) = 2.2.10.0
Requires:       monodoc
Requires:       subversion
Requires:       hicolor-icon-theme shared-mime-info

# ppc* not supported: needs mono-nunit which needs nant
ExclusiveArch:  %ix86 x86_64 ia64 armv4l sparc alpha

%description
This package provides MonoDevelop, a full-featured IDE for Mono with
syntax colouring, code completion, debugging, project management and
support for C sharp, Visual Basic.NET, Java, Boo, Nemerle and MSIL.


%package        devel
Summary:	Development files for monodevelop
Group:		Development/Libraries
Requires:	%{name} = %{version}-%{release}
Requires:	pkgconfig
 
%description devel
Development files for %{name}.


%prep
%setup -q
%patch0 -p1 -b .libdir
%patch1 -p1 -b .use-system-cecil
autoreconf

# Here is where we replace the LONGCECILSTRING and LONGCECILMDBSTRING
# placeholders with the actual values for the Mono.Cecil and Mono.Cecil.Mdb
# ver__token
cd src
for i in \
    addins/MonoDevelop.GtkCore/Makefile.{am,in} \
    addins/MonoDevelop.GtkCore/lib/Makefile.{am,in} \
    addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am \
    addins/MonoDevelop.DesignerSupport/Makefile.{am,in} \
    core/MonoDevelop.Projects/Makefile.{am,in} \
; do
  sed -i 's|LONGCECILSTRING|%{cecilver}__%{ceciltoken}|g' "$i"
done

for i in core/MonoDevelop.Projects/Makefile.{am,in};
do
  sed -i 's|LONGCECILMDBSTRING|%{cecilmdbver}__%{cecilmdbtoken}|g' "$i"
done

sed -i addins/NUnit/MonoDevelopNUnit.addin.xml -e 's|LIBDIR|%{_libdir}|'


%build
%configure --disable-update-mimedb \
           --disable-update-desktopdb \
           --enable-gtksourceview2 --enable-tests

# Not parallel-buildable
#make %{?_smp_mflags}
make


%check
make check


%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT \
     GACUTIL_FLAGS="/package monodevelop /root ${RPM_BUILD_ROOT}%{_libdir}"

desktop-file-install \
                     --dir $RPM_BUILD_ROOT%{_datadir}/applications \
                     --delete-original \
  $RPM_BUILD_ROOT%{_datadir}/applications/monodevelop.desktop

%find_lang %{name}


%clean
rm -rf $RPM_BUILD_ROOT


%post
update-mime-database %{_datadir}/mime &> /dev/null || :
update-desktop-database &> /dev/null || :

%postun
update-mime-database %{_datadir}/mime &> /dev/null || :
update-desktop-database &> /dev/null || :


%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README
%{_bindir}/m*
%{_libdir}/monodevelop
%{_mandir}/man1/m*
%{_datadir}/applications/*.desktop
%{_datadir}/icons/hicolor/
%{_datadir}/mime/packages/monodevelop.xml

%files devel
%defattr(-,root,root,-)
%{_libdir}/pkgconfig/monodevelop*.pc



%changelog
* Mon Sep 03 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.9-6
- added BR xulrunner-unstable-devel for libgtkmozembed

* Mon Aug 25 2008 Michel Salim <salimma at fedoraproject.org> - 1.9-5
- Use system-provided nunit

* Sat Aug 23 2008 Michel Alexandre Salim <salimma at fedoraproject.org> - 1.9-4
- Clean up build dependencies: database support now a separate package
- Clean up spec file and patches

* Fri Aug 08 2008 David Nielsen <gnomeuser at gmail.com> - 1.9-3
- rebase configure patch for fuzz
- file list fix up

* Thu Jul 10 2008 David Nielsen <gnomeuser at gmail.com> 1.9-2
- numerical compare for fedora version test, fixes compile on f10

* Mon Jul 07 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.9-1
- bump to latest beta for md2
- fixes to patch files for mono.cecil
- fix the archs to be mono package happy
- spec file fixes

* Tue May 06 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.0-6
- added br mono-tools
- removed prepackaged mime

* Thu May 01 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.0-5.1
- attempt a fix for a text editor to work
- rebuild

* Wed Apr 30 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.0-4
- mdtool fix

* Wed Apr 30 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.0-3
- remove BR ikvm-devel

* Fri Apr 25 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.0-2
- add in gtksourceview2 support

* Mon Apr 21 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 1.0-1
- bump to release

* Mon Apr 21 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.19-7
- remove ppc specific stuff
- enabled gnomeplatform and c and c++ projects
- add BR monobasic
- remove the debug package

* Sat Apr 12 2008 Tom "spot" Callaway <tcallawa at redhat.com> 0.19-6
- disable Requires on ikvm, since ikvm doesn't build from source at the moment

* Fri Apr 11 2008 Tom "spot" Callaway <tcallawa at redhat.com> 0.19-5
- ExcludeArch ppc (no mono-nunit22, due to no nant, means no ppc)

* Fri Apr 11 2008 Tom "spot" Callaway <tcallawa at redhat.com> 0.19-4
- buildrequires mono-core for gacutil

* Fri Apr 11 2008 Tom "spot" Callaway <tcallawa at redhat.com> 0.19-3
- use system Mono.Cecil
- use copies of built from source nunit22 rather than bundling (upstream should really uncouple this)

* Thu Feb 21 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.19-2
- added BR update-desktop-database

* Thu Feb 21 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.19-1
- bump to preview 1

* Fri Jan 04 2008 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.18.1-1
- bump

* Wed Dec 19 2007 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.18-1
- fix for BR boo where boo is not supported
- bump to MD0.18

* Tue Nov 13 2007 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.17-4
- added R mono-data-sqlite

* Sun Nov 11 2007 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.17-3
- excludearch ppc64

* Sun Nov 11 2007 David Nielsen <david at lovesunix.net> - 0.17-2
- Remove support for Fedora < 5
- rediff config patch

* Thu Nov  8 2007 David Nielsen <david at lovesunix.net> - 0.17-1
- Update to MonoDevelop Beta 2

* Wed Oct 17 2007 David Nielsen <david at lovesunix.net> - 0.16
- Update to MonoDevelop Beta 1

* Sat Aug 11 2007 David Nielsen	<david at lovesunix.net> - 0.15
- bump to 0.15

* Thu Mar 08 2007 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.13.1-1
- bugfixes to the source

* Fri Feb 23 2007 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.13-1
- bump to new version

* Wed Dec 20 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-9
- disables version control
- requires gnome-sharp
- enable nemerle added
- enabled aspnet and aspnetedit (rawhide only - requires jscall-sharp)
- added R firefox > 1.99

* Wed Nov 01 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-7
- Added R gtk-sharp2-gapi

* Fri Oct 27 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-6
- fixed url
- added R apr-devel

* Wed Sep 27 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-5
- pkgconfig fix 

* Mon Sep 25 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-4
- added R mono-nunit

* Mon Sep 18 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-3
- rebuild to make use of the new boo

* Thu Sep 07 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-2
- minor spec file fixes

* Wed Sep 06 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.12-1
- Bump to new version
- Include the patches for all users
- Fixed so it uses ?fedora (silly me!)
- Added BR mono-nunit-devel (FC6)

* Mon Sep 04 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-21
- Revert 64 bit clean for FC-5 and still follow FC guidelines

* Sun Sep 03 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-20
- Added gtk sharp fix
- Added conditional so it builds for FC5

* Sun Aug 27 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-17
- 64 bit goodness restored

* Fri Aug 04 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-16
- fixed ownership problem in spec file
- added comment about the libdir hack

* Wed Aug 02 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-15
- removed R which, added R mono-nunit
- changed R bytefx-data-mysq to msql
- altered update-mime-info and added update-desktop-database
- added R pkgconfig to devel
- added comment as to why smp_flags are not used on the build

* Sat Jul 29 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-14
- Added additional Rs
- minor specfile tweaks

* Sun Jul 23 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-12
- fixed which problem
- fixes the libdir issue for 64 bit

* Sun Jul 09 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-11
- minor spec files changes to satisfy rpmlint
- added BR ikvm-devel

* Sun Jul 09 2006 John Mahowald  <jpmahowald at gmail.com> - 0.11-10
- libdir fixes
- BR mono-data-sqlite

* Sun Jul 09 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-9
- removed noarch
- added a couple of patches from the new nant package
- fixes for new mono guidelines

* Wed Jun 14 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-8
- Removed libdir hack
- Added BR pkgconfig
- Added R monodoc
- Altered configure line to satisfy the parts required

* Mon Jun 05 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-7
- Added additional fix for 64 bit systems

* Sun Jun 04 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-6
- Minor mod to the BR
- Fixed the desktop-file-install problem

* Sat Jun 03 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-5
- Removed duplicate desktop file

* Sat Jun 03 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-4
- Removed R filesystem
- Simplified mime-applications
- Added scriptlets to handle mime info
- Corrected handling of desktop icon
- Removed INSTALL file

* Sat Jun 03 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-3
- Added BR shared-mime-info
- Added R filesystem
- Made all of the bindir and datadir ownerships explicit

* Wed May 31 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-2
- Added devel
- Added fix for 64 bit systems

* Sun May 07 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.11-1
- bump to new version
- added exclude archs for x86_64 and ia64 due to build problems

* Wed Apr 26 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-8
- removed smp_flags
- added boo and ikvm support

* Sun Apr 23 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-7
- removed static usrlib
- added export macros to fix the x86_64 problem
- disabled boo

* Wed Apr 19 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-6
- spec file version correctly bumped
- small spec file fixed
- enable-boo and enable-java added to the %%configure line

* Mon Apr 18 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-5
- libdir now usr-lib irrespective of hardware built on

* Mon Apr 17 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-4
- Altered install script somewhat
- Changed the path for the monodevelop libdir to be FE compliant
- Fixed source and URL

* Sat Apr 15 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-3
- Add in boo and mono-debugger
- fixed a couple of minor spec file bugs
- fixed MonoDevelop.Core not being found in the addins

* Wed Apr 5 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-2
- Additional buildreqs and two typo fixed - thanks to Angel Marin again

* Wed Apr 5 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.10-1
- Bump to new version
- mods to spec file for new version

* Wed Apr 5 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.9-3
- minor tweaks
- fixed a couple of typos - thanks to Angel Marin for spotting them

* Wed Jan 25 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.9-2
- added deps for ikvm and bytefx-data-mysql
- removed language support for the moment

* Mon Jan 23 2006 Paul F. Johnson <paul at all-the-johnsons.co.uk> 0.9-1
- Initial import


monodevelop-1.9-libdir.patch:

--- NEW FILE monodevelop-1.9-libdir.patch ---
--- monodevelop-1.9/monodevelop.in.libdir	2008-06-30 13:36:01.000000000 -0400
+++ monodevelop-1.9/monodevelop.in	2008-08-01 20:45:55.000000000 -0400
@@ -53,7 +53,7 @@
 	fi
 fi
 
-MD_BIN_PATH=@prefix@/lib/monodevelop/bin
+MD_BIN_PATH=@libdir@/monodevelop/bin
 
 if [ -n $LD_LIBRARY_PATH ]; then
 	export LD_LIBRARY_PATH=$MOZILLA_HOME:$LD_LIBRARY_PATH
@@ -62,8 +62,7 @@
 fi
 
 ### SYNCH BLOCK: any changes to this block should be kept in sync with the one in Makefile.include and mdtool.in
-MD_PKG_CONFIG_PATH=@gtksharp_prefix@/lib/pkgconfig/:/usr/lib/pkgconfig/:/usr/local/lib/pkgconfig/:/usr/share/pkgconfig/:/usr/local/share/pkgconfig/
-if test -d /usr/lib64; then MD_PKG_CONFIG_PATH=$MD_PKG_CONFIG_PATH:/usr/lib64/pkgconfig/:/usr/local/lib64/pkgconfig/; fi
+MD_PKG_CONFIG_PATH=@libdir@/pkgconfig/
 ### END BLOCK
 
 if [ -n $PKG_CONFIG_PATH ]; then
--- monodevelop-1.9/mdtool.in.libdir	2008-06-30 13:36:01.000000000 -0400
+++ monodevelop-1.9/mdtool.in	2008-08-01 20:48:32.000000000 -0400
@@ -16,11 +16,10 @@
     echo "$ret"
 }
  
-MD_BIN_PATH=@prefix@/lib/monodevelop/bin
+MD_BIN_PATH=@libdir@/monodevelop/bin
 
 ### SYNCH BLOCK: any changes to this block should be kept in sync with the one in Makefile.include and monodevelop.in
-MD_PKG_CONFIG_PATH=@gtksharp_prefix@/lib/pkgconfig/:/usr/lib/pkgconfig/:/usr/local/lib/pkgconfig/:/usr/share/pkgconfig/:/usr/local/share/pkgconfig/
-if test -d /usr/lib64; then MD_PKG_CONFIG_PATH=$MD_PKG_CONFIG_PATH:/usr/lib64/pkgconfig/:/usr/local/lib64/pkgconfig/; fi
+MD_PKG_CONFIG_PATH=@libdir@/pkgconfig/
 ### END BLOCK
 
 if [ -n $PKG_CONFIG_PATH ]; then
--- monodevelop-1.9/configure.in.libdir	2008-06-30 13:36:01.000000000 -0400
+++ monodevelop-1.9/configure.in	2008-08-01 20:49:10.000000000 -0400
@@ -308,7 +308,7 @@
 AC_SUBST(CSC_FLAGS)
 
 
-MD_DIR='$(prefix)/lib/monodevelop'
+MD_DIR='$(libdir)/monodevelop'
 MD_ASSEMBLY_DIR="$MD_DIR/bin"
 MD_ADDIN_DIR="$MD_DIR/AddIns"
 
--- monodevelop-1.9/Makefile.in.libdir	2008-06-30 19:34:00.000000000 -0400
+++ monodevelop-1.9/Makefile.in	2008-08-01 21:00:51.000000000 -0400
@@ -214,7 +214,7 @@
 xdgmimedir = $(datadir)/mime/packages
 xdgmime_DATA = monodevelop.xml
 pkgconfig_in_files = monodevelop.pc.in monodevelop-core-addins.pc.in
-pkgconfigdir = $(prefix)/lib/pkgconfig
+pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = $(pkgconfig_in_files:.pc.in=.pc)
 PACKAGES = \
 	build/bin/MonoDevelop.Core.Gui.addin.xml \
--- monodevelop-1.9/monodevelop.pc.in.libdir	2008-06-30 13:36:01.000000000 -0400
+++ monodevelop-1.9/monodevelop.pc.in	2008-08-01 20:46:35.000000000 -0400
@@ -1,6 +1,6 @@
 prefix=@prefix@
 exec_prefix=${prefix}
-libdir=${exec_prefix}/lib/monodevelop
+libdir=@libdir@/monodevelop
                                                                                 
 Name: MonoDevelop
 Description: Free .NET Development Environment

monodevelop-0.19-use-system-Mono.Cecil.patch:

Index: monodevelop-0.19-use-system-Mono.Cecil.patch
===================================================================
RCS file: /cvs/pkgs/rpms/monodevelop/F-9/monodevelop-0.19-use-system-Mono.Cecil.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- monodevelop-0.19-use-system-Mono.Cecil.patch	11 Apr 2008 19:34:59 -0000	1.1
+++ monodevelop-0.19-use-system-Mono.Cecil.patch	10 Sep 2008 19:50:52 -0000	1.2
@@ -1,58 +1,7 @@
-diff -up monodevelop-0.19/configure.use-system-Mono.Cecil monodevelop-0.19/configure
---- monodevelop-0.19/configure.use-system-Mono.Cecil	2008-04-11 14:11:37.000000000 -0400
-+++ monodevelop-0.19/configure	2008-04-11 14:11:41.000000000 -0400
-@@ -4742,7 +4742,7 @@ echo "$as_me: error: You must enable one
-    { (exit 1); exit 1; }; }
- fi
- 
--ac_config_files="$ac_config_files build/data/Makefile build/data/resources/css/Makefile build/data/resources/Makefile build/Makefile contrib/Makefile contrib/Mono.Cecil/Makefile src/Makefile src/core/Makefile src/core/NRefactory/Makefile src/core/MonoDevelop.Core/AssemblyInfo.cs src/core/MonoDevelop.Core/Makefile src/core/MonoDevelop.Core.Gui/AssemblyInfo.cs src/core/MonoDevelop.Core.Gui/Makefile src/core/MonoDevelop.Projects/AssemblyInfo.cs src/core/MonoDevelop.Projects/MonoDevelop.Projects.dll.config src/core/MonoDevelop.Projects/Makefile src/core/MonoDevelop.Projects.Gui/AssemblyInfo.cs src/core/MonoDevelop.Projects.Gui/Makefile src/core/MonoDevelop.Documentation/AssemblyInfo.cs src/core/MonoDevelop.Documentation/Makefile src/core/MonoDevelop.Ide/AssemblyInfo.cs src/core/MonoDevelop.Ide/Makefile src/core/MonoDevelop.Dock/Makefile src/core/MonoDevelop.Components/AssemblyInfo.cs src/core/MonoDevelop.Components/Makefile src/core/MonoDevelop.Startup/AssemblyInfo.cs src/core/
 MonoDevelop.Startup/Makefile src/tools/Makefile src/tools/mdhost/Makefile src/tools/mdrun/Makefile src/tools/SharpCoco/Makefile src/addins/Makefile src/addins/MonoDeveloperExtensions/Makefile src/addins/MonoDeveloperExtensions/NUnit/Makefile src/addins/NUnit/Makefile src/addins/VersionControl/Diff/Makefile src/addins/VersionControl/DiffWidget/Makefile src/addins/VersionControl/MonoDevelop.VersionControl/Makefile src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/Makefile src/addins/VersionControl/Makefile src/addins/CSharpBinding/Makefile src/addins/CSharpBinding/Autotools/Makefile src/addins/ILAsmBinding/Makefile src/addins/VBNetBinding/Makefile src/addins/MonoDevelop.SourceEditor/AssemblyInfo.cs src/addins/MonoDevelop.SourceEditor/Makefile src/addins/prj2make-sharp-lib/AssemblyInfo.cs src/addins/prj2make-sharp-lib/Makefile src/addins/WelcomePage/Makefile src/addins/ChangeLogAddIn/Makefile src/addins/MonoDevelop.GtkCore/Makefile src/addins/MonoDevelop.GtkCore/l
 ib/Makefile src/addins/AspNetAddIn/Makefile src/addins/MonoDevelop.Autotools/Makefile src/addins/MonoDevelop.DesignerSupport/Makefile src/addins/MonoDevelop.WebReferences/Makefile src/addins/Deployment/Makefile src/addins/Deployment/MonoDevelop.Deployment/Makefile src/addins/Deployment/MonoDevelop.Deployment.Linux/Makefile src/addins/MonoDevelop.Gettext/Makefile src/addins/MonoDevelop.RegexToolkit/Makefile src/addins/CBinding/Makefile src/addins/SourceEditor2/AssemblyInfo.cs src/addins/SourceEditor2/Makefile src/addins/GnomePlatform/Makefile src/addins/MacPlatform/Makefile Makefile monodevelop mdtool monodevelop.pc monodevelop-core-addins.pc po/Makefile man/Makefile theme-icons/Makefile"
-+ac_config_files="$ac_config_files build/data/Makefile build/data/resources/css/Makefile build/data/resources/Makefile build/Makefile src/Makefile src/core/Makefile src/core/NRefactory/Makefile src/core/MonoDevelop.Core/AssemblyInfo.cs src/core/MonoDevelop.Core/Makefile src/core/MonoDevelop.Core.Gui/AssemblyInfo.cs src/core/MonoDevelop.Core.Gui/Makefile src/core/MonoDevelop.Projects/AssemblyInfo.cs src/core/MonoDevelop.Projects/MonoDevelop.Projects.dll.config src/core/MonoDevelop.Projects/Makefile src/core/MonoDevelop.Projects.Gui/AssemblyInfo.cs src/core/MonoDevelop.Projects.Gui/Makefile src/core/MonoDevelop.Documentation/AssemblyInfo.cs src/core/MonoDevelop.Documentation/Makefile src/core/MonoDevelop.Ide/AssemblyInfo.cs src/core/MonoDevelop.Ide/Makefile src/core/MonoDevelop.Dock/Makefile src/core/MonoDevelop.Components/AssemblyInfo.cs src/core/MonoDevelop.Components/Makefile src/core/MonoDevelop.Startup/AssemblyInfo.cs src/core/MonoDevelop.Startup/Makefile src/tools/Makefi
 le src/tools/mdhost/Makefile src/tools/mdrun/Makefile src/tools/SharpCoco/Makefile src/addins/Makefile src/addins/MonoDeveloperExtensions/Makefile src/addins/MonoDeveloperExtensions/NUnit/Makefile src/addins/NUnit/Makefile src/addins/VersionControl/Diff/Makefile src/addins/VersionControl/DiffWidget/Makefile src/addins/VersionControl/MonoDevelop.VersionControl/Makefile src/addins/VersionControl/MonoDevelop.VersionControl.Subversion/Makefile src/addins/VersionControl/Makefile src/addins/CSharpBinding/Makefile src/addins/CSharpBinding/Autotools/Makefile src/addins/ILAsmBinding/Makefile src/addins/VBNetBinding/Makefile src/addins/MonoDevelop.SourceEditor/AssemblyInfo.cs src/addins/MonoDevelop.SourceEditor/Makefile src/addins/prj2make-sharp-lib/AssemblyInfo.cs src/addins/prj2make-sharp-lib/Makefile src/addins/WelcomePage/Makefile src/addins/ChangeLogAddIn/Makefile src/addins/MonoDevelop.GtkCore/Makefile src/addins/MonoDevelop.GtkCore/lib/Makefile src/addins/AspNetAddIn/Makefile s
 rc/addins/MonoDevelop.Autotools/Makefile src/addins/MonoDevelop.DesignerSupport/Makefile src/addins/MonoDevelop.WebReferences/Makefile src/addins/Deployment/Makefile src/addins/Deployment/MonoDevelop.Deployment/Makefile src/addins/Deployment/MonoDevelop.Deployment.Linux/Makefile src/addins/MonoDevelop.Gettext/Makefile src/addins/MonoDevelop.RegexToolkit/Makefile src/addins/CBinding/Makefile src/addins/SourceEditor2/AssemblyInfo.cs src/addins/SourceEditor2/Makefile src/addins/GnomePlatform/Makefile src/addins/MacPlatform/Makefile Makefile monodevelop mdtool monodevelop.pc monodevelop-core-addins.pc po/Makefile man/Makefile theme-icons/Makefile"
- 
- cat >confcache <<\_ACEOF
- # This file is a shell script that caches the results of configure
-@@ -5415,8 +5415,6 @@ do
-     "build/data/resources/css/Makefile") CONFIG_FILES="$CONFIG_FILES build/data/resources/css/Makefile" ;;
-     "build/data/resources/Makefile") CONFIG_FILES="$CONFIG_FILES build/data/resources/Makefile" ;;
-     "build/Makefile") CONFIG_FILES="$CONFIG_FILES build/Makefile" ;;
--    "contrib/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/Makefile" ;;
--    "contrib/Mono.Cecil/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/Mono.Cecil/Makefile" ;;
-     "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
-     "src/core/Makefile") CONFIG_FILES="$CONFIG_FILES src/core/Makefile" ;;
-     "src/core/NRefactory/Makefile") CONFIG_FILES="$CONFIG_FILES src/core/NRefactory/Makefile" ;;
-diff -up monodevelop-0.19/Makefile.am.use-system-Mono.Cecil monodevelop-0.19/Makefile.am
---- monodevelop-0.19/Makefile.am.use-system-Mono.Cecil	2008-04-11 14:11:33.000000000 -0400
-+++ monodevelop-0.19/Makefile.am	2008-04-11 14:11:41.000000000 -0400
-@@ -1,4 +1,4 @@
--SUBDIRS = contrib src build po man theme-icons
-+SUBDIRS = src build po man theme-icons
- 
- bin_SCRIPTS = monodevelop mdtool
- 
-diff -up monodevelop-0.19/Makefile.in.use-system-Mono.Cecil monodevelop-0.19/Makefile.in
---- monodevelop-0.19/Makefile.in.use-system-Mono.Cecil	2008-04-11 14:11:41.000000000 -0400
-+++ monodevelop-0.19/Makefile.in	2008-04-11 14:11:41.000000000 -0400
-@@ -206,7 +206,7 @@ sysconfdir = @sysconfdir@
- target_alias = @target_alias@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
--SUBDIRS = contrib src build po man theme-icons
-+SUBDIRS = src build po man theme-icons
- bin_SCRIPTS = monodevelop mdtool
- desktopdir = $(datadir)/applications
- desktop_DATA = monodevelop.desktop
-diff -up monodevelop-0.19/monodevelop.pc.in.use-system-Mono.Cecil monodevelop-0.19/monodevelop.pc.in
---- monodevelop-0.19/monodevelop.pc.in.use-system-Mono.Cecil	2008-04-11 14:11:33.000000000 -0400
-+++ monodevelop-0.19/monodevelop.pc.in	2008-04-11 14:11:41.000000000 -0400
-@@ -5,4 +5,4 @@ libdir=@libdir@/monodevelop
- Name: MonoDevelop
- Description: Free .NET Development Environment
- Version: @VERSION@
--Libs: -r:${libdir}/bin/MonoDevelop.Core.dll -r:${libdir}/bin/MonoDevelop.Core.Gui.dll -r:${libdir}/bin/MonoDevelop.Projects.dll -r:${libdir}/bin/MonoDevelop.Projects.Gui.dll -r:${libdir}/bin/MonoDevelop.Ide.dll -r:${libdir}/bin/MonoDevelop.Components.dll -r:${libdir}/bin/NRefactory.dll -r:${libdir}/bin/Mono.Cecil.dll
-+Libs: -r:${libdir}/bin/MonoDevelop.Core.dll -r:${libdir}/bin/MonoDevelop.Core.Gui.dll -r:${libdir}/bin/MonoDevelop.Projects.dll -r:${libdir}/bin/MonoDevelop.Projects.Gui.dll -r:${libdir}/bin/MonoDevelop.Ide.dll -r:${libdir}/bin/MonoDevelop.Components.dll -r:${libdir}/bin/NRefactory.dll
-diff -up monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.am.use-system-Mono.Cecil monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.am
---- monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.am.use-system-Mono.Cecil	2008-04-11 14:14:35.000000000 -0400
-+++ monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.am	2008-04-11 14:14:49.000000000 -0400
-@@ -58,7 +58,7 @@ libsteticui_REFERENCES  =  \
+diff -uraN monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/lib/Makefile.am monodevelop-1.9/src/addins/MonoDevelop.GtkCore/lib/Makefile.am
+--- monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/lib/Makefile.am	2008-06-30 19:33:45.000000000 +0200
++++ monodevelop-1.9/src/addins/MonoDevelop.GtkCore/lib/Makefile.am	2008-08-08 03:51:37.819238210 +0200
+@@ -58,7 +58,7 @@
  	-pkg:gnome-sharp-2.0 \
  	-pkg:gtk-sharp-2.0 \
  	-r:$(libstetic) \
@@ -61,10 +10,10 @@
  	-r:Mono.Posix \
  	-r:System.Runtime.Remoting \
  	-r:System.Xml
-diff -up monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.in.use-system-Mono.Cecil monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.in
---- monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.in.use-system-Mono.Cecil	2008-04-11 14:14:04.000000000 -0400
-+++ monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/Makefile.in	2008-04-11 14:14:20.000000000 -0400
-@@ -209,7 +209,7 @@ libsteticui_REFERENCES = \
+diff -uraN monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/lib/Makefile.in monodevelop-1.9/src/addins/MonoDevelop.GtkCore/lib/Makefile.in
+--- monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/lib/Makefile.in	2008-07-01 01:33:58.000000000 +0200
++++ monodevelop-1.9/src/addins/MonoDevelop.GtkCore/lib/Makefile.in	2008-08-08 03:51:37.823239248 +0200
+@@ -210,7 +210,7 @@
  	-pkg:gnome-sharp-2.0 \
  	-pkg:gtk-sharp-2.0 \
  	-r:$(libstetic) \
@@ -73,10 +22,10 @@
  	-r:Mono.Posix \
  	-r:System.Runtime.Remoting \
  	-r:System.Xml
-diff -up monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am.use-system-Mono.Cecil monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am
---- monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am.use-system-Mono.Cecil	2008-04-11 14:12:49.000000000 -0400
-+++ monodevelop-0.19/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am	2008-04-11 14:13:42.000000000 -0400
-@@ -5,7 +5,6 @@ ASSEMBLY = $(ASSEMBLY_DIR)/libsteticui.d
+diff -uraN monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am monodevelop-1.9/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am
+--- monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am	2008-06-30 19:33:38.000000000 +0200
++++ monodevelop-1.9/src/addins/MonoDevelop.GtkCore/lib/stetic/libsteticui/Makefile.am	2008-08-08 03:51:37.826239119 +0200
+@@ -5,7 +5,6 @@
  ASSEMBLY_FILES = \
  	$(ASSEMBLY) \
  	$(ASSEMBLY_DIR)/libsteticui.dll.mdb \
@@ -84,7 +33,7 @@
  	$(DATA_FILE_BUILD)
  	
  pkglib_DATA = $(ASSEMBLY_FILES)
-@@ -86,7 +85,7 @@ libsteticui_dll_references =  \
+@@ -86,7 +85,7 @@
  	-pkg:gnome-sharp-2.0 \
  	-pkg:gtk-sharp-2.0 \
  	-r:$(top_builddir)/bin/libstetic.dll \
@@ -93,7 +42,7 @@
  	-r:Mono.Posix \
  	-r:System.Runtime.Remoting \
  	-r:System.Xml
-@@ -94,7 +93,7 @@ libsteticui_dll_references =  \
+@@ -94,7 +93,7 @@
  libsteticui_dll_datafiles = libsteticui.dll.config
  
  
@@ -102,7 +51,7 @@
  	
  RESOURCE_FILES = $(addprefix $(srcdir)/, $(libsteticui_dll_resources))
  DATA_FILES = $(addprefix $(srcdir)/, $(libsteticui_dll_datafiles))
-@@ -111,17 +110,9 @@ $(DATA_FILE_BUILD): $(srcdir)/$(notdir $
+@@ -111,17 +110,9 @@
  	mkdir -p $(ASSEMBLY_DIR)
  	cp $(srcdir)/$(subst $(ASSEMBLY_DIR),$(srcdir),$@) $(ASSEMBLY_DIR)/.
  
@@ -121,10 +70,10 @@
 -	$(DATA_FILES) \
 -	$(srcdir)/lib/$(CECIL)
 +	$(DATA_FILES)
-diff -up monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.am.use-system-Mono.Cecil monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.am
---- monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.am.use-system-Mono.Cecil	2008-04-11 14:15:11.000000000 -0400
-+++ monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.am	2008-04-11 14:15:32.000000000 -0400
-@@ -16,7 +16,7 @@ REFS =  \
+diff -uraN monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/Makefile.am monodevelop-1.9/src/addins/MonoDevelop.GtkCore/Makefile.am
+--- monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/Makefile.am	2008-06-30 19:33:45.000000000 +0200
++++ monodevelop-1.9/src/addins/MonoDevelop.GtkCore/Makefile.am	2008-08-08 03:51:37.829240107 +0200
+@@ -16,7 +16,7 @@
  	-r:$(top_builddir)/build/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll \
  	-r:$(top_builddir)/build/AddIns/MonoDevelop.GtkCore/libstetic.dll \
  	-r:$(top_builddir)/build/AddIns/MonoDevelop.GtkCore/libsteticui.dll \
@@ -133,10 +82,10 @@
  	-r:$(top_builddir)/build/bin/MonoDevelop.Components.dll \
  	-r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
  	-r:$(top_builddir)/build/bin/MonoDevelop.Core.Gui.dll \
-diff -up monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.in.use-system-Mono.Cecil monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.in
---- monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.in.use-system-Mono.Cecil	2008-04-11 14:11:39.000000000 -0400
-+++ monodevelop-0.19/src/addins/MonoDevelop.GtkCore/Makefile.in	2008-04-11 14:11:41.000000000 -0400
-@@ -198,7 +198,7 @@ REFS = \
+diff -uraN monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/Makefile.in monodevelop-1.9/src/addins/MonoDevelop.GtkCore/Makefile.in
+--- monodevelop-1.9.orig/src/addins/MonoDevelop.GtkCore/Makefile.in	2008-07-01 01:33:58.000000000 +0200
++++ monodevelop-1.9/src/addins/MonoDevelop.GtkCore/Makefile.in	2008-08-08 03:51:37.836240737 +0200
+@@ -199,7 +199,7 @@
  	-r:$(top_builddir)/build/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll \
  	-r:$(top_builddir)/build/AddIns/MonoDevelop.GtkCore/libstetic.dll \
  	-r:$(top_builddir)/build/AddIns/MonoDevelop.GtkCore/libsteticui.dll \
@@ -145,10 +94,10 @@
  	-r:$(top_builddir)/build/bin/MonoDevelop.Components.dll \
  	-r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
  	-r:$(top_builddir)/build/bin/MonoDevelop.Core.Gui.dll \
-diff -up monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.am.use-system-Mono.Cecil monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.am
---- monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.am.use-system-Mono.Cecil	2008-04-11 14:16:34.000000000 -0400
-+++ monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.am	2008-04-11 14:16:55.000000000 -0400
-@@ -6,8 +6,8 @@ CONFIG = MonoDevelop.Projects.dll.config
+diff -uraN monodevelop-1.9.orig/src/core/MonoDevelop.Projects/Makefile.am monodevelop-1.9/src/core/MonoDevelop.Projects/Makefile.am
+--- monodevelop-1.9.orig/src/core/MonoDevelop.Projects/Makefile.am	2008-06-30 19:34:45.000000000 +0200
++++ monodevelop-1.9/src/core/MonoDevelop.Projects/Makefile.am	2008-08-08 03:51:37.840238703 +0200
+@@ -6,8 +6,8 @@
  REFS =  \
  	$(MONO_ADDINS_LIBS) \
  	$(MONODOC_LIBS) \
@@ -159,10 +108,10 @@
  	-r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
  	-r:Mono.Posix \
  	-r:System \
-diff -up monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.in.use-system-Mono.Cecil monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.in
---- monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.in.use-system-Mono.Cecil	2008-04-11 14:16:02.000000000 -0400
-+++ monodevelop-0.19/src/core/MonoDevelop.Projects/Makefile.in	2008-04-11 14:16:27.000000000 -0400
-@@ -180,8 +180,8 @@ CONFIG = MonoDevelop.Projects.dll.config
+diff -uraN monodevelop-1.9.orig/src/core/MonoDevelop.Projects/Makefile.in monodevelop-1.9/src/core/MonoDevelop.Projects/Makefile.in
+--- monodevelop-1.9.orig/src/core/MonoDevelop.Projects/Makefile.in	2008-07-01 01:33:59.000000000 +0200
++++ monodevelop-1.9/src/core/MonoDevelop.Projects/Makefile.in	2008-08-08 03:51:37.845238115 +0200
+@@ -181,8 +181,8 @@
  REFS = \
  	$(MONO_ADDINS_LIBS) \
  	$(MONODOC_LIBS) \


--- mdtool.patch DELETED ---


--- monodevelop-config.patch DELETED ---


--- monodevelop-libdir.patch DELETED ---


--- monodevelop.spec DELETED ---




More information about the fedora-extras-commits mailing list