for i in gstreamer-*; do mv $i `echo $i | sed -e 's/gstreamer/gst/'`; done
authorAndy Wingo <wingo@pobox.com>
Fri, 4 Jan 2002 19:46:40 +0000 (19:46 +0000)
committerAndy Wingo <wingo@pobox.com>
Fri, 4 Jan 2002 19:46:40 +0000 (19:46 +0000)
Original commit message from CVS:
for i in gstreamer-*; do mv $i `echo $i | sed -e 's/gstreamer/gst/'`; done

*THIS CHANGES PROGRAM NAMES*

gstreamer-register -> gst-register et al
no one expressed objections to this over a two-day period, so i went ahead and did it
this can be reverted if folks complain too much...

tools/Makefile.am
tools/gst-complete.1 [moved from tools/gstreamer-complete.1 with 100% similarity]
tools/gst-complete.c [moved from tools/gstreamer-complete.c with 100% similarity]
tools/gst-compprep.1 [moved from tools/gstreamer-compprep.1 with 100% similarity]
tools/gst-compprep.c [moved from tools/gstreamer-compprep.c with 100% similarity]
tools/gst-inspect.1 [moved from tools/gstreamer-inspect.1 with 100% similarity]
tools/gst-inspect.c [moved from tools/gstreamer-inspect.c with 100% similarity]
tools/gst-launch.1 [moved from tools/gstreamer-launch.1 with 100% similarity]
tools/gst-launch.c [moved from tools/gstreamer-launch.c with 100% similarity]
tools/gst-register.1 [moved from tools/gstreamer-register.1 with 100% similarity]
tools/gst-register.c [moved from tools/gstreamer-register.c with 100% similarity]

index 9fe2cfd..f694b65 100644 (file)
@@ -1,41 +1,41 @@
 if GST_DISABLE_REGISTRY
 GST_REGISTRY_SRC = 
 else
-GST_REGISTRY_SRC = gstreamer-register
+GST_REGISTRY_SRC = gst-register
 endif
 
 if GST_DISABLE_LOADSAVE
 GST_LOADSAVE_SRC = 
 else
-GST_LOADSAVE_SRC = gstreamer-compprep
+GST_LOADSAVE_SRC = gst-compprep
 endif
 
-bin_PROGRAMS =         gstreamer-launch        \
+bin_PROGRAMS =         gst-launch      \
                $(GST_REGISTRY_SRC)     \
-               gstreamer-inspect       \
+               gst-inspect     \
                $(GST_LOADSAVE_SRC)     \
-               gstreamer-complete
+               gst-complete
 
-man_MANS = gstreamer-launch.1 gstreamer-register.1 gstreamer-inspect.1 \
-       gstreamer-complete.1 gstreamer-compprep.1
+man_MANS = gst-launch.1 gst-register.1 gst-inspect.1 \
+       gst-complete.1 gst-compprep.1
 
-gstreamer_launch_LDADD = $(GST_LIBS) #-lefence
-gstreamer_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
+gst_launch_LDADD = $(GST_LIBS) #-lefence
+gst_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
 
 if !GST_DISABLE_REGISTRY
-gstreamer_register_LDADD = $(GST_LIBS)
-gstreamer_register_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
+gst_register_LDADD = $(GST_LIBS)
+gst_register_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
 endif
 
-gstreamer_inspect_LDADD = $(GST_LIBS)
-gstreamer_inspect_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
+gst_inspect_LDADD = $(GST_LIBS)
+gst_inspect_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
 
-gstreamer_complete_LDADD = $(GST_LIBS)
-gstreamer_complete_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
+gst_complete_LDADD = $(GST_LIBS)
+gst_complete_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
 
 if !GST_DISABLE_LOADSAVE
-gstreamer_compprep_LDADD = $(GST_LIBS)
-gstreamer_compprep_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
+gst_compprep_LDADD = $(GST_LIBS)
+gst_compprep_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
 endif
 
 EXTRA_DIST = $(man_MANS)
similarity index 100%
rename from tools/gstreamer-launch.1
rename to tools/gst-launch.1
similarity index 100%
rename from tools/gstreamer-launch.c
rename to tools/gst-launch.c