1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
Commit Graph

343131 Commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
bb065365a3 - Add LICENSE 2014-07-21 11:52:05 +00:00
Sunpoet Po-Chuan Hsieh
eb9d3fe4a6 - Add LICENSE 2014-07-21 11:51:20 +00:00
Sunpoet Po-Chuan Hsieh
d0775d2bcd - Add LICENSE 2014-07-21 11:50:19 +00:00
Sunpoet Po-Chuan Hsieh
10aaff5060 - Add WWW
- Remove Author line
2014-07-21 11:49:05 +00:00
Sunpoet Po-Chuan Hsieh
0a499f9cb1 - Update to 2014.07.20 2014-07-21 11:19:46 +00:00
Sunpoet Po-Chuan Hsieh
37b6e90525 - Update to 2014.07.20 2014-07-21 11:19:19 +00:00
Sunpoet Po-Chuan Hsieh
ffefab9450 - Update to 2014.07.20 2014-07-21 11:19:13 +00:00
Sunpoet Po-Chuan Hsieh
2cf8541814 - Update to 20140720 2014-07-21 11:19:07 +00:00
Sunpoet Po-Chuan Hsieh
33f48a4b0c - Update to 2014.07.20 2014-07-21 11:19:02 +00:00
Sunpoet Po-Chuan Hsieh
15ad7c550d - Add PORTSCOUT 2014-07-21 11:18:57 +00:00
Sunpoet Po-Chuan Hsieh
af9cf6310e - Update to 2.142010
Changes:	http://search.cpan.org/dist/Net-CLI-Interact/Changes
2014-07-21 11:18:52 +00:00
Sunpoet Po-Chuan Hsieh
15d2463fdf - Update to 0.007
Changes:	http://search.cpan.org/dist/Type-Tiny-XS/Changes
2014-07-21 11:18:47 +00:00
Rene Ladan
ba42ea3251 - Stage support
- Install a proper configuaration file
- Strip binaries
- Mark jobs-unsafe
- Fix WWW line in pkg-descr
- Fix pkg-plist
- Bump PORTREVISION

PR:		191958
Submitted by:	Carlos Jacobo Puga Media <cjpugmed@gmail.com>
Approved by:	portmgr (infrastructure blanket)
2014-07-21 10:05:50 +00:00
Rene Ladan
99859df43f Remove expired port:
2014-04-10 x11-toolkits/libgail-gnome: gnome-panel 2.x will be updated in the GNOME 3 import
2014-07-21 09:01:22 +00:00
Kurt Jaeger
4b1786c901 devel/zziplib: only builds with python2, so USE_PYTHON_BUILD=2 2014-07-21 08:59:37 +00:00
Rene Ladan
c04950885d bsd.gnome.mk: remove unused libgailgnome component
Approved by:	gnome (kwm)
2014-07-21 08:55:46 +00:00
Pietro Cerutti
69ffe7b13c - Update to 3.0.1
Release notes:
  http://www.wxwidgets.org/news/2014/06/wxwidgets-3.0.1-released/
2014-07-21 08:40:32 +00:00
Rene Ladan
172eefaac0 Remove expired ports:
2014-07-21 accessibility/at-poke: Depends on expired libgailgnome
2014-04-10 misc/bigboard: gnome-panel will be updated to the 3.x version which is not compatible with 2.x
2014-04-10 net/desktop-data-model: gnome-desktop 2.x will be updated in the GNOME 3 import
2014-07-21 net/online-desktop: Disappeared upstream, depends on expired ports
2014-07-21 08:39:11 +00:00
Guido Falsi
d880ab8306 Fix build on head without shared readline.
MFH:		2014Q3
2014-07-21 08:34:31 +00:00
Pietro Cerutti
364a875e6d - Update to 05_20140720
Changes:

  * The compiler has been improved to generate overflow checking code
    by default. The generation of overflow checking code can be
    switched off with the option -so.
  * The exception OVERFLOW_ERROR has been introduced. It is raised by
    the interpreter and by compiled programs when an integer overflow
    occurs.
  * A paragraph about integer overflow and the installation of Seed7
    has been added to the FAQ.
  * The chapter about exceptions in the manual has been improved.
  * The program chkovf.sd7, which checks the recogition of integer
    overflows, has been added.
  * Checks for +, -, *, rem, mod, <<, +:=, -:=, *:=, succ, pred, incr
    and decr have been added to chkint.sd7.
  * Checks for the lpad operator have been added to chkstr.sd7.
  * The compiler option -r has been replace by the option -sr.
  * The program calc7.sd7 has been improved to report MEMORY_ERROR and
    OVERFLOW_ERROR.
  * The library make.s7i has been improved such that make7.sd7 accepts
    echo (and echo.) statements without parameters.
  * The function eof has been defined for the type tlsFile in tls.s7i.
  * The function gets in tls.s7i has been improved.
  * The function getHttp in gethttp.s7i has been improved to avoid an
    endless loop when eof has been reached.
  * The function memcpy_from_strelem has been added to striutl.c. This
    function uses loop unrolling inspired by Duff's device and a trick
    with a binary or (|=) to check for allowed values.
  * The functions filWrite, socWrite and bstParse have been changed
    to use memcpy_from_strelem. The reduction in runtime has been
    measured with gcc and valgrind. The runtime of filWrite, socWrite
    and bstParse has been reduced to 53%, 61% and 56% respectively.
  * Documentation comments have been added to integer.s7i, bin32.s7i,
    intlib.c and striutl.c.
  * The compiler has been improved to generate overflow checking code
    for *, <<, >>, *:=, <<:= and >>:= .
  * The generation of overflow checking code for the operators rem and
    mod has been improved.
  * Checks for overflow, division by zero, numeric error and index out
    of bounds in compiled programs now use the macros ovfChk, divChk,
    numChk and idxChk. This macros inform the C compiler about the
    unlikeliness of an exception.
  * The function fltIPow has been improved to avoid a signed integer
    overflow, when the exponent is the most negative integer.
  * The primitive actions INT_ULSHIFT and INT_ULSHIFT_ASSIGN have been
    added and supported in interpreter and compiler.
  * A version of the function uint_rand, which uses 128-bit integers,
    has been added to int_rtl.c.
  * The function raise_error3 in runerr.c has been renamed to
    interprRaiseError.
  * The configuration values INT128TYPE, UINT128TYPE and MACRO_DEFS
    have been added to cc_conf.s7i. The configuration value
    SIGILL_ON_OVERFLOW has been replaced with OVERFLOW_SIGNAL.
  * The functions constValueIsEqual, checkRangeFromZero,
    process_const_int_lshift, process_const_int_lshift_assign,
    process_const_int_rshift_assign, process_const_int_mult,
    process_const_int_mult_assign, process_const_int_ulshift_assign,
    process_const_int_ulshift and process_const_int_urshift_assign
    have been added to int_act.s7i.
  * The function intExpr in chkbig.sd7, chkexc.sd7, chkint.sd7 and
    chkstr.sd7 has been changed to make sure that the C compiler
    cannot evaluate it at compile time.
  * The runtime of the functions str_lpad, strLpad and strLpadTemp has
    been improved.
2014-07-21 08:34:26 +00:00
Pietro Cerutti
995888f5e5 - Fix PLIST 2014-07-21 08:17:13 +00:00
Yen-Ming Lee
9b3621b9e4 - update to 3.1.5
- support stage and options
2014-07-21 08:07:26 +00:00
Pietro Cerutti
91a4e7ee02 - Unbreak on powerpc, it builds fine
- While at it, make a few cosmetics changes

Reported by:	danfe
2014-07-21 08:01:02 +00:00
Baptiste Daroussin
90e9670e8e Revert updating fontsproto 2.1.3 (only works for libXfont >= 1.5)
Revert updating libXfonts 1.5.0 (only works with xorg-server >= 1.16.0)
Update libXfonts to 1.4.8 which was the intention at the beginning...

Pointyhay to:	bapt
2014-07-21 06:38:49 +00:00
Kurt Jaeger
93000138ec sysutils/clone: 1.0.4 -> 1.0.5, strip binary
From the ChangeLog:

- in case of FreeBSD transfer only non-trivial ACLs in getMetaData().
- utilize open file descriptors for meta data cloning.
- optimized ACL reading.
- new verbosity level 2 indicates cloned files by a '.'.
- new verbosity level 3 displays the names of all cloned file system items.
- improved -v option description in usage() and in the man file.
- directory attributes are now set at the end of the function clone()
  and not after the call to clone().
- implemented static inline pthread_cond_wait_flag().
- in synchronization mode don't delete excluded items from the destination.
- release of version 1.0.5 (r58).

PR:		191995
Submitted by:	cyclaero@gmail.com (maintainer)
2014-07-21 05:47:39 +00:00
Antoine Brodin
65ce465e8f Fix LIB_DEPENDS
With hat:	portmgr
2014-07-21 05:16:53 +00:00
Kubilay Kocak
a5c703076e lang/python-doc-html: Update for Python 2.7.8
Update Python documentation for the recent lang/python27 2.7.8 update.

Includes updates for: HTML, PDF (A4), PDF (Letter) and Text formats and slave
ports.

Reported by:	pkg-fallout
2014-07-21 05:07:59 +00:00
Rui Paulo
cb04a238df Update leiningen to 2.4.2.
Most notably there's a new release command and several bug fixes.

https://github.com/technomancy/leiningen/releases

Reviewed by:	bapt
Approved by:	bapt (mentor)
2014-07-21 03:59:23 +00:00
Vanilla I. Shu
24ccd7e697 Stagify. 2014-07-21 03:54:51 +00:00
Vanilla I. Shu
f03e057b89 1: Stagify
2: Add LICENSE.
3: Fix WWW line.
2014-07-21 03:43:04 +00:00
Baptiste Daroussin
d325a025fb Update to 1.5.0
Strip binaries
2014-07-20 22:56:22 +00:00
Baptiste Daroussin
ac9773161b Update to 2.1.3 2014-07-20 22:54:17 +00:00
Baptiste Daroussin
9d16fc36a8 Update to 7.0.26 2014-07-20 22:52:59 +00:00
Baptiste Daroussin
d519b6dc3f Update to 2.12
Strip binaries
2014-07-20 22:51:38 +00:00
Baptiste Daroussin
04278c1c2c Update to 1.0.6
Strip binaries
2014-07-20 22:49:21 +00:00
Baptiste Daroussin
75311f9fa0 Update to 1.0.9
Strip binaries
2014-07-20 22:48:30 +00:00
Baptiste Daroussin
7aecf960bb Update to 0.4.2
Strip binaries
2014-07-20 22:47:34 +00:00
Baptiste Daroussin
2ac766a699 Update to 1.7.4
Strip binaries
2014-07-20 22:46:12 +00:00
Baptiste Daroussin
066d023bd2 Update to 1.0.9
strip binaries
2014-07-20 22:45:00 +00:00
Baptiste Daroussin
82408f4141 Update to 2.3.1 2014-07-20 22:43:38 +00:00
Antoine Brodin
3062e6dd3b Fix CONFLICTS line too 2014-07-20 22:43:19 +00:00
Baptiste Daroussin
ee2bc47a5b Fix pkgname collision 2014-07-20 22:41:36 +00:00
Baptiste Daroussin
d42296631d Fix duplicate pkgname 2014-07-20 22:39:44 +00:00
Baptiste Daroussin
a67b599004 Update to 2.4.54 for both new and old xorg
Also build libkms on architecture supporting it by default it will only be used
by drivers needing libkms hence not by old xorg

With hat:	x11
2014-07-20 22:22:10 +00:00
Rene Ladan
11ab98b206 comms/dcf77pi: apply upstream patch to fix display bug when realfreq is reset 2014-07-20 21:59:06 +00:00
Matthew Seaman
e7389e3f98 Update the latest phpMyAdmin entry with CVE numbers and descriptive
text from the security advisories, now that they have been published.

Security:	3f09ca29-0e48-11e4-b17a-6805ca0b3d42
2014-07-20 21:47:42 +00:00
Kurt Jaeger
c052a41cd8 net-mgmt/snmptt: 1.3 -> 1.4
PR:		191119
Submitted by:	nistor@snickers.org (maintainer)
2014-07-20 21:32:23 +00:00
John Marino
e29cdaaee5 Remove mail/getlive as project owner declares GetLive is dead
Micrsoft is converting all hotmail accounts to "Outlook" platform and
once converted, getlive can not longer function on the account.  The
project owner has declared GetLive dead as of 2 May 2014.  Remove the
port in a couple of weeks (1 Aug 2014)

PR:		191367
Submitted by:	Lawrence Chen
Approved by:	maintainer timeout (~4 weeks)
2014-07-20 21:29:24 +00:00
Raphael Kubo da Costa
fcf2184286 - Fix skypebuttons.so's entry in the plist.
%%WEBPLUGIN_DIR%% has a trailing slash that made check-plist complain
  because /path//to/something is not the same as /path/to/something.
- Use USES=shebangfix for a few winpopup shell scripts. [1]

PR:		191987 [1]
MFH:		2014Q3
2014-07-20 21:28:38 +00:00
Rene Ladan
f4a3def9a1 - Stage support
- Use @sample keyword
- Transfer maintainership to emulation@
2014-07-20 21:23:49 +00:00