Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8f5d05517a46177b7fff072947ba14bc98821b05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
	<!-- version, the RCP version to build. This is used to determine the file 
    name of the root file archives -->
	<rcp version="3.3.1" />

	<!-- configIni, the config.ini file to use. -->
	<!-- name, the name of the product, used in naming the created files. -->
	<product
	  configIni="/home/mknauer/projects/packaging33/org.eclipse.epp/releng/org.eclipse.epp.config/Eclipse_IDE_for_C_C++_Developers/config.ini"
	  name="eclipse-cpp-europa-fall" 
	  eclipseProductId="org.eclipse.platform.ide"
	  initialPerspectiveId="org.eclipse.cdt.ui.CPerspective" />

	<!-- url, pointing to an update site. -->
	<updateSites>
    <!-- local mirrors -->
    <updateSite url="file:///home/mknauer/mirror/3.3milestones/" />
    <updateSite url="file:///home/mknauer/mirror/testUpdates-M/" />
    <updateSite url="file:///home/mknauer/mirror/releases/europa/staging/" />
<!-- 
    <updateSite url="file:///home/mknauer/mirror/releases/europa/" />
 -->

    <!-- eclipse.org update sites -->
<!-- 
    <updateSite url="http://download.eclipse.org/releases/europa/" />
    <updateSite url="http://download.eclipse.org/releases/europa/staging/" />
    <updateSite url="http://download.eclipse.org/technology/mylar/update-site/e3.3/" />
    <updateSite url="http://download.eclipse.org/tools/cdt/releases/europa/" />
    <updateSite url="http://download.eclipse.org/webtools/updates/" />
    <updateSite url="http://download.eclipse.org/webtools/milestones/" />
    <updateSite url="http://download.eclipse.org/modeling/emf/updates/" />
    <updateSite url="http://download.eclipse.org/modeling/gmf/update-site/europa/" />
    <updateSite url="http://download.eclipse.org/modeling/gmf/update-site/milestone/" />
    <updateSite url="http://download.eclipse.org/eclipse/updates/3.3milestones/" />
 -->

    <!-- old and/or test update sites -->
<!-- 
    <updateSite url="http://download.eclipse.org/callisto/releases/" />
    <updateSite url="http://download.eclipse.org/eclipse/testUpdates/" />
 -->
	</updateSites>

	<!-- id, a feature id. -->
	<!-- version, the feature version. -->
	<requiredFeatures>
    <feature
      id="org.eclipse.platform"
      version="3.3.1.R33x_r20070911-_19UEkpF-B7Uh2hKy75y">
    </feature>

    <feature
      id="org.eclipse.cdt"
      version="4.0.0.200706261300">
    </feature>

    <feature
      id="org.eclipse.cvs"
      version="1.0.1.R33x_r20070802-7C79_9_KKG-mDM9e3H5D">
    </feature>

	</requiredFeatures>

	<!-- folder, pointing to the packager configuration. 
		This folder must contain 
		  'packager.properties', 
		  'packaging.properties' and 
		  'customTargetsStub.xml', all of which can be left unmodified. -->
	<packagerConfigurationFolder
		folder="/home/mknauer/projects/packaging33/org.eclipse.epp/releng/org.eclipse.epp.config/config" />

	<installerConfigurationFolder
		folder="/home/mknauer/projects/packaging33/org.eclipse.epp/releng/org.eclipse.epp.config/config" />

	<!-- folder, pointing to a folder containing the zipped root files for each of 
		the target platforms. -->
	<rootFileFolder folder="/home/mknauer/packaging/roots" />

	<!-- relativeFolder, names the subfolder of the base folder where the update site will be created. 
		This is configurable so that working areas, especially root files, are reusable. -->
	<extensionSite relativeFolder="extension_site"></extensionSite>

	<!-- Create archives for win32, linux, macosx platforms, antZip is default format -->
	<targetPlatforms>
		<platform os="win32" ws="win32" arch="x86">
			<archiveFormat format="antZip"></archiveFormat>
			<eclipseIniFileContent>-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
128M
-vmargs
-Xms40m
-Xmx256m</eclipseIniFileContent>
		</platform>
		<platform os="linux" ws="gtk" arch="x86">
			<archiveFormat format="tar" />
			<eclipseIniFileContent>-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
128M
-vmargs
-Xms40m
-Xmx256m</eclipseIniFileContent>
		</platform>
		<platform os="macosx" ws="carbon" arch="ppc">
			<archiveFormat format="tar" />
			<eclipseIniFileContent>-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
128M
-vmargs
-Xms40m
-Xmx256m</eclipseIniFileContent>
		</platform>
	</targetPlatforms>
</configuration>

Back to the top