diff --git a/tools/base.c b/tools/base.c index 76b3315a66..990168a319 100644 --- a/tools/base.c +++ b/tools/base.c @@ -1,7 +1,7 @@ % copyright /* GStreamer - * Copyright (C) 2010 FIXME + * Copyright (C) 2010 REAL_NAME * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/tools/element-maker b/tools/element-maker index 2edc7cb222..b91479f687 100755 --- a/tools/element-maker +++ b/tools/element-maker @@ -1,14 +1,30 @@ #!/bin/sh -class=element +class=basetransform -GST_IS_REPLACE=GST_IS_CAPS_DEBUG -GST_REPLACE=GST_CAPS_DEBUG -GST_TYPE_REPLACE=GST_TYPE_CAPS_DEBUG -GstReplace=GstCapsDebug -gst_replace=gst_caps_debug -gstreplace=gstcapsdebug -replace=capsdebug +prefix=gst +name=edi_test + + +PREFIX=$(echo $prefix | sed -e 's/\(.*\)/\U\1/') +NAME=$(echo $name | sed -e 's/\(.*\)/\U\1/') +Prefix=$(echo $prefix | sed -e 's/_\(.\)/\U\1/' -e 's/^\(.\)/\U\1/') +Name=$(echo $name | sed -e 's/_\(.\)/\U\1/' -e 's/^\(.\)/\U\1/') + +GST_IS_REPLACE=${PREFIX}_IS_${NAME} +GST_REPLACE=${PREFIX}_${NAME} +GST_TYPE_REPLACE=${PREFIX}_TYPE_${NAME} +GstReplace=${Prefix}${Name} +gst_replace=${prefix}_${name} +gstreplace=${prefix}$(echo $name | sed -e 's/_//') +replace=$(echo $name | sed -e 's/_//') + +if [ "$REAL_NAME" = "" ] ; then + REAL_NAME=FIXME +fi +if [ "$EMAIL_ADDRESS" = "" ] ; then + EMAIL_ADDRESS=fixme@example.com +fi source=gst$class.c pkg=`grep -A 10000 '^% pkg-config' $source | tail -n +2|grep -m 1 -B 10000 '^%'|head -n -1` @@ -18,7 +34,28 @@ GstBaseReplace=`grep -A 10000 '^% ClassName' $source | tail -n +2|grep -m 1 -B 1 generate () { -grep -A 10000 '^% copyright' base.c | tail -n +2|grep -m 1 -B 10000 '^%'|head -n -1 +cat <<-EOF +/* GStreamer + * Copyright (C) $(date +%Y) $REAL_NAME <$EMAIL_ADDRESS> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ +EOF + +#grep -A 10000 '^% copyright' base.c | tail -n +2|grep -m 1 -B 10000 '^%'|head -n -1 cat <"); + "Generic", "FIXME", "$REAL_NAME <$EMAIL_ADDRESS>"); } static void