pkgsrc/graphics
wiz 20a6f192ab Update to 1.2.2, some pkglint cleanup:
Release 1.2.2 (2006-08-08 Carl Worth)
=========================================================
This is the first bug fix release in the 1.2 series since the original
1.2.0 release made six weeks ago.

There were some very serious bugs in the 1.2.0 release, (see below),
so everybody is encouraged to upgrade from 1.2.0 to 1.2.2. The 1.2.2
release maintains source and binary compatibility with 1.2.0 and does
not make any API additions.

Fix crashes with BGR X servers
------------------------------
With cairo 1.2.0 many people reported problems with all cairo-using
programs, (including all GTK+ programs with GTK+ >= 2.8) immediately
crashing with a complaint about an unsupported image format. This bug
affected X servers that do not provide the Render extension and that
provide a visual with BGR rather than RGB channel order.

report:	https://bugs.freedesktop.org/show_bug.cgi?id=7294
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=9ae66174e774b57f16ad791452ed44efc2770a59

Fix the "disappearing text" bug
-------------------------------
With cairo 1.2.0 many people reported that text would disappear from
applications, sometimes reappearing with mouse motion or
selection. The text would disappear after the first space in a string
of text. This bug was caused by an underlying bug in (very common) X
servers, and only affected text rendered without antialiasing, (either
a bitmap font or a vector font with antialiasing disabled). The bug
was also exacerbated by a KDE migration bug that caused antialiasing
to be disabled more than desired.

report:	https://bugs.freedesktop.org/show_bug.cgi?id=7494
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=456cdb3058f3b416109a9600167cd8842300ae14
see also:
Xorg:	https://bugs.freedesktop.org/show_bug.cgi?id=7681
KDE:	http://qa.mandriva.com/show_bug.cgi?id=23990

Fix broken image fallback scaling (aka. "broken printing")
----------------------------------------------------------
The various "print" backends, (pdf, ps, and svg), sometimes fallback
to using image-based rendering for some operations. In cairo 1.2.0
these image fallbacks were scaled improperly. Applications using cairo
can influence the resolution of the image fallbacks with
cairo_surface_set_fallback_resolution. With the bug, any calue other
than 72.0 would lead to incorrect results, (larger values would lead
to increasingly shrunken output).

report:	https://bugs.freedesktop.org/show_bug.cgi?id=7533
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=1feb4291cf7813494355459bb547eec604c54ffb

Fix inadvertent semantic change of font matrix translation (Behdad Esfahbod)
----------------------------------------------------------------------------
The 1.2.0 release introduced an inadvertent change to how the
translation components of a font matrix are interpreted. In the 1.0
series, font matrix translation could be used to offset the glyph
origin, (though glyph metrics were reported incorrectly in
1.0). However in 1.2.0, the translation was applied to the advance
values betwen each glyph. The 1.2.0 behavior is fairly useless in
practice, and it was not intentional to introduce a semantic
change. With 1.2.2 we return to the 1.0 semantics, with a much better
implementation that provides correct glyph metrics.

fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=84840e6bba6e72aa88fad7a0ee929e8955ba9051

Fix create_similar to preserve fallback resolution and font options (Behdad Esfahbod)
-------------------------------------------------------------------------------------
There has been a long-standing issue with cairo_surface_create_similar
such that font options and other settings from the original
destination surface would not be preserved to the intermediate
"similar" surface. This could result in incorrect rendering
(particulary with respect to text hinting/antialiasing) with
fallbacks, for example.

report:	https://bugs.freedesktop.org/show_bug.cgi?id=4106
fixes:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=9fcb3c32c1f16fe6ab913e27eb54d18b7d9a06b0
	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=bdb4e1edadb78a2118ff70b28163f8bd4317f1ec

xlib: Fix text performance regression from 1.0 to 1.2.0 (Vladimir Vukicevic)
----------------------------------------------------------------------------
Several people noticed that upgrading from cairo 1.0 to cairo 1.2.0
caused a significant peformance regression when using the xlib
backend. This performance regression was particularly noticeable when
doing lots of text rendering and when using a high-latency connection
to the X server, (such as a remote X server over an ssh
connection). The slowdown was identified and fixed in 1.2.2.

report:	https://bugs.freedesktop.org/show_bug.cgi?id=7514
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=b7191885c88068dad57d68ced69a752d1162b12c

PDF: Eliminate dependency on FreeType library dependency (Adrian Johnson)
-------------------------------------------------------------------------
The cairo 1.2 series adds a supported pdf backend to cairo. In cairo
1.2.0 this backend required the freetype library, which was an
undesirable dependency on systems such as win32, (cairo is designed to
always prefer the "native" font system). As of cairo 1.2.2 the
freetype library is not required to use the pdf backend on the win32
platform.

report:	https://bugs.freedesktop.org/show_bug.cgi?id=7538
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=a0989f427be87c60415963dd6822b3c5c3781691

PDF: Fix broken output on amd64 (Adrian Johnson)
------------------------------------------------
report:	http://bugzilla.gnome.org/show_bug.cgi?id=349826
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=f4b12e497b7ac282b2f6831b8fb68deebc412e60

PS: Fix broken output for truetype fonts > 64k (Adrian Johnson)
---------------------------------------------------------------
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=067d97eb1793a6b0d0dddfbd0b54117844511a94

PDF: Fix so that dashing doesn't get stuck on (Kent Worsnop)
------------------------------------------------------------
Kent notices that with the PDF backend in cairo 1.2.0 as soon as a
stroke was performed with dashing, all subsequent strokes would also
be dashed. There was no way to turn dashing off again.

fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=778c4730a86296bf0a71080cf7008d7291792256

Fix memory leaks in failure paths in gradient creation (Alfred Peng)
--------------------------------------------------------------------
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=db06681b487873788b51a6766894fc619eb8d8f2

Fix memory leak in _cairo_surface_show_glyphs (Chris Wilson)
------------------------------------------------------------
report:	https://bugs.freedesktop.org/show_bug.cgi?id=7766
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=e2fddcccb43d06486d3680a19cfdd5a54963fcbd

Solaris: Add definition of cairo_private for some Sun compilers (Alfred Peng)
-----------------------------------------------------------------------------
report:	https://bugzilla.mozilla.org/show_bug.cgi?id=341874
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=04757a3aa8deeff3265719ebe01b021638990ec6

Solaris: Change version number of Sun's Xorg server with buggy repeat (Brian Cameron)
-------------------------------------------------------------------------------------
report: https://bugs.freedesktop.org/show_bug.cgi?id=7483
fix:	http://gitweb.freedesktop.org/?p=cairo;a=commit;h=e0ad1aa995bcec4246c0b8ab0d5a5a79871ce235

Various memory leak fixes
-------------------------
Fix memory leak in _cairo_surface_show_glyphs (bug 7766)
Fix file handle leak in failure path (bug 7616)
Fix some memory leaks in the test cases.
Fix some memory leaks in font subsetting code used in print backends.

Documentation improvements (Behdad Esfahbod)
--------------------------------------------
Added new documentation for several functions (cairo_show_page,
cairo_copy_page, cairo_in_stroke, cairo_in_fill).

Fixed some syntax errors that were preventing some existing
documentation from being published.

Fixed several minor typographical errors.

Added an index for new symbols in 1.2.
2006-08-10 13:50:37 +00:00
..
3DKit Bump PKGREVISION and BUILDLINK_ABI_DEPENDS (where applicable) 2006-06-12 16:28:05 +00:00
aalib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
aqsis Reomove BROKEN_IN for packages that built in the latest 2006-08-06 05:16:50 +00:00
artist Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
autotrace Reomove BROKEN_IN for packages that built in the latest 2006-08-06 05:16:50 +00:00
aview Fixed pkglint warnings regarding the SUBST block. 2006-06-18 00:56:11 +00:00
barcode INSTALL_MAKE_FLAGS doesn't append to MAKE_FLAGS, it replaces it. Make 2006-04-04 18:07:16 +00:00
bktr2jpeg Add DragonFly support. Also let it be used on FreeBSD. 2006-04-21 08:26:18 +00:00
blender USE_LANGUAGES= c c++ 2006-07-30 20:29:09 +00:00
blender-doc The documentation files are installed in share/doc/blender instead of 2006-04-12 21:02:35 +00:00
blinkenthemes Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
blinkentools Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
cairo Update to 1.2.2, some pkglint cleanup: 2006-08-10 13:50:37 +00:00
cal3d Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
cal3d-examples Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cambevao Add DragonFly support. 2006-04-20 16:05:44 +00:00
camediaplay Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
camlimages Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
cdlabelgen Update to cdlabelgen version 3.6.0, and update MASTER_SITES and HOMEPAGE. 2005-12-30 15:00:02 +00:00
Cenon Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
cinepaint Fix pthread detection. 2006-04-28 18:23:28 +00:00
claraocr Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cnxtview ignore warning of debug print 2006-05-27 02:43:50 +00:00
Coin Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
comix Update to 3.4: 2006-08-05 17:56:39 +00:00
compface Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
cpia2view Fix GCC 3.4+: __FUNCTION__ works like __func__ (aka variable). 2006-04-22 17:45:05 +00:00
cqcam Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
CRWInfo Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
dcraw Update dcraw to 8.13 2006-04-12 13:16:26 +00:00
denemo Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
dia Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
dia-python update to 0.95 2006-05-02 16:23:30 +00:00
digikam Update digikam{,-doc,imageplugins} to 0.8.2 2006-07-24 12:35:41 +00:00
digikam-doc Update digikam{,-doc,imageplugins} to 0.8.2 2006-07-24 12:35:41 +00:00
digikamimageplugins Update digikam{,-doc,imageplugins} to 0.8.2 2006-07-24 12:35:41 +00:00
dx Uses C++. 2006-05-15 22:45:38 +00:00
dxsamples Reomove BROKEN_IN for packages that built in the latest 2006-08-06 05:16:50 +00:00
eog2 update to 2.14.3 2006-08-03 18:53:12 +00:00
epeg Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
exif Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
exifprobe Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
exiftags Changes 1.00: 2005-07-01 12:54:09 +00:00
exiv2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
f4l USE_LANGUAGES=c++ 2006-05-22 19:06:28 +00:00
fbm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
feh Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
flphoto Don't try to install cat pages, the extension detection doesn't work. 2006-04-28 16:48:21 +00:00
fly Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
fnlib Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
freeglut Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
freetype Update freetype1 packages to 1.5, the final version. 2006-06-17 19:41:32 +00:00
freetype-lib Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
freetype-utils Update freetype1 packages to 1.5, the final version. 2006-06-17 19:41:32 +00:00
freetype2 Link against the Carbon library if the framework is available. This fixes 2006-07-23 14:37:08 +00:00
fujiplay I meant to remove that bogus "xpost-patch" a long time ago -- GC it. 2006-05-04 16:39:53 +00:00
g2 Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
g3d Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gd Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gdchart Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gdk-pixbuf Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gdk-pixbuf-gnome Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
GeometryKit Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
geomview USE_LANGUAGES=c c++ 2006-05-21 02:25:02 +00:00
get_ds7 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gfract Uses C++. 2006-05-15 21:40:00 +00:00
gif2png - Add missing Python dependence and use standard facility for modifying 2006-04-18 12:56:03 +00:00
gif320 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gifsicle Reset maintainer, host says: 2006-03-16 22:46:30 +00:00
giftrans Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gimageview Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
gimp add .fi mirror 2006-08-06 14:16:48 +00:00
gimp-color-manager Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
gimp-docs Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gimp-rawphoto Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gimp-refocus-it Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
gimp-ufraw Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
gimp-warp-sharp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gimp1 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gimp1-base Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gimp1-data Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gimp1-wideangle Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gimp2-wideangle Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gimp24 Add some more missing files to PLIST. 2006-07-14 14:19:04 +00:00
giram Needs intltool. 2006-07-19 10:08:12 +00:00
gle Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
glitz Just fixing pkglint warnings doesn't help. Sometimes they are just 2006-08-03 19:33:55 +00:00
gliv Needs pkg-config. 2006-06-11 13:58:22 +00:00
glu Split Mesa/Makefile.common into Makefile.common and Makefile.lib. 2006-08-01 21:40:19 +00:00
glut Split Mesa/Makefile.common into Makefile.common and Makefile.lib. 2006-08-01 21:40:19 +00:00
GlutKit Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
glx-utils Split Mesa/Makefile.common into Makefile.common and Makefile.lib. 2006-08-01 21:40:19 +00:00
GLXKit Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gmngview Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
GMT Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gnome-backgrounds update to 2.14.2.1 2006-07-26 12:52:18 +00:00
gnome-icon-theme Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gnuplot Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gnuplot-nox11 Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gocr Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gpaint Does not really need GNU gettexxt, nor does it need to be 2006-07-20 19:46:54 +00:00
gphoto Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
gphoto2 Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
gqview Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gqview-devel Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gqview-gtk1 Drop maintainership, I don't use them any longer. 2006-06-15 13:31:28 +00:00
grap Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
GraphicsMagick Remove comments not applicable. 2006-07-20 17:53:42 +00:00
graphviz As per Makefile revision 1.49 comment out inclusion 2006-07-16 15:02:43 +00:00
gri Uses C++. 2006-05-15 21:55:28 +00:00
gst-plugins0.8-opengl More PKGREVISION bumps for png-1.2.9nb2 update. 2006-04-17 14:52:10 +00:00
gst-plugins0.8-png Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gst-plugins0.10-cairo use the DESCR template used by the other gstreamer plugins 2006-07-03 10:57:38 +00:00
gthumb Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
gtkam Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gtkglext Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gtksee Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
GUIlib Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
gwenview LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
h5utils update to 1.10 2006-07-10 11:19:21 +00:00
hermes Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
hicolor-icon-theme Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
hp2xx Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
iGMT Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ImageMagick Finally, update path in the checksup to match DIST_SUBDIR. 2006-08-07 15:39:12 +00:00
ImageViewer Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
imlib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
imlib2 Solaris 5.8 needs its own definition of lround(), too. 2006-07-19 16:16:23 +00:00
impress Uses C++. 2006-05-15 21:40:00 +00:00
inkscape NetBSD before 3.99.8 needs log2 as well. Fixes PR 34020. 2006-07-21 15:36:56 +00:00
ivtools Use tiff package rather than local copy. From Matthias Drochner. 2006-07-26 11:53:39 +00:00
jasper Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
jhead Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by making 2005-07-15 18:27:48 +00:00
jpeg Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
jpeg2ps Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
jpeg_ls Drop maintainership, I don't use them any longer. 2006-06-15 13:31:28 +00:00
jpeginfo Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
jpegoptim Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
jpegpixi Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
kbarcode Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
kdegraphics3 Update to KDE 3.5.4 2006-08-02 14:11:12 +00:00
kipi-plugins LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
kphotoalbum kde3.mk sets USE_PKGLOCALEDIR so don't bother here. 2006-05-25 11:34:45 +00:00
kphotobook Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
kphotools Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
lcms Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
lib3ds Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libart2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libcaca Drop maintainership, I don't use them any longer. 2006-06-15 13:31:28 +00:00
libexif Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libexif-gtk Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgdgeda Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgdiplus update to 1.1.13.6 (last stable version) 2006-08-03 18:48:59 +00:00
libggi Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libggigcp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libggimisc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libggiwmh Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgii Correct PLIST on Linux. Bump PKGREVISION. 2006-07-29 06:59:37 +00:00
libgiigic Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libgnomecanvas Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgnomecanvasmm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libkexif Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libkipi Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libpixman Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
librsvg Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
librsvg2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libscigraphica This package needs a Python interpreter that can be called using plain 2006-07-27 09:03:28 +00:00
libungif Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libvideogfx Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
libwmf Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
ljpeg Drop maintainership, I don't use them any longer. 2006-06-15 13:31:28 +00:00
lprof Fix build on DragonFly. Use PTHREAD_AUTO_VARS. 2006-05-12 10:53:14 +00:00
magicpoint Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
mayavi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
Mesa Split Mesa/Makefile.common into Makefile.common and Makefile.lib. 2006-08-01 21:40:19 +00:00
MesaDemos Split Mesa/Makefile.common into Makefile.common and Makefile.lib. 2006-08-01 21:40:19 +00:00
MesaLib Split Mesa/Makefile.common into Makefile.common and Makefile.lib. 2006-08-01 21:40:19 +00:00
metacam Uses C++. 2006-06-05 17:25:23 +00:00
mgl Fixed pkglint warnings. 2006-06-14 10:30:34 +00:00
mng Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
mpeg2codec Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mpgtx Be explicit: uses C for the LFS test. 2006-06-02 13:44:55 +00:00
ncview Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
netpbm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
Ngraph Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-cult3d Apply the "convention over configuration" principle: 2006-07-27 15:16:44 +00:00
nvtv Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
nvtv-gtk2 Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
ocrad * Nuke all references to and definitions of INFO_DIR in package Makefiles 2006-03-20 18:15:37 +00:00
opendis
openexr Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
OpenRM Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
optipng Changes 0.5.3: 2006-08-05 12:23:07 +00:00
ov519view Add DragonFly support. 2006-04-22 18:06:30 +00:00
p5-Chart Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Chart-ThreeD Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-GD Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
p5-GDGraph Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-GDGraph3d Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Gdk-Imlib Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
p5-Gdk-Pixbuf Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
p5-GDTextUtil Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-GIFgraph Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Gnome Fix typo in last commit. 2006-05-26 23:39:27 +00:00
p5-GraphViz Fixed the interpreter of the example Perl programs. Bumped PKGREVISION. 2006-03-10 21:03:18 +00:00
p5-Image-ExifTool Update to production release 6.29. Many minor changes omitted; see 2006-07-24 15:23:58 +00:00
p5-Image-Imlib2 Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
p5-Image-Info Update to 1.22: 2006-08-06 18:12:52 +00:00
p5-Image-Size Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-PerlMagick #@$^@#$%&!#$%@#%&@#$%@#%&@$^%!#@$^@#$%^ CHECKSUM CHANGED AGAIN! 2006-08-07 14:54:53 +00:00
p5-RRDTool-OO Added graphics/p5-RRDTool-OO-0.14 2006-06-07 11:50:51 +00:00
p5-SWF-File Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
PanoTools Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pdiff Wants c compiler too. 2006-08-06 10:41:00 +00:00
pear-Image_Canvas Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
pear-Image_Color Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
pear-Image_Graph Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
pgraf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
photopc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
php-exif Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-gd Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-jpgraph Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
phpsview ignore warning of debug print 2006-05-27 02:43:50 +00:00
pixieplus Reomove BROKEN_IN for packages that built in the latest 2006-08-06 05:16:50 +00:00
pixmap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ploticus Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
ploticus-examples Fixed pkglint warnings by using pax instead of cp to install files. 2006-07-02 10:12:25 +00:00
plotmtv Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
plotutils Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
plotutils-nox11 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
png Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
png2html Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
pngcrush Fix building on Darwin 2006-07-06 20:51:25 +00:00
pornview Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
potrace Changes 1.7: 2006-05-01 20:46:54 +00:00
povray Bump PKGREVISION: 2006-05-06 11:59:49 +00:00
ppmtoxvpic Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
prag Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
ps2eps Import ps2eps. 2006-04-08 22:55:40 +00:00
pstoedit Needs a C compiler. 2006-07-02 10:12:52 +00:00
py-biggles py-Numeric needs Python 2.2+ 2006-06-02 23:38:10 +00:00
py-cairo Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-gd Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
py-gdchart Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
py-gimp Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
py-gnuplot py-Numeric needs Python 2.2+. 2006-06-02 23:37:24 +00:00
py-imaging Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-imagingtk Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
py-matplotlib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-matplotlib-gtk2 Uses C++. 2006-06-11 22:58:12 +00:00
py-piddle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
qcamview ignore warning of debug print 2006-05-27 02:43:50 +00:00
qiv Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
qvplay Use CONFIGURE_HAS_MANDIR=NO since this old configure script doesn't 2005-10-04 17:38:30 +00:00
radiance Never ever touch the included libtiff. Bump revision. 2006-04-28 16:55:10 +00:00
rayshade Disable the tty check again, not sure why I don't hit it. 2006-06-20 22:50:13 +00:00
refocus-it Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
RenderKit Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
resize_image Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ruby-gd Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
ruby-gnome2-gdkpixbuf Update ruby-gnome2 to 0.15. Patch provided by Dieter Roelants in PR 34064. 2006-07-25 16:49:05 +00:00
ruby-gnome2-gnomecanvas Update ruby-gnome2 to 0.15. Patch provided by Dieter Roelants in PR 34064. 2006-07-25 16:49:05 +00:00
ruby-gnome2-libart Update ruby-gnome2 to 0.15. Patch provided by Dieter Roelants in PR 34064. 2006-07-25 16:49:05 +00:00
ruby-gnuplot Import ruby-gnuplot. 2006-05-07 21:41:18 +00:00
ruby-imlib2 Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
ruby-opengl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-rcairo Import ruby-rcairo from pkgsrc-wip. Packaged by Dieter Roelants. 2006-07-23 16:57:25 +00:00
ruby-RMagick Backout previous change since something wrong with generating some 2006-08-08 03:14:02 +00:00
s10sh Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
sane-backends Update to 1.0.18. 2006-08-05 22:41:49 +00:00
sane-frontends Needs pkg-config. 2006-06-22 10:24:25 +00:00
scigraphica Needs intltool. 2006-08-06 10:42:10 +00:00
scrot Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
SDL_image Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
SDLKit Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
showimg Fix typo on USE_LANGUAGES hence fixing the build. 2006-05-14 16:19:45 +00:00
simage Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
skencil Remove unnecessary fonts.alias and fonts.scale. Bump PKGREVISION. 2006-02-18 21:40:34 +00:00
snx101view ignore warning of debug print 2006-05-27 02:43:50 +00:00
sodipodi Add missing perl to USE_TOOLS. 2006-07-11 10:21:16 +00:00
spcaview Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
tgif update to tgif-4.1.45 2006-07-11 12:12:41 +00:00
tiff Modify patch to tif_dir.c to be compiled by gcc prior to 3.x. 2006-08-03 15:17:49 +00:00
TiffIO "BUILD_ENV" was misnamed. It's actually the environment that is passed 2006-07-21 14:27:56 +00:00
tkpiechart Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
tuxpaint Bump PKGREVISION and BUILDLINK_ABI_DEPENDS (where applicable) 2006-06-12 16:28:05 +00:00
tuxpaint-config USE_LANGUAGES=c++; update HOMEPAGE and MASTER_SITES 2006-05-22 20:21:59 +00:00
tuxpaint-stamps Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
urt Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
vcg Fixed pkglint warnings. 2006-06-14 10:30:34 +00:00
veusz update to 0.10 2006-07-04 16:15:01 +00:00
vid Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
viewfax Use IMAKE_MAN_SUFFIX. Let imake decide itself where it wants to install 2006-02-23 21:16:16 +00:00
vnc2swf Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
vp LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
vtk Replaced the inclusion of the cmake buildlink3.mk file with a 2006-05-21 09:28:55 +00:00
vtk-data - Removed /CVS/ files from the PLIST. 2005-11-10 11:48:23 +00:00
vtk-docs Fixed pkglint -Wall warnings. 2006-01-29 03:32:17 +00:00
vtk-python USE_LANGUAGES=c c++ 2006-05-21 02:25:02 +00:00
wmphoto Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
wxsvg Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
x11rec Fixed those pkglint warnings that don't affect the binary package. 2006-07-06 17:24:49 +00:00
xart Fix include file so that it doesn't conflict with code. Variable 'nib' that 2006-08-09 17:13:58 +00:00
xbmbrowser Prefer the POSIX NAME_MAX over MAXNAMLEN when available. Try a bit 2006-06-26 16:11:43 +00:00
xdvipresent - Install into a separate package directory to follow TDS. 2006-04-07 02:17:53 +00:00
xfce4-artwork Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
xfce4-icon-theme Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
xfce4-iconbox Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
xfig Declare structures before using the in extern declarations to make 2006-06-30 18:59:34 +00:00
xgraph Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
xli Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
xpaint Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
xplot Patch tcpdump2xplot so that it works with modern tcpdumps which started to 2006-07-08 17:34:02 +00:00
xpm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
xsane Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
xv when using alloca() on IRIX 5 alloca.h has to be included 2006-05-14 21:16:00 +00:00
xzgv Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
Makefile Add ruby-rcairo. 2006-07-23 16:59:58 +00:00