~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Autotools/MonoDevelop.Autotools.addin.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<Addin  id          = "Autotools"
2
2
        namespace   = "MonoDevelop"
3
 
                name        = "Makefile generation"
4
 
                author      = "Matthias Braun, Scott Ellington"
 
3
        name        = "Makefile generation"
 
4
        author      = "Matthias Braun, Scott Ellington"
5
5
        copyright   = "LGPL"
6
6
        url         = "http://monodevelop.com"
7
7
        description = "Allows generating simple makefiles and Autotools based makefiles for projects"
8
8
        category    = "Project Import and Export"
9
 
        version     = "3.0.3">
 
9
        version     = "4.0.5">
10
10
        
11
11
        <Runtime>
12
12
                <Import assembly="MonoDevelop.Autotools.dll" />
19
19
        </Runtime>
20
20
 
21
21
        <Dependencies>
22
 
                <Addin id="Core" version="3.0.3"/>
23
 
                <Addin id="Ide" version="3.0.3"/>
24
 
                <Addin id="Deployment" version="3.0.3"/>
25
 
                <Addin id="DesignerSupport" version="3.0.3"/>
 
22
                <Addin id="Core" version="4.0.5"/>
 
23
                <Addin id="Ide" version="4.0.5"/>
 
24
                <Addin id="Deployment" version="4.0.5"/>
 
25
                <Addin id="DesignerSupport" version="4.0.5"/>
26
26
        </Dependencies>
27
 
        
 
27
 
28
28
        <ExtensionPoint path = "/MonoDevelop/Autotools/SimpleSetups">
29
29
                <Description>Simple autotools setups. Specified classes must implement ISimpleAutotoolsSetup</Description>
30
30
                <ExtensionNode name ="Class" />
31
31
        </ExtensionPoint>
32
 
        
 
32
 
33
33
        <ExtensionPoint path = "/MonoDevelop/Autotools/MakefileHandlers">
34
34
                <Description>Makefile handlers. Specified classes must implement IMakefileHandler</Description>
35
35
                <ExtensionNode name ="Class" />
36
36
        </ExtensionPoint>
37
 
        
 
37
 
38
38
        <Extension path = "/MonoDevelop/Ide/Pads/ProjectPad">
39
39
                <NodeBuilder id = "AutotoolNodeExtension" class = "MonoDevelop.Autotools.NodeExtension"/>
40
40
        </Extension>
41
 
        
 
41
 
42
42
        <Extension path = "/MonoDevelop/ProjectModel/ProjectServiceExtensions">
43
43
                <Condition id="Platform" value="!windows">
44
44
                        <Class class = "MonoDevelop.Autotools.MakefileProjectServiceExtension" id="MakefileProjectServiceExtension" insertafter="FinalStep"/>
57
57
                        </Category>
58
58
                </Condition>
59
59
        </Extension>
60
 
        
 
60
 
61
61
        <Extension path = "/MonoDevelop/Ide/ContextMenu/ProjectPad/Tools">
62
62
                <Condition id="ItemType" value="Solution|Project">
63
63
                        <Condition id="Platform" value="!windows">
71
71
                        <CommandItem id = "MonoDevelop.Autotools.Commands.GenerateFiles" insertafter="MonoDevelop.Ide.Commands.ProjectCommands.ExportSolution"/>
72
72
                </Condition>
73
73
        </Extension>
74
 
        
 
74
 
75
75
        <Extension path = "/MonoDevelop/Ide/ContextMenu/ProjectPad/QuickProperties">
76
76
                <Condition id="Platform" value="!windows">
77
77
                        <Condition id="ItemType" value="ProjectFile">
79
79
                        </Condition>
80
80
                </Condition>
81
81
        </Extension>
82
 
        
 
82
 
83
83
        <Extension path = "/MonoDevelop/Ide/Pads/ProjectPad">
84
84
                <Condition id="Platform" value="!windows">
85
85
                        <NodeBuilder class = "MonoDevelop.Autotools.FileNodeBuilderExtension"/>
86
86
                </Condition>
87
87
        </Extension>
88
 
        
 
88
 
89
89
        <Extension path = "/MonoDevelop/DeployService/PackageBuilders">
90
90
                <Condition id="Platform" value="!windows">
91
91
                        <Condition id="Platform" value="!windows">
101
101
                        </Condition>
102
102
                </Condition>
103
103
        </Extension>
104
 
        
 
104
 
105
105
        <Extension path = "/MonoDevelop/ProjectModel/SerializableClasses">
106
106
                <DataType class = "MonoDevelop.Autotools.TarballDeployTarget" />
107
107
        </Extension>
119
119
                <ItemProperty class = "MonoDevelop.Projects.Project"
120
120
                        name = "MonoDevelop.Autotools.MakefileInfo" type = "MonoDevelop.Autotools.MakefileData" />
121
121
        </Extension>
122
 
        
 
122
 
123
123
        <Extension path = "/MonoDevelop/DesignerSupport/PropertyProviders">
124
124
                <Condition id="Platform" value="!windows">
125
125
                        <Class class = "MonoDevelop.Autotools.PropertyProvider"/>
126
126
                </Condition>
127
127
        </Extension>
128
 
        
 
128
 
129
129
        <Extension path = "/MonoDevelop/Core/Applications">
130
130
                <Condition id="Platform" value="!windows">
131
131
                        <Application id = "generate-makefiles" class = "MonoDevelop.Autotools.MakefileGeneratorTool" description = "Makefile generator tool"/>
138
138
                        <Class class = "MonoDevelop.Autotools.SimpleProjectMakefileHandler"/>
139
139
                </Condition>
140
140
        </Extension>
141
 
        
 
141
 
142
142
<!--
143
143
        <Extension path = "/MonoDevelop/Ide/ProjectFeatures">
144
144
                <Class class = "MonoDevelop.Autotools.MakefileIntegrationFeature" />
145
145
        </Extension>
146
146
-->
147
 
        
 
147
 
148
148
</Addin>