Commit graph

2268 commits

Author SHA1 Message Date
Kris Kennaway
b02e3b07c6 lha is an EXTRACT_DEPENDS, not BUILD_DEPENDS 2004-04-05 22:15:37 +00:00
Joe Marcus Clarke
731798cdcf Chase the glib20 update, and bump all affected ports' PORTREVISIONs. 2004-04-05 03:31:02 +00:00
Maho Nakata
84addca6cf forgot to update distinfo
Submitted by:	Kay Lehmann <kay_lehmann@web.de>
2004-04-03 23:23:32 +00:00
Kirill Ponomarev
e0a03595ef - Update to version 1.2.4
PR:		ports/65088
Submitted by:	Ports Fury
2004-04-02 19:06:03 +00:00
Kris Kennaway
98dd96ee20 Remove category pkg/COMMENT files in favour of a COMMENT variable in the
category makefile.

Submitted by:	Matthew Seaman <m.seaman@infracaninophile.co.uk>
PR:		59651
2004-04-02 07:29:48 +00:00
Christian Weisgerber
34d2eea617 Update to 1.2.2. Changes in this release:
* several bugfixes
* [EE] shortcut
* updated translations
2004-04-01 21:01:40 +00:00
Maho Nakata
3fdb55203a update to 3.0
Noticed by:	pav (long long ago) and Ricardo <ragomes@sc.usp.br>
2004-04-01 11:38:49 +00:00
Kirill Ponomarev
68d520a97e - Honour CC/CFLAGS
- Add DOCSDIR
- portlint

PR:		ports/65015
Submitted by:	michael johnson <ahze@ahze.net>
2004-04-01 09:52:13 +00:00
Trevor Johnson
8232e82f85 SIZEify (maintainer timeout) 2004-03-31 03:12:58 +00:00
Kirill Ponomarev
4efa9ce4ab - Use USE_ICONV knob
Approved by:	portmgr
2004-03-30 19:20:22 +00:00
Alexander Leidinger
7ad012e1d9 Unfortunately, the recent changes to math/xgfe (PR 59024) broke its
compilation on FreeBSD 4 with GCC 2.95.4:
        http://bento.freebsd.org/errorlogs/i386-4-latest/xgfe-2.1.log

The patch below fixes this.

During testing it on FreeBSD 4 and 5 with QT 3.3.1 I noticed that the
Advanced -> Multiple Files and Advanced -> Multiple Functions dialogs
were broken. I'm not sure if this is a new breakage with QT 3.3.1 or
if I didn't notice these when testing the previous patch on FreeBSD 5
with QT 3.2.1. Anyway, these are also fixed and as a precaution
PORTREVISION is bumped.

The patch also adds SIZE info.

PR:		64390
Submitted by:	Marius Strobl <marius@alchemy.franken.de>
Approved by:	maintainer
2004-03-30 17:02:58 +00:00
Maho Nakata
db4e7c3aca make portlint happy 2004-03-30 14:49:59 +00:00
Maho Nakata
7aa685c787 real fix for PR:64692
PR:		64692
Submitted by:	Kay Lehmann <kay_lehmann@web.de>
2004-03-30 14:48:49 +00:00
Kris Kennaway
d6d42ac6d4 Fix build on amd64 (compile shared libraries with -fPIC) 2004-03-29 08:43:14 +00:00
Markus Brueffer
91e67482b4 - SIZEify
Submitted by:	trevor
Approved by:	arved (mentor)
2004-03-28 18:36:47 +00:00
Oliver Braun
d50a806198 * Add SIZE. [1]
* s/brandelf/${BRANDELF}/.

Submitted by:	maintainer [1]
2004-03-27 07:48:38 +00:00
Maho Nakata
410118a607 unbreak for 4-STABLE i386 and alpha
PR:	64692 (loosely depended on)
Submitted by:	Kay Lehmann <kay_lehmann@web.de> and kris via bento
2004-03-27 05:55:45 +00:00
Maho Nakata
944b238c1b make portlint happy
Submitted by:	kris
2004-03-27 03:30:35 +00:00
Pav Lucistnik
56db852da4 - Add CONFLICTS between math/netcdf and science/hdf, they both install
same binaries.

PR:		ports/64646, ports/64647
Submitted by:	Kay Lehmann <kay_lehmann@web.de>
2004-03-24 18:55:25 +00:00
Maho Nakata
65dc8899e2 omit . in pkg-descr
Submitted by:	Makoto Yamashita <Makoto.Yamashita@is.titech.ac.jp>
2004-03-23 01:08:47 +00:00
Joe Marcus Clarke
e68206fade Update to 4.3.51. 2004-03-22 23:27:27 +00:00
Akinori MUSHA
2956c3762c Add SIZE data.
Submitted by:	trevor
2004-03-22 15:05:32 +00:00
Christian Weisgerber
52cead8e93 Update to 1.2.1. Changes in this release:
* formula entry mode
* right mouse button click gives popup menu
* translation updates
* bug fixes
2004-03-20 23:32:39 +00:00
Kirill Ponomarev
d287666fd9 - Update to version 3.5.1
PR:		ports/64507
Submitted by:	Ports Fury
2004-03-20 17:25:07 +00:00
Maho Nakata
308503d550 Do not hardcord PICFLAG
Submitted by:	ru
2004-03-20 05:20:46 +00:00
Maho Nakata
10e9ee4f10 Backout previous change of PICFLAG, since
behaviour of -fPIC and -fpic are different.
Here is the comment form obrien:

--
"-fpic" is a [minor?] optimization for machines that can handle it:

  -fpic
    Generate position-independent code (PIC) suitable for use in a shared
    library, if supported for the target machine. Such code accesses all
    constant addresses through a global offset table (GOT). The dynamic
    loader resolves the GOT entries when the program starts (the dynamic
    loader is not part of GCC; it is part of the operating system). If
    the GOT size for the linked executable exceeds a machine-specific
    maximum size, you get an error message from the linker indicating
    that -fpic does not work; in that case, recompile with -fPIC instead.
    (These maximums are 16k on the m88k, 8k on the SPARC, and 32k on the
    m68k and RS/6000. The 386 has no such limit.)

  -fPIC
    If supported for the target machine, emit position-independent code,
    suitable for dynamic linking and avoiding any limit on the size of
    the global offset table. This option makes a difference on the m68k,
    m88k, and the SPARC.

Thanks to: obrien
2004-03-19 04:20:12 +00:00
Maho Nakata
23c0b4c300 SIZEify
Submitted by:	trevor
2004-03-19 04:09:18 +00:00
Ying-Chieh Liao
c3e7756474 make it fetchable again 2004-03-19 01:46:05 +00:00
Maho Nakata
fb23a1b086 -fPIC is appropreate on all architectures.
Submitted by: kris
2004-03-18 23:06:11 +00:00
Trevor Johnson
38069212cc Add size data, approved by maintainers. 2004-03-18 20:59:15 +00:00
Trevor Johnson
3bca696b10 Add size data, approved by maintainers. 2004-03-18 18:01:13 +00:00
Pav Lucistnik
db249059e4 - Add SIZE to GNOME ports
Submitted by:	trevor
2004-03-18 14:33:42 +00:00
Kirill Ponomarev
d004d3d0c1 - Fix typo in CATEGORIES and pet portlint
Submitted by:	Mihai Tetcu <itetcu@apropo.ro>
2004-03-18 14:24:38 +00:00
Kris Kennaway
967f8d5c2b BROKEN on amd64 and ia64: Does not compile 2004-03-18 12:39:12 +00:00
Maho Nakata
9bda8c3027 The SDPARA (SemiDefinite Programming Algorithm PARAllel version)
is a parallel version of the SDPA (math/sdpa).
solving SDPs in parallel with the help of MPI
(Message Passing Interface) and ScaLAPACK (Scalable LAPACK).
2004-03-18 12:20:30 +00:00
Kris Kennaway
677affd31b BROKEN: Distfile is unfetchable 2004-03-18 11:50:30 +00:00
Mark Murray
d21b52fd63 Add size info. 2004-03-18 07:57:28 +00:00
Hye-Shik Chang
4fada1630a Add SIZE data.
Submitted by:	trevor
2004-03-18 07:38:47 +00:00
Ying-Chieh Liao
b163365b4d SIZEify
Submitted by:	trevor
2004-03-18 06:25:52 +00:00
Trevor Johnson
4a38811bfa Add size data.
Approved by:	maintainers
2004-03-18 02:52:47 +00:00
Trevor Johnson
e1177f5c54 Add size data.
Approved by:	maintainers
2004-03-18 02:27:55 +00:00
Joe Marcus Clarke
605471df08 Update to 1.2.8. 2004-03-17 20:50:25 +00:00
Trevor Johnson
33fdc4cde2 SIZEify. 2004-03-17 18:29:46 +00:00
Mark Linimon
8ff6db63fe Fix 'make describe' with older, buggy makes.
PR:				ports/64109
Submitted by:			Scott Lipcon <slipcon@mercea.net>
Lesson learned the hard way by:	linimon@FreeBSD.org
2004-03-17 12:46:45 +00:00
Maho Nakata
3718781425 Fix build on alpha 4-stable
Submitted by:	kris via bento
2004-03-17 09:46:36 +00:00
Pav Lucistnik
7adf5d5c96 - Fix build on -STABLE 2004-03-17 00:02:01 +00:00
Joe Marcus Clarke
a4209ed25d Update to 1.2.7. 2004-03-16 22:02:14 +00:00
Greg Lewis
06fea875e3 . SIZEify. 2004-03-15 21:38:22 +00:00
Akinori MUSHA
1fd1d70a3c Update to 0.5.4.
PR:		ports/64243
Submitted by:	Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
2004-03-15 09:45:13 +00:00
Akinori MUSHA
831f239a71 Update to 0.5.7p2.
PR:		ports/64242
Submitted by:	Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
2004-03-15 09:43:34 +00:00