aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/libgdiplus
Commit message (Collapse)AuthorAgeFilesLines
* Update giflib to 5.1.1antoine2015-12-041-0/+1
| | | | PR: 204492
* Allow building with giflib 5.1antoine2015-11-131-13/+47
| | | | PR: 204492
* It seems some people keep adding $FreeBSD$ to patch files.mat2015-09-161-3/+0
| | | | | | | | Patches must not be changed by the vcs, this includes the svn:keyword expansion. Set fbsd:nokeywords to a couple of patches. With hat: portmgr Sponsored by: Absolight
* - Add CPE infoamdmi32015-05-071-1/+2
| | | | Approved by: portmgr blanket
* Update to 3.12.romain2015-03-183-22/+20
|
* Update graphics/giflib to 5.0.5antoine2015-01-151-1/+1
| | | | | | | Differential Revision: https://reviews.freebsd.org/D1361 Submitted by: bapt Reviewed by: self Exp-run by: self
* Allow building with either giflib 4.2 or 5.0antoine2014-12-261-0/+177
| | | | Obtained from: OpenBSD ports
* Bump portrevision after png updatebapt2014-12-261-1/+1
|
* Properly support png15, remove useless patchantoine2014-12-242-12/+2
|
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla intijl2014-12-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine)
* Update to 3.8.romain2014-10-213-18/+5
| | | | | PR: 194415 Submitted by: Sascha Holzleiter <sascha@root-login.org>
* Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always worktijl2014-07-231-5/+0
| | | | | | | | | | | | | | | | | | | | when an older version of a package is installed. This is the case when an executable links with installed libraries and with uninstalled libraries that link with other uninstalled libraries. For each of the directly linked libraries the executable will have an rpath (/usr/local/lib for the installed libraries and a path under WRKDIR for each of the uninstalled libraries), but not for the indirect libraries. Both ld(1) and rtld(1) search the rpath of the executable first before any rpath of libraries, so the indirectly linked libraries will be found in /usr/local/lib if they are installed instead of in WRKDIR. With this commit executables will overlink with uninstalled indirect libraries again so their location is added to the rpath of the executable. This partially reverts r358784. PR: 191611 Approved by: portmgr (bapt)
* Add 4 new sed commands to USES=libtool. The first two apply some of thetijl2014-06-221-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine)
* Remove useless include of bsd.gnome.mkbapt2014-05-261-1/+0
|
* When linking a library libA with a library libB using libtool, if libB.latijl2014-04-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery)
* Support stagebapt2014-04-111-9/+9
| | | | USES=libtool
* Update freetype to 2.5.2.kwm2013-12-251-0/+12
| | | | | | | | | | | | | | Remove patch to add -I/usr/local/include in freetype-config --cflags. If ports need extra headers they should look for them, and not get them via a side-effect. Freetype had a header resuffle in 2.5.1, patch ports to use the new header style. Thanks go to bdrewery for the two exp-runs and rakuco for helping me with some troublesome cmake ports. PR: ports/184587
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | x11-toolkits)
* Add an explicit dependency on pkgconfbapt2013-09-031-6/+2
|
* This patch has been added in graphics/giflibxride2012-06-101-299/+0
|
* Fix build after giflib update.romain2012-06-041-0/+299
| | | | | | QuantizeBuffer() is no more public in the giflib but still present in the code. There is no update (yet) code in the libgdiplus code so copy the relevant lines from giflib for now.
* - update png to 1.5.10dinoex2012-06-012-3/+13
|
* Convert to USE_XORGbapt2012-05-051-2/+3
| | | | | | PR: ports/167087 Submitted by: bapt Approved by: maintainer timeout (>14d)
* Update dependencies.romain2012-02-271-1/+2
| | | | | PR: ports/165365 Submitted by: Steve Wills <swills@freebsd.org>
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)amdmi32011-09-241-2/+2
| | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
* Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sincekwm2011-08-121-1/+1
| | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
* Hello Mono 2.10!romain2011-06-132-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Main updates ------------ devel/mono-tools 2.6.2 -> 2.10 lang/mono 2.6.7 -> 2.10.2 lang/mono-basic 2.6.2 -> 2.10.2 www/mod_mono 2.6.3 -> 2.10 www/xsp 2.6.5 -> 2.10.2 x11-toolkits/libgdiplus 2.6.7 -> 2.10 Other updates ------------- deskutils/tomboy 1.4.2 -> 1.6.1 devel/mono-addins 0.5 -> 0.6.1 devel/monodevelop 2.4 -> 2.4.2 graphics/f-spot 0.8.0 -> 0.8.2 print/pdfmod 0.9.0 -> 0.9.1 x11-toolkits/gnome-sharp20 2.24.1 -> 2.24.2 Ports marked BROKEN ------------------- multimedia/banshee multimedia/moonlight PR: ports/155948 Submitted by: me
* Update to 2.6.7.romain2010-07-294-58/+12
|
* - Update lang/mono to 2.6.4;romain2010-06-013-27/+5
| | | | | | | | | | | | | - Update a bunch of C# ports as well (audio/taglib-sharp, deskutils/tomboy, devel/mono-tools, devel/monodevelop, devel/monodevelop-boo, devel/monodevelop-database, devel/monodevelop-java, devel/monodevelop-vala, graphics/f-spot, lang/boo [1], lang/mono-basic, mail/gmime24, gmime24-sharp, multimedia/banshee, multimedia/banshee-mirage, multimedia/moonlight, www/mod_mono, www/webkit-sharp, www/xsp, x11-toolkits/gnome-desktop-sharp20, x11-toolkits/gtk-sharp20, x11-toolkits/libgdiplus). PR: ports/143657 [1] Submitted by: glewis [1]
* Fix build for png-1.4.1romain2010-04-061-1/+2
| | | | | Submitted by: "Kevin Oberman" <oberman@es.net> Approved by: flz (mentor)
* - fix package for png-1.4.1dinoex2010-03-301-1/+3
| | | | Reported by: kwm
* - fix build for png-1.4.1dinoex2010-03-282-2/+27
| | | | Reported by: QA Tindy
* - update to 1.4.1dinoex2010-03-281-2/+2
| | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi
* - update to jpeg-8dinoex2010-02-051-0/+1
|
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.mezz2009-08-031-1/+1
| | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
* Update x11-toolkits/libgdiplus to 2.4.2.flz2009-07-062-4/+4
| | | | | PR: ports/136353 Submitted by: Romain Tartiere
* - Update lang/mono to 2.4.flz2009-06-222-5/+5
| | | | | | | | | | | - Update a bunch of c# ports as well (gtksharp20, mono-zeroconf, tomboy, gnome-desktop-sharp, gnomesharp20). - Remove devel/monodoc as it is now included in lang/mono. - Add www/mod_mono, an apache module serving ASP.net pages. - Add www/xsp, a mono-based webserver. PR: ports/135248, ports/135249 Submitted by: Romain Tartiere <romain@blogreen.org>
* - Update lang/mono to 2.0.1.flz2009-02-092-13/+10
| | | | | | | | - Also update a bunch of c-sharp ports to their latest version. - Change maintainership to mono@FreeBSD.org. PR: ports/129724 Submitted by: Phillip Neumann, Romain Tartiere (bsd-sharp team)
* - Remove conditional checks for FreeBSD 5.x and olderwxs2009-01-061-4/+0
| | | | Approved by: pav
* - Update maintainer mail addressmiwi2008-07-261-1/+1
| | | | | PR: 125786 Submitted by: Phillip N. <pneumann@gmail.com>
* - Fix fetchpav2008-06-191-1/+1
|
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-061-1/+1
| | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-201-4/+6
| | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
* Update to 1.2.5tmclaugh2007-10-232-8/+10
| | | | | Submitted by: Phillip Neumann Project by: BSD# (http://www.mono-project.com/Mono:FreeBSD)
* - Welcome X.org 7.2 \o/.flz2007-05-201-0/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* Update to 1.2.3tmclaugh2007-03-172-6/+6
| | | | Project by: BSD# <http://www.mono-project.com/Mono:FreeBSD>
* s/INSTALLS_SHLIB/USE_LDCONFIG/tmclaugh2007-02-051-1/+1
|
* - Update to 1.2.2tmclaugh2007-02-052-7/+12
| | | | | | - Move to LOCALBASE Project by: BSD# (http://www.mono-project.com/Mono:FreeBSD)
* Update to 1.1.13.6tmclaugh2006-07-312-5/+4
|
* Mark IGNORE on 4.x: Does not build and is useless without working Monotmclaugh2006-03-211-1/+7
| | | | Notified by: krisbot
* Conversion to a single libtool environment.ade2006-02-232-0/+2
| | | | Approved by: portmgr (kris)
* Add libgdiplustmclaugh2006-02-195-0/+71
- GDI+ API for System.Windows.Forms in Mono