Commit Graph

2946 Commits

Author SHA1 Message Date
Vanilla I. Shu
9d8c61956a Well.. add "@" to MAINTAINER. 2001-03-19 18:20:10 +00:00
Akinori MUSHA
3283cab4fa Add patches to build the "witme" file manager. They will probably be
included in the future release of SWIG 1.3.

Submitted by: Jeremy Norris <ishmael27@home.com>
2001-03-19 18:15:58 +00:00
Vanilla I. Shu
f59e5be1f9 Upgrade to 1.2.10. 2001-03-19 17:42:52 +00:00
Akinori MUSHA
4bb3d75b2f Update to 0.6. 2001-03-19 07:14:17 +00:00
Mario Sergio Fujikawa Ferreira
11c9f3f4f9 - Update to 1.4 Build 105:
o General improvements to printing of source files
o More cleanup of keystroke support in GUI
2001-03-18 03:30:05 +00:00
Akinori MUSHA
350066ffed Update to 1.3.8. 2001-03-17 19:42:18 +00:00
Ying-Chieh Liao
d1b6ab9bd3 upgrade to 1.0b2
change maintainer (from ports@ to submitter)

PR:		24340
Submitted by:	andrey@novikov.com (new maintainer)
2001-03-17 17:38:25 +00:00
Ying-Chieh Liao
bb2dd4129a add freescope
Source code browsing on UNIX-like operating systems
2001-03-17 16:59:19 +00:00
Jun Kuriyama
a14dab298e Add icu 1.7, international Components for Unicode (from IBM).
PR:		ports/24649
Submitted by:	dwm@caimis.com
2001-03-17 08:49:14 +00:00
Dirk Meyer
ba47688af8 - new distfiles at master site.
The State Threads is a small application library which provides a
foundation for writing fast and highly scalable Internet applications
(such as web servers, proxy servers, mail transfer agents, and so on) on
UNIX-like platforms. It combines the simplicity of the multithreaded
programming paradigm, in which one thread supports each simultaneous
connection, with the performance and scalability of an event-driven
state machine architecture. In other words, this library offers a
threading API for structuring an Internet application as a state
machine.

The State Threads library is a derivative of the Netscape Portable
Runtime library (NSPR).

WWW: http://oss.sgi.com/projects/state-threads/

PR:		25189
Submitted by:	tobez@tobez.org (Anton Berezin)
2001-03-17 06:48:26 +00:00
Trevor Johnson
00009c0e8f An erroneous commit to this file by sobomax broke the port for
"make patch".  Also, I forgot to "cvs add" the correct file from
PR 25808.

reported by:	bento
2001-03-16 22:07:38 +00:00
Ying-Chieh Liao
4918932f29 upgrade to 1.2.3 2001-03-16 18:25:43 +00:00
Ying-Chieh Liao
6d7dfd39d2 upgrade to 1.3 2001-03-16 18:11:00 +00:00
Ying-Chieh Liao
c2ec8e4615 upgrade to 1.2.1 2001-03-16 17:30:29 +00:00
Ying-Chieh Liao
2239ca6ee3 upgrade to 3.3.6 2001-03-16 17:00:27 +00:00
Joerg Wunsch
f1bf3ec3b8 Finally get the avr-gcc port really compile on the alpha architecture,
by forcing the CFLAGS to -O -pipe.  Somehow, the alpha build always
tries to enforce a particular -mcpu=ev4 flag which of course cannot be
understood by the (AVR) xgcc later on.  This looks to me like a bug in
the cross-compilation environment of gcc, but i'm tired of actually
finding the bug.

The compiled result of avr-gcc MD5 compares equal to something build
from an IA32 host platform.
2001-03-16 13:26:27 +00:00
Archie Cobbs
4becd5a1b2 This patch fixes a scheduling bug and is to be incorporated in the
next version. In the meantime, apply with the port.

FYI, the bug is demonstrated by this program:

#include <stdio.h>
#include <stdlib.h>
#include <pth.h>
static int check_something(void *arg)
{
        return (0);
}
static void *thread(void *arg)
{
        printf("thread sleeping five seconds...\n");
        pth_nap(pth_time(5, 0));
        printf("thread is done sleeping\n");	/* bug: we never get here */
        return (NULL);
}
int main(int ac, char **av)
{
        pth_event_t ev;
        pth_init();
        pth_spawn(NULL, thread, NULL);
        ev = pth_event(PTH_EVENT_FUNC, check_something, NULL, pth_time(2, 0));
        while (1)
                pth_wait(ev);
}
2001-03-16 01:20:02 +00:00
Akinori MUSHA
d0f45c329e Update to 0.1.1. 2001-03-15 19:16:03 +00:00
Joerg Wunsch
8cf5d0f539 Crude hack to get all this running on the alpha architecutre as well.
Since gcc (in the assumption of generating a native compiler) doesn't
want to cbe configured for an alpha*-*-freebsd* system, we hack the
configure script to allow this (similarly to netbsd).  In the end, all
this will be ignored anyway since it's getting to become a
cross-compiler.
2001-03-15 17:02:30 +00:00
Trevor Johnson
ac9b7fbf76 Update to 1.1.1. Quash an unnecessary "#include <getopt.h>" that
was breaking bento builds.

Submitted by:	Michael Lyngbol <michael@lyngbol.dk>
PR:		25808

Mention patch to cvsweb.
2001-03-15 11:29:21 +00:00
Ying-Chieh Liao
4aeae14800 upgrade to 0.98 2001-03-15 06:52:47 +00:00
Vanilla I. Shu
43d985bbf8 Simplified Perl5 module to handle I/O on in-core strings
PR:		ports/25766
Submitted by:	Johann Visagie <johann@egenetics.com>
2001-03-14 23:18:15 +00:00
Joerg Wunsch
cb3fe7de93 The old distfile is gone on the previous server. There's an HTTP
redirect to a new server, but they don't carry the old files anymore.
Unfortunately, in order to build the new stuff, we'd need a newer
avr-gcc first -- and that one's by now only available directly from
gcc's CVS repo, which is a little too `green' to me.  Let's wait
another couple of months until they rolled a newer release of gcc and
binutils, and switch then.

By now, store the old distfile elsewhere.

Submitted by:	fenner's ports build survey (very valuable service!)
2001-03-14 21:33:53 +00:00
Akinori MUSHA
096dc9be74 Update to 1.3.7. 2001-03-14 19:41:27 +00:00
Akinori MUSHA
dae6e366c5 Update to 0.3.8. 2001-03-14 19:33:11 +00:00
Eivind Eklund
c10d38272f Remove one distfile mirror - though the contents of the .tar.gz
in each location are equal, the MD5 is different.
2001-03-14 18:13:20 +00:00
Mario Sergio Fujikawa Ferreira
6fd1259214 After communications with Ken Nelson (STI Technical Support)
<support@scitools.com> Tech Support from Understand C/C++ manufacturer,
we are allowed to remove the RESTRICTED tag as well as the LEGAL
warning.

Update to version 1.4 Build 104 from March 8, 2001.

- Correct a port versioning typo:

o Instead of using PORTVERSION=14b104 which both reflects the
  distfile naming convention and follows the naming convention used
  in this port; we will switch to PORTVERSION=1.4.104 which reflects
  the Changelog information
o To avoid "who came before" problems since last port was
  PORTVERSION=14b103, BUMP PORTEPOCH.

- Fix a PLIST unnecessary warning

- Version Changelog: http://www.scitools.com/ucpp_build_log.html
2001-03-14 17:02:57 +00:00
Dirk Meyer
85b7674614 - port converted in new layout
- textproc added in category (like astyle)

Ccdoc is a tool for extracting comments from C++ source code and presenting it
in HTML format, very similar to Java's JavaDoc tool. The tagging used in ccdoc
is very similar to that of Javadoc, with adaptations for the C++ specifics, of
course. Ccdoc supports extracting comments from both header and implementation
files.

In contrast to most other C++ doc'ing applications, ccdoc analyses the code
before it has been run through the pre-processor, so things such as macros can
actually be included in the documentation.

It's usage is not quite as straight forward as JavaDoc's, but considering the
quality of the output, it is well worth the effort.

WWW: http://www.joelinoff.com/ccdoc/

PR:		22794
Submitted by:	lonewolf@flame.org
2001-03-14 16:24:40 +00:00
Maxim Sobolev
a1e6da4299 Correct reference to the local perl files is:
lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}
but not:
lib/perl5/site_perl/${PERL_VERSION}/${PERL_ARCH}

Submited by:	bento (sorta)
2001-03-14 16:15:28 +00:00
Maxim Sobolev
aea677be0a FreeBSD doesn't have/need getopt.h.
Submitted by:	bento
2001-03-14 08:44:57 +00:00
Mario Sergio Fujikawa Ferreira
cd574f4c7d o Add a easier synonym for jcc -> codecrusader 2001-03-14 04:29:22 +00:00
Maxim Sobolev
cce76a6de3 This committer needs to take a seep. *sigh*
I was planning to rename pyncurses into more appropriate py-ncurses
before committing it out, but forgot to do so. Therefore delete
pyncurses and readd it back as py-ncurses.

Py-ncurses is a Ncurses binding for Python.

PR:		18633
Submitted by:	adsharma@sharams.dhs.org
2001-03-13 21:25:54 +00:00
Andreas Klemm
ad942c7a6d - bumped PORTREVISION because this perl module didn't work
- fix installation path of this perl module because this command failed:
  perl -M'ConfigReader::DirectiveStyle' -e 1
  ConfigReader files have to be put under
	lib/perl5/site_perl/%%PERL_VER%%/
  instead of
	lib/perl5/site_perl/
- now my new port FlowScan finds the ConfigReader::DirectiveStyle PM.
  "configure:1271: checking for ConfigReader::DirectiveStyle"
2001-03-13 20:58:07 +00:00
Trevor Johnson
5d9696f34e Use MASTER_SITE_NETBSD.
Approved by:	obrien
PR:		24185
2001-03-13 19:01:21 +00:00
Maxim Sobolev
f4a0cc757a Add pyncurses 0.3, a ncurses binding for Python.
PR:		18633
Submitted by:	adsharma@sharams.dhs.org
2001-03-13 17:31:41 +00:00
Maxim Sobolev
e5d90cedf5 Explicitly disable NAS and ARTS support. 2001-03-13 15:29:31 +00:00
Maxim Sobolev
d5478732e2 Update version number of gtkmm shared library. 2001-03-13 15:18:05 +00:00
Kevin Lo
7647c19305 Update to version 0.60
PR: 25765
Submitted by: maintainer
2001-03-13 14:55:13 +00:00
Maxim Sobolev
507c0e77f5 Put a copy of distfile at my MASTER_SITE_LOCAL, because bento constantly
has strange problems downloading it from the author's site. I really puzzled
because I can't reproduce those problems even from freefall.

Submitted by:	bento (sorta)
2001-03-13 11:06:05 +00:00
Dmitry Sivachenko
b8ec0cf29e Update to version 1.18. 2001-03-13 10:20:13 +00:00
Jun Kuriyama
bc924e455e Change master site to use ftp.
Requested by:	Mark Huizer <freebsd@dohd.org> (master site maintainer)
2001-03-13 09:03:14 +00:00
Jun Kuriyama
22e870b35e Upgrade to 1.2.6.
Use EXTRACT_SUFX instead of single DISTFILES (by kuriyama).

Submitted by:	Dave Chapeskie <dchapes@ddm.crosswinds.net>
PR:		ports/25711
Not reach for:	maintainer (mail service unavailable)
2001-03-13 06:38:14 +00:00
Ying-Chieh Liao
b88cdb3738 add autogen
AutoGen is a tool designed for generating program files that contain
repetitive text with varied substitutions. Its goal is to simplify the
maintenance of programs that contain large amounts of repetitious text.
This is especially valuable if there are several blocks of such text that
must be kept synchronized.
2001-03-13 05:52:31 +00:00
Jun Kuriyama
8ee5d18f22 Fix plist.
Submitted by:	Denis Shaposhnikov <dsh@neva.vlink.ru> (maintainer)
PR:		ports/25682
Modified by:	kuriyama
2001-03-13 01:30:02 +00:00
Kris Kennaway
8c66356fe6 Attempt to deal with read-only directories.
Approved by:	maintainer
2001-03-12 23:53:53 +00:00
Will Andrews
8a738c0aa7 Add ecgi 0.6.2, a library for the creation of CGI-based Web
applications.

PR:		25080
Submitted by:	George Reid <greid@ukug.uk.freebsd.org>
2001-03-12 22:08:31 +00:00
Vanilla I. Shu
116de05caf s/Locale::PGettext/Locale::PGetText/g
Submitted by:	bento
2001-03-12 12:08:10 +00:00
Dmitry Sivachenko
8c2b56b03e Add one more port to OPTIONAL_DEPENDS. 2001-03-12 11:29:00 +00:00
Vanilla I. Shu
1303483163 Add p5-ORBit, it's perl binding to ORBit library. 2001-03-12 08:58:27 +00:00
David E. O'Brien
cd027a187b * The patch for rev 1.18 did not make it to Freefall. Fix that.
* fix the symlinking so `make reinstall' works
* change how the symlinking is done to produce a more esthetic link
2001-03-11 23:06:08 +00:00