Commit graph

285380 commits

Author SHA1 Message Date
Steve Wills
cb0895f48c - Update to 1.97
PR:		ports/170873
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:49:20 +00:00
Steve Wills
faea603c9b - Update to 1.8
PR:		ports/170862
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:48:32 +00:00
Steve Wills
1c455c985f - Update to 0.07
PR:		ports/170861
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:47:31 +00:00
Steve Wills
b86330d506 - Update to 0.006
PR:		ports/170851
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:46:24 +00:00
Steve Wills
5d79f6285f - Update to 0.092000
PR:		ports/170850
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:45:36 +00:00
Steve Wills
7989bb820e - Update to 0.120001
PR:		ports/170849
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:42:44 +00:00
Steve Wills
ffcd6919ae - Update to 2.75
PR:		ports/170848
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:41:45 +00:00
Steve Wills
671362dd5f - Update to 0.12
PR:		ports/170844
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:40:50 +00:00
Steve Wills
89f8a72d3f - Update to 1.3
PR:		ports/170843
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:39:09 +00:00
Steve Wills
1e79ac6d70 - Update to 0.19
PR:		ports/170842
Approved by:	maintainer timeout (bill.brinzer@gmail.com, >2 weeks)
2012-09-06 15:37:47 +00:00
Dmitry Marakasov
f1c7e04a2b - Fix path to license file
Submitted by:	"Sergey V. Dyatko" <sergey.dyatko@gmail.com> (via private email)
2012-09-06 15:36:20 +00:00
MANTANI Nobutaka
386cebbfa2 Add SIXEL option.
PR:		ports/171308
Submitted by:	IWAMOTO Kouichi <sue@iwmt.org>
2012-09-06 14:42:44 +00:00
Eitan Adler
3b7c9eb230 Change upstream to the exact sources used by FreeBSD.
Reviewed by:	bdrewery
Discussed with:	des
2012-09-06 14:37:34 +00:00
Dirk Meyer
45da3ca8be - respect INSTALL_PROGRAM, STRIP and custom optimisations in CFLAGS
PR:		163550
2012-09-06 14:29:59 +00:00
Kris Moore
7f16bac99e Fix building if lang/vala is installed
Reported by: Many
2012-09-06 14:11:07 +00:00
Max Brazhnikov
23478f2761 Remove needless dependence on kde-baseapps
Update to 2.0.7 (based on patch provided by maintainer in reply to PR)

PR:		ports/171213
2012-09-06 14:02:41 +00:00
Max Brazhnikov
e0f0857caf Add new port graphics/py-poppler-qt4:
Python bindings for poppler-qt4.

WWW: http://python-poppler-qt4.googlecode.com

PR:		based on ports/171223
Submitted by:	Martin Dieringer <martin.dieringer at gmx.de>
2012-09-06 14:01:54 +00:00
Pietro Cerutti
5a1eded3fa - Fix OPTION name inconsistency introduced in r229081
PR:		171339
Submitted by:	freebsd@nagilum.org
2012-09-06 13:11:36 +00:00
Bryan Drewery
10926a2106 - Update to 0.8
- Fix grammar error in pkg-descr
- Switch backup mirror to using Github via
  USE_GITHUB

Changelog:

-- Introduce proper space calculation by each boot environment in *beadm list*
-- Rework the *beadm destroy* command so no orphans are left after destroying boot environment.
-- Fix the *beadm mount* and *beadm umount* commands error handling.
-- Rework consistency of all error and informational messages.
-- Simplify and cleanup code where possible.
-- Fix *beadm destroy* for 'static' (not cloned) boot environments received by *zfs receive* command.
-- Use mktemp(1) where possible.
-- Implement *beadm list -a* option to list all datasets and snapshots of boot environments.
-- Add proper mountpoint listing to the *beadm list* command.
   % beadm list
   BE      Active Mountpoint       Space Created
   default NR     /                11.0G 2012-07-28 00:01
   test1   -      /tmp/tmp.IUQuFO  41.2M 2012-08-27 21:20
   test2   -      -                56.6M 2012-08-27 21:20

-- Change snapshot format to the one used by original *beadm* command (%Y-%m-%d-%H:%M:%S).
   % zfs list -t snapshot -o name -r sys/ROOT/default
   NAME
   sys/ROOT/default@2012-08-27-21:20:00
   sys/ROOT/default@2012-08-27-21:20:18

-- Implement *beadm list -D* option to display space that would be consumed by single boot environment if all other boot environments will be destroyed.
   % beadm list -D
   BE      Active Mountpoint       Space Created
   default NR     /                 9.4G 2012-07-28 00:01
   test1   -      /tmp/tmp.IUQuFO   8.7G 2012-08-27 21:20
   test2   -                        8.7G 2012-08-27 21:20

-- Add an option to BEADM DESTROY command to not destroy manually created snapshots used for boot environment.

   # beadm destroy test1
   Are you sure you want to destroy 'test1'?
   This action cannot be undone (y/[n]): y
   Boot environment 'test1' was created from existing snapshot
   Destroy 'default@test1' snapshot? (y/[n]): y
   Destroyed successfully

   # beadm destroy test1
   Are you sure you want to destroy 'test1'?
   This action cannot be undone (y/[n]): y
   Boot environment 'test1' was created from existing snapshot
   Destroy 'default@test1' snapshot? (y/[n]): n
   Origin snapshot 'default@test1' will be preserved
   Destroyed successfully

Approved by:	eadler, bapt (mentors, implicit)
2012-09-06 12:43:18 +00:00
Thomas Abthorpe
824776b7e0 - Reassign to the heap due to mail bounces
With hat:	portmgr
2012-09-06 12:13:35 +00:00
Michael Landin
d87111bdf4 - Update to 2.00015
PR:		ports/171046
Submitted by:	Steve Wills <swills@freebsd.org>
2012-09-06 10:43:41 +00:00
Mark Linimon
7b1a593eed Anton notes that this does build on ia64. 2012-09-06 08:46:25 +00:00
Steve Wills
ad9f558005 - Fix plist
- Use CPAN macro for SUBDIR

PR:		ports/170839
Approved by:	Muhammad Moinur Rahman <5u623l20@gmail.com> (maintainer)
2012-09-06 07:28:21 +00:00
Steve Wills
6c963a0f7b - Fix issue with installing packages [1]
- Fix shell config issue [2]

PR:		ports/169481 [1]
PR:		ports/171188 [2]
Submitted by:	romain [1]
Submitted by:	Christopher McCoy <syseng@wayfair.com> [2]
2012-09-06 06:15:28 +00:00
Steve Wills
9bcbee8d57 - Convert to OptionsNG
PR:		ports/171336
Submitted by:	Masaki TAGAWA <masaki@club.kyutech.ac.jp> (maintainer)
2012-09-06 06:12:30 +00:00
Eygene Ryabinkin
2fdbfc0e43 VuXML: add <modified> tag for Wireshark's entry for CVE-2012-3548 2012-09-06 06:10:41 +00:00
Jason Helfman
6efa790b09 - fix build on clang
PR:	171298
Submitted by:	pawel.worach@gmail.com
2012-09-06 06:06:51 +00:00
Cy Schubert
215eb3829e Update 4.2.7p295 --> 4.2.7p303 2012-09-06 05:57:58 +00:00
Steve Wills
2131ecfbe6 - Update to 4.08
PR:		ports/171077
Approved by:	Vladimir Timofeev <vovkasm@gmail.com> (maintainer)
2012-09-06 05:53:09 +00:00
Steve Wills
ea9033674d - Convert ruby-gnome ports to proper master/slave setup
Reviewed by:	gjb
2012-09-06 05:28:49 +00:00
Olli Hauer
7ac87c1460 - remove apache13 support
- use DOS2UNIX macro
- rewrite for options NG
- use USE_XXX macros instead (BUILD|RUN)_DEPENDS

PR:		170752
Submitted by:	ohauer@
Approved by:	maintainer timeout
2012-09-06 05:22:27 +00:00
Steve Wills
7efb9d3e37 - Fix repcached support
Pointed out by:		gjb
Pointyhat to:		swills
2012-09-06 05:16:51 +00:00
Steve Wills
809f5a2bb8 PACKTER is a free and opensource software for visualization of Internet
traffic.
PACKTER systems are composed of Packter Viewer and Packter Agent.
Packter Viewer draws a flying object by receiving Packter Protocol from
Packter Agent.

WWW: http://www.packter.net

PR:		ports/171334
Submitted by:	Masaki TAGAWA <masaki@club.kyutech.ac.jp>
2012-09-06 04:58:09 +00:00
Steve Wills
25ef166ccc - Update to 2.20
PR:		ports/170840
Approved by:	Muhammad Moinur Rahman <5u623l20@gmail.com> (maintainer)
2012-09-06 04:47:49 +00:00
Steve Wills
0d2451c60e - Update to 1.218
PR:		ports/171072
Approved by:	sahil (maintainer)
2012-09-06 04:45:01 +00:00
Ryan Steinmetz
0b7bc99a1c - Fix issues in rc script + pkg-message
Submitted by:	Karsten Schmidt <gugge@guggemand.dk>
2012-09-06 03:03:47 +00:00
Ryan Steinmetz
a395d8322f - Update to 4.07 2012-09-06 02:30:30 +00:00
Ryan Steinmetz
6c0b252894 - Update to 1.3.1 2012-09-06 02:17:32 +00:00
Ryan Steinmetz
03712c6e95 - Add in workaround for compatibility with libhtp >= 0.3
- Bump PORTREVISION
2012-09-06 02:07:34 +00:00
Ryan Steinmetz
1975fc87b7 - Link against required libiconv
- Fix build when using custom PREFIX/LOCALBASE
- Bump PORTREVISION

Approved by:	wxs (maintainer)
2012-09-06 02:06:37 +00:00
Jason Helfman
770c2c4a1a - update maintainer address
Approved by:	maintainer, Nick Dewing (implicit)
2012-09-05 22:55:51 +00:00
Jason Helfman
4eaf4efc7d - typo
Spotted by: beat@
2012-09-05 22:53:54 +00:00
Nicola Vitale
e228584694 Documentation of Jinja2 template engine.
WWW: http://jinja.pocoo.org/docs/
2012-09-05 22:00:27 +00:00
Nicola Vitale
0521aa487f - Update WWW, and remove Author field (pkg-descr)
- Bump PORTREVISION (change pkg-plist)
- Convert to the new options framework
- Remove LICENSE_FILE variable
- Remove address no longer available from MASTER_SITES
- Run 2to3 script on examples/docs dir, and include
  devel/py-virtualenv/files/py3-fix-pkg-plist.inc when
  Python version >= 3.0
- Rearrange Makefile to support a slave port (Jinja2-doc),
  that only installs documentation. That is to avoid a
  circular dependency between this port and textproc/py-sphinx,
  which is necessary to build docs
- Add a test target to Makefile

BuildLog:	http://goo.gl/yfMhR
2012-09-05 21:56:12 +00:00
Jason Helfman
2b944a8741 - follow r303724 shlib bump of libvirt 2012-09-05 21:48:20 +00:00
Jason Helfman
38e6819bf1 - update to 0.10.1, includes shlib bump
Changes: http://libvirt.org/news.html
2012-09-05 21:46:30 +00:00
TAKATSU Tomonari
2ae7b83911 - Fix comparison logic to determin RUBY_VER
Pointed out by:	bdrewery
2012-09-05 20:56:36 +00:00
Juergen Lock
4faf948d76 - Add patch for (possible) compilation failure - even though the
CXXFLAGS used in the PR are not supported. [1]
- Fix runtime issue receiving UDP multicast streams. [2]
- Bump PORTREVISION.

PR:		ports/171341 [1]
Submitted by:	arrowdodger <6yearold@gmail.com> [1]
Reported by:	Sulev-Madis Silber <madis555@hot.ee> (via private
		email) [2]
2012-09-05 20:37:05 +00:00
Kris Moore
d2ec6995ec - Update to 1.0 2012-09-05 19:21:31 +00:00
Kris Moore
b525e1ffc4 - Update to 1.0 2012-09-05 19:19:44 +00:00