diff options
author | Tomas Frydrych <tf@openedhand.com> | 2008-09-24 08:56:27 +0000 |
---|---|---|
committer | Tomas Frydrych <tf@openedhand.com> | 2008-09-24 08:56:27 +0000 |
commit | c55be22636ddce71603244e3539a1ad46d832829 (patch) | |
tree | ec024deda2703c54942a9b5e32e79943b2a41720 | |
parent | 78579855e866cbbf21bf1c92a1abd293b789e255 (diff) | |
download | poky-c55be22636ddce71603244e3539a1ad46d832829.tar.gz |
added recipe for metacity-clutter
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5252 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/conf/distro/include/poky-fixed-revisions.inc | 1 | ||||
-rw-r--r-- | meta/conf/distro/include/poky-floating-revisions.inc | 1 | ||||
-rw-r--r-- | meta/packages/gnome/metacity-clutter_git.bb | 26 |
3 files changed, 28 insertions, 0 deletions
diff --git a/meta/conf/distro/include/poky-fixed-revisions.inc b/meta/conf/distro/include/poky-fixed-revisions.inc index c6c3916839..22410dc06c 100644 --- a/meta/conf/distro/include/poky-fixed-revisions.inc +++ b/meta/conf/distro/include/poky-fixed-revisions.inc | |||
@@ -142,6 +142,7 @@ SRCREV_pn-usbpath = "3172" | |||
142 | SRCREV_pn-xserver-kdrive-glamo ?= "a51364e2f23d4b6331c5ed613ce3f7e15f8e540f" | 142 | SRCREV_pn-xserver-kdrive-glamo ?= "a51364e2f23d4b6331c5ed613ce3f7e15f8e540f" |
143 | SRCREV_pn-gsm0710muxd ?= "6fecc78198dd821bbe29efd096bd8fecd855179d" | 143 | SRCREV_pn-gsm0710muxd ?= "6fecc78198dd821bbe29efd096bd8fecd855179d" |
144 | SRCREV_pn-gsmd2 ?= "963f34df8fa3ff4b301079dcf86e9acea6b6fe0f" | 144 | SRCREV_pn-gsmd2 ?= "963f34df8fa3ff4b301079dcf86e9acea6b6fe0f" |
145 | SRCREV_pn-metacity-clutter ?= "94d4e3d3f0407085f4453ed4208cdca3c093c692" | ||
145 | 146 | ||
146 | # | 147 | # |
147 | # Preferred Versions: | 148 | # Preferred Versions: |
diff --git a/meta/conf/distro/include/poky-floating-revisions.inc b/meta/conf/distro/include/poky-floating-revisions.inc index cbf9c04baf..ea7f9e0d47 100644 --- a/meta/conf/distro/include/poky-floating-revisions.inc +++ b/meta/conf/distro/include/poky-floating-revisions.inc | |||
@@ -56,6 +56,7 @@ SRCREV_pn-table ?= "${AUTOREV}" | |||
56 | SRCREV_pn-libmatchbox ?= "${AUTOREV}" | 56 | SRCREV_pn-libmatchbox ?= "${AUTOREV}" |
57 | SRCREV_pn-tasks ?= "${AUTOREV}" | 57 | SRCREV_pn-tasks ?= "${AUTOREV}" |
58 | SRCREV_pn-libjana = "${AUTOREV}" | 58 | SRCREV_pn-libjana = "${AUTOREV}" |
59 | SRCREV_pn-metacity-clutter = "${AUTOREV}" | ||
59 | 60 | ||
60 | SRCDATE_oprofile ?= "${DATE}" | 61 | SRCDATE_oprofile ?= "${DATE}" |
61 | 62 | ||
diff --git a/meta/packages/gnome/metacity-clutter_git.bb b/meta/packages/gnome/metacity-clutter_git.bb new file mode 100644 index 0000000000..5c9b1dd6d9 --- /dev/null +++ b/meta/packages/gnome/metacity-clutter_git.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SECTION = "x11/wm" | ||
2 | DESCRIPTION = "Metacity is the boring window manager for the adult in you." | ||
3 | LICENSE = "GPL" | ||
4 | DEPENDS = "startup-notification gtk+ gconf clutter" | ||
5 | PR = "r0" | ||
6 | PV = "2.25.1+gitr${SRCREV}" | ||
7 | inherit gnome update-alternatives | ||
8 | |||
9 | SRC_URI = "git://git.o-hand.com/metacity-clutter.git;protocol=git;branch=clutter" | ||
10 | S = "${WORKDIR}/git" | ||
11 | |||
12 | ALTERNATIVE_NAME = "x-window-manager" | ||
13 | ALTERNATIVE_LINK = "${bindir}/x-window-manager" | ||
14 | ALTERNATIVE_PATH = "${bindir}/metacity" | ||
15 | ALTERNATIVE_PRIORITY = "11" | ||
16 | |||
17 | EXTRA_OECONF += "--disable-verbose \ | ||
18 | --disable-xinerama \ | ||
19 | --with-clutter" | ||
20 | |||
21 | FILES_${PN} += "${datadir}/themes" | ||
22 | |||
23 | do_stage () { | ||
24 | autotools_stage_all | ||
25 | } | ||
26 | |||