diff options
author | gregory guy <[email protected]> | 2019-10-06 15:55:04 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2019-10-06 15:55:04 +0200 |
commit | c6fd288a5f108598987de95d3ace981ee5140cad (patch) | |
tree | f770c67f5d3f3e490ade26cf2f10354ea95eef78 /po/messages.sh | |
parent | 122529f6f702818c1a5ac33e38f4d872ded3aa47 (diff) | |
download | kbibtex-c6fd288a5f108598987de95d3ace981ee5140cad.tar.gz kbibtex-c6fd288a5f108598987de95d3ace981ee5140cad.zip |
Drop automake build support.
Add basic cmake build instructions.
Add description in README.
Deleted empty file: BUGS, templates/cpp, templates/h.
Deleted obsolete files: po/messages.sh.
Diffstat (limited to 'po/messages.sh')
-rwxr-xr-x | po/messages.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/po/messages.sh b/po/messages.sh deleted file mode 100755 index d47478e..0000000 --- a/po/messages.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -export PATH="/usr/kde/3.5/bin/${PATH/kde\/4.2/kde/3.5}" - -if [ -z "$1" ] ; then - msgmergebin=`which msgmerge` -elif [ -x "$1" ] ; then - msgmergebin="$1" -else - echo "The given parameter does not point to an executable file" >&2 - exit 2 -fi - -$msgmergebin --version |grep -q 0.10.35 || { echo "The provided msgmerge binary is most likely a non-KDE version." >&2 ; echo "Please provide the patched version as a parameter for this script." >&2 ; exit 1 ; } -echo $msgmergebin -$msgmergebin --version - -PROJECT=kbibtex - -cd .. ; make -f admin/Makefile.common package-messages ; cd po - -catalogs=`find . -name '*.po'` -for cat in $catalogs; do - echo $cat - $msgmergebin -o $cat.new $cat ${PROJECT}.pot && mv $cat.new $cat -done - -echo "Done" |