| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-base.eclass,v 1.24 2012/10/23 08:09:35 tetromino Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-base.eclass,v 1.25 2012/12/02 17:16:20 eva Exp $ |
| 4 | |
4 | |
|
|
5 | # @ECLASS: gst-plugins-base.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # gstreamer@gentoo.org |
|
|
8 | # @AUTHOR: |
|
|
9 | # Gilles Dartiguelongue <eva@gentoo.org> |
|
|
10 | # Saleem Abdulrasool <compnerd@gentoo.org> |
| 5 | # Author : foser <foser@gentoo.org> |
11 | # foser <foser@gentoo.org> |
|
|
12 | # zaheerm <zaheerm@gentoo.org> |
|
|
13 | # @BLURB: Manages build for invididual ebuild for gst-plugins-base. |
|
|
14 | # @DESCRIPTION: |
|
|
15 | # See gst-plugins10.eclass documentation. |
| 6 | |
16 | |
| 7 | # gst-plugins eclass |
17 | GST_ORG_MODULE="gst-plugins-base" |
| 8 | # |
|
|
| 9 | # eclass to make external gst-plugins emergable on a per-plugin basis |
|
|
| 10 | # to solve the problem with gst-plugins generating far too much unneeded deps |
|
|
| 11 | # |
|
|
| 12 | # 3rd party applications using gstreamer now should depend on a set of plugins as |
|
|
| 13 | # defined in the source, in case of spider usage obtain recommended plugins to use from |
|
|
| 14 | # Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer |
|
|
| 15 | # or the gstreamer team. |
|
|
| 16 | |
18 | |
| 17 | inherit eutils gst-plugins10 multilib |
19 | inherit gst-plugins10 |
| 18 | |
20 | |
| 19 | GST_EXPF="src_unpack src_compile src_install" |
|
|
| 20 | GST_TARBALL_SUFFIX="bz2" |
|
|
| 21 | GST_LA_PUNT="no" |
|
|
| 22 | case ${EAPI:-0} in |
21 | case "${EAPI:-0}" in |
| 23 | 4) GST_EXPF="${GST_EXPF} src_prepare src_configure" |
22 | 1|2|3|4|5) |
| 24 | GST_TARBALL_SUFFIX="xz" |
23 | ;; |
| 25 | GST_LA_PUNT="yes" ;; |
24 | 0) |
| 26 | 2|3) GST_EXPF="${GST_EXPF} src_prepare src_configure" ;; |
25 | die "EAPI=\"${EAPI}\" is not supported anymore" |
| 27 | 1|0) ;; |
26 | ;; |
| 28 | *) die "Unknown EAPI" ;; |
27 | *) |
|
|
28 | die "EAPI=\"${EAPI}\" is not supported yet" |
|
|
29 | ;; |
| 29 | esac |
30 | esac |
| 30 | EXPORT_FUNCTIONS ${GST_EXPF} |
|
|
| 31 | |
31 | |
| 32 | ### |
|
|
| 33 | # variable declarations |
|
|
| 34 | ### |
|
|
| 35 | |
|
|
| 36 | MY_PN=gst-plugins-base |
|
|
| 37 | MY_P=${MY_PN}-${PV} |
|
|
| 38 | # All relevant configure options for gst-plugins |
|
|
| 39 | # need a better way to extract these |
|
|
| 40 | # gst-plugins-base 0.9 |
|
|
| 41 | my_gst_plugins_base="x xvideo xshm gst_v4l alsa cdparanoia gnome_vfs |
|
|
| 42 | gio libvisual ogg oggtest theora ivorbis vorbis vorbistest examples |
|
|
| 43 | freetypetest pango" |
|
|
| 44 | |
|
|
| 45 | #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" |
|
|
| 46 | SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-base/${MY_P}.tar.${GST_TARBALL_SUFFIX}" |
|
|
| 47 | [[ ${GST_TARBALL_SUFFIX} = "xz" ]] && DEPEND="${DEPEND} app-arch/xz-utils" |
|
|
| 48 | |
|
|
| 49 | S=${WORKDIR}/${MY_P} |
|
|
| 50 | |
|
|
| 51 | # added to remove circular deps |
|
|
| 52 | # 6/2/2006 - zaheerm |
|
|
| 53 | if [ "${PN}" != "${MY_PN}" ]; then |
|
|
| 54 | RDEPEND=">=media-libs/gst-plugins-base-${PV}" |
|
|
| 55 | DEPEND="${RDEPEND} |
|
|
| 56 | ${DEPEND} |
|
|
| 57 | ~media-libs/gst-plugins-base-${PV} |
|
|
| 58 | >=sys-apps/sed-4 |
|
|
| 59 | virtual/pkgconfig" |
|
|
| 60 | RESTRICT=test |
|
|
| 61 | fi |
|
|
| 62 | |
|
|
| 63 | ### |
|
|
| 64 | # public functions |
|
|
| 65 | ### |
|
|
| 66 | |
|
|
| 67 | gst-plugins-base_src_configure() { |
|
|
| 68 | |
|
|
| 69 | # disable any external plugin besides the plugin we want |
|
|
| 70 | local plugin gst_conf |
|
|
| 71 | |
|
|
| 72 | einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." |
|
|
| 73 | |
|
|
| 74 | for plugin in ${my_gst_plugins_base}; do |
|
|
| 75 | gst_conf="${gst_conf} --disable-${plugin} " |
|
|
| 76 | done |
|
|
| 77 | |
|
|
| 78 | for plugin in ${GST_PLUGINS_BUILD}; do |
|
|
| 79 | gst_conf="${gst_conf} --enable-${plugin} " |
|
|
| 80 | done |
|
|
| 81 | |
|
|
| 82 | cd "${S}" |
|
|
| 83 | econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} |
|
|
| 84 | |
|
|
| 85 | } |
|
|
| 86 | |
|
|
| 87 | ### |
|
|
| 88 | # public inheritable functions |
|
|
| 89 | ### |
|
|
| 90 | |
|
|
| 91 | gst-plugins-base_src_unpack() { |
|
|
| 92 | |
|
|
| 93 | unpack ${A} |
|
|
| 94 | |
|
|
| 95 | cd "${S}" |
|
|
| 96 | has src_prepare ${GST_EXPF} || gst-plugins-base_src_prepare |
|
|
| 97 | |
|
|
| 98 | } |
|
|
| 99 | |
|
|
| 100 | gst-plugins-base_src_prepare() { |
|
|
| 101 | |
|
|
| 102 | # Link with the syswide installed gst-libs if needed |
|
|
| 103 | gst-plugins10_find_plugin_dir |
|
|
| 104 | sed -e "s:\$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces:${ROOT}/usr/$(get_libdir)/libgstinterfaces:" \ |
|
|
| 105 | -e "s:\${top_builddir}/gst-libs/gst/interfaces/libgstinterfaces:${ROOT}/usr/$(get_libdir)/libgstinterfaces:" \ |
|
|
| 106 | -e "s:\$(top_builddir)/gst-libs/gst/audio/libgstaudio:${ROOT}/usr/$(get_libdir)/libgstaudio:" \ |
|
|
| 107 | -e "s:\${top_builddir}/gst-libs/gst/audio/libgstaudio:${ROOT}/usr/$(get_libdir)/libgstaudio:" \ |
|
|
| 108 | -e "s:\$(top_builddir)/gst-libs/gst/cdda/libgstcdda:${ROOT}/usr/$(get_libdir)/libgstcdda:" \ |
|
|
| 109 | -e "s:\${top_builddir}/gst-libs/gst/cdda/libgstcdda:${ROOT}/usr/$(get_libdir)/libgstcdda:" \ |
|
|
| 110 | -e "s:\$(top_builddir)/gst-libs/gst/riff/libgstriff:${ROOT}/usr/$(get_libdir)/libgstriff:" \ |
|
|
| 111 | -e "s:\${top_builddir}/gst-libs/gst/riff/libgstriff:${ROOT}/usr/$(get_libdir)/libgstriff:" \ |
|
|
| 112 | -e "s:\$(top_builddir)/gst-libs/gst/tag/libgsttag:${ROOT}/usr/$(get_libdir)/libgsttag:" \ |
|
|
| 113 | -e "s:\${top_builddir}/gst-libs/gst/tag/libgsttag:${ROOT}/usr/$(get_libdir)/libgsttag:" \ |
|
|
| 114 | -e "s:\$(top_builddir)/gst-libs/gst/video/libgstvideo:${ROOT}/usr/$(get_libdir)/libgstvideo:" \ |
|
|
| 115 | -e "s:\${top_builddir}/gst-libs/gst/video/libgstvideo:${ROOT}/usr/$(get_libdir)/libgstvideo:" \ |
|
|
| 116 | -e "s:\$(top_builddir)/gst-libs/gst/netbuffer/libgstnetbuffer:${ROOT}/usr/$(get_libdir)/libgstnetbuffer:" \ |
|
|
| 117 | -e "s:\${top_builddir}/gst-libs/gst/netbuffer/libgstnetbuffer:${ROOT}/usr/$(get_libdir)/libgstnetbuffer:" \ |
|
|
| 118 | -e "s:\$(top_builddir)/gst-libs/gst/rtp/libgstrtp:${ROOT}/usr/$(get_libdir)/libgstrtp:" \ |
|
|
| 119 | -e "s:\${top_builddir}/gst-libs/gst/rtp/libgstrtp:${ROOT}/usr/$(get_libdir)/libgstrtp:" \ |
|
|
| 120 | -i Makefile.in |
|
|
| 121 | # cd ${S} |
|
|
| 122 | |
|
|
| 123 | # Remove generation of any other Makefiles except the plugin's Makefile |
|
|
| 124 | # if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then |
|
|
| 125 | # makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" |
|
|
| 126 | # elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then |
|
|
| 127 | # makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" |
|
|
| 128 | # fi |
|
|
| 129 | # sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ |
|
|
| 130 | # -i ${S}/configure |
|
|
| 131 | |
|
|
| 132 | } |
|
|
| 133 | |
|
|
| 134 | |
|
|
| 135 | |
|
|
| 136 | gst-plugins-base_src_compile() { |
|
|
| 137 | |
|
|
| 138 | has src_configure ${GST_EXPF} || gst-plugins-base_src_configure ${@} |
|
|
| 139 | gst-plugins10_find_plugin_dir |
|
|
| 140 | emake || die "compile failure" |
|
|
| 141 | |
|
|
| 142 | } |
|
|
| 143 | |
|
|
| 144 | gst-plugins-base_src_install() { |
|
|
| 145 | |
|
|
| 146 | gst-plugins10_find_plugin_dir |
|
|
| 147 | einstall || die |
|
|
| 148 | [[ ${GST_LA_PUNT} = "yes" ]] && prune_libtool_files --modules |
|
|
| 149 | |
|
|
| 150 | [[ -e README ]] && dodoc README |
|
|
| 151 | } |
|
|