Commit Graph

30174 Commits

Author SHA1 Message Date
pvalchev
15c8531c04 proper defines for __arm__ so this builds there; no binary package change
from current X distrib via Stuart Henderson <sthen@spacehopper.org>
2005-10-13 01:37:26 +00:00
grange
650e1acc6f Minor update to gxemul-0.3.6.1, some ARM fixes. 2005-10-12 19:24:28 +00:00
fgsch
3dcfddd4c5 update to analog 6.0 mainly to cope with gd update. 2005-10-12 05:42:31 +00:00
fgsch
7941c6e93c sync with gd update. 2005-10-12 05:41:07 +00:00
fgsch
499a3cb653 more gd tentacles. 2005-10-12 05:40:31 +00:00
fgsch
25d9fbd921 more gd sync. 2005-10-12 05:40:00 +00:00
fgsch
e638b19204 sync with gd update; feedback from several ppl. 2005-10-12 05:39:32 +00:00
fgsch
5c6511cccb sync with gd update; maintainer ok. 2005-10-12 05:38:51 +00:00
fgsch
460ce94c0a update to gd 2.0.33; brings gif back between many other things.
reviewed by several ppl, many thanks.
2005-10-12 05:37:43 +00:00
fgsch
57f94070d9 update to links2.1pre19 2005-10-12 04:02:22 +00:00
fgsch
7f59f4b5cc fix bug #1019808 and bump package. maintainer@ ok. 2005-10-12 02:41:41 +00:00
pvalchev
67d018a320 Jasper takes maintainership too 2005-10-11 18:49:54 +00:00
pvalchev
d8ca02fe7c update to belt-1.21; Jasper Lievisse Adriaanse <jasper@nedbsd.nl> 2005-10-11 18:14:48 +00:00
pvalchev
035d9f2336 remove shell@ from maintainer due to inactivity/disappearance 2005-10-11 18:12:20 +00:00
mbalmer
fe72f08fce Update MAINTAINER information.
Change Michael Knudsen's email address and two ports and mk takes
maintainership of editors/hexcurse with the previous maintainers consent.
2005-10-11 17:02:25 +00:00
mbalmer
d994d1c637 Update to version 1.55. From Michael Knudsen, <e at molioner . dk> 2005-10-11 08:06:10 +00:00
kevlo
933f11054a update to 2.0.1 2005-10-11 05:53:47 +00:00
fgsch
aa8a0c7e86 make this python2.4 friendly by allowing mk.conf to overwritte the
desired python version; maintainer and sturm@ ok.
2005-10-11 03:59:24 +00:00
mbalmer
086dc2b0cd Update to PostgreSQL 8.0.4. 2005-10-10 22:48:24 +00:00
espie
8e7f909b8d Use the caching mechanism set up in bsd.port.mk to speed it up x3. 2005-10-10 22:25:06 +00:00
bernd
67538a1775 - only compute signatures if the package name doesn't change
- some error checking
- print differences between package signatures

ok espie@
2005-10-10 22:08:27 +00:00
espie
c4ced942c9 protect against cases where @ARGV == 0, which can happen very seldom... 2005-10-10 19:43:33 +00:00
espie
8089498934 don't bother building default package, just ask print-plist-contents
for its contents.

avoid dirname in print-package-signature, use sh built-ins.
2005-10-10 19:20:00 +00:00
espie
031729bf37 make sure to get ALL libs, that is, several lines in case we need pkg_info
to get the right libraries.
2005-10-10 19:04:06 +00:00
sturm
63854d34db wrong macros in sample config
found by sebastian schuetz
2005-10-10 18:42:24 +00:00
brad
357a58db8d upgrade to lighttpd 1.4.6 2005-10-10 17:03:38 +00:00
bernd
3a943e5e5d output cosmetics
ok espie@
2005-10-10 16:07:33 +00:00
espie
a50d545ff2 copy aspect ratio over if we have it. 2005-10-10 15:37:24 +00:00
brad
de48ea20d3 add FLAVORs for lighttpd 2005-10-10 01:32:29 +00:00
espie
d939b31653 need an extra indirection: the complete wantlib cookie can easily grow
over 256 characters, so we create an extra file for each wantlib, and
depend on it. That way the full _DEPlibs_COOKIE is regenerated (and retested)
each time WANTLIB changes.
2005-10-10 00:29:38 +00:00
espie
9fa7c10c20 remove intervening comma, so that stuff works. 2005-10-09 23:22:41 +00:00
bernd
5c14fed137 update to doxygen-1.4.5
ok alek@
2005-10-09 21:42:04 +00:00
mbalmer
c8c2453d49 Update to clex 3.13. From maintainer, Victor Sahlstedt, salan at legonet org
Changelog: http://www.clex.sk/download/ChangeLog
2005-10-09 16:05:02 +00:00
espie
9d61eb771b better semantics for library checking: just check the pkgspec for recursive
building, and then do one big check of all specs in LIB_DEPENDS and
wantlib. This should be faster and more accurate.
2005-10-09 13:31:50 +00:00
espie
01c2d27f64 let resolve-lib return a useful error code 2005-10-09 13:27:39 +00:00
mbalmer
6372b0869f Remove MAINTAINER Heikki Korpela (heko at openbsd dot org) per his request. 2005-10-09 13:13:25 +00:00
espie
43ed8edb9c tweak the way library dependencies are resolved to speed them up.
Now, resolve-lib can take a big list of libraries with full paths,
and it can solve a big list of spec at once.
Basically, we move most of the parsing of spec paths into resolve-lib.

Since print-package-signature does build a full list of libs, let's solve
it all at once, instead of invoking a costly perl script repeatedly.

Add some caching possibilities for out-of-date. Specifically:
- store libraries for each package under the directory _PORT_LIBS_CACHE
- use the dependency cache _DEPENDS_FILE to avoid recreating dependency
chains, add a new file _DEPENDS_CACHE that will accumulate all dependencies,
and extract these with a simple script extract-dependencies.

Use echo to build libraries lists instead of ls, that's a bit simpler...

Some more clean-up will happen: it's probably simpler to parse libspecs
at once, extract the libraries needed and go fetch the corresponding libraries
just once.
2005-10-09 12:01:22 +00:00
alek
da2d577443 Add p5-Nmap-Scanner 2005-10-09 11:39:14 +00:00
alek
02daf32c61 Import Nmap::Scanner 0.9
This set of modules provides perl class wrappers for the network mapper
(nmap) scanning tool. Using these modules, a developer, network
administrator, or other techie can create perl routines or classes which
can be used to automate and integrate nmap scans elegantly into new and
existing perl scripts.

From Jasper Lievisse Adriaanse <jasper@nedbsd.nl> (MAINTAINER)
2005-10-09 11:33:47 +00:00
mbalmer
7d24d44001 Add a patch from Antti Harri (iku at openbsd dot fi) to prevent cups
from inadvertently shut down OpenBSD and bump the package name.
2005-10-09 10:29:46 +00:00
alek
58ff9e449c - Fix locking to protect device access from more than one frontend
- Bump PKGNAME

From Antoine Jacoutot <ajacoutot@lphp.org> (MAINTAINER)
2005-10-09 09:12:19 +00:00
mbalmer
12027718bf Update to SpamAssassin 3.1.0.
Release notes available:
http://marc.theaimsgroup.com/?l=spamassassin-announce&m=112674318914008&w=2

From Ben Lovett <ben at tilderoot dot com>
2005-10-09 09:05:43 +00:00
alek
f6797d6bd8 Add p5-HTTP-GetImages 2005-10-09 08:30:39 +00:00
alek
56dec2dbef Import HTTP::GetImages 0.343
This module allows to automate the searching, recovery and local storage
of images from the Web, including those linked by anchor (A),
image (IMG) and image map (AREA) elements.

From Lievisse Adriaanse <jasper@nedbsd.nl>
2005-10-09 08:17:17 +00:00
pvalchev
7a2d635d0d fix master site; chris.kuethe@gmail.com 2005-10-09 01:26:56 +00:00
brad
c2f1b62cde missed this 2005-10-08 20:05:32 +00:00
brad
5ad8971964 add mysql and ldap FLAVORs as well as re-enabling SSL. 2005-10-08 20:05:06 +00:00
mbalmer
a722685d81 Update to version 2.1.1 and take maintainership.
For more information, see release information on
http://www.r-project.org/

with help from bernd@ and ok robert@,bernd@
2005-10-08 09:47:36 +00:00
jakob
3ba21fd18d OpenLDAP 2.2.29 2005-10-08 09:12:38 +00:00
pvalchev
046c6bf86c remove 0-byte empty file... strange it was here 2005-10-08 08:21:21 +00:00