diff options
author | Klaus Kurzmann <mok@fluxnetz.de> | 2009-11-30 11:42:23 +0100 |
---|---|---|
committer | Klaus Kurzmann <mok@fluxnetz.de> | 2009-11-30 11:42:23 +0100 |
commit | 1e183139c31b2ae899f9f575071e0fd9d127f090 (patch) | |
tree | 77f0869790a246a0e25e79ec8bb15e16eb1624f1 /recipes | |
parent | afc2fb3384b8b513f18d486a39206805d4c9e84d (diff) | |
parent | 3867bedec06a1f61f391501f37953e9c1050effb (diff) |
Merge branch 'org.openembedded.dev' of git+ssh://git.openembedded.net/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gnome/gconfmm_2.28.0.bb | 5 | ||||
-rw-r--r-- | recipes/gphoto2/gphoto2_2.4.7.bb | 15 | ||||
-rw-r--r-- | recipes/gphoto2/libgphoto2_2.4.7.bb | 25 | ||||
-rw-r--r-- | recipes/pulseaudio/paprefs_0.9.9.bb | 9 |
4 files changed, 54 insertions, 0 deletions
diff --git a/recipes/gnome/gconfmm_2.28.0.bb b/recipes/gnome/gconfmm_2.28.0.bb new file mode 100644 index 0000000000..b7e57d2e59 --- /dev/null +++ b/recipes/gnome/gconfmm_2.28.0.bb @@ -0,0 +1,5 @@ +DESCRIPTION = "C++ bindings for GConf" +LICENSE = "LGPLv2" +DEPENDS = "glibmm gconf gtkmm" + +inherit gnome diff --git a/recipes/gphoto2/gphoto2_2.4.7.bb b/recipes/gphoto2/gphoto2_2.4.7.bb new file mode 100644 index 0000000000..8af31d15dc --- /dev/null +++ b/recipes/gphoto2/gphoto2_2.4.7.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "gphoto2 is a command-line utility to fetch pictures from digital cameras" +SECTION = "console/utils" +LICENSE = "GPL" +DEPENDS = "libtool libgphoto2 popt" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/gphoto/gphoto2-${PV}.tar.bz2\ + file://gphoto-popt-fixup.patch;patch=1" + +inherit autotools + +do_configure_append() { + find ${S} -name Makefile | xargs sed -i 's:/usr/include:${STAGING_INCDIR}:' +} + diff --git a/recipes/gphoto2/libgphoto2_2.4.7.bb b/recipes/gphoto2/libgphoto2_2.4.7.bb new file mode 100644 index 0000000000..45d42c398c --- /dev/null +++ b/recipes/gphoto2/libgphoto2_2.4.7.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "libgphoto2 allows you to access digital cameras" +SECTION = "libs" +LICENSE = "GPL" +DEPENDS = "libtool jpeg virtual/libusb0 libexif" + +SRC_URI = "${SOURCEFORGE_MIRROR}/gphoto/libgphoto2-${PV}.tar.bz2" + +inherit autotools pkgconfig lib_package + +OE_LT_RPATH_ALLOW=":${libdir}:" +OE_LT_RPATH_ALLOW[export]="1" + +EXTRA_OECONF = " --with-drivers=all ac_cv_lib_ltdl_lt_dlcaller_register=yes" + +PACKAGES =+ "libgphotoport libgphoto2-camlibs" +FILES_libgphoto2-camlibs = "${libdir}/libgphoto2*/*/*.so*" +RDEPENDS_${PN} = "libgphoto2-camlibs" + +FILES_libgphotoport = "${libdir}/libgphoto2_port.so.*" + +FILES_${PN} += "${libdir}/udev/*" +FILES_${PN}-dbg += "${libdir}/*/*/.debug" + + + diff --git a/recipes/pulseaudio/paprefs_0.9.9.bb b/recipes/pulseaudio/paprefs_0.9.9.bb new file mode 100644 index 0000000000..2b62bce013 --- /dev/null +++ b/recipes/pulseaudio/paprefs_0.9.9.bb @@ -0,0 +1,9 @@ +DESCRIPTION = "PulseAudio Preferences (paprefs) is a simple GTK based configuration dialog for the PulseAudio sound server" +LICENSE = "GPLv2" +DEPENDS = "gconfmm libglademm libcanberra gtk+ libnotify gconf pulseaudio" + +inherit gnome + +SRC_URI = "http://0pointer.de/lennart/projects/${PN}/${PN}-${PV}.tar.gz" + + |