From 99666e772dd50767295294a5686710e6e2a49851 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Thu, 25 Aug 2011 11:20:21 -0700 Subject: o-hand recipes: convert from svn.o-hand.org to git.yoctoproject.org (From OE-Core rev: 4e7218c19775ef81caed27742e9d203af10b7416) Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-graphics/fstests/fstests_git.bb | 25 ++++++++++++ meta/recipes-graphics/fstests/fstests_svn.bb | 24 ----------- .../matchbox-wm-2/matchbox-wm-2_git.bb | 46 ++++++++++++++++++++++ .../matchbox-wm-2/matchbox-wm-2_svn.bb | 46 ---------------------- .../xvideo-tests/xvideo-tests_git.bb | 15 +++++++ .../xvideo-tests/xvideo-tests_svn.bb | 15 ------- 6 files changed, 86 insertions(+), 85 deletions(-) create mode 100644 meta/recipes-graphics/fstests/fstests_git.bb delete mode 100644 meta/recipes-graphics/fstests/fstests_svn.bb create mode 100644 meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_git.bb delete mode 100644 meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_svn.bb create mode 100644 meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb delete mode 100644 meta/recipes-graphics/xvideo-tests/xvideo-tests_svn.bb (limited to 'meta/recipes-graphics') diff --git a/meta/recipes-graphics/fstests/fstests_git.bb b/meta/recipes-graphics/fstests/fstests_git.bb new file mode 100644 index 0000000000..e1623f4935 --- /dev/null +++ b/meta/recipes-graphics/fstests/fstests_git.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Various benchmarning tests for X" +HOMEPAGE = "http://www.o-hand.com" +SECTION = "devel" +LICENSE = "Zlib" +DEPENDS = "pango libxext libxft virtual/libx11 gtk+" + +SRCREV = "218b99d82b56011e3f1b909e6baf22ce25af6334" +PV = "0.1+git${SRCPV}" +PR = "r0" + + +SRC_URI = "git://git.yoctoproject.org/${BPN};protocol=git \ + file://dso_linking_change_build_fix.patch" + +S = "${WORKDIR}/git/tests" + +inherit autotools + +do_install() { + install -d ${D}${bindir} + find . -name "test-*" -type f -perm -755 -exec install -m 0755 {} ${D}${bindir} \; +} + + +LIC_FILES_CHKSUM = "file://test-pango-gdk.c;endline=24;md5=1ee74ec851ecda57eb7ac6cc180f7655" diff --git a/meta/recipes-graphics/fstests/fstests_svn.bb b/meta/recipes-graphics/fstests/fstests_svn.bb deleted file mode 100644 index 2ffdc35cc0..0000000000 --- a/meta/recipes-graphics/fstests/fstests_svn.bb +++ /dev/null @@ -1,24 +0,0 @@ -DESCRIPTION = "Various benchmarning tests for X" -HOMEPAGE = "http://www.o-hand.com" -SECTION = "devel" -LICENSE = "Zlib" -DEPENDS = "pango libxext libxft virtual/libx11 gtk+" - -SRCREV = "426" -PV = "0.0+svnr${SRCPV}" -PR = "r1" - -inherit autotools - -SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=fstests;proto=http \ - file://dso_linking_change_build_fix.patch" - -S = "${WORKDIR}/fstests/tests" - -do_install() { - install -d ${D}${bindir} - find . -name "test-*" -type f -perm -755 -exec install -m 0755 {} ${D}${bindir} \; -} - - -LIC_FILES_CHKSUM = "file://test-pango-gdk.c;endline=24;md5=1ee74ec851ecda57eb7ac6cc180f7655" diff --git a/meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_git.bb b/meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_git.bb new file mode 100644 index 0000000000..c9498f7f92 --- /dev/null +++ b/meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_git.bb @@ -0,0 +1,46 @@ +SECTION = "x11/wm" +DESCRIPTION = "Matchbox window manager" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://matchbox/core/mb-wm.h;endline=21;md5=1b1d328a527906350ea7ce7ab1bb7564" + +DEPENDS = "virtual/libx11 libxext libxrender startup-notification expat gconf pango libxdamage libxcomposite gtk+" + +SRCREV = "18ab9c7e4ffcb066b25281172ea82947bd56cb86" +PV = "0.1+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.yoctoproject.org/matchbox-window-manager-2;proto=git \ + file://fix_makefile.patch \ + " + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig update-alternatives + +# Change this to x-session-manager->matchbox-session and put in +# matchbox-session, then change this to x-window-manager to +# matchbox-window-manager-2. +ALTERNATIVE_NAME = "x-window-manager" +ALTERNATIVE_LINK = "${bindir}/x-window-manager" +ALTERNATIVE_PATH = "${bindir}/matchbox-session" +ALTERNATIVE_PRIORITY = "10" + +PACKAGES =+ "libmatchbox2" + +FILES_libmatchbox2 = "${libdir}/*${SOLIBS}" + +FILES_${PN} += "${datadir}/matchbox-2 \ + ${sysconfdir}/matchbox-2 \ + ${datadir}/themes/*" + +EXTRA_OECONF = "--enable-debug \ + --enable-simple-manager \ + --enable-compositing-manager \ + --enable-libmatchbox \ + --enable-png-theme \ + " + +do_install_append () { + cd ${D}${bindir} + ln -s matchbox-window-manager-2-simple matchbox-window-manager +} diff --git a/meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_svn.bb b/meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_svn.bb deleted file mode 100644 index 0b5e3f1e6b..0000000000 --- a/meta/recipes-graphics/matchbox-wm-2/matchbox-wm-2_svn.bb +++ /dev/null @@ -1,46 +0,0 @@ -SECTION = "x11/wm" -DESCRIPTION = "Matchbox window manager" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://matchbox/core/mb-wm.h;endline=21;md5=1b1d328a527906350ea7ce7ab1bb7564" - -DEPENDS = "virtual/libx11 libxext libxrender startup-notification expat gconf pango libxdamage libxcomposite gtk+" - -SRCREV = "2106" -PV = "0.0+svnr${SRCPV}" -PR = "r5" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-window-manager-2;proto=http \ - file://fix_makefile.patch \ - " - -S = "${WORKDIR}/matchbox-window-manager-2" - -inherit autotools pkgconfig update-alternatives - -# Change this to x-session-manager->matchbox-session and put in -# matchbox-session, then change this to x-window-manager to -# matchbox-window-manager-2. -ALTERNATIVE_NAME = "x-window-manager" -ALTERNATIVE_LINK = "${bindir}/x-window-manager" -ALTERNATIVE_PATH = "${bindir}/matchbox-session" -ALTERNATIVE_PRIORITY = "10" - -PACKAGES =+ "libmatchbox2" - -FILES_libmatchbox2 = "${libdir}/*${SOLIBS}" - -FILES_${PN} += "${datadir}/matchbox-2 \ - ${sysconfdir}/matchbox-2 \ - ${datadir}/themes/*" - -EXTRA_OECONF = "--enable-debug \ - --enable-simple-manager \ - --enable-compositing-manager \ - --enable-libmatchbox \ - --enable-png-theme \ - " - -do_install_append () { - cd ${D}${bindir} - ln -s matchbox-window-manager-2-simple matchbox-window-manager -} diff --git a/meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb b/meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb new file mode 100644 index 0000000000..166b50b9b3 --- /dev/null +++ b/meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "Simple XVideo test application" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ + file://src/test-xvideo.c;beginline=1;endline=20;md5=6ae3b4c3c2ff9e51dbbc35bb237afa00" +DEPENDS = "libxv" + +SRCREV = "f8f320d0254c09ce483fc1d8ee99ecf5bc940965" +PV = "0.1+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.yoctoproject.org/test-xvideo;protocol=git" + +S = "${WORKDIR}/git" + +inherit autotools diff --git a/meta/recipes-graphics/xvideo-tests/xvideo-tests_svn.bb b/meta/recipes-graphics/xvideo-tests/xvideo-tests_svn.bb deleted file mode 100644 index 0c6ca3feab..0000000000 --- a/meta/recipes-graphics/xvideo-tests/xvideo-tests_svn.bb +++ /dev/null @@ -1,15 +0,0 @@ -DESCRIPTION = "Simple XVideo test application" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ - file://src/test-xvideo.c;beginline=1;endline=20;md5=6ae3b4c3c2ff9e51dbbc35bb237afa00" -DEPENDS = "libxv" - -SRCREV = "270" -PV = "0.0+svnr${SRCPV}" -PR = "r0" - -SRC_URI="svn://svn.o-hand.com/repos/misc/trunk;module=test-xvideo;proto=http" - -S = "${WORKDIR}/test-xvideo" - -inherit autotools -- cgit v1.2.3-54-g00ecf