2005-11-28 07:41:22 by Johnny C. Lam | Files touched by this commit (29) |
Log message:
Change all instances of including mk/ghostscript.mk into asking for
the appropriate tool via USE_TOOLS (usually "gs:run"), and remove
ghostscript.mk. This change removes a rather out-dated file from
pkgsrc and switches packages to use the more compact implementation
of the Ghostcript-handling inside the tools framework.
|
2005-11-03 08:20:28 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
Remove specifying RUBY_VERSION_SUPPORTED.
|
2005-11-03 06:10:16 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-RMagick package to 1.9.3 applying patch provided by
PR pkg/31856 from OBATA Akio.
|
2005-10-02 08:41:47 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-RMagick package to 1.9.2 based on PR pkg/31408 from OBATA Akio.
pkgsrc's change is to use bz2 archive.
RMagick 1.9.2
o Feature 2412, add the virtual_pixel_method attribute and the
VirtualPixelMethod enumeration
o Feature 2462, add the ticks_per_second attribute
|
2005-09-13 16:38:14 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update graphics/ruby-RMagick package to 1.9.1 applying patch from
PR pkg/31251 provided by Akio Obata.
RMagick 1.9.1
o Fixed bug #2157, Image#total_colors is now an alias of Image#number_colors
o Fixed bug #2155, Image#dispose= now accepts a DisposeType enum, #dispose
now returns a DisposeType enum.
o Fixed bug #2156, Image#properties no longer returns garbage for the property
name and value.
o Fixed bug #2190, Image#compose now returns a CompositeOperator
o Fixed bug #2191, Image#composite no longer abends when called
with 0 arguments
o Fixed bug #2213, ImageList#montage method no longer leaves the imagelist
corrupt after raising an ImageMagickError
o Feature #2159, added GrayChannel ChannelType enum value, BlendCompositeOp
and ColorBurnCompositeOp CompositeOperator enum values, RLECompression
CompressionType enum value, deprecate RunlengthCompression
o Feature #2172, added optional argument to crop and crop! to reset the saved
page offsets after cropping
o Deprecated Image#channel_threshold. This method is deprecated in ImageMagick.
o Feature #2373, change Image#import_pixels to accept a pixel data buffer
as well as a pixel data array. (Thanks to Ara T. Howard for this suggestion!)
o Fixed to compile without errors with ImageMagick 6.2.4-4.
|
2005-07-17 16:39:21 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-RMagick package to 1.9.0 provided by PR pkg/30759 from
OBATA Akio.
Changes:
o Added Image#monitor=, Image::Info#monitor=.
Deprecated Magick.set_monitor.
o Fixed bug #2070, support color names with embedded spaces
o Fixed bug #2109, properly scope Magick constants in RVG
|
2005-06-23 18:59:09 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby18-RMagick package to 1.8.3, provided by PR pkg/30557
from OBATA Akio.
Changes:
o Tested with ImageMagick 6.2.3-2
o Added comment=, delay=, dispose=, fill=, gravity=, and
label= attributes to Image::Info
|
2005-06-12 16:49:03 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-RMagick package to 1.8.2 provided by PR pkg/30497.
o Fix bug #1983, potential buffer overflow in version_constants
o Added feature #2015, support the pointsize, authenticate,
and sampling_factor attributes in Image::Info
|
2005-06-01 20:03:33 by Johnny C. Lam | Files touched by this commit (858) |
Log message:
Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.
Several changes are involved since they are all interrelated. These
changes affect about 1000 files.
The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files. Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred. This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.
The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.
The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc. The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.
The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files. Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories. These files are used as input
to imake since imake can't use stdin for that purpose.
The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead. This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed. Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries. Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
|
2005-05-28 05:01:21 by Takahiro Kambe | Files touched by this commit (6) | |
Log message:
Update ruby-RMagick package to 1.8.1.
o Fix bugs #1876, #1888, #1919
o Added feature #1941, RVG's polyline, polygon accept array arguments
o Numerous fixes to the RVG documentation
Fixes PR pkg/30313 provided by Akio Obata.
|