aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/xerces-c2
Commit message (Collapse)AuthorAgeFilesLines
* - Support stagingamdmi32013-10-221-7/+6
| | | | - Use new LIB_DEPENDS syntax
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | textproc)
* - Make ports use the libc provided iconv implementation on 10-CURRENTmadpilot2013-09-051-0/+1
| | | | | | | | | | after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code)
* - Convert USE_ICONV=yes to USES=iconvmva2013-04-281-1/+1
| | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and USE_GETTEXT=yes to USES=gettext while here
* Fix build with clangpawel2012-12-171-0/+2
|
* Convert to new options frameworkbapt2012-10-292-76/+27
| | | | | | PR: ports/172434 Submitted by: Michael Gmelin <freebsd@grem.de> Feature safe: yes
* - Remove outdated version checkseadler2012-01-091-4/+0
| | | | Reviewed by: nox
* -remove MD5ohauer2011-07-031-1/+0
|
* Reset kenm@icarz.com due to maintainer-timeouts.linimon2010-08-232-4/+1
| | | | Hat: portmgr
* In textproc/xerces-c2 and textproc/xerces-c2-devel, use -lgcc_pic only onstefan2010-06-292-11/+4
| | | | | | | | | | systems < 7.0-RELEASE. PR: 136984 Submitted by: Meena <meena.vyas@sun.com> Patch by: arved Approved by: maintainer timeout (>11 months) Feature safe: yes
* - Mark MAKE_JOBS_UNSAFEamdmi32009-07-071-0/+4
| | | | | | | | - Respect custom LOCALBASE PR: 135896 Submitted by: myself Approved by: maintainer timeout
* - Fix build with NOPORTDOCS/NOPORTEXAMPLESamdmi32008-09-062-138/+128
| | | | | | | | - Use NOPORTDOCS/NOPORTEXAMPLES instead of options - Some related cleanups PR: 126888 Submitted by: Ken Menzel <kenm at icarz dot com> (maintainer)
* - Remove superfluous exec's from plistsat2007-03-031-8/+4
| | | | Approved by: Ken Menzel <kenm@icarz.com> (maintainer timeout, 21 days)
* Retire NO_FILTER_SHLIBS now that it no longer serves a purposekris2007-01-301-2/+0
|
* Upgrade ICU from 3.4.1 to 3.6. Build WITHOUT_THREADS by default -- usingmi2006-09-231-1/+1
| | | | | | | | | | | threads is broken on ia64 (marcel is investigating) and seems useless elsewhere. Filter `-funroll-loops' out of CFLAGS for now -- it seems to cause miscompilation occasionally. Correct the dependencies to stop requiring a particular version number of the ICU's libraries to ease future upgrades.
* - s,INSTALLS_SHLIB,USE_LDCONFIG,gclsung2006-08-151-1/+1
| | | | | | | - these include security/ sysutils/ textproc/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
* - Update to 2.7.0sem2006-05-215-17/+32
| | | | | | | | - Pass maintainership to submitter PR: ports/95118 Submitted by: Ken Menzel <kenm@icarz.com> Reviewed by: Bjoern A. Zeeb (former maintainer)
* Remove USE_REINPLACE from categories starting with Tedwin2006-05-131-1/+0
|
* - Drop maintainership at maintainer's requestgarga2006-01-261-1/+1
| | | | | PR: ports/92331 Submitted by: maintainer
* SHA256ifyedwin2006-01-241-0/+1
| | | | Approved by: krion@
* - Fix dependency on devel/icu.flz2005-03-071-2/+3
| | | | | | PR: ports/78462 Submitted by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net> (maintainer) Approved by: pav (mentor)
* Fix package building.vs2004-10-271-6/+2
| | | | | Submitted by: maintainer Noticed by: cluster/kris
* - Update to 2.6.0vs2004-10-256-69/+113
| | | | | | | | | | - Use OPTIONS The update has not been tested too well so if you experience any problems please drop me a line. PR: ports/72784 Submitted by: Bjoern A. Zeeb (maintainer)
* Fix build with gcc 3.4sem2004-08-291-0/+19
| | | | | PR: ports/71085 Submitted by: maintainer
* - Fix bug with trimming text when using TRANSCODER==IconvFBSDpav2004-03-182-1/+15
| | | | | | | http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27769 PR: ports/64413 Submitted by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net> (maintainer)
* - Correct linking with libiconvpav2004-03-152-15/+129
| | | | | | | | | - USE_ICONV instead of direct dependency - USE_REINPLACE instead of cp/sed - GNU_CONFIGURE -> HAS_CONFIGURE PR: ports/64149 Submitted by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net>
* . Simplify the packing list by using PORTDOCS.glewis2004-03-092-1489/+4
| | | | Submitted by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net> (maintainer)
* - Update to version 2.5.0krion2004-02-249-1794/+2084
| | | | | | | - Respect PTHREAD_{CFLAGS,LIBS} PR: ports/63162 Submitted by: maintainer
* FORBIDDEN on 502102: does not respect PTHREAD_{CFLAGS,LIBS}kris2004-02-171-0/+4
|
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-1/+1
| | | | (Part 1)
* - Add patch for this problem:pav2004-01-032-0/+21
| | | | | | | | | | | | | | The XMLPlatformUtils::openFile function opens files with fopen and passes it "r+" string as mode argument. This makes(according to fopen(3)) it try to open file for reading and writing while it should be opened for reading only. As a result you can't work with files not owned by you which is rather common case for dtd files. - Raise PORTREVISION PR: ports/59499 Submitted by: Konstantin Oznobihin <bork@rsu.ru> Approved by: maintainer
* . Sync with changes to MASTER_SITE's layout.glewis2003-12-201-1/+1
| | | | | PR: 58943 Submitted by: Palle Girgensohn <girgen@pingpong.net>
* Correct a typo in an informational message. No functional change.ceri2003-10-181-1/+1
|
* iMAINTAINER-UPDATE: textproc/xerces-c2edwin2003-08-235-118/+168
| | | | | | | | | | Apache XML project has release a new version of xerces-c. Please see http://xml.apache.org/xerces-c/releases.html for more information. PR: ports/53348 Submitted by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net>
* Update to 2.2.0arved2003-05-195-852/+981
| | | | | | | use MASTER_SITE_APACHE_XML PR: 48828 Submitted by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net>
* De-pkg-comment.knu2003-02-212-1/+1
|
* Fix building on sparc64 and alpha.naddy2003-01-124-3/+41
| | | | | | | Thanks to Mikko Tyolajarvi for fixing and testing on sparc64. PR: 46636 Submitted by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net>
* add transcoder option for users to also be able tosada2002-11-162-11/+44
| | | | | | build with ICU or native iconv support. PR: ports/44590 Submitted by: maintainer
* Fix the problem of non-root builds causing the files to retain that uid.dougb2002-10-252-2/+17
| | | | | | | | | | The originator(s) had a patch for this, but I misunderstood its purpose, and therefore erroneously omitted it. Also fix the problem related to the extremely lame naming scheme that this package uses. There is a different(?) patch for this floating around, but it didn't make it into the audit trail. My way works, and isn't _incredibly_ lame, so we'll try it for now.
* Add xerces-c2 2.1.0,dougb2002-10-256-0/+1722
A validating XML parser from the Apache XML Project. Lots of contributions to this port by: Bjoern A. Zeeb <bzeeb+freebsdports@zabbadoz.net> Christopher Kelly <cck@kuffworks.com> Also, I made some changes to the final product, mostly cleanup/consistency things. PR: ports/42271 Submitted by: Simon Barner <barner@in.tum.de>