summaryrefslogtreecommitdiffstats
path: root/po
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2019-10-06 15:55:04 +0200
committergregory guy <gregory-tde@laposte.net>2019-10-06 15:55:04 +0200
commitc6fd288a5f108598987de95d3ace981ee5140cad (patch)
treef770c67f5d3f3e490ade26cf2f10354ea95eef78 /po
parent122529f6f702818c1a5ac33e38f4d872ded3aa47 (diff)
downloadkbibtex-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')
-rw-r--r--po/Makefile.am2
-rwxr-xr-xpo/messages.sh28
2 files changed, 0 insertions, 30 deletions
diff --git a/po/Makefile.am b/po/Makefile.am
deleted file mode 100644
index 59773af..0000000
--- a/po/Makefile.am
+++ /dev/null
@@ -1,2 +0,0 @@
-POFILES = AUTO
-EXTRA_DIST = kbibtex.pot
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"