Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Raynaud2009-06-30 15:32:43 +0000
committerXavier Raynaud2009-06-30 15:32:43 +0000
commit461cc1d24d94809675c0ff771742d47d7baae3f3 (patch)
treef0c9d902b044ad8a10071c5393fe22db244cc597 /gprof/org.eclipse.linuxtools.gprof
parent4e6a70a2c85e9c26d97dfb521ca53b5689627617 (diff)
downloadorg.eclipse.linuxtools-461cc1d24d94809675c0ff771742d47d7baae3f3.tar.gz
org.eclipse.linuxtools-461cc1d24d94809675c0ff771742d47d7baae3f3.tar.xz
org.eclipse.linuxtools-461cc1d24d94809675c0ff771742d47d7baae3f3.zip
fix https://bugs.eclipse.org/bugs/show_bug.cgi?id=282021
Diffstat (limited to 'gprof/org.eclipse.linuxtools.gprof')
-rw-r--r--gprof/org.eclipse.linuxtools.gprof/META-INF/MANIFEST.MF5
-rw-r--r--gprof/org.eclipse.linuxtools.gprof/build.properties3
-rw-r--r--gprof/org.eclipse.linuxtools.gprof/plugin.properties16
-rw-r--r--gprof/org.eclipse.linuxtools.gprof/plugin.xml8
4 files changed, 25 insertions, 7 deletions
diff --git a/gprof/org.eclipse.linuxtools.gprof/META-INF/MANIFEST.MF b/gprof/org.eclipse.linuxtools.gprof/META-INF/MANIFEST.MF
index fe292f904c..667db627f9 100644
--- a/gprof/org.eclipse.linuxtools.gprof/META-INF/MANIFEST.MF
+++ b/gprof/org.eclipse.linuxtools.gprof/META-INF/MANIFEST.MF
@@ -1,10 +1,10 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Gprof Plug-in
+Bundle-Name: %bundleName
Bundle-SymbolicName: org.eclipse.linuxtools.gprof;singleton:=true
Bundle-Version: 4.0.0.qualifier
Bundle-Activator: org.eclipse.linuxtools.gprof.Activator
-Bundle-Vendor: STMicroelectronics
+Bundle-Vendor: %bundleProvider
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.variables,
org.eclipse.ui,
@@ -19,3 +19,4 @@ Export-Package: org.eclipse.linuxtools.gprof,
org.eclipse.linuxtools.gprof.utils,
org.eclipse.linuxtools.gprof.view
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Bundle-Localization: plugin
diff --git a/gprof/org.eclipse.linuxtools.gprof/build.properties b/gprof/org.eclipse.linuxtools.gprof/build.properties
index 8e59fca74a..d9e236776e 100644
--- a/gprof/org.eclipse.linuxtools.gprof/build.properties
+++ b/gprof/org.eclipse.linuxtools.gprof/build.properties
@@ -4,4 +4,5 @@ bin.includes = .,\
META-INF/,\
icons/,\
plugin.xml,\
- about.html
+ about.html,\
+ plugin.properties
diff --git a/gprof/org.eclipse.linuxtools.gprof/plugin.properties b/gprof/org.eclipse.linuxtools.gprof/plugin.properties
new file mode 100644
index 0000000000..f0294b2a9c
--- /dev/null
+++ b/gprof/org.eclipse.linuxtools.gprof/plugin.properties
@@ -0,0 +1,16 @@
+#******************************************************************************
+# Copyright (c) 2009 STMicroelectronics.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Xavier Raynaud <xavier.raynaud@st.com> - initial API and implementation
+#*******************************************************************************
+bundleProvider = Eclipse
+bundleName = Gprof Plug-in (Incubation)
+gprofEditor = Gprof Editor
+gprof = gprof
+gprofDescription = Gprof view displays the profiling information contained in a gmon.out file
+gprofCategory = gprof \ No newline at end of file
diff --git a/gprof/org.eclipse.linuxtools.gprof/plugin.xml b/gprof/org.eclipse.linuxtools.gprof/plugin.xml
index c0d2b0c15c..6dbc4d1f4d 100644
--- a/gprof/org.eclipse.linuxtools.gprof/plugin.xml
+++ b/gprof/org.eclipse.linuxtools.gprof/plugin.xml
@@ -9,7 +9,7 @@
icon="icons/toggle.gif"
id="org.eclipse.linuxtools.gprof.editor.single"
launcher="org.eclipse.linuxtools.gprof.action.OpenGmonAction"
- name="Gprof Editor">
+ name="%gprofEditor">
</editor>
</extension>
<extension
@@ -20,15 +20,15 @@
class="org.eclipse.linuxtools.gprof.view.GmonView"
icon="icons/toggle.gif"
id="org.eclipse.linuxtools.gprof.view"
- name="gprof"
+ name="%gprof"
restorable="false">
<description>
- Gprof view displays the profiling information contained in a gmon.out file
+ %gprofDescription
</description>
</view>
<category
id="org.eclipse.linuxtools.gprof"
- name="gprof">
+ name="%gprofCategory">
</category>
</extension>

Back to the top