Commit graph

21 commits

Author SHA1 Message Date
joerg
f605fec2db Mark as destdir ready. 2008-07-14 12:55:56 +00:00
jlam
7af716330d Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc
had actually been ignoring LTCONFIG_OVERRIDE anyway and just using
the default LIBTOOL_OVERRIDE to replace libtool scripts in packages.
This just formalizes the fact that LTCONFIG_OVERRIDE is not used
meaningfully by pkgsrc.
2006-07-19 19:14:37 +00:00
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jlam
585534220c Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison
2005-05-22 20:07:36 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
tv
c436a5e199 Remove invalid use of getdomainname(3) to determine "local host name".
(That's a NIS domain name, not a hostname.)
2005-03-10 14:17:15 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2004-10-03 00:12:51 +00:00
snj
124c082233 Convert to buildlink3. 2004-04-25 06:58:43 +00:00
grant
9b4feec99c replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 15:30:32 +00:00
martti
cd2f7f1959 COMMENT should start with a capital letter. 2003-07-21 17:38:24 +00:00
grant
ca3be631f2 s/netbsd.org/NetBSD.org/ 2003-07-17 22:50:55 +00:00
wiz
43fa0c7cb6 PKGREVISION bump for libiconv update. 2003-07-13 13:50:19 +00:00
wiz
7166660e08 Dependency bumps, needed because of devel/pth's major bump, and related
dependency bumps.
2003-05-02 11:53:34 +00:00
jlam
0a3179b9aa buildlink1 -> buildlink2 2002-09-22 10:30:00 +00:00
drochner
07d68f1cec -update to 0.99.17, changes:
-additions:
  -GtkPlot: display grids on top/below data
            New function gtk_plot_set_pc
            New signal "tick_label" to retrieve axes tick labels
            New functions to handle axes labels
  -GtkPlotDT: delaunay triangulization algorithm
  -GtkSheet: New function gtk_sheet_get_entry_widget
             Background colors and grid handling
  -GtkPlotPC: New function gtk_plot_pc_set_viewport
  -GtkPlotData: New alternative to retrieve data points trough a callback
                 function
                Scale points size
                New functions to autoscale gradient according to field
                gtk_plot_data_get_point() to retrieve values
                Data markers
  -GtkPlotSurface: Use new Delaunay triangulization algorithm
                   New functions to colour the surface using a gradient
                    proportional to the height field
  -GtkPlotCSurface: Gradient with sublevels
  -GtkPlotCanvas: New child: CANVAS_MARKERS
                  New selection stretegy
                  New function gtk_plot_set_pc
                  gtk_plot_canvas_freeze/thaw methods
 -fixes:
  -build system
  -memory leaks
  -etc
-add a buildlink.mk
2002-01-09 14:46:50 +00:00
drochner
6356a93c8d update to 0.99.15
Changes:
New widgets: gtkcharselection and gtkplotpixmap.
Background images in gtkplot, and pixmaps in gtkplotcanvas. Much faster
 gtkiconfilesel, with gtkdirtree optional. Enhancements in WYSIWYG and
 postscript output, which can export images.
BugFixes.
2001-07-11 10:35:56 +00:00
wulf
30351e19ff Updated gtk+extra to 0.99.14: Bugfix update 2001-04-13 16:13:35 +00:00
drochner
89c65a5d3e update to 0.99.13. Changes:
Bugfixes and new method for custom labels in GtkPlot.
Backwards compatibility is broken, you'll have to recompile your programs.
2001-03-10 12:32:00 +00:00
wiz
a486f11406 Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. 2001-02-17 17:06:11 +00:00
drochner
2ad7e77fe3 update to 0.99.12
Changelog:
 - New plot subclasses for 3D and polar plots: GtkPlot3d and GtkPlotPolar.

   GtkPlot3D has its own API, but GtkPlotPolar can be casted as a GtkPlot
 considering the equivalence x->r, y->angle.

 - GtkPlotData is a widget. The API is almost the same. You may have to
 cast the widget using data = GTK_PLOT_DATA(gtk_plot_data_new());

 - The other Data subclasses are Bar, Box, Flux, Surface and
 CSurface.

 - I added new arguments to the datasets (z, dz, a, da): z is obviously for
 3d plots. However, it is used in GtkPlotBox to specify the size of the boxes.
 "a" is used to determine the size of the symbols, and "da", the color.

 - The color of the symbols, when "da" is specified, is detemined using the
 gradient. the gradient has (min, max) values, and corresponding colors. The
 symbol's color is interpolated between these values using hue/saturation/value
 depending on the gradient_mask.

 - GtkOrientation was replaced with GtkPlotOrientation
 (GTK_PLOT_AXIS_X/Y/Z)

 - the fields xticks and yticks were removed from gtkplot.

 - GtkPlotSymbol has a new field GtkPlotLine border and you set/get the
 attributes with gtk_plot_data_set/get_symbol

 - I removed the symbol type: GTK_PLOT_SYMBOL_BAR, because this is a new
 data subclass. I added TRIANGLE_LEFT/RIGHT and DOT.

 - After gtk_plot_canvas_paint, you have to use gtk_plot_canvas_refresh to
 refresh the pixmap in the window. This is because paint can be
 used to print or save plots in other formats, depending on the GtkPlotPC
 you are using (see below).
 - The drawing engine, called GtkPlotPC has been rewritten. Now
 it's a GtkObject, and you can derive subclasses as GtkPlotGdk and
 GtkPlotPS in our case (You can define your own if you want to use a
 different library to draw your plots!).

 How does it work:
 1) Instead of creating a GdkGC, you create either a GtkPlotGdk or
 GtkPlotPS.
 2) you do the following replacements:

 gdk_gc_set_foreground -> gtk_plot_pc_set_color
 gdk_gc_set_dash -> gtk_plot_pc_set_dash
 gdk_gc_set_line_attributes -> gtk_plot_pc_set_lineattr
 gdk_gc_draw_... -> gtk_plot_pc_draw_...

 The output will be either on a drawable or a file according to the
 GtkPlotPC you chose.

 All the redundant code for the PS output in gtkplotprint was eliminated!
 Elegant, isn't it?

 - I also added a new widget: gtktogglecombo, a gtkcombobox subclass (See it
 in action in testgtksheet)

 - New demos are included.
2001-01-15 12:46:01 +00:00
rh
94b5174a17 Initial import of gtk+extra-0.99.11, a set of useful gtk+ widgets for
creating GUIs.
2000-10-15 12:25:51 +00:00