#!/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; n'>index : freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/net-p2p/libbt
Commit message (Expand)AuthorAgeFilesLines
* Chase the ftp/curl shlib version bump.roam2010-04-031-2/+2
* Remove OBE USE_GCC variable.flz2010-01-231-1/+0
* - Switch SourceForge ports to the new File Release System: categories startin...amdmi32009-08-221-2/+1
* Bump the version of the curl shared library after the ftp/curl updateroam2009-01-231-2/+2
* Update the ftp/curl port to 7.16.0.roam2006-12-131-1/+2
* Fix build on 7-CURRENT.flz2006-09-182-4/+13
* BROKEN on 7.0: Does not compilekris2006-09-111-1/+7
* - Update to 1.05.flz2006-06-202-4/+4
* Remove USE_REINPLACE from all categories starting with Nedwin2006-05-121-1/+0
* Populate newly create net-p2p category with these ports:pav2006-01-311-1/+1
* - Add SHA256 checksums.flz2005-11-091-0/+1
* - Update to 1.04.flz2005-06-282-3/+3
* Change my email address in MAINTAINER lines for ports I maintain toflz2005-03-011-1/+1
* Increase USE_GCC to 3.4 for those ports which compile with it.kris2004-09-301-1/+1
* Update to 1.03krion2004-07-212-6/+4
* Update ftp/curl to 7.12.0 and bump the shared library version in allroam2004-06-041-1/+2
* - Update to 1.02pav2004-05-30