Changeset 36693

Show
Ignore:
Timestamp:
02/11/10 11:20:53 (3 years ago)
Author:
saturday06
Message:

autotools -> unix

Location:
lang/objective-cplusplus/i3/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • lang/objective-cplusplus/i3/trunk/Makefile.am

    r36689 r36693  
    22SUBDIRS         = intl po unix/tests 
    33EXTRA_DIST      = unix/build-aux/config.rpath unix/i3.spec unix/i3.spec.in \ 
    4                   kdevelop scripts windows 
     4                  kdevelop unix/scripts windows 
    55bin_PROGRAMS    = i3 
    66CLEANFILES      = *.gcno po/stamp-po 
     
    6969        chmod -R u+w ${distdir}/src 
    7070        cp -pR ${srcdir}/src ${distdir} 
    71         chmod -R u+rx ${distdir}/scripts 
    72         cd ${distdir} && ./scripts/clean_distdir.sh 
     71        chmod -R u+rx ${distdir}/unix/scripts 
     72        cd ${distdir} && ./unix/scripts/clean_distdir.sh 
    7373 
    7474dist2_distdir = dist2.${CONFIGURE_DATE} 
    7575dist2-hook: 
    76         test "${PACKAGE_VERSION}" = "`${SHELL} ${srcdir}/scripts/ac_init_version.sh`" 
     76        test "${PACKAGE_VERSION}" = "`${SHELL} ${srcdir}/unix/scripts/ac_init_version.sh`" 
    7777        svn status > /dev/null 
    7878        test "`svn status | grep -v '^\?'`" = "" 
     
    9393# copy locale file for windows 
    9494windows-locale: 
    95         perl scripts/windows-locale.pl ${PACKAGE_NAME} 
     95        ${PERL} unix/scripts/windows-locale.pl ${PACKAGE_NAME} 
    9696 
    9797if WITH_OS_WINDOWS 
     
    110110    windows/bin/i3.Release.x64.exe \ 
    111111    windows/bin/i3.win9x.exe 
    112         perl scripts/windows-dist.pl ${PACKAGE_NAME} ${PACKAGE_VERSION} 
     112        ${PERL} unix/scripts/windows-dist.pl ${PACKAGE_NAME} ${PACKAGE_VERSION} 
    113113 
    114114endif 
  • lang/objective-cplusplus/i3/trunk/configure.ac

    r36689 r36693  
    22 
    33AC_PREREQ(2.60) 
    4 AC_INIT([i3],[m4_esyscmd(. ./scripts/ac_init_version.sh | tr -d '\r\n')],[dyob@lunaport.net],[],[http://www.lunaport.net/test/]) 
     4AC_INIT([i3],[m4_esyscmd(. ./unix/scripts/ac_init_version.sh | tr -d '\r\n')],[dyob@lunaport.net],[],[http://www.lunaport.net/test/]) 
    55 
    66# 
     
    158158                AC_MSG_WARN([perl not found]) 
    159159            else 
    160                 GNUSTEP_CONFIG="$PERL $srcdir/scripts/gnustep-config-filter.pl $debug_arg $GNUSTEP_CONFIG" 
     160                GNUSTEP_CONFIG="$PERL $srcdir/unix/scripts/gnustep-config-filter.pl $debug_arg $GNUSTEP_CONFIG" 
    161161            fi 
    162162 
     
    253253if test -d "$srcdir"; then 
    254254    # po/POTFILES.in 
    255     $SHELL $srcdir/scripts/POTFILES.in.sh 
     255    $SHELL $srcdir/unix/scripts/POTFILES.in.sh 
    256256    if test $? -ne 0; then 
    257257        AC_MSG_FAILURE([can't update po/POTFILES.in]) 
    258258    fi 
    259259    # po/LINGUAS 
    260     $SHELL $srcdir/scripts/LINGUAS.sh 
     260    $SHELL $srcdir/unix/scripts/LINGUAS.sh 
    261261    if test $? -ne 0; then 
    262262        AC_MSG_FAILURE([can't update po/LINGUAS]) 
  • lang/objective-cplusplus/i3/trunk/unix/scripts/LINGUAS.sh

    r36547 r36693  
    44 
    55mydir=`echo $0 | sed 's%[^/]*$%%'` 
    6 srcdir=$mydir.. 
     6srcdir=$mydir../.. 
    77 
    88find $srcdir/po -iname '*.po' -type f -print | sort | sed 's%^.*/%%' | sed 's/\.po$//' | tr '\r\n' ' ' > LINGUAS.tmp 
  • lang/objective-cplusplus/i3/trunk/unix/scripts/POTFILES.in.sh

    r36547 r36693  
    44 
    55mydir=`echo $0 | sed 's%[^/]*$%%'` 
    6 srcdir=$mydir.. 
     6srcdir=$mydir../.. 
    77 
    88find $srcdir/src -type f -name '*.h'   -print | sort >> POTFILES.in.tmp0 
     
    1212find $srcdir/src -type f -name '*.mm'  -print | sort >> POTFILES.in.tmp0 
    1313 
    14 sed -e 's/\r\n/\n/' POTFILES.in.tmp0 | cut -b${#srcdir}- | cut -b3- > POTFILES.in.tmp 
     14sed -e 's/\r\n/\n/' POTFILES.in.tmp0 | cut -b${#srcdir}- | cut -b6- > POTFILES.in.tmp 
    1515 
    1616if test ! -s POTFILES.in.tmp; then 
  • lang/objective-cplusplus/i3/trunk/unix/scripts/windows-locale.pl

    r36309 r36693  
    1212 
    1313my $s = <<SHELLSCRIPT; 
    14 sh scripts/POTFILES.in.sh && 
     14. unix/scripts/POTFILES.in.sh && 
    1515cd po && 
    1616make update-po &&