non port: cad/pcb/Makefile |
SVNWeb
|
Number of commits found: 91 |
Thu, 2 Mar 2023
|
[ 05:23 Tobias C. Berner (tcberner) ] fa81a4f (Only the first 10 of 1168 ports in this commit are shown above. )
accessibility/at-spi2-core: update to 2.46.0
What's new in at-spi2-core 2.46.0:
* Fix GetInterfaces documentation on org.a11y.atspi.Accessible
interface.
What's new in at-spi2-core 2.45.91:
* Send device event controller events using the same signature as other
events.
* Document the Accessible, Action, and Cache dbus interfaces.
* Fix license of atspi-gmain.c (#87).
What's new in at-spi2-core 2.45.90:
* xml: Add some documentation.
* xml: Fix event arguments. (Only the first 15 lines of the commit message are shown above )
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above )
|
Wed, 20 Jul 2022
|
[ 14:20 Tobias C. Berner (tcberner) ] b46abf8 (Only the first 10 of 74 ports in this commit are shown above. )
cad: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* AMAKAWA Shuhei <amakawa@jp.FreeBSD.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Anders Andersson <anders@hack.org>
* Bruce M Simpson <bms@FreeBSD.org>
* Christoph Moench-Tegeder <cmt@FreeBSD.org>
* David Yeske <dyeske@gmail.com>
* Diane Bruce <db@db.net>
* Joachim Strombergson <watchman@ludd.ltu.se>
* Johnny Sorocil <jsorocil@gmail.com>
* Julian Jenkins <kaveman@magna.com.au>
* Marc Fonvieille <blackend@FreeBSD.org> (Only the first 15 lines of the commit message are shown above )
|
Fri, 29 Oct 2021
|
[ 09:50 Stefan Eßer (se) ] 819f25b (Only the first 10 of 388 ports in this commit are shown above. )
*/*: Remove redundant '-[0-9]*' from CONFLICTS
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").
Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".
Approved by: portmgr (blanket)
|
Mon, 25 Oct 2021
|
[ 19:28 Piotr Kubaj (pkubaj) ] 6d244f0
cad/pcb: fix build on non-x86
Same patch as the one used for graphics/gts, which this port bundles.
|
[ 12:58 Alexey Dokuchaev (danfe) ] 61b6613 (Only the first 10 of 79 ports in this commit are shown above. )
Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.)
ONLY_FOR_ARCHS_REASON is used as part of the sentence and thus should
start with lower-case letter and not end with a period which is added
by the framework, similar to other knobs like BROKEN, IGNORE, et al.
While here, remove needless quoting, add missing Oxford comma, expand
contractions and jargonisms, use correct spelling for proper names.
|
Sun, 10 Oct 2021
|
[ 19:44 Baptiste Daroussin (bapt) ] 2c672a4 (Only the first 10 of 586 ports in this commit are shown above. )
INSTALLS_ICONS: retire the macro and rework the related dependencies
While here, make sure gtk-update-icon-cache is only on run dependency
where added as a dependency
Enforce gtk3 to depend on gtk-update-icon-cache (previously it was
inheriting the dependency)
|
Tue, 22 Jun 2021
|
[ 18:53 Kevin Bowling (kbowling) ] da3162c (Only the first 10 of 914 ports in this commit are shown above. )
graphics/mesa-libs: Bump reverse deps for libglvnd
Per discussion with bapt on helping pkg handle the changing of these
deps and avoiding impossible upgrade senarios.
PR: 246767
Reviewed by: manu, bapt
Approved by: x11
Differential Revision: https://reviews.freebsd.org/D30824
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Mon, 4 May 2020
|
[ 21:31 dinoex ] (Only the first 10 of 72 ports in this commit are shown above. )
- update libgd to 2.3.0
- new option RAQM
- resurrect deprecated gdlib-config
- bump dependend ports
|
Mon, 4 Nov 2019
|
[ 21:36 zeising ] (Only the first 10 of 43 ports in this commit are shown above. )
Add USES=xorg USES=gl, ports categories c
Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories
starting with 'c'.
|
Fri, 15 Mar 2019
|
[ 22:04 hrs ]
Update to 4.2.0.
|
Mon, 9 Jul 2018
|
[ 08:40 mat ] (Only the first 10 of 429 ports in this commit are shown above. )
Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight
|
Sun, 24 Dec 2017
|
[ 17:00 tijl ]
Remove a patch for configure.ac so we can remove USE_AUTOTOOLS. The patch
added two variables that weren't used anywhere.
|
Wed, 20 Jul 2016
|
[ 09:33 dinoex ] (Only the first 10 of 77 ports in this commit are shown above. )
- update libgd to 2.2.2
- new MASTER_SITES
- add security patch
PR: 210913
Submitted by: Piotr Kubaj
MFH: 2016Q3
Security: CVE-2015-8874
Security: CVE-2016-3074
Security: http://www.openwall.com/lists/oss-security/2016/07/12/4
|
Mon, 23 May 2016
|
[ 20:35 amdmi3 ] (Only the first 10 of 217 ports in this commit are shown above. )
Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by
default anyway and don't need to be listed
Approved by: portmgr blanket
|
Fri, 1 Apr 2016
|
[ 13:29 mat ] (Only the first 10 of 1009 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat: portmgr
Sponsored by: Absolight
|
Wed, 19 Aug 2015
|
[ 13:30 mat ] (Only the first 10 of 172 ports in this commit are shown above. )
Convert ports to use the options helpers in categories [abc]*, and minor fixes.
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3412?
|
Sun, 2 Aug 2015
|
[ 20:23 kwm ] (Only the first 10 of 124 ports in this commit are shown above. )
Part 1 of adding USE_GNOME=intltool to ports that require it.
The reason for this is that in the GNOME 3.16 update, USE_GNOME gtk20 and
gtk30 don't pull intltool in anymore.
PR: 201980
Exp-run by: antoine@
|
Tue, 24 Mar 2015
|
[ 16:01 marino ] (Only the first 10 of 16 ports in this commit are shown above. )
6 ports categories: Remove $PTHREAD_LIBS
Categories: cad, devel, java, x11-fm, biology, deskutils
approved by: PTHREAD blanket
|
Mon, 9 Feb 2015
|
[ 15:33 sbruno ]
Reverse the logic of architecture support.
Add a list of support architectures with a REASON that these are the only
supported targets. This will now skip this port on mips/mips64/armv6.
PR: 196970
Differential Revision: 196970
Reviewed by: hrs (in irc)
Approved by: mentor (implicit)
|
Wed, 10 Sep 2014
|
[ 20:50 gerald ] (Only the first 10 of 3171 ports in this commit are shown above. )
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit)
|
Sun, 8 Jun 2014
|
[ 19:51 olgeni ] (Only the first 10 of 101 ports in this commit are shown above. )
Remove all space characters from Makefile assignments.
No functional changes included.
CR: D193 (except math/sedumi)
Approved by: portmgr (bapt)
|
Mon, 26 May 2014
|
[ 20:21 hrs ]
Update to 20140316.
|
Wed, 29 Jan 2014
|
[ 09:52 gahr ]
- Convert to USES=tk
- STAGE-clean
- Fix spaces in Makefile
- Register conflict with graphics/gts
|
Wed, 15 Jan 2014
|
[ 23:14 bapt ]
Reduce over inclusion of bsd.port.mk
|
Wed, 11 Dec 2013
|
[ 14:53 bapt ] (Only the first 10 of 21 ports in this commit are shown above. )
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in cad
With hat: portmgr
|
Fri, 20 Sep 2013
|
[ 15:58 bapt ] (Only the first 10 of 103 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
cad)
|
Wed, 4 Sep 2013
|
[ 20:01 bsam ] (Only the first 10 of 63 ports in this commit are shown above. )
Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.
It's value is "--with-libiconv-prefix=/usr/local" for systems
before 100043 with ports libiconv and to use at systems post
100043 with base iconv it's value is "" (NULL).
Co-authors: bapt, madpilot and bsam (me)
|
Mon, 2 Sep 2013
|
[ 21:27 bapt ] (Only the first 10 of 28 ports in this commit are shown above. )
Add an explicit dependency on pkgconf
|
Wed, 14 Aug 2013
|
[ 22:35 ak ] (Only the first 10 of 1725 ports in this commit are shown above. )
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery)
|
Fri, 9 Aug 2013
|
[ 14:05 dinoex ] (Only the first 10 of 86 ports in this commit are shown above. )
- update libdg to 2.1.0
|
Mon, 15 Jul 2013
|
[ 05:37 marino ]
cad/pcb: unbreak after USES= gmake
The makefile already had USES defined in the NLS option.
After replacing USE_GMAKE with "USES= gmake", the value of USES is
subsequently overwritten by the default-on NLS option. Change the
NLS option to USES+= to fix.
Approved by: hrs (maintainer)
|
Tue, 9 Jul 2013
|
[ 21:49 bapt ]
Convert from USE_MOTIF to USES=motif
While here:
- trim headers
- Remove indefinite article from comment
- convert USE_GMAKE to USES=gmake
|
Sun, 28 Apr 2013
|
[ 21:23 hrs ]
- Add LICENSE.
- Add MAKE_JOBS_SAFE=yes.
- Use OPTIONS_DEFINE.
- Enable NLS by default.
- Trim old-style header.
- Update WWW: in pkg-descr.
|
Tue, 23 Apr 2013
|
[ 11:51 gahr ] (Only the first 10 of 32 ports in this commit are shown above. )
- Remove lang/tcl83 and x11-toolkits/tk83 (expired)
- Remove references to Tcl/Tk 8.3 from bsd.tcl.mk
- Update ports that required 8.3+ to require 8.4+ (since 8.5 is the
default, I don't expect this change to cause much trouble)
|
Thu, 7 Feb 2013
|
[ 14:57 gahr ] (Only the first 10 of 17 ports in this commit are shown above. )
- Get rid of PTHREAD_CFLAGS and PTHREAD_LIBS (category: cad)
Approved by: portmgr
|
Sun, 10 Jun 2012
|
[ 18:42 swills ] (Only the first 10 of 639 ports in this commit are shown above. )
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi)
|
Fri, 1 Jun 2012
|
[ 05:26 dinoex ] (Only the first 10 of 4371 ports in this commit are shown above. )
- update png to 1.5.10
|
Sat, 17 Mar 2012
|
[ 11:31 hrs ]
Update to 20110918.
Feature safe: yes
|
Thu, 10 Nov 2011
|
[ 05:38 linimon ] (Only the first 10 of 34 ports in this commit are shown above. )
Mark broken on powerpc as well as sparc64. (In fact, on all the tier-2s.)
Hat: portmgr
|
Fri, 23 Sep 2011
|
[ 22:26 amdmi3 ] (Only the first 10 of 2369 ports in this commit are shown above. )
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- 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
|
Sat, 4 Dec 2010
|
[ 07:34 ade ] (Only the first 10 of 1730 ports in this commit are shown above. )
Sync to new bsd.autotools.mk
|
Sat, 16 Oct 2010
|
[ 11:52 ade ] (Only the first 10 of 445 ports in this commit are shown above. )
Punt autoconf267->autoconf268
|
Sun, 3 Oct 2010
|
[ 13:42 hrs ]
Fix build in the NOPORTDOCS=yes case.
Spotted by: QAT
|
[ 13:08 hrs ]
Fix build.
Spotted by: erwin
|
Fri, 1 Oct 2010
|
[ 02:30 hrs ]
Fix dependency and a style clean-up.
Spotted by: QAT
|
Thu, 30 Sep 2010
|
[ 19:02 hrs ]
Update to 20100929. Changes include:
Features
--------
- PCB can directly import (forward annotate) schematics while running.
- Many places where measurements are entered now accept units, like
"5mm", and "cm" and "in" are allowed too.
- Free Rotate Buffer added to menu
- Polygon Hole tool.
- F12 invokes the Lock tool.
- Russian translation added.
- DBUS is enabled by default when possible.
- Command-line exporters can run action scripts too.
- GTK tool tips on elements, pins, and nets. (Only the first 15 lines of the commit message are shown above )
|
Sat, 19 Jun 2010
|
[ 07:37 linimon ]
Mark as broken on sparc64.
Hat: portmgr
Feature safe: yes
|
Thu, 20 May 2010
|
[ 20:50 hrs ]
Update to 20091103.
|
Sun, 28 Mar 2010
|
[ 06:47 dinoex ] (Only the first 10 of 4470 ports in this commit are shown above. )
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi
|
Fri, 5 Feb 2010
|
[ 11:46 dinoex ] (Only the first 10 of 4271 ports in this commit are shown above. )
- update to jpeg-8
|
Sat, 22 Aug 2009
|
[ 00:15 amdmi3 ] (Only the first 10 of 78 ports in this commit are shown above. )
- Switch SourceForge ports to the new File Release System: categories starting
with B,C
|
Fri, 31 Jul 2009
|
[ 13:57 dinoex ] (Only the first 10 of 3009 ports in this commit are shown above. )
- bump all port that indirectly depends on libjpeg and have not yet been bumped
or updated
Requested by: edwin
|
Sat, 28 Mar 2009
|
[ 20:29 hrs ]
Update to 20081128. Changes include:
- Minor bug fixes in RS274-X output.
- Bug fixes in postscript output
- DRC checks for annular ring on pads only uses the mininum annular
ring drc setting instead of also checking minimum copper width.
- Fix postscript output for zero length lines.
- Improve the 'save before closing' dialogs.
- Fixed bugs where objects attached to the cursor vanish sometimes.
- Allow outline layers to have only arcs.
- Added "Ben Mode" png output which provides a simulated "photograph"
of the board. Very nice for publications.
- Fix poly clearance around rotated pads.
- Fix the batch HID which had bit rotted a little.
- Display net names hierarchically.
- Various speed improvements in the GTK HID.
- Various speed improvements in the autorouter.
- Minor improvements to the windows port.
- Other various bug fixes.
|
Mon, 23 Feb 2009
|
[ 14:46 mm ] (Only the first 10 of 103 ports in this commit are shown above. )
- Change default Tcl/Tk version to 8.5
- Bump PORTVERSION of ports affected
Tested by: pointyhat (pav)
|
Wed, 18 Jun 2008
|
[ 04:53 hrs ]
Fix dependency (m4>=1.4.11). The previous version of m4 (1.4.9)
has a bug in negative number handling and cad/pcb can fail in the
configuring stage due to it.
|
Tue, 10 Jun 2008
|
[ 16:11 hrs ]
Fix pkg-plist.
Spotted by: QA Tindy
|
[ 02:36 hrs ]
Add a missing dependency.
Spotted by: QA Tindy
CVS ----------------------------------------------------------------------
|
Sun, 8 Jun 2008
|
[ 16:09 hrs ]
Update to 20080202 snapshot. Changes include:
- Added a footprin preview in the library window
- Added gnome/kde desktop integration files (app and mime icons, and
.desktop file)
- Added i18n support
- Updated dbus support
- Fix a number of GCC 4 compiler warnings
- Make the gtk gui more robust against malformed menu resource files
- Added checking for duplicate hot key definitions in the menu
resource file in the gtk gui.
- Improved support for building on win32.
- Removed automake/autoconf generated files from cvs
- Fixed some parallel make bugs
- Fixed some scrolling/panning bugs in the gtk gui. (Only the first 15 lines of the commit message are shown above )
|
Fri, 6 Jun 2008
|
[ 13:14 edwin ] (Only the first 10 of 35 ports in this commit are shown above. )
Bump portrevision due to upgrade of devel/gettext.
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)
|
Sat, 19 Apr 2008
|
[ 17:56 miwi ] (Only the first 10 of 2842 ports in this commit are shown above. )
- Remove unneeded dependency from gtk12/gtk20 [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)
|
Sat, 19 May 2007
|
[ 20:32 flz ] (Only the first 10 of 7868 ports in this commit are shown above. )
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
|
Mon, 2 Apr 2007
|
[ 22:56 pav ] (Only the first 10 of 45 ports in this commit are shown above. )
- Convert existing ports to a new bsd.tcl.mk order
PR: ports/109097
Submitted by: Martin Matuska <martin@matuska.org>
Tested on: pointyhat exp-run
|
Mon, 9 Oct 2006
|
[ 09:52 hrs ]
Update to 20060822. Changes include:
- various manual updates
- update the INSTALL documentation
- fix a bug where pins turned into pure holes when an element
was smashed.
- use locale-independent strtod and dtostr functions to avoid problems
loading files saved in some locales.
- fixed various bugs which caused pcb to crash
- update the gtk status line after save/save as
- make the gerber file names be compatible with pre-HID versions
- split plated and unplated drill output
- fix various typos in menus and comments
- add a batch mode HID.
- fix drawing of box around text in the buffer (Only the first 15 lines of the commit message are shown above )
|
Mon, 18 Sep 2006
|
[ 18:13 hrs ]
Add pthread dependency to fix a crash problem.
PR: ports/101327
Spotted by: Michael Glaum <mglaum@sdf.lonestar.org>
|
Wed, 2 Aug 2006
|
[ 06:22 hrs ]
- Add dependency on x11-toolkits/tk83[1].
- Update to 20060414[2].
PR: ports/101128[1]
Submitted by: Michael Glaum[1], Tomdean[2]
|
Mon, 10 Jul 2006
|
[ 06:38 hrs ]
Update to 20060414. Changes include:
** 20060414
- This is the first snapshot of the new HID version of PCB. HID, which
stands for Human Interface Device is the abstraction created by
DJ Delorie which seperates the core PCB code from the graphical user
interface. In this release, two GUI HID's are supported, gtk and lesstif.
In addition, there are HID exporters for postscript and encapsulated
postscript, RS-274-X (gerber), bill of materials, centroid file, and
png/gif/jpeg. This represents a major restructuring of the code and
many months of work.
- PCB's actions (the commands which drive the core of the program and
may be directly accessed by the user) now have the documentation in-line (Only the first 15 lines of the commit message are shown above )
|
Sat, 5 Nov 2005
|
[ 05:22 marcus ] (Only the first 10 of 1045 ports in this commit are shown above. )
Bump PORTREVISION to chase the glib20 shared library update.
|
Tue, 14 Jun 2005
|
[ 16:18 hrs ]
Update to 20050609. Changes include:
- The GUI is now based on gtk2 instead of Xaw
- Flags are stored symbolically in the .pcb file.
- As part of the switch to gtk2, the user customizable menu feature has
been temporarily broken. Hopefully this will be fixed by the next
snapshot. In addition, the loading of background images has also been
temporarily broken.
Submitted by: des
|
Mon, 23 Feb 2004
|
[ 23:48 pav ]
- Remove unneeded dependency on teTeX, add gm4 and tk as run dependency too
Submitted by: hrs (maintainer)
|
Thu, 19 Feb 2004
|
[ 22:18 pav ]
- Update to 20040215
- Remove BROKEN and removal warning
PR: ports/63078
Submitted by: bruno <bruno@mail.tinkerbox.org>
|
Sat, 7 Feb 2004
|
[ 23:47 kris ]
This port is also broken on 4.x, and will be removed after April 7
|
[ 23:29 kris ]
BROKEN on 5.x: fails to configure
|
Fri, 6 Feb 2004
|
[ 19:48 krion ]
- Fix build on bento
- Assign maintainership to submitter
PR: 62444
Submitted by: hrs
|
Thu, 29 Jan 2004
|
[ 09:14 pav ]
- Add dependency on tcl to satisfy configure script
Reported by: bento via kris
|
Wed, 21 Jan 2004
|
[ 19:02 pav ]
- Update to 20030815 snapshot
PR: ports/61606
Submitted by: bruno <bruno@mail.tinkerbox.org>
|
Wed, 30 Jul 2003
|
[ 20:18 naddy ]
Release maintainership of ports due to personal technical difficulties.
Submitted by: Serge Gagnon
|
Wed, 23 Jul 2003
|
[ 16:41 oliver ]
Update to 1.7.3 and fix unfetchable distfile
PR: ports/53070
Submitted by: Serge Gagnon <gagnon__s@videotron.ca>
|
Thu, 20 Feb 2003
|
[ 16:52 knu ] (Only the first 10 of 34 ports in this commit are shown above. )
De-pkg-comment.
|
Wed, 18 Sep 2002
|
[ 23:29 kris ]
Remove dependency on texi2html port; a different version of
texi2html is included in the teTeX port, which is already a dependency.
Thus, during a port build the teTeX port will be installed first, which
automatically satisfies the dependency check for texi2html, so the latter
port is never installed; however during a package build the full set of
packages are added, so we end up with the texi2html binary from the
texi2html port overwriting that from teTeX, which is incompatible and
causes the build to fail.
|
[ 08:31 alane ]
Unmark BROKEN. It builds fine.
|
Sat, 18 May 2002
|
[ 03:04 kris ]
BROKEN: Does not build
|
Fri, 17 May 2002
|
[ 20:50 trevor ] (Only the first 10 of 13 ports in this commit are shown above. )
Use new domain name for Tokyo University of Science.
PR: 38196
Submitted by: hrs
|
Tue, 2 Apr 2002
|
[ 17:54 dwcjr ]
Don't depend on textinfo
PR: 36516
Submitted by: ports@geeksrus.net
|
Fri, 15 Mar 2002
|
[ 21:09 pat ]
Fix typo in depends
PR: 35928
Submitted by: Erik Änggård <erik.anggard@packetfront.com>
|
Thu, 27 Dec 2001
|
[ 14:25 kuriyama ]
Fix texti2html's path.
|
Sun, 23 Dec 2001
|
[ 17:34 dwcjr ]
Fix building docs due to missing dependencies
|
Sat, 24 Nov 2001
|
[ 18:02 petef ]
Fix manpage packaging.
|
Thu, 4 Oct 2001
|
[ 13:35 joerg ]
Fix the docs installation.
|
Mon, 17 Sep 2001
|
[ 18:40 dwcjr ] (Only the first 10 of 41 ports in this commit are shown above. )
Remove jseger and torstenb from maintainership of their ports, they have been
inactive for too long
|
Number of commits found: 91 |