diff options
author | Koen Kooi <koen@openembedded.org> | 2008-02-07 11:29:05 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-02-07 11:29:05 +0000 |
commit | 25a5a3fc7f62ba6488ffb11c3cd9ae07d33b378d (patch) | |
tree | 127ac83c34af05dc4337337413612d3a216a1753 | |
parent | c31c268a231989bbf7749667023ef812a3b3f380 (diff) | |
parent | b793d8f421a84ea0769c6f6ecf521253ced0636d (diff) |
merge of '0d8bbbcdb6668a128380d44dac827d05c8e25266'
and '56d99745e997218245cc7d9ec59717796070a9d6'
-rw-r--r-- | packages/upnp/libupnp_1.4.2.bb | 12 | ||||
-rw-r--r-- | packages/ushare/ushare_1.1a.bb | 20 |
2 files changed, 32 insertions, 0 deletions
diff --git a/packages/upnp/libupnp_1.4.2.bb b/packages/upnp/libupnp_1.4.2.bb new file mode 100644 index 0000000000..a7a01597ac --- /dev/null +++ b/packages/upnp/libupnp_1.4.2.bb @@ -0,0 +1,12 @@ +DESCRIPTION = "The portable SDK for UPnP* Devices (libupnp) provides developers with an API and open source code for building control points, devices, and bridges that are compliant with Version 1.0 of the Universal Plug and Play Device Architecture Specification." +HOMEPAGE = "http://pupnp.sourceforge.net/" +LICENSE = "BSD" + +LEAD_SONAME = "libupnp" +SRC_URI = "${SOURCEFORGE_MIRROR}/pupnp/${P}.tar.bz2" + +inherit autotools pkgconfig + +do_stage() { + autotools_stage_all +} diff --git a/packages/ushare/ushare_1.1a.bb b/packages/ushare/ushare_1.1a.bb new file mode 100644 index 0000000000..b198d89c95 --- /dev/null +++ b/packages/ushare/ushare_1.1a.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "ushare is a UPnP media server" +LICENSE = "GPL" +HOMEPAGE = "http://ushare.geexbox.org/" +DEPENDS = "libupnp virtual/libiconv virtual/libintl" +SRC_URI = "http://ushare.geexbox.org/releases/ushare-${PV}.tar.bz2" +S = "${WORKDIR}/ushare-${PV}" + +inherit autotools gettext + +# the configure script is hand-crafted, it rejects some of the usual +# configure arguments +do_configure () { + ${S}/configure \ + --prefix=${prefix} \ + --bindir=${bindir} \ + --localedir=${datadir}/locale \ + --sysconfdir=${sysconfdir} \ + --cross-compile +} + |