#!/bin/sh PACKAGE="evolution" if [ "x$1" = "x--help" ]; then echo Usage: ./update.sh langcode echo --help display this help and exit echo echo Examples of use: echo ./update.sh ----- just creates a new pot file from the source echo ./update.sh da -- created new pot file and updated the da.po file elif [ "x$1" = "x" ]; then echo "Building the $PACKAGE.pot ..." xgettext --default-domain=$PACKAGE --directory=.. \ --add-comments --keyword=_ --keyword=N_ \ --files-from=./POTFILES.in \ && test ! -f $PACKAGE.po \ || ( rm -f ./$PACKAGE.pot \ && mv $PACKAGE.po ./$PACKAGE.pot ); else xgettext --default-domain=$PACKAGE --directory=.. \ --add-comments --keyword=_ --keyword=N_ \ --files-from=./POTFILES.in \ && test ! -f $PACKAGE.po \ || ( rm -f ./PACKAGE.pot \ && mv $PACKAGE.po ./$PACKAGE.pot ); echo "Building the $PACKAGE.pot ..." echo "Now merging $1.po with $PACKAGE.pot, and creating an updated $1.po ..." mv $1.po $1.po.old && msgmerge $1.po.old $PACKAGE.pot -o $1.po \ && rm $1.po.old; msgfmt --statistics $1.po fi; d class='main'>index : freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/x11-wm/ratpoison
Commit message (Expand)AuthorAgeFilesLines
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"amdmi32016-01-131-1/+1
* 1: Upgrade to 1.4.8.vanilla2015-09-034-32/+42
* Reset dhn's portserwin2015-06-131-1/+1
* MASTER_SITES cleanup.mat2015-05-141-3/+1
* - Drop @dirrm* from and add empty directories to pkg-plistsamdmi32015-01-281-2/+0
* - Stage supportantoine2014-03-292-21/+15
* Fix properties on pkg-plistbapt2014-01-221-1/+0
* - Update to 1.4.6dhn2013-12-172-4/+3
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* Convert dhn's ports to the new options frameworkbapt2013-01-081-12/+9
* Remove more tags from pkg-descr files fo the form:dougb2011-10-241-3/+0
* - Get Rid MD5 supportmiwi2011-03-201-1/+0