diff options
author | Rene Ladan <rene@FreeBSD.org> | 2011-04-18 22:25:41 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2011-04-18 22:25:41 +0000 |
commit | 48f1d8c469aeb67c4c7838bd2bdf17f28eacbc79 (patch) | |
tree | 5509f9ae2d797f02944d429c11a7b43a3c3d2cf3 /devel/djgpp-gcc/scripts/pre-configure | |
parent | Repair pkg-plist to remove directories created by NLS option. (diff) |
Remove most expired ports:
2011-04-17 cad/tclspice: has been broken for more than a year
2011-04-17 comms/hcfmdm: does not compile on 7.X or higher
2011-04-17 databases/mysqlcc: has been broken for almost a year
2011-04-17 devel/ruby-rjudy: does not compile on FreeBSD 7.x or newer
2011-04-17 devel/xfc: does not compile on FreeBSD 7.x or newer
2011-04-17 devel/lamson: has been broken for a half year
2011-04-17 devel/cocktail: does not build on FreeBSD 7.x or newer
2011-04-17 devel/djgpp-gcc: has been broken for half a year
2011-04-17 devel/gauche-sdl: has been broken for a year
2011-04-17 devel/gdb53-act: does not compile on FreeBSD 7.x and up
2011-04-17 editors/zed: does not compile on FreeBSD 7.x or newer
2011-04-17 games/aqbubble: does not compile on FreeBSD 7.x or newer
2011-04-17 graphics/libvisual-plugins: has been broken for 3 years
2011-04-17 japanese/roundcube: has been broken for almost a year
2011-04-17 japanese/tkstep80: does not compile on FreeBSD 7.x or newer
2011-04-17 lang/u++: has been broken for over a half year
2011-04-17 lang/pugs: has been broken for over a year
2011-04-17 lang/mozart: does not compile on FreeBSD 7.x or newer
2011-04-17 math/linalg: does not build on FreeBSD 7.x or newer
2011-04-17 math/R-cran-igraph: has been broken for over a half year
2011-04-17 misc/ftree: has been broken for over a half year
2011-04-17 multimedia/katchtv: has been broken for a half year
2011-04-17 multimedia/libomxil-bellagio: has been broken for almost a year
2011-04-17 multimedia/banshee-mirage: has been broken for over a half year
2011-04-17 net-p2p/trackerbt: has been broken for a half year
2011-04-17 net/cap: does not compile on FreeBSD 7.x or newer
2011-04-17 net/ggsd: does not compile on FreeBSD 7.x or newer
2011-04-17 net/b2bua: does not compile on FreeBSD 7.x or newer
2011-04-17 net/penguintv: has been broken for a half year
2011-04-17 news/openftd: has been broken for almost a year
2011-04-17 palm/romeo: does not compile on FreeBSD 7.x or newer
2011-04-17 science/pcp: does not compile on FreeBSD 7.x or newer
2011-04-17 science/elmer-fem: has been broken for over a year
2011-04-17 security/newpki-lib: does not compile on FreeBSD 7.x or newer
2011-04-17 security/newpki-server: does not compile on FreeBSD 7.x or newer
2011-04-17 security/xmlsec: does not compile on FreeBSD 7.x or newer
2011-04-17 security/f-protd: has been broken for over a year
2011-04-17 sysutils/xwlans: does not compile on FreeBSD 7.x or newer
2011-04-17 www/bk_edit: does not compile on FreeBSD 7.x and newer
2011-04-17 www/bricolage: has been broken for a half year
2011-04-17 x11-toolkits/gauche-gtk: has been broken for a year
2011-04-17 x11-toolkits/gambas2-gb-qt: has been broken for over a year
2011-04-17 x11-toolkits/php-gtk2: has been broken for over a half year
2011-04-17 x11-toolkits/p5-Tcl-Tk: has been broken for 2 year
2011-04-17 x11/metisse: has been broken for over a half year
Notes
Notes:
svn path=/head/; revision=272897
Diffstat (limited to 'devel/djgpp-gcc/scripts/pre-configure')
-rw-r--r-- | devel/djgpp-gcc/scripts/pre-configure | 162 |
1 files changed, 0 insertions, 162 deletions
diff --git a/devel/djgpp-gcc/scripts/pre-configure b/devel/djgpp-gcc/scripts/pre-configure deleted file mode 100644 index def58d8bf561..000000000000 --- a/devel/djgpp-gcc/scripts/pre-configure +++ /dev/null @@ -1,162 +0,0 @@ -#! /bin/sh - -AUTOCONF_OLD=autoconf-2.13 -AUTOHEADER_OLD=autoheader-2.13 -AUTOCONF=autoconf-2.68 -AUTOHEADER=autoheader-2.68 -ACLOCAL=aclocal-1.11 -AUTOMAKE=automake-1.11 - -# -# List of directories in which we should run autoconf or/and automake -# - -automake_list= -aclocal_list= - -# -# Build list of patched files -# - -for x in `(cd ${WRKDIR}/diffs/source && find . -type f | sed -e 's/\.\///g')`; do - case $x in - *.diff | *.diff.in) - cd $top - diff=${WRKDIR}/$x; - fname=`echo $x | sed -e 's/\.diff//g'` - if [ -f $gcc_dir/$fname ] ; then - case $fname in - */acinclude.m4) - dir=`echo $gcc_dir/$fname | sed -e 's/\/acinclude.m4//g'` - aclocal_list="$aclocal_list $dir" - ;; - */Makefile.am) - dir=`echo $gcc_dir/$fname | sed -e 's/\/Makefile.am//g'` - automake_list="$automake_list $dir" - ;; - esac - fi - ;; - *) - ;; - esac -done - -for dir in build.gcc install.gcc; do - for x in `(cd ${WRKDIR}/diffs/$dir && find . -type f | sed -e 's/\.\///g')`; do - mkdir -p `dirname ${WRKDIR}/gnu/$dir/$x` - echo "Writing $dir/$x" - cat ${WRKDIR}/diffs/$dir/$x |\ - sed -e "s:@SRCDIR@:$dir_name:g" >${WRKDIR}/gnu/$dir/$x - done -done - -# -# Run aclocal where needed -# -( cd $gcc_dir/libgfortran && ${ACLOCAL} -I ../config || exit 1) -( cd $gcc_dir/libstdc++-v3 && ${ACLOCAL} -I . -I .. -I ../config || exit 1) - -#for dir in $aclocal_list ; do -# if cd $dir ; then -# echo Running aclocal in `pwd`... -# if ! aclocal -I . -I $gcc_dir -I $gcc_dir/config ; then -# echo "aclocal failed in directory `pwd`" -# cd $top -# exit 1 -# fi -# fi -# cd $top -#done - -# -# Run automake where needed -# - -for dir in $automake_list; do - if cd $dir ; then - echo "Directory $dir: must run automake ..."; - if ! [ -f configure.in ] ; then - if ! [ -f configure.ac ] ; then - cd ..; - if ! [ -f configure.in ] ; then - if ! [ -f configure.ac ] ; then - cd .. - fi - fi - fi - fi - echo "Running automake..." - if ! ${AUTOMAKE}; then - echo "automake failed in directory `pwd`" - cd $top - exit 1 - fi - fi - cd $top -done - -# -# Run autoconf where needed -# - -for c in `find $gcc_dir -name 'configure.in' -o -name 'configure.ac'`; do - d=`dirname $c` - n=`basename $c` - if cd $d ; then - AC_PREREQ=`grep 'AC_PREREQ(' $n | sed 's#.*(##' | sed 's#)##'`; - - case $AC_PREREQ in - 2.1*) echo Running autoconf-2.13 in `pwd` ...; - if ! $AUTOCONF_OLD ; then - echo "autoconf failed in directory `pwd`" - cd $top - exit 1 - fi - ;; - *2.5*) echo Running autoconf-2.5X in `pwd` ...; - if ! $AUTOCONF ; then - echo "autoconf failed in directory `pwd`" - cd $top - exit 1 - fi - ;; - *) echo Unknown autoconf version $AC_PREREQ required - exit 1 - ;; - esac - fi - cd $top -done - -# -# Run autoheader where needed -# - -if cd $gcc_dir/gcc ; then - echo Running autoheader in `pwd` ...; - if [ -f configure.ac ] ; then - if ! $AUTOHEADER ; then - echo "autoheader failed in directory `pwd`" - cd $top - exit 1 - fi - elif ! $AUTOHEADER_OLD ; then - echo "autoheader failed in directory `pwd`" - cd $top - exit 1 - fi - rm -f cstamp-h.in - echo timestamp >cstamp-h.in -fi - -if [ -f $gcc_dir/contrib/gcc_update ] ; then - echo Running contrib/gcc_update --touch - cd $gcc_dir; - ./contrib/gcc_update --touch - cd $top -fi - -for x in `find . -type d -a -name 'autom4te.cache'`; do - rm -rf $x -done |