summaryrefslogtreecommitdiff
path: root/Mk (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The KDE FreeBSD team is proud to announce the release of KDE 4.1.0Martin Wilke2008-08-092-133/+126
| | | | | | | | | | | | | | | | | | | | | for FreeBSD. The official KDE 4.1.0 release notes can be found at http://www.kde.org/announcements/4.1/. Some note: * Prefix KDE4 will be install into a custom prefixes namely ${LOCALBASE}/kde4. KDE4 and KDE3 can co-exist * Sound For sound to work, it is necessary to have dbus and hal enabled in your system. Please see the respective documentation on how to enable these. For more Informations see the HEADS UP at ports@ and kde-freebsd@ or our wiki page http://wiki.freebsd.org/KDE4/Install. Have fun!
* Remove firefox3 from USE_GECKO; it does not work and wait for xulrunner 1.9Jeremy Messenger2008-08-061-3/+3
| | | | | comes in. The xulrunner 1.9 is current in MC ports. It's clear about that Mozilla folks want us to use xulrunner for SDK/build.
* - improve detection installed openssl portDirk Meyer2008-08-051-2/+5
| | | | | | | | | With about 1000 ports installed, there is a perormance gain about 50% with emty cache and about 25% when files are in cache. Submitted by: Vladimir Chukharev, Doug Barton - OPENSSL_INSTALLED could now be set by bsd.port.subdir.mk for further caching.
* - Update to qt 4.4.1Martin Wilke2008-08-041-31/+81
| | | | | | | | | | | Note: With this update several ports specific problems have been fixed. Qt4 headers and libraries have been moved to include/qt4 and lib/qt4. bsd.qt.mk defines QT_INCDIR and QT_LIBDIR now, which could be used in qt4-dependent ports if required. Thanks to: Max Brazhnikov Danny Pansters
* - Move easynet.be down the list of MySQL mirrors. Fetch from it hangs a lot.Pav Lucistnik2008-07-281-1/+1
|
* Add support for MySQL 6.0.Alex Dupre2008-07-261-0/+1
|
* - Add CC and CXX to MAKE_ENV for all portsPav Lucistnik2008-07-242-4/+3
| | | | PR: ports/86106, ports/101120 (based on)
* - Add an ugly kludge to strip the trailing whitespace from CFLAGS (it comesPav Lucistnik2008-07-241-0/+4
| | | | | | | | | this way from outside already). Unless stripped, later CFLAGS+= assignments will produce a double-space in CFLAGS string. Sub-configure will reduce it back to single space and complain that CFLAGS changed underneath it. Most prominent example of a problem solved by this kludge is the -CURRENT, where -fno-strict-aliasing is added to every port's CFLAGS.
* - Forbid automatical fetching of rubygems from rubyforgePav Lucistnik2008-07-241-1/+1
| | | | Submitted by: Alexander Logvinov <ports@logvinov.com>
* - Remove special treatment of ia64 [1], 4.x, and sparc 64 5.xPav Lucistnik2008-07-221-6/+1
| | | | Requested by: marcel
* Fix typo: OPENLPAP should be spelled like OPENLDAP.Xin LI2008-07-221-1/+1
|
* - Separate OpenLDAP related code into bsd.ldap.mkPav Lucistnik2008-07-212-38/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Change default OpenLDAP version to 2.4 - Remove OpenLDAP 2.2 support, the port has been gone for some time now - Add -DDEPRECATED to CFLAGS for all OpenLDAP using ports PR: ports/123602, ports/124115, ports/125605 Submitted by: delphij, Jens Rehsack <rehsack@web.de>, Yuri Pankov <yuri.pankov@gmail.com> - Remove USE_GTK, it's no longer used PR: ports/123528 Submitted by: mezz - Use PATCH_WRKSRC instead of WRKSRC in do-patch target PR: ports/124169 Submitted by: Max Brazhnikov <makc@issp.ac.ru> - Remove USE_XPM, it's been replaced by USE_XORG+=xpm PR: ports/124506 Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> - Minor fixups for bsd.port.mk PR: ports/122675 Submitted by: linimon - Remove stale comment about USE_GETOPT_LONG PR: ports/124521 Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> - Correct comment about default fetch arguments PR: ports/125334 Submitted by: Gary Palmer <freebsd-gnats@in-addr.com>
* - Overhaul the way we handle with LDAP data directory, populateXin LI2008-07-201-1/+1
| | | | | | | | | | | the data directory upon start, not upon install. [1] - Update to OpenLDAP 2.4.11. - Modify bsd.port.mk to fit with the shared libary version bump [2] This has no impact to package building yet as 2.4.x is not the default version. Submitted by: Mikhail Goriachev <mikhailg webanoide org> [1] Approved by: portmgr (marcus) [2]
* Major optimizations for 'make index' and other recursive traversalKris Kennaway2008-07-194-71/+197
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | targets. * Use /rescue/sh for index builds instead of /bin/sh, when it exists. The former is statically linked and faster to execute, which becomes significant when executing it tens of thousands of times. This trick can be used with other recursive targets by passing in __MAKE_SHELL. * Get rid of make variable assignments that use != command invocations in the critical path, using several methods: - rewriting logic to use shell or make builtins instead of external command executions - macroizing commands and executing them in the targets where they are needed instead of with every invocation of make - precomputing the results of invariant commands in bsd.port.subdir.mk and passing them in explicitly to child makes, and using this to avoid recalculation in all the children. NB: the commands are still run one per top-level subdirectory but this does not currently seem to be a major issue. They could be moved further up into the top-level Makefile at the cost of some cleanliness. - Committers are strongly discouraged from adding further "bare" != assignments to the ports tree, even in their own ports. One of the above strategies should be used to avoid future bloat. * Rewrite the core 'describe' target to work entirely within a single shell process using only builtin commands. The old version is retained as a backup for use on systems older than 603104, which does not have the make :u modifier. This cuts down the number of processes executed during the course of a 'make index' by an order of magnitude, and we are essentially now amortized to the minimum of a single make + sh instance per port, plus whatever commands the port makefile itself executes (which are usually unnecessary and bogus). * Less validation of the WWW: target is performed; this can become policed at a port level by portlint. Specifically we look at the second word of the first line beginning with "WWW:" in pkg-descr, and append "http://" to it unless it already begins with "http://", "https://" or "ftp://". Thanks to dougb for the idea of how to extract WWW: using shell builtins. * Use the "true" shell builtin instead of echo > /dev/null for a measurable decrease in CPU use. * Add a note about dubious escaping strategy in bsd.port.subdir.mk * Minor change in output of 'make describe': it no longer strips trailing CR characters from pkg-descr files with MSDOS CR/LF termination. Instead the makeindex perl script that post-processes make describe into the INDEX is tweaked to strip on input. The bottom line is that on my test hardware INDEX builds are now faster by more than a factor of 2 and with a reduction in system time by a factor of 4-8 depending on configuration.
* Add pecl-APC module support.Alex Dupre2008-07-111-1/+2
| | | | | PR: ports/121240 Submitted by: Greg Larkin <glarkin@sourcehosting.net>
* Add a quick-reference comment block at the beginning directing end-usersAdam Weinberger2008-07-041-0/+11
| | | | how to use the WITH_GECKO mechanism.
* First all, ahze did most of work. Thanks ahze! Last week or so, I am justJeremy Messenger2008-06-303-6/+675
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | merely pick up and help him. Thanks to many testers in both private and mailing list emails for report a few of build and dependencies problems. Also, thanks to marcus and Chess Griffin for test in their tinderboxes. x11/pixman: Update to 0.10.0 ------------------------------------------------------- Firefox 3 needs it. Orignal, the shared library was bumped and ahze has added a new feature in our USE_GNOME=ltverhack by can control the number of shared library. To control the number of shared library, add the ltverhack:N. Right now pixman has USE_GNOME=ltverhack:9 to make it stays same at libpixman-1.so.9. If anyone want to use ltverhack:N in one of your port, you need to make sure the ABI doesn't change to use it.. ------------------------------------------------------- graphics/cairo: Update to 1.6.4 ------------------------------------------------------- Firefox 3 needs it. We have updated most cairo binding ports too. ------------------------------------------------------- graphics/poppler: Update to 0.8.3 ------------------------------------------------------- The shared libraries version have been changed. All ports that depend on poppler have PORTREVISION bump. The graphics/py-poppler has been updated to 0.8.1 to work with newer poppler better. As for the poppler-qt, there is no shared library version change. ------------------------------------------------------- www/firefox3 and gecko ports related: Update to 3.0 final ------------------------------------------------------- The bsd.gecko.mk has been moved from www/mozilla/ to Mk/. You no longer need to include bsd.gecko.mk/Makefile.common by manual. We are keeping it in backward compatibility, so the rest ports won't be break. We haven't add some other ports to have Firefox 3 support yet, so feel free to send us patch or commit it by yourself (to committers). However, view in bsd.gecko.mk for document. ------------------------------------------------------- Approved by: portmgr (marcus)
* Provide the test-gcc target and at least key information there even ifGerald Pfeifer2008-06-281-3/+9
| | | | | USE_GCC has not been specified. This is relevant for USE_FORTRAN, but should be useful in general.
* - Add a couple of other patches from ruby SVN repo:Stanislav Sedov2008-06-251-1/+1
| | | | | | | | * fix integer overflow in bignums; * correctly check for string length in regexps; * fix memory leak in parse.c. - Bump portrevision.
* - Add support for freepascal based portsJose Alonso Cardenas Marquez2008-06-242-0/+166
| | | | Approved by: portmgr (pav)
* mirror.ac.uk closed down during 2007:Tim Bishop2008-06-231-2/+0
| | | | | | "JISC ceased funding for the JISC Mirror service during 2007. If you came to this page via a referring site, you may wish to let that site know that its links are out of date."
* - Fix possible memory corruption when using String;Stanislav Sedov2008-06-211-1/+1
| | | | | | | | - fix integer overflow in Array; - fix overflow in String; - bump PORTREVISION. Obtained from: ruby VCS
* - update gnustep-back to 0.14.xDirk Meyer2008-06-201-1/+1
|
* - Refresh MASTER_SITE_SAVANNAHPav Lucistnik2008-06-181-2/+2
|
* Add db47 to bsd.databases.mk.Vanilla I. Shu2008-06-091-2/+9
|
* - Update editors/emacs to 22.2.Boris Samorodov2008-06-031-3/+3
| | | | | | | | | | - Change bsd.emacs.mk accordingly. - Fix comment about emacs-devel in bsd.emacs.mk. - Some lisp directories are changed, add a note to UPDATING. PR: 122783 Submitted by: KIMURA Yasuhiro <yasu at utahime.org> Approved by: keramida (maintainer timeout, 6 weeks)
* - GENTOO mirror from RoEduNet, this should unbreak at leastIon-Mihai Tetcu2008-06-021-0/+1
| | | | | | | emulators/linux_base-gentoo-stage1 and emulators/linux_dist-gentoo-stage1 fetching. Prompted by by: ionbot (my alter ego) QA tindy run
* Update python23 to 2.3.7.Hye-Shik Chang2008-05-301-2/+2
|
* Add one more hack for pkg-config path in gnomehack, (prefix)/lib/pkgconfig.Jeremy Messenger2008-05-291-0/+1
| | | | | PR: ports/124096 Submitted by: Björn König <bkoenig@alpha-tierchen.de>
* Doc change: PERL_ARCH is *always* mach.Lars Thegler2008-05-281-1/+1
|
* - Add common code to support for cmake based ports.Martin Wilke2008-05-272-0/+96
| | | | | | | - Update devel/cmake to 2.6.0 (also fix ports/123092) - Use the new CMAKE build framework in all ports using cmake Approved by: portmgr (pav)
* - Add support for drupal6*Martin Wilke2008-05-271-16/+23
| | | | | PR: 123784 Submitted by: Nick Hilliard <nick@foobar.org> (maintainer)
* Instead of move to bottom and remove it. The GNOME has many mirrors anyway.Jeremy Messenger2008-05-271-1/+0
| | | | Requested by: dougb
* Remove a dead mirror and move http://rpmfind.net/linux/gnome.org to moreJeremy Messenger2008-05-261-2/+1
| | | | | | bottom since /gnome.org doesn't exist. Maybe it will be back later, so keep it in bottom for now. Will need to recheck in next week to see if it should be remove or not.
* Looks like farbror.acc.umu.se doesn't carry GNOME tarballs anymore (404 error),Jeremy Messenger2008-05-261-1/+1
| | | | so replace it to gemmei.acc.umu.se.
* - Add a knob to generate pkg-plist for ocaml findlibStanislav Sedov2008-05-191-1/+7
| | | | | | | | | | | | ports automatically. Now if USE_OCAMLFIND_PLIST is defined all files under findlib target directories will be added to pkg-plist and thus requires no entries in static pkg-plist. This is important since a number of ocaml ports install its package files conditionally depending on platform and ocaml configurations and thus static entries are not possible. PR: ports/122844 (based on) Submitted by: Jaap Boender <jaapb@kerguelen.org>
* Add support for GCC 4.3 (lang/gcc43), to be enabled by USE_GCC=4.3+.Gerald Pfeifer2008-05-051-1/+2
| | | | No objections by: portmgr (linimon, marcus, erwin)
* - add WITH_GNUSTEP_DEVELDirk Meyer2008-05-041-0/+4
|
* Move heanet SF mirror at the end of the list, for e few weeks now it resets theIon-Mihai Tetcu2008-05-011-1/+1
| | | | | | connection while downloading files > ~1MB. Reviewed by: simon@
* Add valid values fc6, f7 and f8:Boris Samorodov2008-04-291-2/+8
| | | | | | | | | | | | | | | | | . to USE_LINUX variable, so users can install linux ports which [1] use AUTOMATIC_PLIST (while those values are assigned to OVERRIDE_LINUX_BASE_PORT variable); . to IGNORE message. netchild said: "I don't think it will hurt if the fix for fc6 is committed. There are users out there which already use the experimental 2.6.16 support, and it would make their life easier." me decided: "Why should we segragate f7/f8 users?" and committed f7/f8 parts as well. PR: ports/122826 [1] Submitted by: Naram Qashat <cyberbotx at cyberbotx.com> [1]
* Add support for SDL_consoleEdwin Groothuis2008-04-281-1/+6
| | | | | | PR: ports/123171 Submitted by: Yen-Ming Lee <leeym@cn1.leeym.com> Reviewed by: edwin@
* - note reason why INSTALL_SHLIBS is neededDirk Meyer2008-04-241-0/+2
|
* Remove mirror.tw from MASTER_SITE_FEDORA_LINUX,Vanilla I. Shu2008-04-241-2/+0
| | | | | | it's really slow :( As I know, they use adsl to build very slow sites. coreutils-6.9-16.fc8.i386.rpm 61% of 3406 kB 3073 Bps 07m22s
* - back out last (approved) commitDirk Meyer2008-04-231-1/+1
| | | | | | substitution fails, pointhat run did not reveal the problem. using USE_LDCONFIG+=${i} does not work. USE_LDCONFIG is still broken with custom PREFIX
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-198-109/+108
| | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
* caliu.info domain is gonePav Lucistnik2008-04-161-2/+0
|
* Support @rmtry in pkg-plist, analogous to @dirrmtry but for single file rm.Pav Lucistnik2008-04-142-28/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR: ports/116219 Submitted by: edwin Make USE_DISPLAY more general: set up virtual X server when USE_DISPLAY is defined and no DISPLAY variable is in environment; pass DISPLAY value in CONFIGURE_ENV and MAKE_ENV. PR: ports/116244 Submitted by: edwin Define ${PW}. PR: ports/119821 Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> Move SHA256, MD5, GMAKE and XMKMF to bsd.commands.mk. PR: ports/119879 Submitted by: edwin Fix a build failure for ports that define their own MTREE File. PR: ports/120200 Submitted by: dinoex Don't recreate mtree symlinks if they are already present. PR: ports/121681 Submitted by: sobomax Fix LIB_DEPENDS for libraries whose name contains plus sign. Both intuitive and old escaped syntax works. PR: ports/121741 (based on) Submitted by: fjoe Disable post-install security checks if DISABLE_SECURITY_CHECK variable is defined. PR: ports/122224 Submitted by: Bjoern Koenig <bkoenig@alpha-tierchen.de> Remove versioned Tcl/Tk categories. PR: ports/122622 Submitted by: pav
* Add WITH_PGSQL_VER macro to bsd.database.mk, that allows to specifyVsevolod Stakhov2008-04-111-5/+14
| | | | | | in make.conf which version of pgsql client is required for this build. Reviewed by: skv
* - Add SFJP macro for SOURCEFORGE_JPMartin Wilke2008-04-101-1/+1
|
* - Update emacs-devel versionRong-En Fan2008-04-071-2/+2
| | | | | PR: ports/121495 Submitted by: keramida (maintainer of emacs-devel)