| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=242134
|
|
|
|
|
|
|
|
|
| |
support.
Feature safe: yes
Notes:
svn path=/head/; revision=241669
|
|
|
|
|
|
|
| |
PR: ports/127478
Notes:
svn path=/head/; revision=225326
|
|
|
|
|
|
|
|
|
|
| |
PR: ports/126869
Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
Obtained from: http://www.ocert.org/advisories/ocert-2008-009.html
Security: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-2935
Notes:
svn path=/head/; revision=219863
|
|
|
|
|
|
|
| |
when PREFIX is set other than LOCALBASE and will allowing the modules to build.
Notes:
svn path=/head/; revision=213580
|
|
|
|
|
|
|
|
|
| |
corruped.
Reported by: edwin
Notes:
svn path=/head/; revision=210662
|
|
|
|
| |
Notes:
svn path=/head/; revision=208144
|
|
|
|
| |
Notes:
svn path=/head/; revision=199038
|
|
|
|
| |
Notes:
svn path=/head/; revision=194505
|
|
|
|
| |
Notes:
svn path=/head/; revision=183279
|
|
|
|
| |
Notes:
svn path=/head/; revision=182444
|
|
|
|
|
|
|
| |
Found by: portlint (cports.sh)
Notes:
svn path=/head/; revision=176403
|
|
|
|
| |
Notes:
svn path=/head/; revision=164748
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix a few of pkg-descr by chase the rename.
- Move all PORTREVISION and PORTEPOCH to top with ?=.
- Put USE_X_PREFIX back in, but under REFERENCE_PORT, and remove PREFIX? and
USE_XLIB. This fix ports to use the correct mtree when you change the prefix,
for example:
Incorrect: (Without USE_X_PREFIX)
================================
# cd /usr/ports/x11-toolkits/gtk20
# make -V MTREE_FILE
/etc/mtree/BSD.x11-4.dist
# make PREFIX=/tmp/foo -V MTREE_FILE
/etc/mtree/BSD.local.dist <-- Here...
================================
Correct: (With USE_X_PREFIX)
================================
# cd /usr/ports/x11-toolkits/gtk20
# make -V MTREE_FILE
/etc/mtree/BSD.x11-4.dist
# make PREFIX=/tmp/foo -V MTREE_FILE
/etc/mtree/BSD.x11-4.dist <-- Here...
================================
- Change a several of *-reference ports to install in LOCALBASE instead
X11BASE, but only two gtkmm*-reference couldn't be change at the moment.
Bump the PORTREVISION for change prefix.
Discussed with: marcus
Notes:
svn path=/head/; revision=164120
|
|
|
|
| |
Notes:
svn path=/head/; revision=162216
|
|
|
|
| |
Notes:
svn path=/head/; revision=162108
|
|
|
|
|
|
|
|
|
|
|
| |
* Handle creating and removal of the libxslt-plugins directory [2]
PR: 96707 [1]
Submitted by: Sven Berkvens-Matthijsse <sven@ilse.net> [1]
Reported by: pointyhat via kris [2]
Notes:
svn path=/head/; revision=161309
|
|
|
|
| |
Notes:
svn path=/head/; revision=161219
|
|
|
|
|
|
|
| |
Approved by: portmgr (kris)
Notes:
svn path=/head/; revision=156749
|
|
|
|
| |
Notes:
svn path=/head/; revision=149215
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.
Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.
Preliminary documentation can be found at:
http://people.FreeBSD.org/~ade/autotools.txt
which is in the process of being SGMLized before introduction into the
Porters Handbook.
Light blue touch-paper. Run.
Notes:
svn path=/head/; revision=148323
|
|
|
|
| |
Notes:
svn path=/head/; revision=141958
|
|
|
|
| |
Notes:
svn path=/head/; revision=132289
|
|
|
|
| |
Notes:
svn path=/head/; revision=131277
|
|
|
|
|
|
|
| |
Reported by: krismail
Notes:
svn path=/head/; revision=128052
|
|
|
|
|
|
|
|
|
|
| |
dependency on libgcrypt.
Submitted by: philip
pointyhat to: arved
Notes:
svn path=/head/; revision=126206
|
|
|
|
| |
Notes:
svn path=/head/; revision=120468
|
|
|
|
| |
Notes:
svn path=/head/; revision=118701
|
|
|
|
| |
Notes:
svn path=/head/; revision=117856
|
|
|
|
| |
Notes:
svn path=/head/; revision=117081
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the libtoolX ports instead of the one included with each port. Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version. To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version.
For example, to use the ports version of libtool-1.5, add the following to
your Makefile:
USE_LIBTOOL_VER= 15
To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:
USE_INC_LIBTOOL_VER= 15
With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).
PR: 63944
Based on work by:eik and marcus
Approved by: ade (autotools maintainer)
Tested by: kris on pointyhat
Bound to be hidden problems: You bet
Notes:
svn path=/head/; revision=113296
|
|
|
|
|
|
|
| |
- Also note that previous commit fixed hier compliance issue.
Notes:
svn path=/head/; revision=113032
|
|
|
|
|
|
|
|
|
| |
slave port.
Tested by: adamw, marcus
Notes:
svn path=/head/; revision=113026
|
|
|
|
| |
Notes:
svn path=/head/; revision=113010
|
|
|
|
| |
Notes:
svn path=/head/; revision=107539
|
|
|
|
| |
Notes:
svn path=/head/; revision=105973
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".
For ports-in-waiting:
USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13
USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213
USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14
Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
Notes:
svn path=/head/; revision=103963
|
|
|
|
|
|
|
| |
* Use OPTIONS where feasible
Notes:
svn path=/head/; revision=101882
|
|
|
|
| |
Notes:
svn path=/head/; revision=101305
|
|
|
|
|
|
|
| |
(Part 1)
Notes:
svn path=/head/; revision=99918
|
|
|
|
| |
Notes:
svn path=/head/; revision=98168
|
|
|
|
|
|
|
|
|
| |
been enabled.
Reported by: dinoex
Notes:
svn path=/head/; revision=98139
|
|
|
|
|
|
|
| |
Reported by: adamw
Notes:
svn path=/head/; revision=97904
|
|
|
|
| |
Notes:
svn path=/head/; revision=96543
|
|
|
|
| |
Notes:
svn path=/head/; revision=95645
|
|
|
|
|
|
|
|
| |
PR: 59384
Submitted by: Rui Lopes <rui@ruilopes.com>
Notes:
svn path=/head/; revision=94203
|
|
|
|
| |
Notes:
svn path=/head/; revision=93099
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
future plans, etc., please see http://www.gnome.org/start/2.4/.
This commit represents work done by adamw, bland, and myself as well as
many other contributers:
Koop Mast <einekoai@chello.nl>
Akifyev Sergey <asa@gascom.ru>
Franz Klammer <klammer@webonaut.com>
Øyvind Kolbu <oyvind@kebab.gaffel.nu>
Thomas E. Zander <riggs@rrr.de>
Jeremy Messenger <mezz7@cox.net>
Without these contirbuters, and our faithful users, GNOME 2.4.0 would not
be possible.
Please check the FreeBSD GNOME site for any FreeBSD gotchas, as well as
general FAQs and documentation (GNOME 2.4 updates to be posted soon). The
best way to upgrade so that you get all shared library dependencies is:
portupgrade -rf -m BATCH=yes atk
portupgrade -R -m BATCH=yes gnome2
Approved by: portmgr (kris, will, myself implicitly)
Requested by: re as well as many other users
Notes:
svn path=/head/; revision=89023
|
|
|
|
| |
Notes:
svn path=/head/; revision=86732
|
|
|
|
| |
Notes:
svn path=/head/; revision=84961
|