Commit graph

150964 commits

Author SHA1 Message Date
wiz
dfa4529928 Updated www/surfraw to 2.2.6 2009-11-26 15:23:07 +00:00
wiz
c429a8eb6c Update to 2.2.6:
Fri Nov 20 03:34:19 GMT 2009  - surfraw 2.2.6

        * New elvi:
          + by Sumant Oemrawsingh:
            * cliki        - search the common lisp wiki.
            * l1sp         - search lisp documentation.
            * mathworld    - search Wolfram MathWorld.
            * mininova     - search mininova for torrents.
            * youtube      - search youtube for videos.
          + by fittabile@lifegate.it:
            * acronym      - find acronyms
            * gcache       - search google cache.
          + by Nick White:
            * genbugs      - search gentoo bug tracker
          + by Ian Beckwith:
            * debpkghome   - view home page of a debian package.
            * debvcsbrowse - browse vcs of a debian package
            * rpmsearch    - search for packages in rpm-based distros.
            * finkpkg      - search Fink packages.
            * macports     - search macports packages.
        * Move config files to follow XDG basedir spec
	  This means that if your global config was in /etc/surfraw.conf
	  it is now in /etc/xdg/surfraw/conf, and local config is
	  now in $HOME/.config/surfraw/conf. The same applies to bookmarks.
	  See README for details on configuring config locations, and
	  http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
	  for the gory details. The old locations are still supported for
	  backwards-compatibility.
        * Support per-user elvi in $HOME/.config/surfraw/elvi/
          Patch by James Rowe, idea by Sumant Oemrawsingh.
        * Added -o | -o=FILE option, to fetch URL and dump to
          stdout or FILE.
        * Modified elvi:
          + freebsd: new options -psearch=TYPE -psection=SEC
            to conduct a search of type TYPE in section SEC of ports.
          + netbsd:  new option -ps to search ports
          + openbsd: new option -ps to search ports
          + debsec: fixed (Thanks to Moritz Muehlenhoff, for this
            and all his other work).
          + cia: fixed.
        * Added examples/uzbl_load_url_from_surfraw, to integrate surfraw
          with uzbl (uzbl.org), thanks to Sumant Oemrawsingh.
2009-11-26 15:22:55 +00:00
joerg
c1fccef5be Fix libtool usage. 2009-11-26 15:04:03 +00:00
wiz
062c2dfa4e Updated print/poppler-data to 0.3.1 2009-11-26 14:25:28 +00:00
wiz
41e441f772 Update to 0.3.1:
Changes since 0.3.0:
Updated some Adobe-CNS1 cMap files
2009-11-26 14:25:11 +00:00
joerg
4cbfb4a358 Craete libgnutls-extra-config in .buildlink/bin, not the WRAPPER_DIR. 2009-11-26 14:18:26 +00:00
joerg
69bc8eaf62 Fix PLIST. Create necessary directories. 2009-11-26 14:11:44 +00:00
obache
443e9587ce Updated inputmethod/scim-bridge to 0.4.16nb1 2009-11-26 12:30:30 +00:00
obache
713aa5add9 * adjust short option as described in long option and source code (patch-af)
* fixes unportable, broken socket connect/bind (patch-ae, patch-ag)

Bump PKGREVISION.
2009-11-26 12:30:12 +00:00
joerg
23452ea36c Just use our CC, don't override it. Helps libtool-2.2. 2009-11-26 00:48:58 +00:00
joerg
68f66dae50 Needs --x-includes / --x-libraries with modular Xorg. 2009-11-26 00:46:14 +00:00
joerg
47c0db9b6f destdir support. Honour CFLAGS. Prepare for libtool-2.2. 2009-11-26 00:42:19 +00:00
joerg
2513f03bf6 Not MAKE_JOBS_SAFE. 2009-11-26 00:35:00 +00:00
joerg
9dd9fdd6d1 Use --with-libz to not pass -I or -I/include to cc. 2009-11-26 00:30:28 +00:00
joerg
bef75f56b4 Always use correct --mode argument for libtool. 2009-11-26 00:10:42 +00:00
dmcmahill
52e01e6909 fix some printf() format strings on alpha 2009-11-26 00:05:06 +00:00
joerg
257051d5f1 Always use --mode with libtool. 2009-11-25 23:58:01 +00:00
joerg
f3d2cfe277 Prepare for libtool-2.2: needs explicit --tag as it is using g++. 2009-11-25 23:41:42 +00:00
joerg
7621c58fb7 Call libtool always with --mode. Honour the strip settings of pkgsrc. 2009-11-25 23:31:58 +00:00
joerg
d79c88f8a2 Not MAKE_JOBS_SAFE. Prepare for libtool-2.2. 2009-11-25 23:25:44 +00:00
joerg
ae7366e22d Fix destdir. 2009-11-25 23:03:20 +00:00
joerg
d2093c24aa Do not conflict implicitly with acroread7 itself. 2009-11-25 22:45:07 +00:00
dmcmahill
0b417c34f0 Added databases/datadraw version 3.1.1 2009-11-25 22:44:31 +00:00
dmcmahill
e7ff070fe3 add and enable datadraw 2009-11-25 22:43:21 +00:00
dmcmahill
5bd3e5fd16 Initial import of datadraw-3.1.1
DataDraw is an ultra-fast persistent database for high performance programs
written in C.  It's so fast that many programs keep all their data in a
DataDraw database, even while being manipulated in inner loops of compute
intensive applications.  DataDraw databases are compiled, and directly link
into your C programs.  DataDraw databases are resident in memory, making data
manipulation even faster than if they were stored in native C data structures
(really).

DataDraw databases can be persistent.  Modifications to persistent data are
written to disk as they are made, which of course dramatically slows write
times.  However, DataDraw databases can also be volatile.  Volatile databases
exist only in memory, and only for the duration that your program needs it.
Volatile databases can be directly manipulated faster than C structures, since
data is better organized in memory to optimize cache performance

DataDraw supports modular design.  An application can have one or more common
persistent databases, and multiple volatile databases to support various tools'
data structures.  Classes in a tool's database can extend classes in the common
database.

DataDraw is also 64-bit optimized, allowing programs to run much faster and in
less memory than standard C programs using 64-bit pointers.  This is because
DataDraw databases supports over 4 billion objects of a given class with 32-bit
object references.
2009-11-25 22:42:35 +00:00
wiz
507470ef35 + gdl-2.28.2 [GNOME 2.28], lwm-1.2.2, mathomatic-14.6.3, opera-10.10,
p5-Spreadsheet-WriteExcel-2.28, pulseaudio-0.9.21, sound-juicer-2.28.1.
2009-11-25 22:30:46 +00:00
joerg
96a8b7b518 Prepare for libtool-2.2: use --tag=CC when calling gcc instead of cc. 2009-11-25 22:29:34 +00:00
joerg
6ffb46d702 Use libtool --tag explicitly if calling gcc instead of cc in preparation
for libtool 2.2.
2009-11-25 22:15:25 +00:00
joerg
c55b29e55a Not MAKE_JOBS_SAFE. Add destdir support. 2009-11-25 21:59:34 +00:00
joerg
59b47d4b30 Make sure builddir is set to not use stray -I options. 2009-11-25 21:56:34 +00:00
joerg
002748c390 Run libtoolize. No need to touch libtool. 2009-11-25 21:43:55 +00:00
joerg
dccd5f2e75 Repeat after me: Do not use bar/.libs/foo.la, use bar/foo.la. 2009-11-25 21:35:58 +00:00
joerg
9fbb859ee7 Fix logic to not add stray -I options. 2009-11-25 21:27:24 +00:00
joerg
6c1c347754 Links against libXt nowadays. Bump revision. 2009-11-25 21:20:59 +00:00
joerg
ed2234fa92 Actually links against libXt nowadays. Bump revision. 2009-11-25 21:16:17 +00:00
joerg
d7481628f4 Fix permissions of include files. Fix linkage for systems with openssh
in base. Add destdir support.
2009-11-25 21:11:33 +00:00
joerg
04c9be3080 Repeat after me, do not use bar/.libs/foo.la, use bar/foo.la. 2009-11-25 20:56:03 +00:00
joerg
668795d115 Needs --x-includes with modular Xorg. 2009-11-25 20:38:45 +00:00
adam
02adf9e9d9 Updated devel/cmake to 2.8.0 2009-11-25 19:11:14 +00:00
adam
8b604efb71 Changed 2.8.0:
This version of CMake fixes many open issues and provides some exciting new
features.
2009-11-25 19:08:18 +00:00
abs
f6090023b4 Add missed build dependency on automoc4, caught by wizd(8), no pkgrev bump 2009-11-25 15:55:49 +00:00
hasso
acd85a1564 Updated lang/clang to 2.6nb2. 2009-11-25 12:34:49 +00:00
hasso
5ab15d8bfc Make 'clang -pthread' work on recent DragonFly versions. The patch from
upstream svn trunk. Bump PKGREVISION.
2009-11-25 12:32:30 +00:00
obache
e2fd74b58c TokyoCabinet related HOMEPAGEs have been moved. 2009-11-25 11:33:55 +00:00
kefren
946136e7ca build with moonlight support. Added as a default option. Bump pkgrevision 2009-11-25 10:13:06 +00:00
wiz
f0a9d07501 Updated editors/Sigil to 0.1.5 2009-11-25 10:12:48 +00:00
wiz
807dbf6673 Update to 0.1.5:
Sigil v0.1.5 2009.11.25
    - fixed a race condition with view syncing in Book View
    - fixed an issue with loading text files that don't end with a newline (some text would end up missing)
    - A NEW FIND & REPLACE DIALOG (issue #13)
    - no more hard line breaks in Code View (courtesy of recent performance optimisations) (issue #61)
    - TOC Editor now remembers its size across invocations and program launches
    - the uninstaller now removes Sigil's temporary working directories
    - removed the "Start Sigil" checkbox in the last page of the installer; starting Sigil like this
    was causing problems because Sigil had admin privileges (issue #163)
    - fixed an issue with chapter breaks not working after they are Left/Center/Right Aligned (issue #158)
    - multiple images can now be inserted with the "Insert Image" dialog by selecting multiple images
    - fixed an issue with loading images from documents with uppercase tags and attributes (issue #156)
    - tentatively fixed an issue with Sigil crashing on overwriting existing epubs (issue #146)
    - fixed an issue with Sigil crashing on epubs with "date" OPF elements but no value set
    for those elements (InDesign CS4 creates such invalid epubs) (issue #149)
    - fixed an issue with words being merged on TXT import (issue #148)
    - various performance improvements through code profiling and parallelization
    - Linux and Mac builds should now be slightly faster because of new compiler optimizations
    - fixed issue with Sigil incorrectly loading (and therefore subsequently saving) "date"
    OPF elements with "event" attributes (issue 144)
2009-11-25 10:12:35 +00:00
tron
2aa0e13793 Note update of the "pango" package to version 1.26.1nb2. 2009-11-25 09:58:52 +00:00
tron
20c2d2e44d Add patches on behalf of Jens Rehsack:
Pango was using invalid c++ code and Sun Studio avoids that to compile.
  Applied patches are taken from the bug-fixes committed upstream -HEAD
  taken from harrbuuz-ng repository for pango.

Bump package revision because of these patches.
2009-11-25 09:58:39 +00:00
taca
84b0502a37 Note update of net/bind96 to 9.6.1pl2. 2009-11-25 09:53:14 +00:00