#!/bin/sh # Run this to generate all the initial makefiles, etc. DIE=0 if [ -n "$GNOME2_PATH" ]; then ACLOCAL_FLAGS="-I $GNOME2_PATH/share/aclocal $ACLOCAL_FLAGS" PATH="$GNOME2_PATH/bin:$PATH" export PATH fi (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`autoconf' installed to compile $PKG_NAME." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 } (grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.in >/dev/null) && { (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`xml-i18n-toolize' installed to compile $PKG_NAME." echo "Get ftp://ftp.gnome.org/pub/GNOME/stable/sources/xml-i18n-tools/xml-i18n-tools-0.6.tar.gz" echo "(or a newer version if it is available)" DIE=1 } } (grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { (libtool --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`libtool' installed to compile $PKG_NAME." echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz" echo "(or a newer version if it is available)" DIE=1 } } #grep "^AM_GNU_GETTEXT" $srcdir/configure.in >/dev/null && { # grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ # (gettext --version) < /dev/null > /dev/null 2>&1 || { # echo # echo "**Error**: You must have \`gettext' installed to compile $PKG_NAME." # echo "Get ftp://ftp.gnu.org/pub/gnu/gettext/gettext-0.10.39.tar.gz" # echo "(or a newer version if it is available)" # DIE=1 # } #} #grep "^AM_GNOME_GETTEXT" $srcdir/configure.in >/dev/null && { # grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \ # (gettext --version) < /dev/null > /dev/null 2>&1 || { # echo # echo "**Error**: You must have \`gettext' installed to compile $PKG_NAME." # echo "Get ftp://ftp.gnu.org/pub/gnu/gettext/gettext-0.10.39.tar.gz" # echo "(or a newer version if it is available)" # DIE=1 # } #} (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`automake' installed to compile $PKG_NAME." echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" echo "(or a newer version if it is available)" DIE=1 NO_AUTOMAKE=yes } # if no automake, don't bother testing for aclocal test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: Missing \`aclocal'. The version of \`automake'" echo "installed doesn't appear recent enough." echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" echo "(or a newer version if it is available)" DIE=1 } if test "$DIE" -eq 1; then exit 1 fi if test -z "$*"; then echo "**Warning**: I am going to run \`configure' with no arguments." echo "If you wish to pass any to it, please specify them on the" echo \`$0\'" command line." echo fi case $CC in xlc ) am_opt=--include-deps;; esac for coin in `find $srcdir -name configure.in -print` do dr=`dirname $coin` if test -f $dr/NO-AUTO-GEN; then echo skipping $dr -- flagged as no auto-gen else echo processing $dr macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < $coin` ( cd $dr macrosdir=`find . -name macros -print` for i in $macrodirs; do if test -f $i/gnome-gettext.m4; then DELETEFILES="$DELETEFILES $i/gnome-gettext.m4" fi done echo "deletefiles is $DELETEFILES" aclocalinclude="$ACLOCAL_FLAGS" for k in $aclocalinclude; do if test -d $k; then if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1" ]; then rm -f $DELETEFILES fi fi done for k in $macrodirs; do if test -d $k; then aclocalinclude="$aclocalinclude -I $k" if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1" ]; then rm -f $DELETEFILES fi fi done if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then if grep "sed.*POTFILES" configure.in >/dev/null; then : do nothing -- we still have an old unmodified configure.in else echo "Creating $dr/aclocal.m4 ..." test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 echo "Running gettextize... Ignore non-fatal messages." echo "no" | gettextize --force --copy echo "Making $dr/aclocal.m4 writable ..." test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi fi if grep "^AM_GNOME_GETTEXT" configure.in >/dev/null; then echo "Creating $dr/aclocal.m4 ..." test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 echo "Running gettextize... Ignore non-fatal messages." echo "no" | gettextize --force --copy echo "Making $dr/aclocal.m4 writable ..." test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi if grep "^AM_PROG_XML_I18N_TOOLS" configure.in >/dev/null; then echo "Running xml-i18n-toolize... Ignore non-fatal messages." xml-i18n-toolize --copy --force --automake fi if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then echo "Running libtoolize..." libtoolize --force --copy fi fi echo "Running aclocal $aclocalinclude ..." aclocal $aclocalinclude || { echo echo "**Error**: aclocal failed. This may mean that you have not" echo "installed all of the packages you need, or you may need to" echo "set ACLOCAL_FLAGS to include \"-I \$prefix/share/aclocal\"" echo "for the prefix where you installed the packages whose" echo "macros were not found" exit 1 } if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then echo "Running autoheader..." autoheader || { echo "**Error**: autoheader failed."; exit 1; } fi echo "Running automake --gnu $am_opt ..." automake --add-missing --gnu $am_opt || { echo "**Error**: automake failed."; exit 1; } echo "Running autoconf ..." autoconf || { echo "**Error**: autoconf failed."; exit 1; } ) || exit 1 fi done conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c if test x$NOCONFIGURE = x; then echo Running $srcdir/configure $conf_flags "$@" ... $srcdir/configure $conf_flags "$@" \ && echo Now type \`make\' to compile $PKG_NAME || exit 1 else echo Skipping configure process. fi '/>
path: root/databases/dbf2mysql
-08-22 08:28:34 +0800'>2009-08-22
Commit message (Expand)AuthorAgeFilesLines
* Rename databases/ patch-xy patches to reflect the files they modify.adamw2014-07-282-0/+0
* Support stagingehaupt2014-03-061-7/+6
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-5/+2
* - Fix MASTER_SITESwen2011-10-172-11/+6
* - Get Rid MD5 supportmiwi2011-03-201-1/+0
* Bump PORTREVISION for ports linking to default libmysqlclient.ale2011-03-191-1/+1
* Fix pkg-plist when NOPORTDOCS defined.osa2010-12-081-3/+5
* Fix can be compiled with current MySQL client librarybeech2010-12-052-1/+89
1-2/+3
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-061-1/+1
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-201-1/+2
* - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGmiwi2008-03-251-2/+1
* - Welcome X.org 7.2 \o/.flz2007-05-201-1/+1
* SHA256ifyedwin2006-01-221-0/+2
* Remove install-info from Makefile, it's automatically done when INFO is definededwin2005-12-051-1/+0
* Use INFO macroedwin2005-12-042-3/+1
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentade2005-11-151-1/+1
* Fix patch-file.edwin2004-07-171-6/+6
* [math/gnuplot+] fix amd64 build failureedwin2004-07-162-14/+8
* - Drop pkg-message, author removed restriction from licencepav2004-05-252-26/+0
* Add size data, approved by maintainers.trevor2004-03-191-0/+2
* Whoa there, boy, that's a mighty big commit y'all have there...ade2004-03-141-1/+1
* BROKEN on amd64: Does not compilekris2004-03-061-1/+7
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-04d>
* - Fix build with new site_perlaz2013-06-131-1/+1
* - Update to 0.8.3miwi2013-04-307-116/+167
* - Convert USE_ICONV=yes to USES=iconvmva2013-04-271-1/+1
* Convert f* to USES=pkgconfigbapt2013-04-231-6/+2
* Style: tab -> space.eadler2013-03-291-1/+1
* - Add UPDATING entry for gnutls updatenovel2013-02-061-2/+2
* Convert SINGLE -> RADIO optionbapt2012-12-111-5/+4
* Move the rc.d scripts of the form *.sh.in to *.indougb2012-08-062-1/+1
* new devel/pkgconf added to replace devel/pkg-config. new version of pkg-configbapt2012-07-261-2/+1
* For ports maintained by ports@ where pkgconfig is one of the USE_GNOME depsdougb2012-07-231-1/+3
* Convert to new options frameworkbapt2012-06-121-24/+23
* In the rc.d scripts, change assignments to rcvar to use thedougb2012-01-141-1/+1
* Remove more tags from pkg-descr files fo the form:dougb2011-10-241-3/+0
* Drop maintainership as I'm not using this software anymore.novel2011-09-251-1/+1
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)amdmi32011-09-241-2/+2
* Chase security/gnutls update and add an UPDATING entry.novel2011-06-061-2/+2