fix disting and spec file
Original commit message from CVS: fix disting and spec file
This commit is contained in:
parent
4f69c09968
commit
1db676c6e4
@ -13,14 +13,14 @@ GCONF_DIR =
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
gst sys ext \
|
gst sys ext gst-libs \
|
||||||
$(GCONF_DIR) \
|
$(GCONF_DIR) \
|
||||||
m4 common
|
m4 common
|
||||||
# disabled
|
# disabled
|
||||||
# $(SUBDIRS_DOCS)
|
# $(SUBDIRS_DOCS)
|
||||||
|
|
||||||
DIST_SUBDIRS = \
|
DIST_SUBDIRS = \
|
||||||
gst sys ext \
|
gst sys ext gst-libs \
|
||||||
m4 common
|
m4 common
|
||||||
|
|
||||||
# disabled
|
# disabled
|
||||||
|
@ -55,7 +55,6 @@ dnl AC_SUBST(GETTEXT_PACKAGE)
|
|||||||
dnl AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
|
dnl AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
|
||||||
dnl [gettext package name])
|
dnl [gettext package name])
|
||||||
|
|
||||||
|
|
||||||
dnl decide on error flags
|
dnl decide on error flags
|
||||||
AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
|
AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
|
||||||
|
|
||||||
@ -433,7 +432,8 @@ GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink, [
|
|||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
GST_CFLAGS="$GST_CFLAGS $GST_ERROR"
|
dnl also add builddir include for enumtypes and marshal
|
||||||
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR"
|
||||||
|
|
||||||
AC_SUBST(GST_LIBS)
|
AC_SUBST(GST_LIBS)
|
||||||
AC_SUBST(GST_CFLAGS)
|
AC_SUBST(GST_CFLAGS)
|
||||||
@ -500,6 +500,8 @@ gst/smpte/Makefile
|
|||||||
gst/udp/Makefile
|
gst/udp/Makefile
|
||||||
gst/videobox/Makefile
|
gst/videobox/Makefile
|
||||||
gst/videofilter/Makefile
|
gst/videofilter/Makefile
|
||||||
|
gst-libs/Makefile
|
||||||
|
gst-libs/gst/Makefile
|
||||||
sys/Makefile
|
sys/Makefile
|
||||||
ext/Makefile
|
ext/Makefile
|
||||||
ext/aalib/Makefile
|
ext/aalib/Makefile
|
||||||
|
5
gst-libs/Makefile.am
Normal file
5
gst-libs/Makefile.am
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
SUBDIRS = \
|
||||||
|
gst
|
||||||
|
|
||||||
|
DIST_SUBDIRS = \
|
||||||
|
gst
|
@ -1,68 +1 @@
|
|||||||
if USE_GCONF
|
noinst_HEADERS = gst-i18n-plugin.h gettext.h
|
||||||
GCONF_DIR = gconf
|
|
||||||
else
|
|
||||||
GCONF_DIR =
|
|
||||||
endif
|
|
||||||
|
|
||||||
if USE_X
|
|
||||||
X_DIR = xwindowlistener
|
|
||||||
else
|
|
||||||
X_DIR =
|
|
||||||
endif
|
|
||||||
|
|
||||||
SUBDIRS = \
|
|
||||||
audio \
|
|
||||||
colorbalance \
|
|
||||||
floatcast \
|
|
||||||
$(GCONF_DIR) \
|
|
||||||
idct \
|
|
||||||
media-info \
|
|
||||||
mixer \
|
|
||||||
navigation \
|
|
||||||
propertyprobe \
|
|
||||||
resample \
|
|
||||||
riff \
|
|
||||||
tag \
|
|
||||||
tuner \
|
|
||||||
video \
|
|
||||||
xoverlay \
|
|
||||||
$(X_DIR) \
|
|
||||||
. \
|
|
||||||
play
|
|
||||||
|
|
||||||
DIST_SUBDIRS = \
|
|
||||||
audio \
|
|
||||||
colorbalance \
|
|
||||||
floatcast \
|
|
||||||
gconf \
|
|
||||||
idct \
|
|
||||||
media-info \
|
|
||||||
mixer \
|
|
||||||
navigation \
|
|
||||||
play \
|
|
||||||
propertyprobe \
|
|
||||||
resample \
|
|
||||||
riff \
|
|
||||||
tag \
|
|
||||||
tuner \
|
|
||||||
video \
|
|
||||||
xoverlay \
|
|
||||||
xwindowlistener
|
|
||||||
|
|
||||||
|
|
||||||
lib_LTLIBRARIES = libgstinterfaces-@GST_MAJORMINOR@.la
|
|
||||||
|
|
||||||
libgstinterfaces_@GST_MAJORMINOR@_la_SOURCES =
|
|
||||||
|
|
||||||
libgstinterfaces_@GST_MAJORMINOR@_la_LIBADD = \
|
|
||||||
colorbalance/libgstcolorbalance.la \
|
|
||||||
mixer/libgstmixer.la \
|
|
||||||
navigation/libgstnavigation.la \
|
|
||||||
propertyprobe/libgstpropertyprobe.la \
|
|
||||||
tuner/libgsttuner.la \
|
|
||||||
xoverlay/libgstxoverlay.la \
|
|
||||||
$(GST_LIBS)
|
|
||||||
|
|
||||||
libgstinterfaces_@GST_MAJORMINOR@_la_LDFLAGS = @GST_PLUGINS_LT_LDFLAGS@ -version-info @GST_PLUGINS_LIBVERSION@
|
|
||||||
|
|
||||||
noinst_HEADERS = gettext.h gst-i18n-plugin.h
|
|
||||||
|
@ -132,6 +132,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/gstreamer-%{majorminor}/libgstudp.so
|
%{_libdir}/gstreamer-%{majorminor}/libgstudp.so
|
||||||
%{_libdir}/gstreamer-%{majorminor}/libgstalpha.so
|
%{_libdir}/gstreamer-%{majorminor}/libgstalpha.so
|
||||||
%{_libdir}/gstreamer-%{majorminor}/libgstgoom.so
|
%{_libdir}/gstreamer-%{majorminor}/libgstgoom.so
|
||||||
|
%{_libdir}/gstreamer-%{majorminor}/libgstrmdemux.so
|
||||||
|
%{_libdir}/gstreamer-%{majorminor}/libgstavi.so
|
||||||
|
%{_libdir}/gstreamer-%{majorminor}/libgstlevel.so
|
||||||
|
%{_libdir}/gstreamer-%{majorminor}/libgstvideobox.so
|
||||||
|
|
||||||
# gstreamer-plugins with external dependencies but in the main package
|
# gstreamer-plugins with external dependencies but in the main package
|
||||||
# @USE_ARTS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstarts.so
|
# @USE_ARTS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstarts.so
|
||||||
@ -215,8 +219,8 @@ Group: Applications/Multimedia
|
|||||||
# @USE_FAAD_TRUE@BuildRequires: faad2-devel >= 2.0
|
# @USE_FAAD_TRUE@BuildRequires: faad2-devel >= 2.0
|
||||||
# @USE_GSM_TRUE@BuildRequires: gsm-devel >= 1.0.10
|
# @USE_GSM_TRUE@BuildRequires: gsm-devel >= 1.0.10
|
||||||
# @USE_LAME_TRUE@BuildRequires: lame-devel >= 3.89
|
# @USE_LAME_TRUE@BuildRequires: lame-devel >= 3.89
|
||||||
# @USE_MAD_TRUE@BuildRequires: libid3tag-devel >= 0.15.0
|
@USE_MAD_TRUE@BuildRequires: libid3tag-devel >= 0.15.0
|
||||||
# @USE_MAD_TRUE@BuildRequires: libmad-devel >= 0.15.0
|
@USE_MAD_TRUE@BuildRequires: libmad-devel >= 0.15.0
|
||||||
|
|
||||||
Requires: gstreamer09-plugins >= %{gstp_minver}
|
Requires: gstreamer09-plugins >= %{gstp_minver}
|
||||||
Requires(pre): %{_bindir}/gst-register-%{majorminor}
|
Requires(pre): %{_bindir}/gst-register-%{majorminor}
|
||||||
@ -225,7 +229,7 @@ Requires(post): %{_bindir}/gst-register-%{majorminor}
|
|||||||
# @USE_FAAD_TRUE@Provides: gstreamer-faad = %{version}-%{release}
|
# @USE_FAAD_TRUE@Provides: gstreamer-faad = %{version}-%{release}
|
||||||
# @USE_GSM_TRUE@Provides: gstreamer-gsm = %{version}-%{release}
|
# @USE_GSM_TRUE@Provides: gstreamer-gsm = %{version}-%{release}
|
||||||
# @USE_LAME_TRUE@Provides: gstreamer-lame = %{version}-%{release}
|
# @USE_LAME_TRUE@Provides: gstreamer-lame = %{version}-%{release}
|
||||||
# @USE_MAD_TRUE@Provides: gstreamer-mad = %{version}-%{release}
|
@USE_MAD_TRUE@Provides: gstreamer-mad = %{version}-%{release}
|
||||||
|
|
||||||
%description extra-audio
|
%description extra-audio
|
||||||
This package contains extra audio plugins for GStreamer, including
|
This package contains extra audio plugins for GStreamer, including
|
||||||
@ -244,7 +248,7 @@ This package contains extra audio plugins for GStreamer, including
|
|||||||
# @USE_FAAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstfaad.so
|
# @USE_FAAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstfaad.so
|
||||||
# @USE_GSM_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstgsm.so
|
# @USE_GSM_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstgsm.so
|
||||||
# @USE_LAME_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstlame.so
|
# @USE_LAME_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstlame.so
|
||||||
# @USE_MAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmad.so
|
@USE_MAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmad.so
|
||||||
|
|
||||||
%package extra-dvd
|
%package extra-dvd
|
||||||
Summary: DVD plugins for GStreamer
|
Summary: DVD plugins for GStreamer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user