| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Approved by: portmgr (bapt@)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Remove shlib versions
- Add USE_READLINE and USES= pkgconfig
- Update CPPFLAGS and LDFLAGS
- Update pkg-descr
- Update x11-toolkits/rep-gtk2 to 0.90.8.1
- Update x11-wm/sawfish to 1.9.1
- Add ART20 license and set LICENSE_COMB to multi
- Update USE_XORG to include xtst
- Add USES= pkgconfig
- Add PORTSCOUT to exclude unstable releases
- Trim Makefile headers
- Update MASTER_SITES
PR: ports/170173
Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com>
Approved by: beat (mentor)
|
|
|
|
|
|
|
|
|
|
|
|
| |
Additionally:
1) A pre-generated reference manual has been added as a second distfile and is installed
2) License added
3) DESTDIR support added (comes from pkgsrc) (will be useful once staging will hit the tree)
4) gcc 4.7-specific patches
5) PLIST order alphabetically and fix issues with it.
PR: ports/178145
Submitted by: John Marino <draco@marino.st>
|
| |
|
|
|
|
|
|
|
| |
For a while now bsdtar is able to autotermine compression and archive format.
Let's then use tar directly instead of piping to tar.
Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Gstreamer multimedia framework.
Use the USE_GSTREAMER1 macro to select Gstreamer 1.0 plugins. A new chapter
for the porters handbook about gstreamer is a work in progress.
X related plugins are now stand alone. The gio plugin is now part of the
gstreamer1-plugins port and the oss plugins are now part of the
gstreamer1-plugins-good port.
Note that the pulseaudio plugin is missing because it needs a newer version
of pulseaudio. Also there are still a number of plugins from -bad which
haven't been ported to the 1.0 API yet.
|
| |
|
|
|
|
| |
Approved by: portmgr (bapt)
|
|
|
|
| |
Approved by: portmgr (bapt)
|
|
|
|
| |
Approved by: portmgr (bapt)
|
|
|
|
|
| |
- Remove outdated PERL_LEVEL check
- Cleanup Makefile header
|
|
|
|
|
| |
- Remove outdated PERL_LEVEL check
- Cleanup Makefile header
|
| |
|
|
|
|
|
| |
Changes:
* Check index out of bounds in FXTabBook::setCurrent().
|
| |
|
|
|
|
|
|
| |
- Remove references to Tcl/Tk 8.3 from bsd.tcl.mk
- Update ports that required 8.3+ to require 8.4+ (since 8.5 is the
default, I don't expect this change to cause much trouble)
|
|
|
|
|
|
| |
- Update Enlightenment to 0.17.2.1
Approved by: crees (mentor)
|
|
|
|
| |
Approved by: makc @#kde-freebsd/freenode
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
were set based on WRKSRC instead of PREFIX.
This mainly affected TEA-based extensions that source tclConfig.sh /
tkConfig.sh to set important variables. An example is TCL_SRC_DIR, which
is used to locate Tcl/Tk private header files such as tclUnixPort.h or
tkUnixPort.h. This variable was previously set to WRKSRC, which caused
ports to need additional tweaks to CFLAGS or CONFIGURE_ARGS.
It should now be possible to build TEA-based extensions by specifying only
the CONFIGURE_ARGS --with-tcl=${TCL_LIBDIR} / --with-tk=${TK_LIBDIR}.
Feature safe: yes
Approved by: bapt (portmgr)
|
|
|
|
|
|
| |
- drop maintainership
cause options where removed
Feature safe: yes
|
|
|
|
|
|
|
|
| |
I/usr/local/include -DUSE_XIM -c rbgdkcursor.c
rbgdkcursor.c:48:27: error: rbgdkcursors.h: No such file or directory
*** Error code 1
Feature safe: yes
|
|
|
|
|
|
| |
Release notes: http://code.activestate.com/lists/tcl-core/13208/
Feature safe: yes
|
|
|
|
|
| |
PR: ports/177023
Submitted by: Bojan Petrovic <bojan_petrovic@fastmail.fm>
|
|
|
|
|
| |
- Fix COMMENT
- Trim header
|
|
|
|
|
|
|
|
| |
- trim Makefile header, while here
PR: 177350
Submitted by: John Marino <draco@marino.st>
Obtained from: DragonFly BSD
|
|
|
|
| |
Most contributors copy an existing port when writing their own so reduce the number of bad examples in the tree.
|
|
|
|
| |
Reviewed by: miwi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes:
* Totally revamped implementation of FXThreadPool. The new FXThreadPool
is organized about a lock-free queue, with semaphores managing
synchronization between producer- and worker-threads. Thus, threads
never block unless two edge conditions are reached: either the
task-queue is empty, in which case worker threads will block (nothing
to do), or task queue is filled up, and producer thread will block
(no room in queue). An important new capability is for an additional
thread to enter into the task-processing loop temporarily. Finally,
the thread starting FXThreadPool, as well as the worker threads
belonging to the FXThreadPool now have a thread-local variable
referencing the FXThreadPool. This allows the threads involved to
locate the address of the FXThreadPool, for instance to create an
FXTaskGroup.
* New FXTaskGroup class manages groups of task to be executed in parallel
on a FXThreadPool. Tasks started through the FXTaskGroup interface are
guaranteed to be completed within the lifetime of the FXTaskGroup
instance.
* New FXParallelInvoke and FXParallelFor template functions to implement
parallel function call, and parallel for loop. This uses the new
FXTaskGroup, and indirectly, FXThreadPool.
* Pass optional stacksize when constructing FXWorker. Added stacksize
option to FXThreadPool with which new workers will be started.
* FXBarrier wait primitive now sports API's to change break-through
threshold, and forced-release option.
* FXSemaphore now has API's for timed wait, and try-wait for non-blocking
semaphore decrement.
* Added additional atomic variable types in FXAtomic.h.
* Added check for maximum dash-pattern length in FXDC and FXDCWindow.
* Fixed some issues with FXStat of files.
* Off-by-one error fixed in FXRex counted repeat of complex subpatterns.
* Clear internal text pointers in FXRex prior to a match.
* Added a few missing print-patterns to Adie.stx syntax file.
* Added FXSemaphore-protected queue class FXSemaQueue; this is itself a
wrapper around FXPtrQueue.
* Added lock-free queue class FXLFQueue.
* Numeric conversion issues fixed in fxstrtod.cpp; in particular, some
corner cases now give more accurate results.
* The function fxscanf.cpp does no longer eat the "e" when scanning for a
number, unless actually followed by digits.
* Switch to statvfs() from statfs() in FXStat.
* Indexing operator added to FXAutoPtr.
* Added new class FXScopedThread. FXScopedThread automatically performs a
join() upon destruction.
|
|
|
|
| |
"pathfix" instead.
|
| |
|
|
|
|
|
|
|
| |
While here, trim header, use USES=pathfix, and remove pre.mk/post.mk because
they aren't needed.
Submitted by: miwi [1]
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/177315
Approved by: tabthorpe (mentor)
|
|
|
|
| |
- Trim Makefile headers
|
|
|
|
|
|
|
| |
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi)
|
| |
|
|
|
|
| |
Reported by: Larry Baird <lab@gta.com>
|
| |
|
|
|
|
|
|
| |
Gtk+ 3 C++ bindings for gtksourceview3.
Obtained from: gnome team repo
|
|
|
|
|
|
|
| |
GtkSourceView is a text widget for Gtk+-3 that provides syntax highlighting
and other features typically expected in a source code editor.
Obtained from: gnome team repo
|
|
|
|
|
|
| |
Use USES=pathfix instead of gnomehack.
Obtained from: gnome team repo
|
|
|
|
| |
Obtained from: gnome team repo
|
|
|
|
|
|
| |
Unique is a library for writing single instance application. If you launch a
single instance application twice, the second instance will either just quit
or will send a message to the running instance.
|
|
|
|
|
|
|
|
|
| |
If a port used other USE_GNOME items it was untouched.
The ports that used other USES were fixed by hand.
PR: ports/177081
Reviewed by: bapt
Approved by: portmgr (miwi)
|
|
|
|
|
|
|
| |
instead of gnomehack and pet portlint.
Add conflicts with future gnome3 versions.
Reviewed by: miwi, bapt
|
|
|
|
|
|
|
|
| |
headers.
This should fix strange build failure in nautilus with glib-2.34.
Submitted by: Kevin Oberman <rkoberman@gmail.com>
|
|
|
|
|
|
|
|
| |
While here convert to OptionsNG.
PR: ports/176963
Submitted by: Lawrence Chen <beastie@tardisi.com>
Obtained from: upstream git / Gnome bug 663779
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Update to 0.6.21
* Add LICENSE
* Switch to OptionsNG and PORTDOCS
- Document libexif 2012-07-12 vulnerabilty
- Bump PORTREVISION for libexif related ports
- Trim headers while here
PR: ports/175910
Approved by: swills (mentor)
Security: d881d254-70c6-11e2-862d-080027a5ec9a
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
PR: 176928
PR: 176936
PR: 176937
PR: 176938
PR: 176939
PR: 176940
PR: 176941
PR: 176942
PR: 176943
PR: 176944
PR: 176945
Submitted by: jgh@
Approved by: portmgr (miwi)
|
|
|
|
| |
there also remove a useless global XAWVER PLIST_SUB
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
It brings bison as a build dependency in case it is set the following way:
USES= bison or USES= bison:build
it brings bison as a run dependency in case it is set the following way:
USES= bison:run
it brings bison both as a run and build dependency in case it the set the following way:
USES= bison:both
While here trim some headers
Convert some USE_GNOME= gnomehack to USES= pathfix
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
are the latest stable releases.
* Update vala to the newest stable release 0.18.1, also update a few ports
in the gtk/gnome stack.
* The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles.
* Remove pkg-config run depends from glib20 and freetype2. This doesn't
eliminate pkg-config run dependency completely, a second phase is needed
and is planned.
* Support for .:run. and .:build. for USE_GNOME components was added.
Currently only libxml2 and libxslt support this mechanism.
* Updates of the telepathy stack and empathy.
* Trim makefile headers, convert ports to new options, trim off library
versions for some ports.
* Fix other ports so they build with the new glib version.
Thanks to miwi and crees for helping out with some exp-runs.
Approved by: portmgr (miwi & bapt)
Obtained from: gnome team repo
|
|
|
|
|
|
|
|
|
|
|
| |
these ports [1]
- Trim headers
- Remove indefinite article from COMMENT
- Convert tab to space in WWW lines
PR: ports/175415 [1]
Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> [1]
Discussed with: bapt
|
|
|
|
|
|
|
| |
dependent ports
PR: 144982, 149958
Reviewed by: johans (earlier version of the patch)
|
| |
|
|
|
|
|
|
|
| |
experimental anymore and XFT=1 is turned on by default.
PR: ports/174881
Submitted by: Slaven Rezic <slaven@rezic.de>
|
|
|
|
|
| |
Pointyhat to: swills
Reported by: bapt
|
|
|
|
|
| |
Pointyhat to: swills
Reported by: bapt
|
| |
|
|
|
|
|
|
|
|
| |
- Set expiration to 2 months to give plenty of time to fix them to anyone who
may be interested (patching rubygem- ports is possible now)
- Trim headers while here
With Hat: ruby@
|
|
|
|
|
|
|
|
| |
- Set expiration to 2 months to give plenty of time to fix them to anyone who
may be interested (patching rubygem- ports is possible now)
- Trim headers while here
With Hat: ruby@
|
|
|
|
|
|
| |
with other standard libraries (${PYTHON_LIBDIR}/lib-dynload)
- Improve consistency of the Makefile(s)
- Whitespace cleanup for the patches
|
|
|
|
|
| |
PR: ports/176457
Submitted by: Naram Qashat (maintainer)
|
| |
|
|
|
|
|
|
|
|
| |
- Convert to OptionsNG
PR: ports/175937
Submitted by: myself
Approved by: maintainer timeout
|
|
|
|
| |
- While at it, trim Makefile headers
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
- Convert Makefile header to new style if needed
Approved by: swills (mentor)
|
|
|
|
| |
Reported by: decke
|
|
|
|
|
| |
commit.
- Clean left-overs
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Release notes: http://www.tcl.tk/software/tcltk/8.6.html
- Get rid of -thread slaves ports: threads are now enabled by
default and can be OPTIONally disabled. This applies to:
* lang/tcl84
* lang/tcl85
* lang/tcl86
* x11-toolkits/tk84
* x11-toolkits/tk85
* x11-toolkits/tk86
- Get rid of tcl-modules slave port: modules are now installed by default and
can be OPTIONally disabled. This applies to:
* lang/tcl85
* lang/tcl86
- Fix conflicts between man pages of different Tcl/Tk versions, by adding a
suffix (tcl84, tcl85, tcl86, tk84, tk85, and tk86).
Reviewed by: bf, crees
Approved by: bapt (portmgr, after partial exp-run)
|
|
|
|
| |
Reported by: bapt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
devel/libffi update
- Enable multithreaded build for lang/ghc (i.e. mark MAKE_JOBS_SAFE)
Please note that port revision for all the Haskell ports without version
changes are bumped.
New ports (20):
devel/hs-MonadRandom 0.1.8
devel/hs-base64-conduit 0.5.1
devel/hs-bifunctors 3.2
devel/hs-either 3.1
devel/hs-errors 1.3.1
devel/hs-generic-deriving 1.4.0
devel/hs-lens 3.8.5
devel/hs-profunctor-extras 3.3
devel/hs-profunctors 3.2
devel/hs-reflection 1.1.6
devel/hs-timezone-olson 0.1.2
devel/hs-timezone-series 0.1.2
math/hs-comonads-fd 3.0.1
math/hs-groupoids 3.0.1.1
math/hs-nats 0.1
math/hs-semigroupoid-extras 3.0.1
security/hs-cipher-rc4 0.1.2
security/hs-crypto-numbers 0.1.3
security/hs-crypto-pubkey 0.1.2
security/hs-crypto-random-api 0.2.0
Updated ports (107):
archivers/hs-zip-archive 0.1.2.1 --> 0.1.3.3
archivers/hs-zlib-bindings 0.1.1.2 --> 0.1.1.3
audio/hs-libmpd 0.8.0.1 --> 0.8.0.2
benchmarks/hs-criterion 0.6.2.0 --> 0.6.2.1
converters/hs-aeson 0.6.0.2_2 --> 0.6.1.0
converters/hs-dataenc 0.14.0.4 --> 0.14.0.5
databases/hs-persistent 1.0.2.2 --> 1.1.4
databases/hs-persistent-sqlite 1.0.1 --> 1.1.2
databases/hs-persistent-template 1.0.0.2 --> 1.1.2.1
devel/hs-BNFC 2.4.2.1_1 --> 2.6.0.3
devel/hs-Boolean 0.1.1 --> 0.1.2
devel/hs-TypeCompose 0.9.7 --> 0.9.9
devel/hs-ansi-terminal 0.5.5_5 --> 0.5.5.1
devel/hs-ansi-wl-pprint 0.6.4_3 --> 0.6.6
devel/hs-basic-prelude 0.3.1.0 --> 0.3.2.0
devel/hs-checkers 0.2.9_2 --> 0.3.1
devel/hs-classy-prelude 0.4.1 --> 0.4.3
devel/hs-classy-prelude-conduit 0.4.1 --> 0.4.3
devel/hs-conduit 0.5.5 --> 0.5.6
devel/hs-configurator 0.2.0.1 --> 0.2.0.2
devel/hs-cpphs 1.15 --> 1.16
devel/hs-edit-distance 0.2.1.1 --> 0.2.1.2
devel/hs-file-embed 0.0.4.6 --> 0.0.4.7
devel/hs-filestore 0.5.0.1 --> 0.6
devel/hs-fsnotify 0.0.4 --> 0.0.6
devel/hs-ghc-paths 0.1.0.8_5 --> 0.1.0.9
devel/hs-git-annex 3.20121211 --> 3.20130124
devel/hs-hashable 1.1.2.5 --> 1.2.0.5
devel/hs-hastache 0.4.2 --> 0.5.0
devel/hs-hlint 1.8.39 --> 1.8.43
devel/hs-hoogle 4.2.14 --> 4.2.15
devel/hs-hspec 1.4.2 --> 1.4.3
devel/hs-largeword 1.0.3 --> 1.0.4
devel/hs-lifted-base 0.2 --> 0.2.0.2
devel/hs-monad-logger 0.2.3 --> 0.2.3.2
devel/hs-optparse-applicative 0.4.2 --> 0.5.2.1
devel/hs-pool-conduit 0.1.0.3 --> 0.1.1
devel/hs-project-template 0.1.0.1 --> 0.1.1
devel/hs-silently 1.2.4 --> 1.2.4.1
devel/hs-smallcheck 0.6.1_2 --> 0.6.2
devel/hs-system-fileio 0.3.10 --> 0.3.11
devel/hs-unix-compat 0.4.0.0 --> 0.4.1.0
devel/hs-unordered-containers 0.2.2.1 --> 0.2.3.0
devel/hs-vault 0.2.0.1 --> 0.2.0.4
devel/hs-void 0.5.8 --> 0.5.11
devel/hs-word8 0.0.2 --> 0.0.3
mail/hs-mime-types 0.1.0.0 --> 0.1.0.2
math/hs-categories 1.0.4 --> 1.0.5
math/hs-comonad 3.0.0.2 --> 3.0.1.1
math/hs-comonad-transformers 3.0 --> 3.0.1
math/hs-distributive 0.2.2_2 --> 0.3
math/hs-pointed 3.0.1 --> 3.0.2
math/hs-semigroupoids 3.0.0.1 --> 3.0.2
math/hs-semigroups 0.8.4.1 --> 0.9
net/hs-network-conduit 0.6.1.1 --> 0.6.2.2
net/hs-simple-sendfile 0.2.8 --> 0.2.10
print/hs-hscolour 1.20.3,1 --> 1.20.3_1,1
security/hs-certificate 1.3.3 --> 1.3.5
security/hs-cipher-aes 0.1.5 --> 0.1.7
security/hs-clientsession 0.8.0.1 --> 0.8.1
security/hs-cprng-aes 0.2.4 --> 0.3.4
security/hs-crypto-conduit 0.4.1 --> 0.4.3
security/hs-cryptocipher 0.3.6 --> 0.4.0
security/hs-cryptohash 0.7.9 --> 0.8.3
security/hs-pem 0.1.1_2 --> 0.1.2
security/hs-skein 0.1.0.10 --> 0.1.0.11
security/hs-tls 1.0.2 --> 1.1.1
security/hs-tls-extra 0.5.0 --> 0.6.1
sysutils/hs-angel 0.3.3 --> 0.3.4
textproc/hs-Diff 0.1.3_3 --> 0.2.0
textproc/hs-attoparsec 0.10.2.0_2 --> 0.10.3.0
textproc/hs-blaze-html 0.5.1.1 --> 0.5.1.3
textproc/hs-blaze-markup 0.5.1.2 --> 0.5.1.4
textproc/hs-case-insensitive 0.4.0.3 --> 0.4.0.4
textproc/hs-citeproc-hs 0.3.6 --> 0.3.7
textproc/hs-double-conversion 0.2.0.5 --> 0.2.0.6
textproc/hs-highlighting-kate 0.5.3.3 --> 0.5.3.5
textproc/hs-hs-bibutils 4.15 --> 4.16
textproc/hs-regex-pcre-builtin 0.94.4.3.8.31 --> 0.94.4.5.8.31
textproc/hs-texmath 0.6.1.1 --> 0.6.1.3
textproc/hs-yaml 0.8.1.1 --> 0.8.2
www/hs-gitit 0.10.0.2 --> 0.10.1.2
www/hs-hamlet 1.1.1.1 --> 1.1.3.1
www/hs-heist 0.8.2 --> 0.11.0
www/hs-hjsmin 0.1.3 --> 0.1.4
www/hs-http-conduit 1.8.4.3 --> 1.8.7
www/hs-http-date 0.0.3 --> 0.0.4
www/hs-http-reverse-proxy 0.1.0.6 --> 0.1.1.1
www/hs-shakespeare-js 1.1.0 --> 1.1.1
www/hs-snap 0.9.2.2 --> 0.11.0
www/hs-wai-app-static 1.3.0.4 --> 1.3.1_1
www/hs-wai-extra 1.3.0.4 --> 1.3.2
www/hs-warp 1.3.5 --> 1.3.7.1
www/hs-xss-sanitize 0.3.2_2 --> 0.3.3
www/hs-yesod 1.1.4.1 --> 1.1.7.2
www/hs-yesod-auth 1.1.2 --> 1.1.3
www/hs-yesod-core 1.1.6.1 --> 1.1.7.1
www/hs-yesod-default 1.1.2 --> 1.1.3
www/hs-yesod-form 1.2.0.1 --> 1.2.0.2
www/hs-yesod-persistent 1.1.0 --> 1.1.0.1
www/hs-yesod-platform 1.1.5 --> 1.1.7.2
www/hs-yesod-static 1.1.1.1 --> 1.1.1.2
www/hs-yesod-test 0.3.1.1 --> 0.3.3
x11-wm/hs-xmonad 0.10_4 --> 0.11
x11-wm/hs-xmonad-contrib 0.10_4 --> 0.11
x11/hs-X11 1.5.0.1_3 --> 1.6.0.2
x11/hs-xmobar 0.14_3 --> 0.16
Obtained from: FreeBSD Haskell
|
|
|
|
| |
- Chase shlib version bump for dependant ports
|
| |
|
|
|
|
| |
Notified by: bapt, makc
|
|
|
|
|
| |
- Undeprecate
- Take maintainership
|
|
|
|
|
| |
Tcl/Tk 8.3 has been long unmaintained upstream, with the last release almost
10 years ago.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- kdebindings ports have been renamed to match upstream.
- kdemultimedia and kdenetwork have been split.
- New port games/pairs added.
- Trim Makefile header
- Convert to new option framework
- New USE_KDE4 components: libkcddb, libkcompactdisc
- Update:
databases/akonadi to 1.9.0
devel/grantlee to 0.3.0
textproc/rasqal to 0.9.30
textproc/redland-bindings to 1.0.16.1
textproc/soprano to 2.9.0
x11-toolkits/attica to 0.4.1
The area51 repository features commits by Schaich Alonso, avilla, dbn,
jhale, makc and rakuco.
Contributors:
- Oleg Sidorkin
- Tobias Berner
- Kurt Jaeger
|
|
|
|
|
| |
x11-toolkits/py-qt:
- mark BROKEN: does not build with latest devel/py-sip
|
|
|
|
|
|
|
|
|
|
|
|
| |
SIP 4.14.3
QScintilla 2.7
PyQt 4.9.6
The area51 repository features commits by jhale and myself.
Changes:
- Trim Makefile header
- Convert to new option framework
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The area51 repository features commits by Alonso Schaich, avilla, fluffy,
jhale, makc and rakuco.
Common changes:
- Trim Makefile header
- Convert to new option framework
- Add/improve desktop entries
- Remove upstreamed patches
Mk/bsd.qt.mk:
- Set QMAKESPEC at late stage (to fix potential problem if USE_GCC is used) [1]
devel/qmake:
- Fix crash due to off-by one error [2]
multimedia/qt4-phonon*:
- Deprecate in favour of multimedia/phonon*
www/qt4-webkit:
- Make dependence on GStreamer optional [3]
devel/qtcreator:
- Enable qml-designer in devel/qtcreator (requires privite Qt headers) [4]
Reported by: avg via irc [1]
Submitted by: avg via maillist [2]
PR: ports/175644 [3]
Submitted by: danfe [3]
PR: ports/169809 [4]
Reported by: tcb <tcberner at gmail.com> [4]
|
|
|
|
| |
Approved by: portmgr (bapt)
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Submitted by: trevor
With hat: portmgr
|
| |
|
|
|
|
| |
- strip shlibversion in depedency
|
|
|
|
|
|
|
| |
While here trim Makefile header, remove shlib version in LIB_DEPENDS
and register conflict in nautilus.
Obtained from: gnome staging area.
|
|
|
|
|
|
|
|
| |
- Give maintainership to submitter
- Update BUILD_DEPENDS
PR: ports/174853
Submitted by: Po-Chien Lin <linpc@cs.nctu.edu.tw>
|
|
|
|
| |
- Use OptionsNG NLS knob
|
|
|
|
|
|
|
|
|
| |
- Give maintainership to submitter
- Add LICENSE (ART10 and GPLv1)
- Rearrange section order, sort MAN3, cleanup TABs
PR: ports/175445
Submitted by: Po-Chien Lin <linpc@cs.nctu.edu.tw>
|
|
|
|
|
| |
PR: ports/175395, ports/175396
Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
|
|
|
|
|
|
| |
- Change master site to download.enlightenment.fr
Approved by: tabthorpe (mentor)
|
|
|
|
| |
Changes: http://cpansearch.perl.org/src/KARASIK/Prima-1.36/HISTORY
|
|
|
|
|
|
|
|
| |
for both make options work as expected (previous version were missing include <bsd.port.options.mk>)
for databases/py-pyPgSQL reverse the logic for the option test so that it
actually works as expected
Approved by: python (crees)
|
|
|
|
| |
comms/efax-gtk: update to version 3.2.11
|
|
|
|
|
| |
care about those header, so you even can claim that those were created by
you instead of me.
|
| |
|
|
|
|
| |
Discussed with: bapt
|
|
|
|
|
|
|
|
| |
was released in 2007 and KDE 3.5.10 in 2008 and both are no longer
maintained upstream nor in our tree.
- Set EXPIRATION_DATE to 2013-07-01
Discussed with: bapt, tabthorpe
|
|
|
|
|
|
|
| |
While here trim headers
Explicitly set USE_PKGCONFIG=build where needed
Approved by: pav
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE
- Pass maintainership to submitter
- Convert to new Makefile header
PR: ports/174756 (based on)
Submitted by: nemysis <nemysis_AT_gmx_DOT_ch>
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE
- Pass maintainership to submitter
- Convert to new Makefile header
PR: ports/174754 (based on)
Submitted by: nemysis <nemysis_AT_gmx_DOT_ch>
|
|
|
|
| |
Approved by: crees (mentor)
|
|
|
|
|
|
|
| |
- Update EFL to 1.7.4
- Convert to OptionsNG
Approved by: crees (mentor)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update Haskell Platform to version 2012.4.0.0
- Update Gtk2Hs to 0.12.4
- Transfer maintainership of math/hs-math-functions to haskell@ [1]
Please note that port revisions for all the Haskell ports without version
changes are bumped.
Some further highlights of the update:
- Trim Makefile headers
- Enable dynamic libraries and dynamic linking by default
- Enable bootstrapping by versions of GHC and HsColour already installed
- Use GCC and binutils from ports
New ports (32):
devel/hs-List 0.5.1
devel/hs-ReadArgs 1.2.1
devel/hs-SafeSemaphore 0.9.0
devel/hs-activehs-base 0.3.0.2
devel/hs-async 2.0.1.3
devel/hs-basic-prelude 0.3.1.0
devel/hs-classy-prelude 0.4.1
devel/hs-classy-prelude-conduit 0.4.1
devel/hs-data-pprint 0.2.1.4
devel/hs-date-cache 0.3.0
devel/hs-fsnotify 0.0.4
devel/hs-hinotify 0.3.5
devel/hs-hspec-expectations 0.3.0.3
devel/hs-kqueue 0.1.2.4
devel/hs-monad-logger 0.2.3
devel/hs-optparse-applicative 0.4.2
devel/hs-project-template 0.1.0.1
devel/hs-setenv 0.1.0
devel/hs-simple-reflect 0.2
devel/hs-threads 0.5.0.1
devel/hs-time-compat 0.1.0.2
devel/hs-unix-time 0.1.4
devel/hs-word8 0.0.2
graphics/hs-dia-base 0.1.1.2
graphics/hs-dia-functions 0.2.1.3
mail/hs-mime-types 0.1.0.0
net/hs-network-info 0.2.0.3
net/hs-network-multicast 0.0.7
security/hs-cipher-aes 0.1.5
textproc/hs-hexpat 0.20.3
www/hs-activehs 0.3.0.1
www/hs-http-reverse-proxy 0.1.0.6
Updated ports (211):
archivers/hs-tar 0.4.0.0_1 --> 0.4.0.1
archivers/hs-zip-archive 0.1.1.8_1 --> 0.1.2.1
archivers/hs-zlib 0.5.3.3_1 --> 0.5.4.0
archivers/hs-zlib-bindings 0.1.0.1_1 --> 0.1.1.2
archivers/hs-zlib-conduit 0.4.0.2 --> 0.5.0.3
archivers/hs-zlib-enum 0.2.2.1_1 --> 0.2.3
audio/hs-libmpd 0.8.0_1 --> 0.8.0.1
benchmarks/hs-criterion 0.6.0.1_2 --> 0.6.2.0
converters/hs-dataenc 0.14.0.3_2 --> 0.14.0.4
converters/hs-json 0.5_1 --> 0.7
databases/hs-persistent 0.9.0.4_1 --> 1.0.2.2
databases/hs-persistent-sqlite 0.9.0.2_1 --> 1.0.1
databases/hs-persistent-template 0.9.0.2_1 --> 1.0.0.2
devel/hs-Boolean 0.0.1_5 --> 0.1.1
devel/hs-DeepArrow 0.3.5_2 --> 0.3.7
devel/hs-HUnit 1.2.4.2_2 --> 1.2.5.1
devel/hs-MemoTrie 0.5_1 --> 0.6.1
devel/hs-MissingH 1.1.1.0_2 --> 1.2.0.0
devel/hs-MonadCatchIO-mtl 0.3.0.4_3 --> 0.3.0.5
devel/hs-QuickCheck 2.4.2_1 --> 2.5.1.1
devel/hs-Stream 0.4.6_2 --> 0.4.6.1
devel/hs-TypeCompose 0.9.1_2 --> 0.9.7
devel/hs-abstract-deque 0.1.5_1 --> 0.1.6
devel/hs-alex 3.0.1_1 --> 3.0.2
devel/hs-arrows 0.4.4.0_4 --> 0.4.4.1
devel/hs-asn1-data 0.6.1.3_1 --> 0.7.1
devel/hs-base-unicode-symbols 0.2.2.3_2 --> 0.2.2.4
devel/hs-base64-bytestring 0.1.2.0 --> 1.0.0.0
devel/hs-blaze-builder-conduit 0.4.0.2_1 --> 0.5.0.3
devel/hs-blaze-builder-enumerator 0.2.0.4_1 --> 0.2.0.5
devel/hs-blaze-textual 0.2.0.6_2 --> 0.2.0.8
devel/hs-bytestring-nums 0.3.5_2 --> 0.3.6
devel/hs-c2hs 0.16.3_3 --> 0.16.4
devel/hs-cmdargs 0.9.5_1 --> 0.10.1
devel/hs-conduit 0.4.2_1 --> 0.5.5
devel/hs-configurator 0.2.0.0_2 --> 0.2.0.1
devel/hs-cpphs 1.14 --> 1.15
devel/hs-darcs 2.8.1_1 --> 2.8.3
devel/hs-data-default 0.4.0_1 --> 0.5.0
devel/hs-directory-tree 0.10.1 --> 0.11.0
devel/hs-edit-distance 0.2.1_1 --> 0.2.1.1
devel/hs-fast-logger 0.0.2_2 --> 0.3.1
devel/hs-file-embed 0.0.4.4_1 --> 0.0.4.6
devel/hs-filemanip 0.3.5.2_6 --> 0.3.6.2
devel/hs-filestore 0.5_1 --> 0.5.0.1
devel/hs-filesystem-conduit 0.4.0_1 --> 0.5.0.2
devel/hs-gconf 0.12.1_3 --> 0.12.1.1
devel/hs-ghc-events 0.4.0.0_2 --> 0.4.2.0
devel/hs-ghc-mtl 1.0.1.1_2 --> 1.0.1.2
devel/hs-gio 0.12.3_1 --> 0.12.4
devel/hs-git-annex 3.20120807 --> 3.20121211
devel/hs-glib 0.12.3.1_1 --> 0.12.4
devel/hs-gtk2hs-buildtools 0.12.3.1_1 --> 0.12.4
devel/hs-haddock 2.10.0_1 --> 2.11.0
devel/hs-happy 1.18.9_1 --> 1.18.10
devel/hs-hashable 1.1.2.3_1 --> 1.1.2.5
devel/hs-hashed-storage 0.5.9_2 --> 0.5.10
devel/hs-hashtables 1.0.1.6_1 --> 1.0.1.8
devel/hs-haskell-src-exts 1.13.3_1 --> 1.13.5
devel/hs-hastache 0.4.1 --> 0.4.2
devel/hs-hint 0.3.3.4_1 --> 0.3.3.5
devel/hs-hlint 1.8.30 --> 1.8.39
devel/hs-hoogle 4.2.11_1 --> 4.2.14
devel/hs-hslogger 1.1.5_2 --> 1.2.1
devel/hs-hspec 1.2.0.1 --> 1.4.2
devel/hs-language-javascript 0.5.4_1 --> 0.5.7
devel/hs-largeword 1.0.1_2 --> 1.0.3
devel/hs-lifted-base 0.1.1_1 --> 0.2
devel/hs-logict 0.5.0.1_1 --> 0.5.0.2
devel/hs-monad-control 0.3.1.3_1 --> 0.3.1.4
devel/hs-mtl 2.1.1_1 --> 2.1.2
devel/hs-murmur-hash 0.1.0.5_2 --> 0.1.0.6
devel/hs-parallel 3.2.0.2_1 --> 3.2.0.3
devel/hs-pool-conduit 0.1.0.2_1 --> 0.1.0.3
devel/hs-primitive 0.4.1_2 --> 0.5.0.1
devel/hs-resource-pool 0.2.1.0_1 --> 0.2.1.1
devel/hs-resourcet 0.3.3.1 --> 0.4.4
devel/hs-silently 1.2.0.2 --> 1.2.4
devel/hs-split 0.1.4.3 --> 0.2.1.1
devel/hs-stm 2.3_1 --> 2.4
devel/hs-syb 0.3.6.1_1 --> 0.3.7
devel/hs-syb-with-class 0.6.1.3_2 --> 0.6.1.4
devel/hs-system-fileio 0.3.8 --> 0.3.10
devel/hs-system-filepath 0.4.6_1 --> 0.4.7
devel/hs-tagged 0.4.2.1_1 --> 0.4.4
devel/hs-temporary 1.1.2.3_1 --> 1.1.2.4
devel/hs-terminfo 0.3.2.4 --> 0.3.2.5
devel/hs-test-framework 0.6_1 --> 0.8
devel/hs-test-framework-hunit 0.2.7_2 --> 0.3.0
devel/hs-test-framework-quickcheck2 0.2.12.2_1 --> 0.3.0.1
devel/hs-text 0.11.2.0_1 --> 0.11.2.3
devel/hs-threadscope 0.2.1_3 --> 0.2.2
devel/hs-uniplate 1.6.7_1 --> 1.6.10
devel/hs-unix-compat 0.3.0.1_1 --> 0.4.0.0
devel/hs-unordered-containers 0.2.1.0_1 --> 0.2.2.1
devel/hs-uuagc 0.9.40.3_1 --> 0.9.42.2
devel/hs-uuagc-cabal 1.0.2.0_2 --> 1.0.4.0
devel/hs-vault 0.2.0.0_1 --> 0.2.0.1
devel/hs-vector 0.9.1_2 --> 0.10.0.1
devel/hs-vector-algorithms 0.5.4_1 --> 0.5.4.2
devel/hs-void 0.5.6 --> 0.5.8
ftp/hs-curl 1.3.7_3 --> 1.3.8
graphics/hs-cairo 0.12.3.1_1 --> 0.12.4
lang/hs-unlambda 0.1_6 --> 0.1.3
mail/hs-email-validate 0.2.8_1 --> 0.3.2
mail/hs-mime 0.3.3.2 --> 0.3.4
mail/hs-mime-mail 0.4.1.1_2 --> 0.4.1.2
math/hs-categories 1.0.3_1 --> 1.0.4
math/hs-comonad 1.1.1.6_1 --> 3.0.0.2
math/hs-comonad-transformers 2.1.2 --> 3.0
math/hs-data-lens 2.10.0_1 --> 2.10.2
math/hs-data-lens-template 2.1.5_1 --> 2.1.7
math/hs-math-functions 0.1.1.1_2 --> 0.1.1.2 [1]
math/hs-mwc-random 0.12.0.0_1 --> 0.12.0.1
math/hs-pointed 2.1.0.2_1 --> 3.0.1
math/hs-semigroupoids 1.3.4 --> 3.0.0.1
math/hs-semigroups 0.8.3.2_1 --> 0.8.4.1
math/hs-statistics 0.10.1.0_1 --> 0.10.2.0
math/hs-vector-space 0.8.2 --> 0.8.6
multimedia/hs-gstreamer 0.12.1.1_1 --> 0.12.1.2
net/hs-network 2.3.0.13_1 --> 2.3.1.0
net/hs-network-conduit 0.4.0.1_1 --> 0.6.1.1
net/hs-pcap 0.4.5.1_4 --> 0.4.5.2
net/hs-sendfile 0.7.6_1 --> 0.7.8
net/hs-simple-sendfile 0.2.4 --> 0.2.8
net/hs-socks 0.4.1_1 --> 0.4.2
print/hs-hscolour 1.20.2,1 --> 1.20.3,1
security/hs-Crypto 4.2.5_1 --> 4.2.5.1
security/hs-HsOpenSSL 0.10.3.2 --> 0.10.3.3
security/hs-RSA 1.2.1.0_1 --> 1.2.2.0
security/hs-SHA 1.5.0.1_1 --> 1.6.1
security/hs-certificate 1.2.3_1 --> 1.3.3
security/hs-clientsession 0.7.5_1 --> 0.8.0.1
security/hs-cprng-aes 0.2.3_2 --> 0.2.4
security/hs-crypto-conduit 0.3.2_1 --> 0.4.1
security/hs-crypto-pubkey-types 0.1.1_1 --> 0.2.0
security/hs-cryptocipher 0.3.5 --> 0.3.6
security/hs-cryptohash 0.7.5_1 --> 0.7.9
security/hs-digest 0.0.1.1_1 --> 0.0.1.2
security/hs-monadcryptorandom 0.4.1_1 --> 0.5
security/hs-pureMD5 2.1.0.3_2 --> 2.1.2.1
security/hs-pwstore-fast 2.2_2 --> 2.3
security/hs-skein 0.1.0.7_1 --> 0.1.0.10
security/hs-tls 0.9.5_1 --> 1.0.2
security/hs-tls-extra 0.4.6_1 --> 0.5.0
sysutils/hs-angel 0.3.2_1 --> 0.3.3
textproc/hs-HStringTemplate 0.6.8_2 --> 0.6.12
textproc/hs-attoparsec-conduit 0.4.0.1_1 --> 0.5.0.3
textproc/hs-attoparsec-enumerator 0.3_2 --> 0.3.1
textproc/hs-blaze-html 0.5.0.0 --> 0.5.1.1
textproc/hs-blaze-markup 0.5.1.0_1 --> 0.5.1.2
textproc/hs-case-insensitive 0.4.0.1_2 --> 0.4.0.3
textproc/hs-citeproc-hs 0.3.4_1 --> 0.3.6
textproc/hs-double-conversion 0.2.0.4_2 --> 0.2.0.5
textproc/hs-highlighting-kate 0.5.1_1 --> 0.5.3.3
textproc/hs-hs-bibutils 4.12_4 --> 4.15
textproc/hs-html-conduit 0.0.1_1 --> 0.1.0.4
textproc/hs-hxt 9.2.2_1 --> 9.3.1.1
textproc/hs-lhs2tex 1.17_4 --> 1.18.1
textproc/hs-pandoc 1.9.4.2 --> 1.9.4.5
textproc/hs-parsec 3.1.2_1 --> 3.1.3
textproc/hs-regex-pcre-builtin 0.94.2.1.7.7_4 --> 0.94.4.3.8.31
textproc/hs-regex-posix 0.95.1_2 --> 0.95.2
textproc/hs-stringsearch 0.3.6.3_2 --> 0.3.6.4
textproc/hs-tagsoup 0.12.6_2 --> 0.12.8
textproc/hs-tagstream-conduit 0.3.2_1 --> 0.5.3
textproc/hs-texmath 0.6.0.6_1 --> 0.6.1.1
textproc/hs-xml-conduit 0.7.0.3_1 --> 1.0.3.3
textproc/hs-xml-types 0.3.2 --> 0.3.3
textproc/hs-xmlhtml 0.2.0.2 --> 0.2.0.3
textproc/hs-yaml 0.7.0.3 --> 0.8.1.1
www/hs-HTTP 4000.2.3_1 --> 4000.2.5
www/hs-authenticate 1.2.1.1_1 --> 1.3.2
www/hs-cookie 0.4.0_1 --> 0.4.0.1
www/hs-gitit 0.10.0.1 --> 0.10.0.2
www/hs-hamlet 1.0.1.4 --> 1.1.1.1
www/hs-happstack 7.0.0_1 --> 7.0.1
www/hs-happstack-server 7.0.3 --> 7.1.1
www/hs-heist 0.8.1.1 --> 0.8.2
www/hs-hjsmin 0.1.2_1 --> 0.1.3
www/hs-http-conduit 1.4.1.10 --> 1.8.4.3
www/hs-http-date 0.0.2_1 --> 0.0.3
www/hs-http-server 1_5 --> 1.0.1
www/hs-http-types 0.6.11_1 --> 0.7.3.0.1
www/hs-path-pieces 0.1.1_1 --> 0.1.2
www/hs-shakespeare 1.0.0.2_1 --> 1.0.2
www/hs-shakespeare-css 1.0.1.2_1 --> 1.0.2
www/hs-shakespeare-js 1.0.0.3_1 --> 1.1.0
www/hs-shakespeare-text 1.0.0.2_1 --> 1.0.0.5
www/hs-snap 0.9.0.1 --> 0.9.2.2
www/hs-snap-core 0.9.0 --> 0.9.2.2
www/hs-snap-server 0.9.0 --> 0.9.2.4
www/hs-wai 1.2.0.3 --> 1.3.0.1
www/hs-wai-app-static 1.2.0.4 --> 1.3.0.4
www/hs-wai-extra 1.2.0.5 --> 1.3.0.4
www/hs-wai-logger 0.1.4_1 --> 0.3.0
www/hs-wai-test 1.2.0.2_1 --> 1.3.0
www/hs-warp 1.2.2 --> 1.3.5
www/hs-yesod 1.0.1.6_1 --> 1.1.4.1
www/hs-yesod-auth 1.0.2.1_1 --> 1.1.2
www/hs-yesod-core 1.0.1.2_1 --> 1.1.6.1
www/hs-yesod-default 1.0.1.1_1 --> 1.1.2
www/hs-yesod-form 1.0.0.4_1 --> 1.2.0.1
www/hs-yesod-json 1.0.0.1_1 --> 1.1.2
www/hs-yesod-persistent 1.0.0.1_1 --> 1.1.0
www/hs-yesod-platform 1.0.5 --> 1.1.5
www/hs-yesod-routes 1.0.1.2_1 --> 1.1.1.1
www/hs-yesod-static 1.0.0.3_1 --> 1.1.1.1
www/hs-yesod-test 0.2.1 --> 0.3.1.1
x11-toolkits/hs-gtk 0.12.3.1 --> 0.12.4
x11-toolkits/hs-pango 0.12.3_1 --> 0.12.4
Removed ports (1):
textproc/hs-xml2html 0.1.2.3_1
Approved by: wen (maintainer) [1]
Obtained from: FreeBSD Haskell
|
|
|
|
|
| |
due wrong paths in @exec commands
- Order USE_ flags properly
|
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE [1]
- Support PORTDOCS [1]
- Remove leading article from COMMENT
- Add missing deps, sort USE_ flags
PR: ports/170172 [1]
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
|
| |
|
| |
|
|
|
|
| |
- Trim Makefile headers
|
|
|
|
|
|
| |
(5.x+ and x < 12) scheme.
Approved by: bapt@ (portmgr@)
|
|
|
|
|
|
|
| |
- Strip Makefile header
- Replace some patches with sed
- Fix indentation in WWW
- Utilize PORTDOCS in order to reduce plist shaking on updates
|
|
|
|
|
|
| |
- Strip Makefile header
- Fix indentation in WWW
- Utilize PORTDOCS in order to reduce plist shaking on updates
|
| |
|
| |
|
|
|
|
|
|
| |
Release notes: http://www.fltk.org/articles.php?L1266
- Added a patch to fix a build error
Reported as: http://www.fltk.org/str.php?L2903
|
|
|
|
| |
- add entry in MOVED
|
|
|
|
|
| |
Introduces the UTF-32 library pcre32
Bump PORTREVISION in dependent ports
|
|
|
|
| |
suppress any reference to JAVA_VERSION= 1.5+ (part3)
|
|
|
|
| |
- Bump comms/efax-gtk after shlib version change
|
|
|
|
|
|
| |
- Trim Makefile header
Approved by: jnagyjr1978@gmail.com (former maintainer)
|
|
|
|
|
|
|
| |
Feature safe: yes
PR: ports/174160
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
|
|
|
|
|
| |
Feature safe: yes
Reported by: beat, bapt
|
|
|
|
|
|
|
| |
PR: 174019
Submitted by: myself
Approved by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)
Feature safe: yes
|
|
|
|
|
|
| |
- Fix typo in previous commit in MOVED
Feature safe: yes
|
|
|
|
|
|
|
|
| |
Release notes: http://sf.net/mailarchive/message.php?msg_id=30090852
PR: ports/173753 (based on)
Submitted by: Chris Petrik <c.petrik.sosa@gmail.com>
Feature safe: yes
|
|
|
|
|
|
| |
- undeprecate
Feature safe: yes
|
|
|
|
|
|
|
|
| |
2012-11-28 x11-toolkits/py-gtk: Depends on the expired gtkglarea [2]
Approved by: silence of maintainer [1]
gnome (kwm) [2]
Feature safe: yes
|
|
|
|
|
|
| |
- Trim Makefile header
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes:
* Added auto-numbering in FXHeader.
* Added alpha-numbering in FXHeader.
* Fixes to FXProcess implementation on Windows.
* Fixed aligned to unaligned store in FXMat2f SSE implementation.
* Slightly stricter TGA header recognition.
* Removed FXSemaphore value() API. Never used, and not really useful.
* FXRecentFiles allows for up to 32 entries; still defaults to 10,
however.
* Fix in Windows non-UNICODE implementation of FXStat created(),
accessed(), and modified() API's.
* Added API's to FXWorker class.
* Added API to FXPtrQueue class.
* FXPath::contract() should only replace whole path-components.
* Prototype of wndproc() was not correct for 64-bit Windows.
- Trim Makefile headers
Feature safe: yes
|
|
|
|
|
|
| |
- Trim Makefile headers for ports owned by me or ports@
Feature safe: yes
|
|
|
|
|
|
|
| |
* Prototype of wndproc() was not correct for 64-bit Windows.
- Remove shlib versions from LIB_DEPENDS
Feature safe: yes
|
|
|
|
|
|
| |
- Trim Makefile headers
Feature safe: yes
|
|
|
|
|
| |
PR: 173753 , 173767
Feature safe: yes
|
|
|
|
|
|
|
| |
(deskutils/abacus) has gone. This will be 2012-12-01
- assign to TclTk@ in the meanwhile
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
|
| |
- Convert to the new OPTIONS framework
- Remove explicit shlib versions from LIB_DEPENDS
- Relinquish maintainership
Feature safe: yes
|
|
|
|
|
|
| |
Release notes: http://www.fltk.org/articles.php?L1253
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
| |
2.3.4 update and the LGPL 2.1 bit.
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
| |
Openmotif is now named motif (again).
Motif is LGPL 2.1.
PR: 173198
Submitted by: myself (cy@)
Approved by: Maintainer (Mikhail Tsatsenko <m.tsatsenko@gmail.com>>
Feature safe: yes
|
|
|
|
|
| |
. trim makefile headers.
Feature safe: yes
|
|
|
|
|
|
| |
- Change Makefile headers to shorter form
Feature safe: yes
|
|
|
|
|
| |
Submitted by: Joseph a Nagy Jr
Feature safe: yes
|
|
|
|
|
|
| |
Reported by: beat
Pointyhat to: bapt
Feature safe: yes
|
|
|
|
|
| |
Approved by: db (maintainer)
Feature safe: yes
|
|
|
|
|
| |
Approved by: gnome (kwm)
Feature safe: yes
|
|
|
|
|
|
| |
x11-toolkit/ocaml-lablgtk2
Feature safe: yes
|
|
|
|
|
|
| |
public distfiles are available
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
| |
Approved by: fjoe (maintainer)
Feature safe: yes
|
|
|
|
|
|
| |
PR: ports/173082, ports/173083
Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2012-10-20 x11-toolkits/p5-GdkImlib: Abandoned upstream, not used by any ports
2012-10-20 x11-toolkits/mesgui: Abandoned upstream, no ports depend on it
2012-10-20 x11-toolkits/gtkmm12: Abandoned upstream, no more depending ports
2012-10-20 x11-toolkits/flu: No more public distfiles
2012-10-20 x11-toolkits/efltk: Abandoned upstream, no ports depend on it
2012-10-20 x11-toolkits/9libs: Abandonware, no ports depend on it, and broken on most arches
Remove some obsolete toolkits
Feature safe: yes
|
|
|
|
|
|
| |
PR: 172861
Submitted by: Chris Petrik
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
| |
the blings and desktop integration stuffs anyone would want to use.
It builds on top of Gtk# and extend it by adding new classes and extension
methods.
WWW: http://gitorious.org/gtk-sharp-beans
Feature safe: yes
|
|
|
|
|
|
| |
Approved by: portmgr (implicit)
Feature safe: yes
Redports: ignore
|
|
|
|
|
| |
Approved by: gnome (kwm)
Feature safe: yes
|
|
|
|
|
|
|
| |
Trim headers
Reviewed by: ak
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to
accomplish this.
The ports chosen were ports that blocked 2 or more ports from building with
clang. (There are several hundred other ports that still fail to build with
clang, even with this patch. This is merely one step along the way.)
Those interested in fixing these ports with clang, and have clang as their
default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes.
For those who have gcc as their default compiler, this change is believed
to cause no change.
Hat: portmgr
Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various
combinations of patch/no-patch and flag settings.
|
|
|
|
|
|
|
|
| |
- Cleanup header of Makefile
- Cleanup COMMENT and pkg-descr
PR: ports/172442
Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
|
|
|
|
|
| |
PR: ports/172432
Submitted by: Michael Gmelin <freebsd@grem.de>
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- Add a patch around a wrong ZLib call
- Normalize patch files names
|
|
|
|
|
|
|
|
|
| |
(PYTHON_DISTFILE variable)
- switch lang/python ports (and it's slaves) to tar.xz
I compared all the four pairs .tgz/.tar.xz and they have no content differences.
Discussed on: python@
|
|
|
|
| |
Reported by: beat
|
| |
|
|
|
|
|
|
| |
- Take maintainership
Approved by: crees, tabthorpe (mentors, implicit)
|
| |
|
| |
|
| |
|
|
|
|
| |
distilator)
|
|
|
|
| |
Approved by: gnome@ (kvm)
|
|
|
|
|
|
| |
version: x11-toolkits/wxgtk28
Approved by: fjoe
|
| |
|
|
|
|
|
| |
Reported by: beatmail (via pointyhat)
Obtained from: FreeBSD Haskell
|
| |
|
|
|
|
|
|
|
| |
PR: ports/170791
Submitted by: Quentin Stievenart <quentin.stievenart@gmail.com>
Approved by: maintainer timeout
Approved by: tabthorpe (mentor)
|
|
|
|
|
|
| |
ports tree (guppi) is now deprecated), set the same expiration date as guppi
Approved by: gnome (kvm)
|
|
|
|
|
|
|
|
| |
- bump PORTREVISION
PR: 170626
Submitted by: Mikhail Tsatsenko <m.tsatsenko at gmail dot com> (maintainer)
Reported by: Marcin Cieslak <saper at saper dot info>
|
| |
|
|
|
|
|
|
|
| |
in r236486 and is also a member of Fl_Check_Browser class.
- Bump PORTREVISION
Notified by: martymac
|
|
|
|
|
|
|
|
|
|
| |
- Update www/libxul to 10.0.7
- Update all dependent ports to use www/libxul19 (no functional changes)
- Bump PORTREVISION on ports where libxul is a run dependency as the
resulting package will change.
Submitted by: Jan Beich <jbeich@tormail.org>
With hat: gecko
|
|
|
|
|
| |
Reported by: beatmail (via pointyhat)
Obtained from: FreeBSD Haskell
|
|
|
|
| |
Hat: portmgr
|
|
|
|
|
| |
PR: 171339
Submitted by: freebsd@nagilum.org
|
|
|
|
| |
Reviewed by: gjb
|
| |
|
| |
|
|
|
|
| |
Reported by: erwin
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes:
* FXPath::match is now UTF-8 aware in matching filenames.
* Keep directories up front in FXFileList.
* FXTable API additions for spanning cells.
* FXTable fixes to issue only single callback for spanning cells if
multiple columns/rows fall in selection rectangle.
* Added GO Language support for Adie Text Editor.
* Added TENA .tdl Language support for Adie Text Editor.
* Switch to C++ casts in certain places kills of const cast warnings.
* The fox-config file for FOX project development has been re-instated.
|
|
|
|
|
| |
PR: 170194
Submitted by: Rainer Hurling
|
|
|
|
|
| |
- Add missing library dependencies
- Port needs pkgconf in build phase
|
|
|
|
| |
Reported by: QAT
|
|
|
|
|
|
|
| |
FOX/VTK canvas widget and interactor to allow VTK to interact with your
FOX application.
WWW: http://www.gahr.ch/vtkfox/
|
|
|
|
|
| |
- Add missing library deps
- Port needs USE_PKGCONFIG=build
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
|
|
| |
- Add WWW
PR: ports/169822
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 1 month)
|
|
|
|
|
|
| |
PR: ports/170564
Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
Approved by: tabthorpe (mentor)
|
|
|
|
|
|
| |
installing FOX-1.7 binaries in bin/fox-1.7 and suffixing its manpages
with -17 (e.g., shutterbug -> shutterbug-17)
- Bump PORTREVISION on both ports
|
|
|
|
|
|
| |
PR: ports/170301
Submitted by: Jan Beich <jbeich@tormail.org>
Approved by: crees@, nivit@
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* New feature in FXHeader control: auto-renumbering captions based on
renumbering function; if a renumbering function (which computes the caption
from the caption index) is set, then captions are automatically recomputed
when the number of items in the FXHeader is changed.
* Updated FXTable to use this new feature in FXHeader. The old options for
renumbering have been removed.
* Porting problem in FXMat4d, FXMat4f fixed, for CYGWIN32.
* Added API's to FXTable to return first and last row (or column) of a spanning
cell.
* Added API to check if a cell is horizontally spanning or vertically spanning.
* Cutoff angles in FXQuatd are smaller than in FXQuatf, due to much greater
precision of doubles versus floats.
* FOX on Raspberry Pi coming soon (I got one on order!).
* Added FXRandom fast, long-period, thread-safe psuedo-random number generator.
* Gamma-corrected image scaling option added.
* FXPath::relative() corner-cases fixed.
* FXPath::isHidden() now faster by scanning backward.
* Adie syntax highlight algorithm had some possible issues.
* Now expand context when incrementally recoloring.
* Include glext.h on Windows; missing symbol otherwise.
* Updated list of C++ keywords in Adie.stx style coloring file.
* Added enable/disable item API's to FXComboBox, FXListBox, FXTreeListBox.
* Added expression evaluate feature to Adie text editor.
* Internal anynymous name spaces introduced in FXExpression and FXRex due to
symbol clashes on some compilers.
* Added ?: alternative expression to FXExpression.
* Array indexing problem fixed in FXFont.
* Typo fixed in FXAtomic.cpp.
- Use new OPTIONS framework
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
developed in years and has been dropped from the MESA 8.0 distribution.
Freeglut is a rewrite of glut and is actively developed and is used by
many linux distributions instead of libglut.
Bump all ports that directly depend on libglut because of the shlib version
change.
There are some extra items in this patch.
*) Because freeglut doesn't have the same dependancies as libglut, some ports
need extra dependencies added to USE_XORG to make them build.
*) Mark graphics/f90gl broken, f90gl depends on a header that is only shipped
with libglut.
*) Remove option for libglut/freeglut selection in games/cake, only freeglut
remains now.
*) While here fix a png related build issue games/vegastrike.
Thanks to miwi for running the exp-run.
Approved by: portmgr (miwi)
Collaboration with: zeising@
Obtained from: xorg-dev staging area.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
- Use the new options framework
Obtained from: FreeBSD Haskell
|
|
|
|
|
|
| |
- Use the new options framework
Obtained from: FreeBSD Haskell
|
|
|
|
|
|
| |
- Use the new options framework
Obtained from: FreeBSD Haskell
|
|
|
|
|
|
| |
- Remove some cruft
Obtained from: FreeBSD Haskell
|
|
|
|
|
|
|
|
| |
It's more safe that a relative path.
Inspired by PR: ports/169702
Submitted by: Tijl Coosemans <tijl@coosemans.org>
Discussed at: freebsd-emulation
|
|
|
|
| |
Changes: http://cpansearch.perl.org/src/KARASIK/Prima-1.35/HISTORY
|
|
|
|
| |
device was removed from the default kernel.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
clang as system compiler and cpp is clang cpp (as opposed to GNU cpp).
This is done by removing the configure test for cpp completely. Using
clang cpp will make some manual pages as well as some scripts get slightly
wierd whitespace formatting. However, it does not affect the function of
the scripts or the instructions in the manual pages.
PR: ports/166373
Submitted by: Jakub Lach <jakub_lach@mailplus.pl> (PR)
Patch by: me (with ideas from PR and mailing list)
Tested by: Jakub Lach <jakub_lach@mailplus.pl>, me
Approved by: kwm (mentor)
Obtained from: xorg staging area
|
| |
|
| |
|
|
|
|
|
| |
- use CONFLICTS_INSTALL
- other minor changes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
are no more self hosting so we are stuck with 0.25 version while pkgconf provide
the same set of features as 0.27 and a compatible frontend. A symlink to
pkg-config has been added for convenience and compatibility
This also introduces a new macro to use pkgconf in your ports:
USE_PKGCONFIG
it can take the following arguments:
- yes (meaning build only dep)
- build (meaning build only dep)
- run (meaning run only dep)
- both (meaning run and build dep)
From now USE_GNOME= pkgconfig is deprecated in favour of USE_PKGCONFIG
The old gnome macro has been modified to use pkgconf but still the sameway: run
and build dep to avoid large breakage.
While here fix some ports relying on pkg-config but not specifying it, fix some
ports broken because testing wrong .pc files, and fix ports using pkg-config
--version to determine pkg-config version instead of
pkg-config --modversion pkg-config like recommanded by pkg-config
With Hat: portmgr
Exp-runs by: bapt (pointhat-west), beat (pointyhat)
|
| |
|
| |
|
|
|
|
|
| |
convert it to BUILD_DEPENDS. This avoids the problem of the bogus run dep
added by bsd.gnome.mk.
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Swtich to optionsng
- Add LICENSE
- Update WWW: line
- Unbreak
- Chase shlib bump
PR: ports/169423
Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com>
Approved by: beat (mentor)
|
|
|
|
| |
Reported by: pointyhat
|
|
|
|
| |
- Bump PORTREVISION
|
|
|
|
|
| |
Changes:
* Small tweak to FXIcon's guessthresh()
|
| |
|
|
|
|
|
|
|
| |
https://bugs.kde.org/show_bug.cgi?id=296490
- Bump PORTREVISION.
Obtained from: Qt Project
|
|
|
|
| |
- Convert to OPTIONSng
|
|
|
|
|
|
|
|
| |
- Remove workaround to build on 10.0-CURRENT
Changes:
Upgrades to the build system have been made. The documentation has been
updated and other minor improvements made.
|
| |
|
| |
|
|
|
|
|
|
| |
While the Gstreamer update was done in 1 commit. The script that checks
for portversions that go backwards thinks 0.10.36_1 -> 0.10.36 happend. While
actualy 0.10.35_1 -> 0.10.36 happend.
|
|
|
|
| |
Approved by: portmgr@ (bapt@)
|
|
|
|
| |
Approved by: portmgr@ (bapt@)
|