From 66693d9824a742941f115d7edd94a500014e2304 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sun, 15 Feb 2015 20:10:37 +0100 Subject: updated doc and ignore svn vs. git --- .gitignore | 7 +++++++ README | 11 +++++------ src/configure | 10 +++++----- 3 files changed, 17 insertions(+), 11 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9912ec --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +src/*.d +src/*.d.* +src/*.o +src/gstdvbbackend +src/config.h +src/include.mk + diff --git a/README b/README index 98580ee..eee4d62 100644 --- a/README +++ b/README @@ -1,9 +1,8 @@ Introduction ============ -gstdvbbackend is small program based on gstreamer. It converts -a raw audio stream into flac or ogg and writes files for every -hour. +gstdvbbackend is a small programm which captures a given set of dvb +channels from one dvb device and provides the streams via minimal http. Dependencies ============ @@ -24,10 +23,10 @@ if you want to rebuild the manpage: Installation ============ -Getting the source via subversion: ----------------------------------- +Getting the source via git: +--------------------------- -svn co https://svn.helsinki.at/gstdvbbackend/trunk gstdvbbackend +git clone git://git.spreadspace.org/gstdvbbackend.git cd gstdvbbackend diff --git a/src/configure b/src/configure index 183c8d7..ed76c09 100755 --- a/src/configure +++ b/src/configure @@ -7,7 +7,7 @@ # # # Copyright (C) 2011 Christian Pointner -# +# # This file is part of gstdvbbackend. # # gstdvbbackend is free software: you can redistribute it and/or modify @@ -137,10 +137,10 @@ else fi VERSION=`cat ../version` -if which svn >/dev/null; then - SVN_REV=`svn info 2> /dev/null | grep "^Revision: " | awk '{print($2)}'` - if [ -n "$SVN_REV" ]; then - VERSION="$VERSION (svn$SVN_REV)" +if which git >/dev/null; then + GIT_HASH=`git rev-parse HEAD 2> /dev/null` + if [ -n "$GIT_HASH" ]; then + VERSION="$VERSION (git $GIT_HASH)" fi fi -- cgit v1.2.3