summaryrefslogtreecommitdiff
path: root/pkgconfig
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2005-04-06 11:08:07 +0000
committerAndy Wingo <wingo@pobox.com>2005-04-06 11:08:07 +0000
commit4c712824b94b2ffe8351c4577233fd198d53ac35 (patch)
tree1f1d6059f5c551b7d8c189a7831d46ebc3bb44df /pkgconfig
parentd617ba6a53770a7ad901ab478c3fa94df882c22f (diff)
pkgconfig/: New files.
Original commit message from CVS: 2005-04-06 Andy Wingo <wingo@pobox.com> * pkgconfig/gstreamer-base.pc.in: * pkgconfig/gstreamer-base-uninstalled.pc.in: New files. * pkgconfig/Makefile.am: * configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
Diffstat (limited to 'pkgconfig')
-rw-r--r--pkgconfig/Makefile.am4
-rw-r--r--pkgconfig/gstreamer-base-uninstalled.pc.in13
-rw-r--r--pkgconfig/gstreamer-base.pc.in11
3 files changed, 28 insertions, 0 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am
index 70bd96a63..22c706677 100644
--- a/pkgconfig/Makefile.am
+++ b/pkgconfig/Makefile.am
@@ -1,10 +1,12 @@
### all of the standard pc files we need to generate
pcfiles = \
gstreamer-@GST_MAJORMINOR@.pc \
+ gstreamer-base-@GST_MAJORMINOR@.pc \
gstreamer-control-@GST_MAJORMINOR@.pc
pcfiles_uninstalled = \
gstreamer-@GST_MAJORMINOR@-uninstalled.pc \
+ gstreamer-base-@GST_MAJORMINOR@-uninstalled.pc \
gstreamer-control-@GST_MAJORMINOR@-uninstalled.pc
all-local: $(pcfiles) $(pcfiles_uninstalled)
@@ -21,6 +23,8 @@ pkgconfig_DATA = $(pcfiles)
EXTRA_DIST = \
gstreamer.pc.in \
gstreamer-uninstalled.pc.in \
+ gstreamer-base.pc.in \
+ gstreamer-base-uninstalled.pc.in \
gstreamer-control.pc.in \
gstreamer-control-uninstalled.pc.in
diff --git a/pkgconfig/gstreamer-base-uninstalled.pc.in b/pkgconfig/gstreamer-base-uninstalled.pc.in
new file mode 100644
index 000000000..b3cc8b63f
--- /dev/null
+++ b/pkgconfig/gstreamer-base-uninstalled.pc.in
@@ -0,0 +1,13 @@
+# the standard variables don't make sense for an uninstalled copy
+prefix=
+exec_prefix=
+libdir=${pcfiledir}/../gst/base
+includedir=${pcfiledir}/..
+
+Name: GStreamer base classes, uninstalled
+Description: Base classes for GStreamer elements
+Requires: gstreamer-@GST_MAJORMINOR@ = @VERSION@
+Version: @VERSION@
+
+Libs: ${libdir}/libgstbase-@GST_MAJORMINOR@.la
+Cflags: -I${includedir}
diff --git a/pkgconfig/gstreamer-base.pc.in b/pkgconfig/gstreamer-base.pc.in
new file mode 100644
index 000000000..2b8aaf454
--- /dev/null
+++ b/pkgconfig/gstreamer-base.pc.in
@@ -0,0 +1,11 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@/gstreamer-@GST_MAJORMINOR@
+
+Name: GStreamer base classes
+Description: Base classes for GStreamer elements
+Requires: gstreamer-@GST_MAJORMINOR@
+Version: @VERSION@
+Libs: -L${libdir} -lgstbase-@GST_MAJORMINOR@
+Cflags: -I${includedir}