Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | # ***** BEGIN LICENSE BLOCK ***** # This file is part of InDefero, an open source project management application. # Copyright (C) 2010 Céondo Ltd and contributors. # # InDefero is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # InDefero 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # ***** END LICENSE BLOCK ***** */ # Installation of external tools : transifex-client # sudo apt-get install python-setuptools # sudo easy_install -U transifex-client .PHONY: help help: @printf "Rules for generating distributable files :\n" @for b in `git branch | sed "s/^. //g"`; do \ printf "\t"$$b"-zipfile - Generate a zip archive of the "$$b" branch.\n"; \ done @printf "\nRules for internationalization :\n"; @printf "\tpot-update - Update the POT file from HTML templates and PHP sources, then merge it with PO file.\n" @printf "\tpot-push - Send the POT file to the transifex server.\n" @printf "\tpo-update - Merge the POT file into the PO file. The POT is not regenerated.\n" @printf "\tpo-push - Send the all PO files to the transifex server.\n" @printf "\tpo-pull - Get all PO files from the transifex server.\n" @printf "\tpo-stats - Show translation statistics of all PO files.\n" @printf "\nMisc Rules :\n"; @printf "\tdb-install - Install the database schema.\n" @printf "\tdb-update - Update the database schema.\n" # # Internationalization rule, POT & PO file manipulation # .PHONY: pluf_path pluf_path: ifeq (src/IDF/conf/path.php, $(wildcard src/IDF/conf/path.php)) PLUF_PATH=$(shell php -r "require_once('src/IDF/conf/path.php'); echo PLUF_PATH;") else @printf "File 'src/IDF/conf/path.php' don't exist. Please configure it !\n" @exit 1 endif .PHONY: pot-update po-update pot-update: pluf_path # Backup pot file @if [ -e src/IDF/locale/idf.pot ]; then \ mv -f src/IDF/locale/idf.pot src/IDF/locale/idf.pot.bak; \ fi touch src/IDF/locale/idf.pot; # Extract string @cd src; php "$(PLUF_PATH)/extracttemplates.php" IDF/conf/idf.php IDF/gettexttemplates @cd src; for phpfile in `find . -iname "*.php"`; do \ printf "Parsing file : "$$phpfile"\n"; \ xgettext -o idf.pot -p ./IDF/locale/ --from-code=UTF-8 -j \ --keyword --keyword=__ --keyword=_n:1,2 -L PHP "$$phpfile" ; \ done # Remove tmp folder rm -Rf src/IDF/gettexttemplates # Update PO @make po-update po-update: pluf_path @for pofile in `ls src/IDF/locale/*/idf.po`; do \ printf "Updating file : "$$pofile"\n"; \ msgmerge -v -U "$$pofile" src/IDF/locale/idf.pot; \ printf "\n"; \ done # # Transifex # .PHONY: check-tx-config check-tx-config: @if [ ! -e .tx/config ]; then \ mkdir -p .tx; \ touch .tx/config; \ printf "[main]\n" >> .tx/config; \ printf "host = http://www.transifex.net\n" >> .tx/config; \ printf "\n" >> .tx/config; \ printf "[indefero.idfpot]\n" >> .tx/config; \ printf "file_filter = src/IDF/locale/<lang>/idf.po\n" >> .tx/config; \ printf "source_file = src/IDF/locale/idf.pot\n" >> .tx/config; \ printf "source_lang = en\n" >> .tx/config; \ fi @if [ ! -e $(HOME)/.transifexrc ]; then \ touch $(HOME)/.transifexrc; \ printf "[http://www.transifex.net]\n" >> $(HOME)/.transifexrc; \ printf "username = \n" >> $(HOME)/.transifexrc; \ printf "token = \n" >> $(HOME)/.transifexrc; \ printf "password = \n" >> $(HOME)/.transifexrc; \ printf "hostname = http://www.transifex.net\n" >> $(HOME)/.transifexrc; \ printf "You must edit the file ~/.transifexrc to setup your transifex account (login & password) !\n"; \ exit 1; \ fi pot-push: check-tx-config @tx push -s po-push: check-tx-config @tx push -t po-pull: check-tx-config # Save PO @for pofile in `ls src/IDF/locale/*/idf.po`; do \ cp $$pofile $$pofile".save"; \ done # Get new one @tx pull -a # Merge Transifex PO into local PO (so fuzzy entry is correctly saved) @for pofile in `ls src/IDF/locale/*/idf.po`; do \ msgmerge -U $$pofile".save" $$pofile; \ rm -f $$pofile; \ mv $$pofile".save" $$pofile; \ done po-stats: @msgfmt --statistics -v src/IDF/locale/idf.pot @for pofile in `ls src/IDF/locale/*/idf.po`; do \ msgfmt --statistics -v $$pofile; \ done # # Generic rule to build a zipfile of indefero for a specified branch # ex: make master_zipfile # make develop_zipfile # %-zipfile: @git archive --format=zip --prefix="indefero/" $(@:-zipfile=) \ > indefero-$(@:-zipfile=)-`git log $(@:-zipfile=) -n 1 \ --pretty=format:%h`.zip db-install: @cd src && php "$(PLUF_PATH)/migrate.php" --conf=IDF/conf/idf.php -a -d -i db-update: @cd src && php "$(PLUF_PATH)/migrate.php" --conf=IDF/conf/idf.php -a -d |