diff options
author | Maho Nakata <maho@FreeBSD.org> | 2005-02-01 06:54:06 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2005-02-01 06:54:06 +0000 |
commit | ba68454656a2b8a959bb13020854bffa5c4d7c67 (patch) | |
tree | 89a63ed18b6cbd71f7809a97f2add117b0c679ee /science/chemtool | |
parent | Upgrade to 2.0-RC5. (diff) |
Update to 1.6.4
Submitted by: Christopher Illies <christopher.illies@web.de>,
MartinKroeker <martin@ruby.chemie.uni-freiburg.de>
(original author) and maho
Notes
Notes:
svn path=/head/; revision=127822
Diffstat (limited to 'science/chemtool')
-rw-r--r-- | science/chemtool/Makefile | 3 | ||||
-rw-r--r-- | science/chemtool/distinfo | 4 | ||||
-rw-r--r-- | science/chemtool/files/patch-configure.in | 76 |
3 files changed, 80 insertions, 3 deletions
diff --git a/science/chemtool/Makefile b/science/chemtool/Makefile index ac04d33fdd78..6bd93159515e 100644 --- a/science/chemtool/Makefile +++ b/science/chemtool/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= chemtool -PORTVERSION= 1.6.3 +PORTVERSION= 1.6.4 CATEGORIES= science MASTER_SITES= http://ruby.chemie.uni-freiburg.de/~martin/chemtool/ @@ -17,6 +17,7 @@ RUN_DEPENDS= transfig:${PORTSDIR}/print/transfig USE_GNOME= gtk20 USE_GMAKE= yes +USE_AUTOCONF_VER= 259 GNU_CONFIGURE= yes CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libEMF CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} diff --git a/science/chemtool/distinfo b/science/chemtool/distinfo index 9935db0e2264..6703e677c6cf 100644 --- a/science/chemtool/distinfo +++ b/science/chemtool/distinfo @@ -1,2 +1,2 @@ -MD5 (chemtool-1.6.3.tar.gz) = 054b3e737781c5cf09967444d218ae73 -SIZE (chemtool-1.6.3.tar.gz) = 400772 +MD5 (chemtool-1.6.4.tar.gz) = de2258aa710d7b16093b082963732010 +SIZE (chemtool-1.6.4.tar.gz) = 409400 diff --git a/science/chemtool/files/patch-configure.in b/science/chemtool/files/patch-configure.in new file mode 100644 index 000000000000..a26338492704 --- /dev/null +++ b/science/chemtool/files/patch-configure.in @@ -0,0 +1,76 @@ +--- configure.in.orig Mon Dec 20 01:49:49 2004 ++++ configure.in Tue Feb 1 15:45:02 2005 +@@ -22,7 +22,7 @@ + + AC_MSG_CHECKING([for GTK version and compile options ]) + +-if test x$PKG_CONFIG == xno -o x$enable_gtk1 == xyes ; then ++if test x$PKG_CONFIG = xno -o x$enable_gtk1 = xyes ; then + AM_PATH_GTK(1.0.2, , exit 1) + else + if $PKG_CONFIG gtk+-2.0 --cflags ; then +@@ -87,7 +87,7 @@ + fi + fi + done +-if test "x$kdemimedir" == "x" ; then ++if test "x$kdemimedir" = "x" ; then + AC_MSG_RESULT([no]) + fi + dnl AC_DEFINE_UNQUOTED(KDEDIR=$withval), +@@ -110,7 +110,7 @@ + gnomemimedir=$GNOMEMIMEDIR + fi + fi +-if test "x$GNOMEMIMEDIR" == "x" ; then ++if test "x$GNOMEMIMEDIR" = "x" ; then + AC_MSG_RESULT([no]) + fi + dnl AC_DEFINE_UNQUOTED(GNOMEMIMEDIR=$withval), +@@ -120,8 +120,8 @@ + AC_MSG_CHECKING(whether to enable locales) + dnl AC_ARG_ENABLE(locales, + dnl [ --enable-locales Use locales [no]],,enable_locales=no) +-dnl if test x$enable_locales == xyes; then +-if test "$ac_cv_header_libintl_h" == "yes" ++dnl if test x$enable_locales = xyes; then ++if test "$ac_cv_header_libintl_h" = "yes" + then + AC_MSG_RESULT(yes) + AC_DEFINE_UNQUOTED(LOCALEDIR="\"\$datadir/locale"\") +@@ -133,7 +133,7 @@ + AC_MSG_CHECKING(whether to enable libundo) + AC_ARG_ENABLE(undo, + [ --enable-undo Build with libundo [yes]],,enable_undo=yes) +-if test x$enable_undo == xyes; then ++if test x$enable_undo = xyes; then + AC_MSG_RESULT(yes) + AC_DEFINE(LIBUNDO) + else +@@ -143,7 +143,7 @@ + AC_MSG_CHECKING(whether to use pull-down menus) + AC_ARG_ENABLE(menu, + [ --enable-menu Enable new style pull-down-menu [yes]],,enable_menu=yes) +-if test x$enable_menu == xyes; then ++if test x$enable_menu = xyes; then + AC_MSG_RESULT(yes) + AC_DEFINE(MENU) + else +@@ -153,7 +153,7 @@ + AC_MSG_CHECKING(whether to enable emf output) + AC_ARG_ENABLE(emf, + [ --enable-emf Enable enhanced metafile output via libEMF [no]],,enable_emf=no) +-if test x$enable_emf == xyes; then ++if test x$enable_emf = xyes; then + AC_MSG_RESULT(yes) + AC_DEFINE(EMF) + EMFLIBS="-lEMF -lstdc++" +@@ -167,7 +167,7 @@ + AC_ARG_ENABLE(stockgtk, + [ --enable-stockgtk use standard GTK menu and fileselection widgets [no]],,enable_stockgtk=no) + +-if test x$enable_stockgtk == xyes; then ++if test x$enable_stockgtk = xyes; then + AC_MSG_RESULT(yes) + MYGTKSRCS="" + MYGTKOBJS="" |