1 ##############################################################################
3 # Copyright (c) 2012 Vifib SARL and Contributors. All Rights Reserved.
5 # WARNING: This program as such is intended to be used by professional
6 # programmers who take the whole responsibility of assessing all potential
7 # consequences resulting from its eventual inadequacies and bugs
8 # End users who are looking for a ready-to-use solution with commercial
9 # guarantees and support are strongly adviced to contract a Free Software
12 # This program is Free Software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License
14 # as published by the Free Software Foundation; either version 3
15 # of the License, or (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 #############################################################################
28 from slapos
.recipe
.librecipe
import GenericBaseRecipe
30 class Recipe(GenericBaseRecipe
):
34 'xvfb_binary': self
.options
['xvfb-path'],
35 'shell_path': self
.options
['shell-path'],
36 'fbdir_path': self
.options
['fbdir-path'],
37 'tmp_path': self
.options
['tmp-path'],
40 xvfb_path
= self
.createExecutable(
41 self
.options
['runner-path'],
42 self
.substituteTemplate(self
.getTemplateFilename('xvfb_run.in'),
46 # Allow to take screenshot if needed
47 if ('xwd-path' in self
.options
) and ('xwd-hook-path' in self
.options
):
49 config
['xwd_binary'] = self
.options
['xwd-path']
50 result
.append(self
.createExecutable(
51 self
.options
['xwd-hook-path'],
52 self
.substituteTemplate(self
.getTemplateFilename('xwd_run.in'),