aboutsummaryrefslogtreecommitdiff
path: root/www/gtkhtml
Commit message (Collapse)AuthorAgeFilesLines
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-2/+1
| | | | | | | | | | | | | | | | | | - 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) Notes: svn path=/head/; revision=211584
* Presenting GNOME 2.20.1 and all related works for FreeBSD. The officialJoe Marcus Clarke2007-10-245-77/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GNOME 2.20 release notes can be found at http://www.gnome.org/start/2.20/notes/en/ . Beyond that, this update includes the new GIMP 2.4 (courtesy of ahze). The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME hierarchy. We are now using the more standard DATADIR of ${PREFIX}/share rather than ${PREFIX}/share/gnome. The result is that fewer patches and hacks are needed to port GNOME components to FreeBSD. This will mean some user changes may be required, so be sure to read /usr/ports/UPDATING for more details. This release and the things we accomplished in it would not have been possible without mezz's crazy idea to collapse DATADIR, and his persistence to make it happen successfully. Ahze and pav also deserve thanks for their work on porting modules and testing the whole ball of wax on pointyhat (respectively). The FreeBSD GNOME team would also like to thank our various testers and contributors: Yasuda Keisuke Frank Jahnke Pawel Worach Brian Gruber Franz Klammer Yuri Pankov Nick Barkas Cristian KLEIN Tony Maher Scot Hetzel Martin Matuska (mm) Benoit Dejean Martin Wilke (miwi) (And anyone else I may have missed) PRs fixed in this release: 111272, 113470, 115995, 116338 Notes: svn path=/head/; revision=201947
* Fix the build with GCC 4.2.Joe Marcus Clarke2007-07-041-0/+11
| | | | | | | Reported by: pointyhat via pav Notes: svn path=/head/; revision=194932
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-192-31/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Fix after objformat removalPav Lucistnik2007-04-221-1/+1
| | | | | | | Reported by: krismail Notes: svn path=/head/; revision=190630
* Chase the GNOME X11BASE to LOCALBASE move, and fix the build with theJoe Marcus Clarke2006-10-143-4/+34
| | | | | | | | | | new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris) Notes: svn path=/head/; revision=175261
* portlint:Jeremy Messenger2006-05-161-7/+7
| | | | | | | -Use DOCSDIR in plist. Notes: svn path=/head/; revision=162534
* Add USE_GETTEXT to appease portlint.Jeremy Messenger2006-05-151-0/+1
| | | | Notes: svn path=/head/; revision=162498
* Conversion to a single libtool environment.Ade Lovett2006-02-233-4/+7
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* - Add SHA256 checksumsPav Lucistnik2005-11-231-0/+1
| | | | Notes: svn path=/head/; revision=149215
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* Chase the libpspell shared lib version.Joe Marcus Clarke2004-08-291-2/+2
| | | | Notes: svn path=/head/; revision=117590
* - Fix build with gcc-3.4Pav Lucistnik2004-08-131-0/+10
| | | | Notes: svn path=/head/; revision=116157
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* - Add SIZE to GNOME portsPav Lucistnik2004-03-181-0/+1
| | | | | | | Submitted by: trevor Notes: svn path=/head/; revision=104467
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-1/+1
| | | | | | | (Part 1) Notes: svn path=/head/; revision=99918
* USE_REINPLACE need be defined only when REINPLACE_CMD is used.Trevor Johnson2003-11-171-1/+0
| | | | Notes: svn path=/head/; revision=94172
* Bump PORTREVISION for the previous commit.Joe Marcus Clarke2003-09-301-1/+1
| | | | Notes: svn path=/head/; revision=89866
* Re-enable gconf support now that gconf1 plays nicely with gconf2.Joe Marcus Clarke2003-09-301-2/+2
| | | | Notes: svn path=/head/; revision=89865
* Remove gconf support. This fixes crashes encountered in apps suchAdam Weinberger2003-09-252-1/+18
| | | | | | | | | as GnuCash when trying to view reports or help documents. Obtained from: marcus Notes: svn path=/head/; revision=89312
* Remove REINPLACE commands that were rolled into gnomehack.Adam Weinberger2003-06-121-4/+0
| | | | Notes: svn path=/head/; revision=82858
* * Update to 1.1.10Joe Marcus Clarke2003-04-054-45/+43
| | | | | | | * Remove USE_GNOMENG macro Notes: svn path=/head/; revision=78238
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. Notes: svn path=/head/; revision=77045
* Update to 1.1.8.Joe Marcus Clarke2003-02-083-39/+2
| | | | Notes: svn path=/head/; revision=75096
* Update to 1.1.7.Joe Marcus Clarke2003-01-192-4/+3
| | | | Notes: svn path=/head/; revision=73510
* Fix a bug where text copied from Mozilla or Galeon could not be pastedJoe Marcus Clarke2002-12-242-1/+38
| | | | | | | | | into The GtkHTML editor (e.g. into Evolution's mail composer). Approved by: portmgr (lioux) Notes: svn path=/head/; revision=71836
* Fix a typo that could result in ports depending on gtkhtml not to build.Joe Marcus Clarke2002-12-022-1/+2
| | | | Notes: svn path=/head/; revision=71297
* Make soup optional in gtkhtml. In doing this, we have to make sure soup isJoe Marcus Clarke2002-11-221-3/+8
| | | | | | | | | | | | | | | | | a dependency of Evolution, so don't count on getting it from gtkhtml. The reason for this is fear that the underlying soup protocol, SOAP is inherently insecure. Thus far, however, there have been no advisories or exploits, and the one soup user, Evolution does not appear to have any SOAP-based security holes. See the following for more information: http://www.xml.com/pub/a/2002/02/27/security-lather.html http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnservice/html/service11212001.asp Requested by: Scott A. Moberly <smoberly@karamazov.org> Notes: svn path=/head/; revision=70762
* Update to 1.1.6.Joe Marcus Clarke2002-11-118-232/+223
| | | | Notes: svn path=/head/; revision=69920
* GNOME has just changed the layout of their FTP site. This resulted inJoe Marcus Clarke2002-09-201-1/+1
| | | | | | | | making all the distfiles unfetachable. Update all GNOME ports that fetch from MASTER_SITE_GNOME to fetch from the correct location. Notes: svn path=/head/; revision=66862
* Chase pspell so version, and note that libpspell is now installed byJoe Marcus Clarke2002-09-031-1/+2
| | | | | | | textproc/aspell. Notes: svn path=/head/; revision=65562
* s/ghttp/libghttp/Joe Marcus Clarke2002-07-141-1/+1
| | | | Notes: svn path=/head/; revision=62912
* Convert all core GNOME1 components and some of the most popular GNOME1Maxim Sobolev2002-07-111-11/+5
| | | | | | | | | | | | | | | | | | | apps to bsd.gnomeng.mk. The goal is to make GNOME1 framework more modular, which will allow to use GNOME1 apps with GNOME2 desktop as well as considerably reduce langht of dependency chains for GNOME1 ports (for example after this commit AbiWord's dependency chain was reduced by 7 ports from 57 to only 50, while Gnumeric's - from 60 to 53 and so on). The most of the GNOME1 apps are still not converted, so that lot of work is still ahead. Please report any unusual problems to gnome@FreeBSD.org. Discussed with: marcus Reviewed by: marcus Notes: svn path=/head/; revision=62821
* Add USE_REINPLACE where appropriate.Maxim Sobolev2002-06-191-0/+1
| | | | Notes: svn path=/head/; revision=61545
* - Update to 1.0.4;Maxim Sobolev2002-06-163-11/+11
| | | | | | | - use REINPLACE_CMD. Notes: svn path=/head/; revision=61373
* Update to 1.0.3.Maxim Sobolev2002-06-102-3/+2
| | | | Notes: svn path=/head/; revision=61044
* - Move misc documentation into share/doc where it belongs;Maxim Sobolev2002-05-015-48/+42
| | | | | | | | | - use USE_LIBTOOL while I here; - make gnome-hint from gnomecore actually working; - bump PORTREVISIONs. Notes: svn path=/head/; revision=58418
* Add --disable-gtk-doc to prevent build and install problems when gtk-doc 0.9Joe Marcus Clarke2002-04-241-1/+2
| | | | | | | | | | | is also installed. PR: 36401 Reported by: many Approved by: sobomax Notes: svn path=/head/; revision=58062
* Don't link with libgnuregex - the benefit is unclear (if any), while it causesMaxim Sobolev2002-03-273-29/+2
| | | | | | | | | | certain problems on -stable when editing html text (evolution et al). Reported by: Mark Sergeant <msergeant@looksmart.net> Submitted by: Joe Marcus Clarke <marcus@marcuscom.com> Notes: svn path=/head/; revision=56729
* Update to 1.0.2.Maxim Sobolev2002-03-256-12/+49
| | | | Notes: svn path=/head/; revision=56647
* Don't build/install useless statically linked version of the shared module.Maxim Sobolev2002-01-253-8/+29
| | | | Notes: svn path=/head/; revision=53708
* Update to 1.0.1.Maxim Sobolev2002-01-133-4/+12
| | | | | | | | PR: 33832 Submitted by: Joe Marcus Clarke <marcus@marcuscom.com> Notes: svn path=/head/; revision=53022
* Backout previous change - it seems that new revision of the patch doesn'tMaxim Sobolev2001-12-201-17/+8
| | | | | | | | | apply everywhere. Submitted by: Todd Punderson <todd@doonga.net> Notes: svn path=/head/; revision=51877
* Don't filter libc_r on 5-CURRENT.Maxim Sobolev2001-12-191-8/+17
| | | | Notes: svn path=/head/; revision=51864
* Don't install useless duplicate copy of gtkhtml-properties.desktop.Maxim Sobolev2001-12-122-2/+32
| | | | Notes: svn path=/head/; revision=51422
* Add missed "@dirrm share/gnome/control-center/capplets".Maxim Sobolev2001-12-121-0/+1
| | | | Notes: svn path=/head/; revision=51387
* Update to 1.0.0.Maxim Sobolev2001-12-055-132/+10
| | | | Notes: svn path=/head/; revision=51075
* Update to 0.16.1.Maxim Sobolev2001-11-205-12/+159
| | | | Notes: svn path=/head/; revision=50260
* Update to 0.16.0.Maxim Sobolev2001-11-093-4/+6
| | | | Notes: svn path=/head/; revision=49889