2008-06-03 20:46:25 +00:00
|
|
|
#
|
2010-07-05 01:42:30 +00:00
|
|
|
# Copyright (C) 2008-2010 OpenWrt.org
|
2008-06-03 20:46:25 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gstreamer
|
2010-07-05 01:42:30 +00:00
|
|
|
PKG_VERSION:=0.10.29
|
2009-12-07 16:48:26 +00:00
|
|
|
PKG_RELEASE:=1
|
2008-10-03 13:41:05 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2008-06-03 20:46:25 +00:00
|
|
|
PKG_SOURCE_URL:=http://gstreamer.freedesktop.org/src/gstreamer/
|
2010-07-05 01:42:30 +00:00
|
|
|
PKG_MD5SUM:=c92d6bce4fc65fa9d5a3ad35cdd1a466
|
|
|
|
|
2008-06-03 20:46:25 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2010-12-13 15:14:36 +00:00
|
|
|
PKG_REMOVE_FILES:=autogen.sh aclocal.m4
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
PKG_INSTALL:=1
|
2008-06-03 20:46:25 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-02 18:54:24 +00:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2008-06-03 20:46:25 +00:00
|
|
|
|
2009-12-16 23:25:26 +00:00
|
|
|
define Package/gstreamer/Default
|
|
|
|
CATEGORY:=Multimedia
|
2010-07-05 01:42:30 +00:00
|
|
|
SECTION:=multimedia
|
|
|
|
TITLE:=GStreamer
|
|
|
|
URL:=http://gstreamer.freedesktop.org/
|
2010-07-15 23:57:42 +00:00
|
|
|
DEPENDS:= @!LINUX_2_4
|
2010-07-05 01:42:30 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gstreamer/description/Default
|
|
|
|
GStreamer open source multimedia framework
|
2008-06-03 20:46:25 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
|
2009-12-16 23:25:26 +00:00
|
|
|
define Package/gstreamer
|
2010-07-05 01:42:30 +00:00
|
|
|
$(call Package/gstreamer/Default)
|
|
|
|
TITLE+= framework
|
|
|
|
DEPENDS+= +libgstreamer \
|
|
|
|
+libgstcheck \
|
|
|
|
+libgstcontroller \
|
|
|
|
+libgstdataprotocol \
|
|
|
|
+libgstnet
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
2010-07-05 01:42:30 +00:00
|
|
|
|
2008-06-03 20:46:25 +00:00
|
|
|
define Package/gstreamer/description
|
2010-07-05 01:42:30 +00:00
|
|
|
$(call Package/gstreamer/description/Default)
|
|
|
|
.
|
|
|
|
This meta package contains only dependencies on the other GStreamer
|
|
|
|
componenents.
|
2008-06-03 20:46:25 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
|
|
|
|
define Package/gstreamer-utils
|
|
|
|
$(call Package/gstreamer/Default)
|
|
|
|
TITLE+= utilities
|
|
|
|
DEPENDS+= +libgstreamer
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
define Package/gstreamer-utils/description
|
|
|
|
$(call Package/gstreamer/description/Default)
|
|
|
|
.
|
|
|
|
This package contains the GStreamer utilities.
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
2010-07-05 01:42:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
define Package/libgstreamer
|
|
|
|
$(call Package/gstreamer/Default)
|
|
|
|
TITLE+= library (core)
|
2010-07-16 00:03:55 +00:00
|
|
|
DEPENDS+= +glib2 +libpthread +libxml2
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
define Package/libgstreamer/description
|
|
|
|
$(call Package/gstreamer/description/Default)
|
|
|
|
.
|
|
|
|
This package contains the GStreamer core library.
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
GST_VERSION:=0.10
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--disable-debug \
|
|
|
|
--disable-examples \
|
|
|
|
--disable-tests \
|
|
|
|
--disable-valgrind \
|
|
|
|
\
|
|
|
|
--disable-gst-debug \
|
|
|
|
\
|
|
|
|
--without-libiconv-prefix \
|
|
|
|
--without-libintl-prefix \
|
|
|
|
--without-x \
|
|
|
|
|
|
|
|
EXTRA_LDFLAGS+= \
|
|
|
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
|
2011-02-02 18:54:24 +00:00
|
|
|
-L$(ICONV_PREFIX)/lib -L$(INTL_PREFIX)/lib
|
2010-07-05 01:42:30 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/gstreamer-$(GST_VERSION)
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/include/gstreamer-$(GST_VERSION)/* \
|
|
|
|
$(1)/usr/include/gstreamer-$(GST_VERSION)/ \
|
|
|
|
)
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/lib/libgst*-$(GST_VERSION).{a,la,so*} \
|
|
|
|
$(1)/usr/lib/ \
|
|
|
|
)
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/gstreamer-$(GST_VERSION)
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/lib/gstreamer-$(GST_VERSION)/libgst*.{la,so} \
|
|
|
|
$(1)/usr/lib/gstreamer-$(GST_VERSION)/ \
|
|
|
|
)
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/lib/pkgconfig/gstreamer*-$(GST_VERSION).pc \
|
|
|
|
$(1)/usr/lib/pkgconfig/ \
|
|
|
|
)
|
|
|
|
$(INSTALL_DIR) $(2)/share/aclocal
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/share/aclocal/* \
|
|
|
|
$(2)/share/aclocal/ \
|
|
|
|
)
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
define Package/gstreamer/install
|
|
|
|
/bin/true
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
define Package/gstreamer-utils/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/bin/gst-feedback* \
|
|
|
|
./usr/bin/gst-launch* \
|
|
|
|
./usr/bin/gst-inspect* \
|
|
|
|
./usr/bin/gst-typefind* \
|
|
|
|
./usr/bin/gst-xmlinspect* \
|
|
|
|
./usr/bin/gst-xmllaunch* \
|
|
|
|
$(1)/usr/bin/ \
|
2008-06-03 20:46:25 +00:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
define Package/libgstreamer/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/lib/libgstbase-$(GST_VERSION).so.* \
|
|
|
|
./usr/lib/libgstreamer-$(GST_VERSION).so.* \
|
|
|
|
$(1)/usr/lib/ \
|
|
|
|
)
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/gstreamer-$(GST_VERSION)
|
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/lib/gstreamer-$(GST_VERSION)/libgst*.so \
|
|
|
|
$(1)/usr/lib/gstreamer-$(GST_VERSION)/ \
|
|
|
|
)
|
2008-06-03 20:46:25 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
# 1: short name
|
|
|
|
# 2: description
|
|
|
|
# 3: dependencies on other gstreamer libraries (short name)
|
|
|
|
# 4: dependencies on other packages
|
|
|
|
define GstBuildLibrary
|
|
|
|
|
|
|
|
define Package/libgst$(1)
|
|
|
|
$(call Package/gstreamer/Default)
|
|
|
|
TITLE+= $(2) library (core)
|
|
|
|
DEPENDS+= +libgstreamer $$(foreach p,$(3),+libgst$$(p)) $(4)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgst$(1)/description
|
|
|
|
$(call Package/gstreamer/description/Default)
|
|
|
|
.
|
|
|
|
This package contains the GStreamer $(2) library.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgst$(1)/install
|
2009-12-16 23:25:26 +00:00
|
|
|
$(INSTALL_DIR) $$(1)/usr/lib
|
2010-07-05 01:42:30 +00:00
|
|
|
( cd $(PKG_INSTALL_DIR); $(CP) \
|
|
|
|
./usr/lib/libgst$(1)-$(GST_VERSION).so.* \
|
|
|
|
$$(1)/usr/lib/ \
|
|
|
|
)
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
$$(eval $$(call BuildPackage,libgst$(1)))
|
2009-12-16 23:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2010-07-05 01:42:30 +00:00
|
|
|
$(eval $(call GstBuildLibrary,check,check unit testing))
|
|
|
|
$(eval $(call GstBuildLibrary,controller,dynamic parameter control))
|
|
|
|
$(eval $(call GstBuildLibrary,dataprotocol,data protocol))
|
|
|
|
$(eval $(call GstBuildLibrary,net,network classes))
|
|
|
|
|
2008-06-03 20:46:25 +00:00
|
|
|
$(eval $(call BuildPackage,gstreamer))
|
2010-07-05 01:42:30 +00:00
|
|
|
$(eval $(call BuildPackage,gstreamer-utils))
|
|
|
|
$(eval $(call BuildPackage,libgstreamer))
|
|
|
|
|