1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
Commit Graph

120540 Commits

Author SHA1 Message Date
Gerald Pfeifer
b33648820f Update to the 20050220 snapshot of GCC 4.0, and mostly fix the packing list
for the libjava case (still disabled for now, though).
2005-02-21 16:40:36 +00:00
Volker Stolz
2f9918da98 - Fix fetch by grabbing the tarball from Debian
- Nuke plist while here
2005-02-21 16:23:05 +00:00
Cheng-Lung Sung
bf6ecd9c03 - Change to new master site
PR:		ports/77863
Submitted by:	Klaus Michael Indlekofer (maintainer)
2005-02-21 16:14:49 +00:00
Cheng-Lung Sung
d440b4877d - change to new master site
PR:		ports/77862
Submitted by:	Klaus Michael Indlekofer (maintainer)
2005-02-21 16:13:23 +00:00
Volker Stolz
91c41fc06a - Fix build on AMD (hopefully)
- Remove extra-patch in favour of USE_LIBTOOL
- Remove two-line plist

PR:		ports/77563
Submitted by:	Kay Lehmann (maintainer)
2005-02-21 15:29:15 +00:00
Sergei Kolobov
8231a23521 - Update to 4.2.1 2005-02-21 15:23:32 +00:00
Volker Stolz
a7f2d6742a Update to 2.2.1
PR:		ports/77856
Submitted by:	maintainer
2005-02-21 15:17:09 +00:00
Max Khon
82cfa1e1ac USE_MESA -> USE_GL
Approved by:	MAINTAINER
2005-02-21 14:52:06 +00:00
Markus Brueffer
8529ea3708 Update to version 0.13.3 2005-02-21 14:24:47 +00:00
Sergey Skvortsov
ac21bd5424 * update to 1.4
* fix proflibs issue
2005-02-21 14:22:40 +00:00
Sergei Kolobov
f1beecf62c - Update to 0.45 2005-02-21 14:22:25 +00:00
Yen-Ming Lee
1b37aa0803 - add pod2man in CONFIGURE_ARGS, and install perl manpages under perl 5.00503
Noticed by:	kris
Approved by:	demon
2005-02-21 14:15:59 +00:00
Sergei Kolobov
9e7fa83376 - Update to 0.14.3 2005-02-21 14:04:36 +00:00
Sergei Kolobov
274416ccbe - Update to 2.0.1 2005-02-21 13:56:13 +00:00
Sergei Kolobov
69bcfaee66 - Update to 0.11.0 2005-02-21 13:52:27 +00:00
Sergei Kolobov
ff9d2cb3a3 - Update to 1.2.1 2005-02-21 13:49:25 +00:00
Markus Brueffer
925b76f2b5 Update to version 0.3.7 2005-02-21 13:43:24 +00:00
James E. Housley
db2b485f58 Update to DAT 4431 2005-02-21 13:24:38 +00:00
Sergei Kolobov
fee45a8834 - Try harder when determining WRKSRC of pwlib build-time dependency:
use cd ${PORTSDIR}/deve/pwlib && make -V WRKSRC instead of
  hard-coding default location which is not always applicable
- While I'm here, pacify portlint(1) (spaces -> tab)
2005-02-21 13:17:35 +00:00
Edwin Groothuis
0f5f85bafc Upgrade to 6.6.4 2005-02-21 12:56:13 +00:00
Alexey Dokuchaev
a329981e53 Remove duplicate port (sysutils/videogen exists, though `sysutils' is
probably not the right category for it).
2005-02-21 12:27:34 +00:00
Alexey Dokuchaev
b88ca076ba Add videogen 0.21, small utility for generating modelines for XFree86 servers. 2005-02-21 12:21:40 +00:00
Sergey Skvortsov
ce86cd5976 Fix plist: return back ".packlist"
Pointer by:	kris
2005-02-21 12:02:56 +00:00
Philip Paeps
5e79d0c27c Appease pointyhat by not touching perllocal.pod.
Spotted by:	pointyhat via kris
Approved by:	krion
2005-02-21 11:58:12 +00:00
Oliver Lehmann
0d233803e0 update to 1.9.3
add a patch which fixes non-7-bit-clean header handling
2005-02-21 11:49:57 +00:00
Kirill Ponomarev
1d5fe1dac7 Add possibility to switch vty's and suspend it while playing the
game.

PR:		ports/48426
Submitted by:	Eugene Grosbein <eugen at grosbein dot pp.ru>
2005-02-21 11:48:49 +00:00
Hartmut Brandt
57fece74d2 New version with more fixes for the broken TCL. 2005-02-21 11:36:53 +00:00
Sergei Kolobov
4fe7702b93 - Update to the latest version - 1.8.0
- Maildir quota is now enabled by default.
  The following options were deleted:
  - WITH_MAILDIRQUOTA
  - WITH_TRASHQUOTA
- New option WITH_AUTHLIB is added, which provides optional support for
  Courier Auth Library (mail/courier-authlib port).
- Userdb authentication, LDAP and MySQL support are provided through
  courier-authlib now, thus the following options
  - WITH_USERDB
  - WITH_LDAP
  - WITH_MYSQL
  have been superceded by WITH_AUTHLIB.

WARNING! WARNING! WARNING!
- Unfortunately, when maildrop is compiled using WITH_AUTHLIB knob, the
  resulting binary cannot properly locate libcourierauth.so.0 library:

  yasu@sugar[22]% ldd /usr/local/bin/maildrop
  /usr/local/bin/maildrop:
          libcourierauth.so.0 => not found (0x0)
       	  libstdc++.so.3 => /usr/lib/libstdc++.so.3 (0x2808e000)
       	  libm.so.2 => /usr/lib/libm.so.2 (0x280d3000)
       	  libc.so.4 => /usr/lib/libc.so.4 (0x280ee000)

  This is because libcourierauth.so.0 is not installed in the standard library
  path of dynamic linker.
  One possible solution is to add '-rpath ${LOCALBASE}/lib/courier-authlib'
  to linker flags. Unfortunately, this breaks the installation procedure.

  A solution to this problem is being actively sought, and I hope it will be
  fixed shortly.

PR:		ports/76786
Submitted by:	KIMURA Yasuhiro <yasu@utahime.org>
2005-02-21 11:31:55 +00:00
Herve Quiroz
9d40ec2112 Groovy is an agile dynamic language for the Java 2 Platform that has many of
the features that people like so much in languages like Python, Ruby and
Smalltalk, making them available to Java developers using a Java-like syntax.

Groovy is designed to help you get things done on the Java 2 Platform in a
quick, concise and fun way. Groovy brings the power of a scripting language
directly into the Java 2 Platform. For example:

- Shell scripting using Groovy allows the full power of the Java Platform to be
  brought to bear to the task at hand.
- Groovy can be used (and indeed is already being used) as a replacement for
  Java for small and medium sized applications to execute on the Java 2
  Platform.
- Groovy can be used as an embedded language for dynamic business rules or
  extension points utilizing the agility of Groovy and saving the cost of
  redeploying applications for each change of rule (especially when the rules
  are stored in a database).
- Groovy makes writing test cases for unit tests very easy.

As well as being a powerful language for scripting Java objects, Groovy can be
used as an alternative compiler to javac to generate standard Java bytecode to
be used by any Java project.

WWW:	http://groovy.codehaus.org/
2005-02-21 11:21:18 +00:00
Michael Johnson
801ea5582e - Add a note to icc users about adding LOCALBASE/intel_cc_80/bin to CCACHE_PATH 2005-02-21 11:06:30 +00:00
Michael Johnson
7b7dd5e756 - Update MASTER_SITES to fix fetch [1]
- Update WWW: line to point to game website, couldn't
  find server website.

PR:		ports/77843 [1]
Submitted by:	Sam Lawrance <boris@brooknet.com.au> [1]
2005-02-21 10:55:52 +00:00
Michael Johnson
6bf9207e87 - Update to 1.5.1
ChangeLog:	http://slipgate.za.net/dosage/downloads/changelog
PR:		ports/77844
Submitted by:	Antoine Brodin (maintainer)
2005-02-21 10:47:08 +00:00
Michael Johnson
865089e096 - Fix '-h' option in gatling
- Bump PORTREVISION

PR:		ports/77783
Submitted by:	Thomas-Martin Seck (maintainer)
Obtained from:	gatling CVS
2005-02-21 10:39:25 +00:00
Kirill Ponomarev
c47e97043a Fix MASTER_SITES. 2005-02-21 10:21:31 +00:00
Philip Paeps
120fef867f Update to 3.5. 2005-02-21 10:12:09 +00:00
Maho Nakata
246f43c726 (forced commit) forgot to mention about [2] of former commit.
Submitted by:	Zbynek Burget <zburget@miastudio.cz>
                and Pavel@Janik.cz (Pavel Janik) [2]
2005-02-21 10:11:32 +00:00
Maho Nakata
779bea36c7 (forced commit)
Forgot to mention about submitter of 77198 and 77199

PR:		77199, 77198
Submitted by:	IIJIMA Hiromitsu <isunin@dennougedougakkai-ndd.org>
2005-02-21 10:06:09 +00:00
Maho Nakata
7e8f39d759 Unbreak by setting IGNOREFILES= ${DISTFILES}
The dictionaries are purely data anyway, so it is safe
to set this.

PR:		77199
Submitted by:	Mikhail Teterin <mi+kde@aldan.algebra.com>
2005-02-21 10:02:00 +00:00
Maho Nakata
fac461b9a0 Add Russian [1], Czech, Slovak and Slovenian [2] localized helps.
Submitted by:	Rail Aliev <rail@iqchoice.com> [1]
2005-02-21 09:50:18 +00:00
Herve Quiroz
c1261d5553 - Update to 1.0 final
- Improve launcher shell script: use JAVA_VERSION instead of hardcoding a
  particular JDK
- Use SUB_FILES to generate the launcher shell script
2005-02-21 09:49:04 +00:00
Anton Berezin
0b84c7f1f9 Update to 1.4.
PR:		77836
Submitted by:	maintainer
2005-02-21 09:41:35 +00:00
Dmitry Sivachenko
1360f3bb6a Correct MASTER_SITES and WWW. 2005-02-21 09:21:36 +00:00
Dirk Meyer
324a67cd55 - update MASTER_SITES 2005-02-21 09:08:56 +00:00
Dirk Meyer
c97dbf72b0 - update MASTER_SITES 2005-02-21 08:59:18 +00:00
Anton Berezin
e0f2300bdc Update to 0.58. 2005-02-21 08:58:34 +00:00
Dirk Meyer
2bbb6047be - remove all LC_MESSAGES dirs we put files in. 2005-02-21 08:56:30 +00:00
Volker Stolz
b6b9e38b3a Removed: It hasn't been available for quite some time and the 'pg'
utility is available from syutils/heirloom.

PR:		ports/77714
Submitted by:	Sam Lawrance
2005-02-21 08:36:03 +00:00
Michael Johnson
f1e8f269ec Update MASTER_SITES
PR:		ports/77831
Submitted by:	maintainer
2005-02-21 08:23:11 +00:00
Michael Johnson
bc8510f03c - Update MASTER_SITES
- Add accessibility to CATEGORIES

PR:		ports/77806
Submitted by:	Stephen Montgomery-Smith
2005-02-21 08:16:49 +00:00
Michael Johnson
281f5c6e43 - Update to 1.004
Submitted by:	maintainer
2005-02-21 08:09:06 +00:00