diff options
author | kevlo <kevlo@FreeBSD.org> | 2000-12-03 00:27:23 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2000-12-03 00:27:23 +0800 |
commit | 171a48b1f97aee4e38d9d16e85b65608ec0abf33 (patch) | |
tree | a9503fa718457c53f924893f8c1d6853f3a05717 /math | |
parent | 8cdfe7e85fd089d9fff83c08a399d3c6b52ddf50 (diff) | |
download | freebsd-ports-gnome-171a48b1f97aee4e38d9d16e85b65608ec0abf33.tar.gz freebsd-ports-gnome-171a48b1f97aee4e38d9d16e85b65608ec0abf33.tar.zst freebsd-ports-gnome-171a48b1f97aee4e38d9d16e85b65608ec0abf33.zip |
Update to version 1.99.14
PR: 23226
Submitted by: Ports Fury
Diffstat (limited to 'math')
-rw-r--r-- | math/oleo/Makefile | 16 | ||||
-rw-r--r-- | math/oleo/distinfo | 2 | ||||
-rw-r--r-- | math/oleo/files/patch-ag | 64 | ||||
-rw-r--r-- | math/oleo/files/patch-ah | 34 | ||||
-rw-r--r-- | math/oleo/files/patch-aj | 11 | ||||
-rw-r--r-- | math/oleo/files/patch-ak | 22 | ||||
-rw-r--r-- | math/oleo/files/patch-al | 28 | ||||
-rw-r--r-- | math/oleo/pkg-plist | 14 |
8 files changed, 101 insertions, 90 deletions
diff --git a/math/oleo/Makefile b/math/oleo/Makefile index d239e5965866..8f2d425d1cb8 100644 --- a/math/oleo/Makefile +++ b/math/oleo/Makefile @@ -6,7 +6,7 @@ # PORTNAME= oleo -PORTVERSION= 1.99.12 +PORTVERSION= 1.99.14 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -14,13 +14,23 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext +.if defined(WITH_MOTIF) +LIB_DEPENDS+= plot.3:${PORTSDIR}/graphics/plotutils \ + Xbae.7:${PORTSDIR}/x11-toolkits/xbae +.endif USE_XLIB= yes USE_AUTOCONF= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" -CONFIGURE_ARGS= --with-x --without-motif \ - --without-xbae --without-xlt \ +CONFIGURE_ARGS= --with-x --without-xlt \ --without-xmhtml --without-SciPlot +.if defined(WITH_MOTIF) +USE_MOTIF= yes +CONFIGURE_ARGS+= --with-motif +.else +CONFIGURE_ARGS+= --without-motif +.endif + .include <bsd.port.mk> diff --git a/math/oleo/distinfo b/math/oleo/distinfo index c8d3ca9a6cbe..9662446abfba 100644 --- a/math/oleo/distinfo +++ b/math/oleo/distinfo @@ -1 +1 @@ -MD5 (oleo-1.99.12.tar.gz) = 57ac0e2eab661685ef5f6fa6bfe5b1c5 +MD5 (oleo-1.99.14.tar.gz) = 85c0de81f7cbabab3c26b46ba0a75779 diff --git a/math/oleo/files/patch-ag b/math/oleo/files/patch-ag index 2d4bce85ce2d..28bb3c65a63a 100644 --- a/math/oleo/files/patch-ag +++ b/math/oleo/files/patch-ag @@ -1,60 +1,16 @@ ---- aclocal.m4.orig Thu Feb 10 05:22:27 2000 -+++ aclocal.m4 Fri Jul 28 19:30:42 2000 -@@ -1733,7 +1733,7 @@ - # but which still want to provide support for the GNU gettext functionality. - # Please note that the actual code is *not* freely available. - --# serial 3 -+# serial 5 - - AC_DEFUN(AM_WITH_NLS, - [AC_MSG_CHECKING([whether NLS is requested]) -@@ -1775,9 +1775,10 @@ - AC_CHECK_LIB(intl, bindtextdomain, - [AC_CACHE_CHECK([for gettext in libintl], - gt_cv_func_gettext_libintl, -- [AC_TRY_LINK([], [return (int) gettext ("")], -- gt_cv_func_gettext_libintl=yes, -- gt_cv_func_gettext_libintl=no)])]) -+ [AC_CHECK_LIB(intl, gettext, -+ gt_cv_func_gettext_libintl=yes, -+ gt_cv_func_gettext_libintl=no)], -+ gt_cv_func_gettext_libintl=no)]) - fi - - if test "$gt_cv_func_gettext_libc" = "yes" \ -@@ -1799,6 +1800,9 @@ +--- aclocal.m4.orig Thu Nov 23 05:32:03 2000 ++++ aclocal.m4 Sat Dec 2 12:21:18 2000 +@@ -1996,9 +1996,12 @@ + [CATOBJEXT=.gmo + DATADIRNAME=share], + [CATOBJEXT=.mo +- DATADIRNAME=lib]) ++ DATADIRNAME=share]) INSTOBJEXT=.mo fi - fi ++ fi + if test "$gt_cv_func_gettext_libintl" = "yes"; then + INTLLIBS='-lintl' -+ fi + fi ]) - if test "$CATOBJEXT" = "NONE"; then -@@ -1883,6 +1887,12 @@ - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h - fi -+ AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl) -+ AC_OUTPUT_COMMANDS( -+ [case "$CONFIG_FILES" in *po/Makefile.in*) -+ sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile -+ esac]) -+ - - # If this is used in GNU gettext we have to set USE_NLS to `yes' - # because some of the sources are only built for this goal. -@@ -1927,9 +1937,9 @@ - AC_REQUIRE([AC_FUNC_MMAP])dnl - - AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h string.h \ --unistd.h values.h sys/param.h]) -+unistd.h sys/param.h]) - AC_CHECK_FUNCS([getcwd munmap putenv setenv setlocale strchr strcasecmp \ --__argz_count __argz_stringify __argz_next]) -+strdup __argz_count __argz_stringify __argz_next]) - - if test "${ac_cv_func_stpcpy+set}" != "set"; then - AC_CHECK_FUNCS(stpcpy) diff --git a/math/oleo/files/patch-ah b/math/oleo/files/patch-ah index b0d2a4e1cd80..dda291c3f25b 100644 --- a/math/oleo/files/patch-ah +++ b/math/oleo/files/patch-ah @@ -1,15 +1,21 @@ ---- configure.in.orig Tue Jul 25 21:56:32 2000 -+++ configure.in Fri Jul 28 02:51:24 2000 -@@ -324,12 +324,6 @@ - AM_GNU_GETTEXT - +--- configure.in.orig Thu Nov 23 05:31:55 2000 ++++ configure.in Sat Dec 2 10:41:01 2000 +@@ -208,13 +208,15 @@ + dnl the libplot from GNU plotutils sometimes requires linking the + dnl X and Motif libraries dnl --dnl This used to cause all kinds of problems in an earlier revision --dnl of oleo. (Mostly because of using earlier auto* tools.) --dnl --AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl) -- --dnl - dnl Pass information about where we install to the source, to be - dnl able to read AFM files. Note this doesn't work if you - dnl install via "make install DESTDIR=/xxx" +-AC_CHECK_LIB(plot, pl_openpl_r, ++if test "$with_motif" = "yes"; then ++ AC_CHECK_LIB(plot, pl_openpl_r, + AC_DEFINE(HAVE_LIBPLOT) + LIBS="$LIBS -lplot") + +-AC_CHECK_LIB(sciplot, sp_begin_plot) +-if test x$ac_cv_lib_sciplot_sp_begin_plot = xyes; then ++ AC_CHECK_LIB(sciplot, sp_begin_plot) ++ if test x$ac_cv_lib_sciplot_sp_begin_plot = xyes; then + AC_DEFINE(HAVE_LIBSCIPLOT) ++ fi + fi + + dnl Checks for Guile diff --git a/math/oleo/files/patch-aj b/math/oleo/files/patch-aj deleted file mode 100644 index 7706eb4c4d20..000000000000 --- a/math/oleo/files/patch-aj +++ /dev/null @@ -1,11 +0,0 @@ ---- po/Makefile.in.in.orig Fri Aug 28 06:15:29 1998 -+++ po/Makefile.in.in Fri Jul 28 04:30:24 2000 -@@ -119,7 +119,7 @@ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - case "$$cat" in \ -- *.gmo) destdir=$(gnulocaledir);; \ -+ *.mo) destdir=$(gnulocaledir);; \ - *) destdir=$(localedir);; \ - esac; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ diff --git a/math/oleo/files/patch-ak b/math/oleo/files/patch-ak new file mode 100644 index 000000000000..279325421bce --- /dev/null +++ b/math/oleo/files/patch-ak @@ -0,0 +1,22 @@ +--- src/Makefile.in.orig Thu Nov 23 05:39:58 2000 ++++ src/Makefile.in Sat Dec 2 10:44:42 2000 +@@ -158,7 +158,7 @@ + @UseMotif_TRUE@MYCFL = ${X_CFLAGS} + @UseMotif_FALSE@MYCFL = ${X_CFLAGS} + +-oleo_LDADD = ${X_PRE_LIBS} ${MYLD} @INTLLIBS@ ../lib/liboleo.a ../intl/libintl.a ${X_LIBS} ++oleo_LDADD = ${X_PRE_LIBS} ${MYLD} @INTLLIBS@ ../lib/liboleo.a ${X_LIBS} + INCLUDES = -I.. -I$(srcdir) -I$(top_srcdir)/lib -I../intl ${MYINC} + CFLAGS = @CFLAGS@ -DLOCALEDIR=\"$(localedir)\" ${MYCFL} -DBUILD_PREFIX='"'${BUILD_PREFIX}'"' + +@@ -251,8 +251,8 @@ + @UseMotif_FALSE@@HaveXbase_FALSE@postscript$U.o pcl$U.o epson$U.o \ + @UseMotif_FALSE@@HaveXbase_FALSE@prtext$U.o afm$U.o mdi$U.o gsl$U.o \ + @UseMotif_FALSE@@HaveXbase_FALSE@plotter$U.o legend$U.o +-@UseMotif_TRUE@oleo_DEPENDENCIES = ../lib/liboleo.a ../intl/libintl.a +-@UseMotif_FALSE@oleo_DEPENDENCIES = ../lib/liboleo.a ../intl/libintl.a ++@UseMotif_TRUE@oleo_DEPENDENCIES = ../lib/liboleo.a @INTLDEPS@ ++@UseMotif_FALSE@oleo_DEPENDENCIES = ../lib/liboleo.a @INTLDEPS@ + oleo_LDFLAGS = + CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) + CXXLD = $(CXX) diff --git a/math/oleo/files/patch-al b/math/oleo/files/patch-al new file mode 100644 index 000000000000..940a4d3c3903 --- /dev/null +++ b/math/oleo/files/patch-al @@ -0,0 +1,28 @@ +--- src/io-motif.c.orig Thu Nov 23 05:38:22 2000 ++++ src/io-motif.c Sat Dec 2 09:47:19 2000 +@@ -5995,7 +5995,11 @@ + #endif + + #ifdef HAVE_LIBPLOT ++#if defined(PL_LIBPLOT_VER_STRING) + sprintf(xbae, "\n GNU PlotUtils (libplot version %s)", PL_LIBPLOT_VER_STRING); ++#else ++ sprintf(xbae, "\n GNU PlotUtils (libplot version %s)", LIBPLOT_VERSION); ++#endif + xms1 = xms; + xms2 = XmStringCreateLtoR(xbae, XmFONTLIST_DEFAULT_TAG); + xms = XmStringConcat(xms1, xms2); +@@ -6079,6 +6083,7 @@ + return; + } + ++#if XbaeVersion > 4007 + if (XbaeMatrixGetCellWidget(mat, r-1, c-1) == NULL) { + button = XtVaCreateManagedWidget(lbl, xmPushButtonWidgetClass, mat, NULL); + XbaeMatrixSetCellWidget(mat, r-1, c-1, button); +@@ -6088,4 +6093,5 @@ + + fprintf(stderr, "MotifButton(%d,%d,%s,%s)\n", r-1, c-1, lbl, command); + } ++#endif + } diff --git a/math/oleo/pkg-plist b/math/oleo/pkg-plist index 03ed1443d895..96f6bc7da906 100644 --- a/math/oleo/pkg-plist +++ b/math/oleo/pkg-plist @@ -1,17 +1,17 @@ bin/oleo +@unexec install-info --delete %D/info/oleo.info %D/info/dir +info/oleo.info +@exec install-info %D/info/oleo.info %D/info/dir +share/doc/Oleo/AUTHORS +share/doc/Oleo/FAQ share/locale/en/LC_MESSAGES/oleo.mo share/locale/fr/LC_MESSAGES/oleo.mo share/locale/nl/LC_MESSAGES/oleo.mo +share/oleo/Oleo share/oleo/fr/Oleo share/oleo/nl/Oleo share/oleo/oleo.html -share/oleo/Oleo -share/doc/Oleo/AUTHORS -share/doc/Oleo/FAQ -@unexec install-info --delete %D/info/oleo.info %D/info/dir -info/oleo.info -@exec install-info %D/info/oleo.info %D/info/dir -@dirrm share/doc/Oleo @dirrm share/oleo/nl @dirrm share/oleo/fr @dirrm share/oleo +@dirrm share/doc/Oleo |