diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 67edf40aadee..4110956b3af5 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -1,997 +1,994 @@ #-*- tab-width: 4; -*- # ex:ts=4 # # Date created: 12 Nov 2005 # Whom: Michael Johnson # # $FreeBSD$ # # 4 column tabs prevent hair loss and tooth decay! # ======================= USERS ================================= # To specify which gecko-based backend you prefer, use something like: # # WITH_GECKO= libxul # # The valid backends are: # libxul libxul19 # # See below for more details. # ======================= /USERS ================================ # bsd.gecko.mk abstracts the selection of gecko-based backends. It allows users # and porters to support any available gecko backend without needing to build # many conditional tests. ${USE_GECKO} is the list of backends that your port # can handle, and ${GECKO} is set by bsd.gecko.mk to be the chosen backend. # Users set ${WITH_GECKO} to the list of gecko backends they want on their # system. .if defined(USE_GECKO) && ${USE_GECKO}!="gecko" .if !defined(Gecko_Pre_Include) # Please make sure all changes to this file are passed through the maintainer. # Do not commit them yourself (unless of course you're the Port's Wraith ;). Gecko_Include_MAINTAINER= gecko@FreeBSD.org Gecko_Pre_Include= bsd.gecko.mk # Users should use the following syntax: # -# WITH_GECKO= libxul libxul-devel -# Use libxul whenever a port supports it, falling back on libxul-devel. -# Note: libxul-devel does not exist at the moment! +# WITH_GECKO= libxul libxul19 +# Use libxul whenever a port supports it, falling back on libxul19. # WITH_GECKO= libxul # Sets your preferred backend. With this example, libxul will always # be chosen, unless the port doesn't support a libxul backend. In that # case, you get whatever the porter chose as the default. Better to use # the first example. # # # Ports should use the following: # -# USE_GECKO= libxul libxul-devel +# USE_GECKO= libxul libxul19 # The list of gecko backends that the port supports. Unless the user # overrides it with WITH_GECKO, the first gecko listed in USE_GECKO # will be the default. In the above example, www/libxul will be used -# as a gecko backend unless WITH_GECKO=libxul-devel is defined by the -# user. Note: libxul-devel does not exist at the moment! +# as a gecko backend unless WITH_GECKO=libxul19 is defined by the +# user. # -# USE_GECKO= libxul-devel<->libxul -# This will sed -e 's/libxul/libxul-devel/' on Makefile.in's and configure -# if ${GECKO}=="libxul-devel" +# USE_GECKO= libxul19<->libxul +# This will sed -e 's/libxul/libxul19/' on Makefile.in's and configure +# if ${GECKO}=="libxul19" # # Example: -# USE_GECKO= libxul libxul-devel -# Note: libxul-devel does not exist at the moment! +# USE_GECKO= libxul libxul19 # # post-patch: # @${REINPALCE_CMD} -e 's|mozilla-|${GECKO}-|' \ # ${MOZSRC}/configure # # If you want your port to check the ${GECKO} variable to see which backend # has been chosen. # # Example: -# USE_GECKO= libxul libxul-devel -# Note: libxul-devel does not exist at the moment! +# USE_GECKO= libxul libxul19 # # post-patch: -# .if ${GECKO}=="libxul-devel" +# .if ${GECKO}=="libxul19" # @${REINPLACE_CMD} -e 's|mozilla-|libxul-|' \ # ${MOZSRC}/configure # .endif _GECKO_ALL= libxul libxul19 libxul_PLIST= ${LOCALBASE}/lib/libxul/libxul.so libxul19_PLIST= ${LOCALBASE}/lib/libxul/libxul.so .for gecko in ${_GECKO_ALL} ${gecko}_PORTSDIR?= www ${gecko}_DEPENDS?= ${PORTSDIR}/${${gecko}_PORTSDIR}/${gecko} ${gecko}_PLIST?= ${LOCALBASE}/lib/${gecko}/libgtkembedmoz.so .endfor # Figure out which mozilla to use # Weed out bad options in USE_GECKO .for badgecko in ${USE_GECKO} . if ${_GECKO_ALL:M${badgecko:C/^([^<->]+).*/\1/}}!="" GOOD_USE_GECKO+= ${badgecko:C/^([^<->]+).*/\1/} . endif . if ${_GECKO_ALL:M${badgecko:C/^[^<->]+<->([^<->]+).*/\1/}}!="${badgecko:C/^([^<->]+).*/\1/}" ${badgecko:C/^([^<->]+).*/\1/}_HACK= s:${badgecko:C/^[^<->]+<->([^<->]+).*/\1/}:${badgecko:C/^([^<->]+).*/\1/}:g . endif .endfor .undef GECKO_FALLTHROUGH .undef _FOUND_WITH_GECKO # Figure out which gecko to use and weed out the bad ones .if defined(WITH_GECKO) && defined(GOOD_USE_GECKO) . for badgecko in ${WITH_GECKO} . if ${GOOD_USE_GECKO:M${badgecko}}!="" GOOD_WITH_GECKO+= ${badgecko} . endif . endfor . if defined(GOOD_WITH_GECKO) . for gecko in ${GOOD_WITH_GECKO} . if !defined(GECKO_FALLTHROUGH) GECKO= ${gecko} GECKO_FALLTHROUGH= ${TRUE} _FOUND_WITH_GECKO= ${TRUE} . endif . endfor . endif .endif .if !defined(GECKO) && defined(GOOD_USE_GECKO) . for gecko in ${GOOD_USE_GECKO} . if !defined(GECKO_FALLTRHOUGH) GECKO= ${gecko} GECKO_FALLTRHOUGH= ${TRUE} . endif . endfor .endif # Generic defines GECKO_CONFIG?= ${LOCALBASE}/bin/${GECKO}-config XPIDL?= ${LOCALBASE}/lib/${GECKO}/xpidl XPIDL_INCL?= `${GECKO_CONFIG} --idlflags` .if defined(GECKO) && ${_GECKO_ALL:M${GECKO}}!="" BUILD_DEPENDS+= ${${GECKO}_PLIST}:${${GECKO}_DEPENDS} RUN_DEPENDS+= ${${GECKO}_PLIST}:${${GECKO}_DEPENDS} .else IGNORE= Unable to find a supported gecko, please check USE_GECKO .endif pre-everything:: _gecko-pre-everything _gecko-pre-everything:: @${ECHO_CMD} "" .if !defined(_FOUND_WITH_GECKO) && defined(WITH_GECKO) @${ECHO_CMD} " Warning: ${PORTNAME} does not support any gecko you" @${ECHO_CMD} " listed in WITH_GECKO=${WITH_GECKO}." @${ECHO_CMD} " \"${GECKO}\" will be used" @${ECHO_CMD} "" @${ECHO_CMD} " for gecko support, but you can change that by using one of" @${ECHO_CMD} " the following values:" .else @${ECHO_CMD} " ${PORTNAME} is using ${GECKO} for gecko support, but you can" @${ECHO_CMD} " change that by defining WITH_GECKO to the following values:" .endif @${ECHO_CMD} "" .for gecko in ${GOOD_USE_GECKO} @${ECHO_CMD} " ${gecko} " .endfor @${ECHO_CMD} "" post-patch: gecko-post-patch gecko-post-patch: .if defined(${GECKO}_HACK) ${FIND} ${WRKSRC} -name "Makefile.in" -type f -o -name "configure" -type f | \ ${XARGS} ${REINPLACE_CMD} -e ${${GECKO}_HACK} .endif .endif .elif !defined(_POSTMKINCLUDED) && !defined(Gecko_Pre_Include) && (defined(USE_FIREFOX) || defined(USE_FIREFOX_BUILD) || defined(USE_SEAMONKEY) || defined(USE_SEAMONKEY_BUILD) || defined(USE_THUNDERBIRD) || defined(USE_THUNDERBIRD_BUILD)) Gecko_Pre_Include= bsd.gecko.mk # Ports can use the following: # # USE_FIREFOX Add runtime dependency on Firefox. If no version # is given by the maintainer via the port or by the # user via defined variable try to find the highest # stable installed version. # Available values: yes 10+ 15+ 10 15+ # NOTE: # default value 10 is used in case of USE_FIREFOX=yes # # USE_FIREFOX_BUILD Add buildtime dependency on Firefox. # Available values: see USE_FIREFOX # # USE_SEAMONKEY Add runtime dependency on SeaMonkey. If no # version is given by the maintainer via the port # or by the user via defined variable try to find # the highest stable installed version. # Available values: yes 12+ 12 # NOTE: # default value 12 is used in case of USE_SEAMONKEY=yes # # USE_SEAMONKEY_BUILD Add buildtime dependency on SeaMonkey. # Available values: see USE_SEAMONKEY # # USE_THUNDERBIRD Add runtime dependency on Thunderbird. If no # version is given by the maintainer via the port # or by the user via defined variable try to find # the highest stable installed version. # Available values: yes 10+ 15+ 10 15 # NOTE: # default value 10 is used in case of USE_THUNDERBIRD=yes # # USE_THUNDERBIRD_BUILD Add buildtime dependency on Thunderbird. # Available values: see USE_THUNDERBIRD # # # Firefox part # .if defined(USE_FIREFOX) || defined(USE_FIREFOX_BUILD) # Process USE_FIREFOX_BUILD .if defined(USE_FIREFOX_BUILD) USE_FIREFOX:= ${USE_FIREFOX_BUILD} _FIREFOX_BUILD_DEPENDS= yes .endif _FIREFOX_DEFAULT_VERSION= 10 _FIREFOX_VERSIONS= 10 15 _FIREFOX_RANGE_VERSIONS= 10+ 15+ # For specifying [10, ..]+ _FIREFOX_15P= 15 ${_FIREFOX_10P} _FIREFOX_10P= 10 # Set the default Firefox version and check if USE_FIREFOX=yes was given .if ${USE_FIREFOX} == "yes" USE_FIREFOX= ${_FIREFOX_DEFAULT_VERSION} .endif # Setting/finding Firefox version we want. .if exists(${LOCALBASE}/bin/firefox) _FIREFOX_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null | ${HEAD} -1 | ${SED} -e 's/Mozilla Firefox \([0-9]\{1,2\}\)\.\([0-9]*\).*/\1/' .endif # Check if installed Firefox version matches the wanted one .if defined(_FIREFOX_VER) _SUPFIREFOX= no .if ${USE_FIREFOX:C/[0-9][0-9]//} == "+" .for ver in ${_FIREFOX_RANGE_VERSIONS} .if ${USE_FIREFOX} == "${ver}" _MATCHED_FIREFOX_VER:= ${ver:S/+//} .for firefox in ${_FIREFOX_${_MATCHED_FIREFOX_VER}P} .if ${_FIREFOX_VER} == ${firefox} _SUPFIREFOX= yes USE_FIREFOX= ${_FIREFOX_VER} .endif .endfor .endif .endfor .else .if ${_FIREFOX_VER} == ${USE_FIREFOX} _SUPFIREFOX= yes .endif .endif .if ${_SUPFIREFOX} == no _DISPLAY_VERSION_HAVE= ${_FIREFOX_VER} _DISPLAY_VERSION_WANT= ${USE_FIREFOX} IGNORE= cannot install: Firefox versions mismatch: firefox-${_DISPLAY_VERSION_HAVE} is installed and wanted version is firefox-${_DISPLAY_VERSION_WANT} .endif .endif .if !defined(_FIREFOX_${USE_FIREFOX:S/+//}P) IGNORE= cannot install: unknown Firefox version: firefox-${USE_FIREFOX:C/([0-9])([0-9])/\1.\2/} .endif # Dependence lines for different Firefox versions 10_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr 15_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox # Add dependencies .if defined(USE_FIREFOX) .if defined(_FIREFOX_BUILD_DEPENDS) BUILD_DEPENDS+= ${${USE_FIREFOX}_DEPENDS} .endif RUN_DEPENDS+= ${${USE_FIREFOX}_DEPENDS} .endif .endif # defined(USE_FIREFOX) # # SeaMonkey part # .if defined(USE_SEAMONKEY) || defined(USE_SEAMONKEY_BUILD) # Process USE_SEAMONKEY_BUILD .if defined(USE_SEAMONKEY_BUILD) USE_SEAMONKEY:= ${USE_SEAMONKEY_BUILD} _SEAMONKEY_BUILD_DEPENDS= yes .endif _SEAMONKEY_DEFAULT_VERSION= 12 _SEAMONKEY_VERSIONS= 12 _SEAMONKEY_RANGE_VERSIONS= 12+ # For specifying [12, ..]+ _SEAMONKEY_12P= 12 # Set the default SeaMonkey version and check if USE_SEAMONKEY=yes was given .if ${USE_SEAMONKEY} == "yes" USE_SEAMONKEY= ${_SEAMONKEY_DEFAULT_VERSION} .endif # Setting/finding SeaMonkey version we want. .if exists(${LOCALBASE}/bin/seamonkey) _SEAMONKEY_VER!= ${LOCALBASE}/bin/seamonkey --version 2>/dev/null | ${HEAD} -1 | ${SED} -e 's/Mozilla SeaMonkey \([0-9]\{1,2\}\)\.\([0-9]*\).*/\2/' .endif # Check if installed SeaMonkey version matches the wanted one .if defined(_SEAMONKEY_VER) _SUPSEAMONKEY= no .if ${USE_SEAMONKEY:C/[0-9][0-9]//} == "+" .for ver in ${_SEAMONKEY_RANGE_VERSIONS} .if ${USE_SEAMONKEY} == "${ver}" _MATCHED_SEAMONKEY_VER:= ${ver:S/+//} .for seamonkey in ${_SEAMONKEY_${_MATCHED_SEAMONKEY_VER}P} .if ${_SEAMONKEY_VER} == ${seamonkey} _SUPSEAMONKEY= yes USE_SEAMONKEY= ${_SEAMONKEY_VER} .endif .endfor .endif .endfor .else .if ${_SEAMONKEY_VER} == ${USE_SEAMONKEY} _SUPSEAMONKEY= yes .endif .endif .if ${_SUPSEAMONKEY} == no IGNORE= cannot install: SeaMonkey versions mismatch: seamonkey-2.${_SEAMONKEY_VER} is installed and wanted version is seamonkey-2.${USE_SEAMONKEY} .endif .endif .if !defined(_SEAMONKEY_${USE_SEAMONKEY:S/+//}P) IGNORE= cannot install: unknown SeaMonkey version: seamonkey-2.${USE_SEAMONKEY} .endif # Dependence lines for different SeaMonkey versions 12_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey # Add dependencies .if defined(USE_SEAMONKEY) .if defined(_SEAMONKEY_BUILD_DEPENDS) BUILD_DEPENDS+= ${${USE_SEAMONKEY}_DEPENDS} .endif RUN_DEPENDS+= ${${USE_SEAMONKEY}_DEPENDS} .endif .endif # defined(USE_SEAMONKEY) # # Thunderbird part # .if defined(USE_THUNDERBIRD) || defined(USE_THUNDERBIRD_BUILD) # Process USE_THUNDERBIRD_BUILD .if defined(USE_THUNDERBIRD_BUILD) USE_THUNDERBIRD:= ${USE_THUNDERBIRD_BUILD} _THUNDERBIRD_BUILD_DEPENDS= yes .endif _THUNDERBIRD_DEFAULT_VERSION= 10 _THUNDERBIRD_VERSIONS= 10 15 _THUNDERBIRD_RANGE_VERSIONS= 10+ 15+ # For specifying [10, ..]+ _THUNDERBIRD_15P= 15 ${_THUNDERBIRD_10P} _THUNDERBIRD_10P= 10 # Set the default Thunderbird version and check if USE_THUNDERBIRD=yes was given .if ${USE_THUNDERBIRD} == "yes" USE_THUNDERBIRD= ${_THUNDERBIRD_DEFAULT_VERSION} .endif # Setting/finding Thunderbird version we want. .if exists(${LOCALBASE}/bin/thunderbird) _THUNDERBIRD_VER!= ${LOCALBASE}/bin/thunderbird --version 2>/dev/null | ${HEAD} -1 | ${SED} -e 's/ Thunderbird \([0-9]\{1,2\}\)\.\([0-9]*\).*/\1/' .endif # Check if installed Thunderbird version matches the wanted one .if defined(_THUNDERBIRD_VER) _SUPTHUNDERBIRD= no .if ${USE_THUNDERBIRD:C/[0-9][0-9]//} == "+" .for ver in ${_THUNDERBIRD_RANGE_VERSIONS} .if ${USE_THUNDERBIRD} == "${ver}" _MATCHED_THUNDERBIRD_VER:= ${ver:S/+//} .for thunderbird in ${_THUNDERBIRD_${_MATCHED_THUNDERBIRD_VER}P} .if ${_THUNDERBIRD_VER} == ${thunderbird} _SUPTHUNDERBIRD= yes USE_THUNDERBIRD= ${_THUNDERBIRD_VER} .endif .endfor .endif .endfor .else .if ${_THUNDERBIRD_VER} == ${USE_THUNDERBIRD} _SUPTHUNDERBIRD= yes .endif .endif .if ${_SUPTHUNDERBIRD} != yes _DISPLAY_VERSION_HAVE= ${_THUNDERBIRD_VER} _DISPLAY_VERSION_WANT= ${USE_THUNDERBIRD} IGNORE= cannot install: Thunderbird versions mismatch: thunderbird-${_DISPLAY_VERSION_HAVE} is installed and wanted version is thunderbird-${_DISPLAY_VERSION_WANT} .endif .endif .if !defined(_THUNDERBIRD_${USE_THUNDERBIRD:S/+//}P) IGNORE= cannot install: unknown Thunderbird version: thunderbird-${USE_THUNDERBIRD:C/([0-9])([0-9])/\1.\2/} .endif # Dependence lines for different Thunderbird versions 10_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:${PORTSDIR}/mail/thunderbird-esr 15_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:${PORTSDIR}/mail/thunderbird # Add dependencies .if defined(USE_THUNDERBIRD) .if defined(_THUNDERBIRD_BUILD_DEPENDS) BUILD_DEPENDS+= ${${USE_THUNDERBIRD}_DEPENDS} .endif RUN_DEPENDS+= ${${USE_THUNDERBIRD}_DEPENDS} .endif .endif # defined(USE_THUNDERBIRD) .else # split .if !defined(_POSTMKINCLUDED) && !defined(Gecko_Pre_Include) Gecko_Pre_Include= bsd.gecko.mk # This file contains some reusable components for mozilla ports. It's of # use primarily to apps from the mozilla project itself (such as Firefox, # Thunderbird, etc.), and probably won't be of use for gecko-based ports # like epiphany, galeon, etc. # # You need to make sure to add USE_GECKO=gecko to for your port can uses # one of these options below. # # Ports can use the following: # # USE_MOZILLA By default, it enables the denendencies: cairo, dbm, # event, ffi, hunspell, jpeg, nspr, nss, png, sqlite, # vpx and zip. Search for '_ALL_DEPENDS' below to see # the list. If your port doesn't need one of list then # you can use '-' like 'USE_MOZILLA= -png -zip' to # subtract the dependencies. # # GECKO_PLIST_PRE_FILES Manual add files in the plist if it needs. # # GECKO_PLIST_PRE_DIRS Manual directories in the plist if it needs. # # MOZILLA_PLIST_DIRS List of directories to descend into when installing # and creating the plist # # MOZ_PIS_SCRIPTS List of scripts residing in ${FILESDIR} to be # filtered through MOZCONFIG_SED and installed along # with our Pluggable Init Scripts (PIS) # # MOZ_SED_ARGS sed(1) commands through which MOZ_PIS_SCRIPTS are # filtered. There is a default set defined here, so # you probably want to add to MOZ_SED_ARGS rather # than clobber it # # MOZ_OPTIONS configure arguments (added to .mozconfig). If # NOMOZCONFIG is defined, you probably want to set # CONFIGURE_ARGS+=${MOZ_OPTIONS} # # MOZ_MK_OPTIONS The make(1) arguments (added to .mozconfig). If # NOMOZCONFIG is defined, you probably want to set # MAKE_ARGS+=${MOZ_MK_OPTIONS} # # MOZ_EXPORT Environment variables for the build process (added # to .mozconfig). If NOMOZCONFIG is defined, you # probably want to set MAKE_ENV+=${MOZ_EXPORT} # # MOZ_CHROME A variable for the --enable-chrome-format= in # CONFIGURE_ARGS. The default is omni. # # MOZ_TOOLKIT A variable for the --enable-default-toolkit= in # CONFIGURE_ARGS. The default is cairo-gtk2. # # MOZ_EXTENSIONS A list of extensions to build # # MOZ_PROTOCOLS A list of protocols to build (http, ftp, etc.) # # PORT_MOZCONFIG Defaults to ${FILESDIR}/mozconfig.in, but can be # set to a generic mozconfig included with the port # # NOGECKO_INSTALL Don't install the built gecko (most likely for # testing) # # NOGECKO_PLIST Don't create a dynamically-generated playlist # # NOMOZCONFIG Don't drop a customized .mozconfig into the build # directory. Options will have to be specified in # CONFIGURE_ARGS instead # MAINTAINER?= gecko@FreeBSD.org MOZILLA?= ${PORTNAME} MOZILLA_VER?= ${PORTVERSION} MOZILLA_BIN?= ${PORTNAME}-bin MOZILLA_EXEC_NAME?=${MOZILLA} MOZ_RPATH?= ${MOZILLA} USE_GNOME+= libidl desktopfileutils USE_ICONV= yes USE_PERL5_BUILD=yes USE_XORG= printproto sm xt xi xext x11 xinerama \ ice xproto MOZILLA_SUFX?= none MOZSRC?= ${WRKSRC} WRKSRC?= ${WRKDIR}/mozilla FAKEDIR?= ${WRKDIR}/fake PLIST?= ${WRKDIR}/plist PLISTD?= ${WRKDIR}/plist_dirs PLISTF?= ${WRKDIR}/plist_files MASTER_DIR?= ${.CURDIR}/../../www/seamonkey MOZ_PIS_DIR?= lib/${MOZILLA}/init.d PORT_MOZCONFIG?= ${FILESDIR}/mozconfig.in MOZCONFIG?= ${WRKSRC}/.mozconfig MOZILLA_PLIST_DIRS?= bin lib PKGINSTALL?= ${WRKDIR}/pkg-install PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall MASTER_MOZDIR?= ${PORTSDIR}/www/seamonkey PKGINSTALL_INC?= ${MASTER_MOZDIR}/pkg-install.in PKGDEINSTALL_INC?= ${MASTER_MOZDIR}/pkg-deinstall.in EXTRACT_AFTER_ARGS?= | ${TAR} -xf - --exclude */CVS/* \ --exclude */macbuild/* \ --exclude */package/* \ --exclude mozilla*/gc/boehm MOZ_PKGCONFIG_FILES?= ${MOZILLA}-gtkmozembed ${MOZILLA}-js \ ${MOZILLA}-xpcom ${MOZILLA}-plugin MOZ_EXPORT+= ${CONFIGURE_ENV} \ LIBS="${LIBS}" PERL="${PERL}" MOZ_OPTIONS+= --prefix="${FAKEDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib # Standard depends _ALL_DEPENDS= cairo dbm event ffi hunspell jpeg nspr nss png sqlite vpx zip cairo_LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo cairo_MOZ_OPTIONS= --enable-system-cairo --enable-system-pixman cairo_EXTRACT_AFTER_ARGS= --exclude mozilla*/gfx/cairo dbm_EXTRACT_AFTER_ARGS= --exclude mozilla*/dbm event_LIB_DEPENDS= event-2.0:${PORTSDIR}/devel/libevent2 event_MOZ_OPTIONS= --with-system-libevent event_EXTRACT_AFTER_ARGS= --exclude mozilla*/ipc/chromium/src/third_party/libevent ffi_LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi ffi_MOZ_OPTIONS= --enable-system-ffi ffi_EXTRACT_AFTER_ARGS= --exclude mozilla*/js/src/ctypes/libffi hunspell_LIB_DEPENDS= hunspell-1.3:${PORTSDIR}/textproc/hunspell hunspell_MOZ_OPTIONS= --enable-system-hunspell jpeg_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg jpeg_MOZ_OPTIONS= --with-system-jpeg=${LOCALBASE} jpeg_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libjpeg nspr_LIB_DEPENDS= nspr4:${PORTSDIR}/devel/nspr nspr_MOZ_OPTIONS= --with-system-nspr nss_LIB_DEPENDS= nss3:${PORTSDIR}/security/nss nss_MOZ_OPTIONS= --with-system-nss nss_EXTRACT_AFTER_ARGS= --exclude mozilla*/security/coreconf \ --exclude mozilla*/security/nss nss_CPPFLAGS+= -I${LOCALBASE}/include/nss -I${LOCALBASE}/include/nss/nss nss_LDFLAGS+= -L${LOCALBASE}/lib/nss -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} png_LIB_DEPENDS= png15:${PORTSDIR}/graphics/png png_MOZ_OPTIONS= --with-system-png=${LOCALBASE} png_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libpng sqlite_LIB_DEPENDS= sqlite3:${PORTSDIR}/databases/sqlite3 sqlite_MOZ_OPTIONS= --enable-system-sqlite vpx_LIB_DEPENDS= vpx:${PORTSDIR}/multimedia/libvpx vpx_MOZ_OPTIONS= --with-system-libvpx #vpx_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libvpx zip_BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip zip_RUN_DEPENDS= ${zip_BUILD_DEPENDS} .for use in ${USE_MOZILLA} ${use:S/-/_WITHOUT_/}= ${TRUE} .endfor .for dep in ${_ALL_DEPENDS} .if !defined(_WITHOUT_${dep}) BUILD_DEPENDS+= ${${dep}_BUILD_DEPENDS} LIB_DEPENDS+= ${${dep}_LIB_DEPENDS} RUN_DEPENDS+= ${${dep}_RUN_DEPENDS} MOZ_OPTIONS+= ${${dep}_MOZ_OPTIONS} EXTRACT_AFTER_ARGS+= ${${dep}_EXTRACT_AFTER_ARGS} CPPFLAGS+= ${${dep}_CPPFLAGS} LDFLAGS+= ${${dep}_LDFLAGS} .endif .endfor # Standard options MOZ_CHROME?= omni MOZ_TOOLKIT?= cairo-gtk2 MOZ_OPTIONS+= --disable-tests \ --enable-chrome-format=${MOZ_CHROME} \ --enable-default-toolkit=${MOZ_TOOLKIT} \ --with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA} \ --with-pthreads # Configure options for install .if !defined(MOZ_EXTENSIONS) MOZ_OPTIONS+= --enable-extensions=default .else MOZ_OPTIONS+= --enable-extensions=${MOZ_EXTENSIONS} .endif .if !defined(MOZ_PROTOCOLS) MOZ_OPTIONS+= --enable-necko-protocols=default .else MOZ_OPTIONS+= --enable-necko-protocols=${MOZ_PROTOCOLS} .endif # others MOZ_OPTIONS+= --with-system-zlib \ --with-system-bz2 \ --disable-debug-symbols \ --disable-glibtest \ --disable-gtktest \ --disable-freetypetest \ --disable-installer \ --disable-necko-wifi \ --disable-updater \ --disable-pedantic .if ${CXXFLAGS:M-stdlib=libc++} LIBS+= -lcxxrt .endif .if ${PORT_OPTIONS:MQT4} MOZ_TOOLKIT= cairo-qt USE_MOZILLA+= -cairo # ports/169343 .endif .if ${MOZ_TOOLKIT:Mcairo-qt} USE_GNOME+= pango USE_QT4+= moc_build gui network opengl MOZ_OPTIONS+= --with-qtdir= # pkg-config MOZ_EXPORT+= HOST_MOC="${MOC}" HOST_RCC="${FALSE}" .else # gtk2, cairo-gtk2 USE_GNOME+= gtk20 .endif .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} MOZ_EXPORT+= MOZ_OPTIMIZE_FLAGS="${CFLAGS:M-O*}" MOZ_OPTIONS+= --enable-optimize .else MOZ_OPTIONS+= --disable-optimize .endif .if ${PORT_OPTIONS:MDBUS} LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ notify.4:${PORTSDIR}/devel/libnotify \ startup-notification-1.0:${PORTSDIR}/x11/startup-notification MOZ_OPTIONS+= --enable-startup-notification .else MOZ_OPTIONS+= --disable-dbus --disable-libnotify .endif .if ${PORT_OPTIONS:MGSTREAMER} USE_GSTREAMER= yes MOZ_OPTIONS+= --enable-gstreamer .else MOZ_OPTIONS+= --disable-gstreamer .endif .if ${PORT_OPTIONS:MGCONF} USE_GNOME+= gconf2 MOZ_OPTIONS+= --enable-gconf .else MOZ_OPTIONS+= --disable-gconf .endif .if ${PORT_OPTIONS:MGIO} MOZ_OPTIONS+= --enable-gio .else MOZ_OPTIONS+= --disable-gio .endif .if ${PORT_OPTIONS:MGNOMEUI} USE_GNOME+= libgnomeui MOZ_OPTIONS+= --enable-gnomeui .else MOZ_OPTIONS+= --disable-gnomeui .endif .if ${PORT_OPTIONS:MGNOMEVFS2} USE_GNOME+= gnomevfs2 MOZ_OPTIONS+= --enable-gnomevfs .else MOZ_OPTIONS+= --disable-gnomevfs .endif .if ${PORT_OPTIONS:MLIBPROXY} LIB_DEPENDS+= proxy:${PORTSDIR}/net/libproxy MOZ_OPTIONS+= --enable-libproxy .else MOZ_OPTIONS+= --disable-libproxy .endif .if ${PORT_OPTIONS:MALSA} LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins MOZ_OPTIONS+= --enable-alsa . if exists(${FILESDIR}/extra-bug780531) EXTRA_PATCHES+= ${FILESDIR}/extra-bug780531 . endif .endif .if ${PORT_OPTIONS:MPULSEAUDIO} LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio MOZ_OPTIONS+= --enable-pulseaudio .endif .if !defined(STRIP) || ${STRIP} == "" MOZ_OPTIONS+= --disable-strip --disable-install-strip .else MOZ_OPTIONS+= --enable-strip --enable-install-strip .endif .if ${PORT_OPTIONS:MDEBUG} MOZ_OPTIONS+= --enable-debug WITH_LOGGING= yes .else MOZ_OPTIONS+= --disable-debug .endif .if ${PORT_OPTIONS:MLOGGING} MOZ_OPTIONS+= --enable-logging .else MOZ_OPTIONS+= --disable-logging .endif MOZ_SED_ARGS+= -e's|@CPPFLAGS@|${CPPFLAGS}|g' \ -e 's|@CFLAGS@|${CFLAGS}|g' \ -e 's|@LDFLAGS@|${LDFLAGS}|g' \ -e 's|@LIBS@|${LIBS}|g' \ -e 's|@LOCALBASE@|${LOCALBASE}|g' \ -e 's|@FAKEDIR@|${FAKEDIR}|g' \ -e 's|@PERL@|${PERL5}|g' \ -e 's|@MOZDIR@|${PREFIX}/lib/${MOZILLA}|g' \ -e 's|%%PREFIX%%|${PREFIX}|g' \ -e 's|%%CFLAGS%%|${CFLAGS}|g' \ -e 's|%%LDFLAGS%%|${LDFLAGS}|g' \ -e 's|%%LIBS%%|${LIBS}|g' \ -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ -e 's|%%FAKEDIR%%|${FAKEDIR}|g' \ -e 's|%%PERL%%|${PERL5}|g' \ -e 's|%%MOZILLA%%|${MOZILLA}|g' \ -e 's|%%MOZILLA_BIN%%|${MOZILLA_BIN}|g' \ -e 's|%%MOZDIR%%|${PREFIX}/lib/${MOZILLA}|g' MOZCONFIG_SED?= ${SED} ${MOZ_SED_ARGS} .if ${ARCH}=="sparc64" # Work around miscompilation/mislinkage of the sCanonicalVTable hacks. MOZ_OPTIONS+= --disable-v1-string-abi .endif .if defined(OBJDIR_BUILD) CONFIGURE_SCRIPT=../configure MOZ_OBJDIR= ${WRKSRC}/obj-${CONFIGURE_TARGET} CONFIGURE_WRKSRC=${MOZ_OBJDIR} BUILD_WRKSRC= ${MOZ_OBJDIR} INSTALL_WRKSRC= ${MOZ_OBJDIR} .else MOZ_OBJDIR= ${WRKSRC} .endif .else # bsd.port.post.mk post-patch: gecko-post-patch gecko-moz-pis-patch gecko-post-patch: .if exists(${PKGINSTALL_INC}) @${MOZCONFIG_SED} < ${PKGINSTALL_INC} > ${PKGINSTALL} .endif .if exists(${PKGDEINSTALL_INC}) @${MOZCONFIG_SED} < ${PKGDEINSTALL_INC} > ${PKGDEINSTALL} .endif @${RM} -f ${MOZCONFIG} .if !defined(NOMOZCONFIG) @if [ -e ${PORT_MOZCONFIG} ] ; then \ ${MOZCONFIG_SED} < ${PORT_MOZCONFIG} >> ${MOZCONFIG} ; \ fi .for arg in ${MOZ_OPTIONS} @${ECHO_CMD} ac_add_options ${arg:Q} >> ${MOZCONFIG} .endfor .for arg in ${MOZ_MK_OPTIONS} @${ECHO_CMD} mk_add_options ${arg:Q} >> ${MOZCONFIG} .endfor .for var in ${MOZ_EXPORT} @${ECHO_CMD} export ${var:Q} >> ${MOZCONFIG} .endfor .endif # .if !defined(NOMOZCONFIG) .if exists(${MOZSRC}/build/unix/mozilla-config.in) @${REINPLACE_CMD} -e 's/%{idldir}/%idldir%/g ; \ s|"%FULL_NSPR_CFLAGS%"|`nspr-config --cflags`|g ; \ s|"%FULL_NSPR_LIBS%"|`nspr-config --libs`|g' \ ${MOZSRC}/build/unix/mozilla-config.in .endif .for subdir in "" nsprpub js/src @if [ -f ${MOZSRC}/${subdir}/config/system-headers ] ; then \ for f in \ cairo-qt.h \ fenv.h \ kvm.h \ malloc_np.h \ pthread_np.h \ pulse/pulseaudio.h \ spawn.h \ sys/thr.h \ sys/user.h \ unwind.h; do \ ${ECHO_CMD} "$$f" >> ${MOZSRC}/${subdir}/config/system-headers ; \ done; \ fi .endfor @for f in \ ${WRKSRC}/directory/c-sdk/config/FreeBSD.mk \ ${WRKSRC}/directory/c-sdk/configure \ ${MOZSRC}/security/coreconf/FreeBSD.mk \ ${MOZSRC}/js/src/Makefile.in \ ${MOZSRC}/js/src/configure \ ${MOZSRC}/configure \ ${WRKSRC}/configure; do \ if [ -f $$f ] ; then \ ${REINPLACE_CMD} -Ee 's|-lc_r|${PTHREAD_LIBS}|g ; \ s|-l?pthread|${PTHREAD_LIBS}|g ; \ s|echo aout|echo elf|g ; \ s|/usr/X11R6|${LOCALBASE}|g' \ $$f; \ fi; \ done @if [ -f ${WRKSRC}/config/baseconfig.mk ] ; then \ ${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ ${WRKSRC}/config/baseconfig.mk; \ else \ ${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ ${WRKSRC}/config/autoconf.mk.in; \ fi @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \ s|%%LOCALBASE%%|${LOCALBASE}|g' \ ${MOZSRC}/build/unix/run-mozilla.sh @${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g ; \ s|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \ ${MOZSRC}/xpcom/*/SpecialSystemDirectory.cpp @${GREP} -lr 'PR_LoadLibrary.*\.so\.[0-9]' ${WRKSRC} | ${XARGS} \ ${REINPLACE_CMD} -Ee '/PR_LoadLibrary/s/(\.so)\.[0-9]+/\1/' # handles mozilla pis scripts. gecko-moz-pis-patch: .for moz in ${MOZ_PIS_SCRIPTS} @${MOZCONFIG_SED} < ${FILESDIR}/${moz} > ${WRKDIR}/${moz} .endfor pre-configure: gecko-pre-configure gecko-pre-configure: .if defined(OBJDIR_BUILD) ${MKDIR} ${MOZ_OBJDIR} .endif post-configure: gecko-post-configure gecko-post-configure: @${ECHO_CMD} "#define JNIIMPORT" >> ${MOZSRC}/mozilla-config.h pre-install: gecko-moz-pis-pre-install gecko-pre-install port-pre-install gecko-create-plist .if !target(port-pre-install) port-pre-install: @${DO_NADA} .endif gecko-pre-install: .if !defined(NOGECKO_PLIST) @${RM} -rf ${FAKEDIR} ${PLIST} ${PLISTD} ${PLISTF} @${TOUCH} -f ${PLIST} ${PLISTD} ${PLISTF} @cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ ${MAKEFILE} ${MAKE_ARGS} prefix=${FAKEDIR} ${INSTALL_TARGET} .if defined(MOZILLA_SUFX) && ${MOZILLA_SUFX}!="none" ${MV} ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME:S/${MOZILLA_SUFX}//} ${FAKEDIR}/bin/${MOZILLA} .if exists(${FAKEDIR}/bin/${MOZILLA_EXEC_NAME:S/${MOZILLA_SUFX}//}-config) ${MV} ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME:S/${MOZILLA_SUFX}//}-config ${FAKEDIR}/bin/${MOZILLA}-config .endif .for pc in ${MOZ_PKGCONFIG_FILES:S|${MOZILLA_SUFX}||} ${SED} -e 's|Requires: ${MOZILLA:S/${MOZILLA_SUFX}//}|Requires: ${MOZILLA}|' \ ${FAKEDIR}/lib/pkgconfig/${pc}.pc > ${FAKEDIR}/lib/pkgconfig/${pc:S/${MOZILLA:S,${MOZILLA_SUFX},,}/${MOZILLA}/}.pc .endfor @${REINPLACE_CMD} -e 's|${MOZILLA_BIN}|${MOZILLA:S/${MOZILLA_SUFX}//}|; \ s|$${progbase}-bin|${MOZILLA:S/${MOZILLA_SUFX}//}-bin|' \ -e 's|${FAKEDIR}|${PREFIX}|g' \ -i '' $$(${REALPATH} ${FAKEDIR}/bin/${MOZILLA}*) .else @${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|g' \ -i '' $$(${REALPATH} ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME}*) .endif .endif gecko-create-plist: .if !defined(NOGECKO_PLIST) # Create the plist .for f in ${GECKO_PLIST_PRE_FILES} ${ECHO_CMD} ${f} >> ${PLISTF} .endfor .for f in ${GECKO_PLIST_PRE_DIRS} ${ECHO_CMD} "@dirrm ${f}" >> ${PLISTD} .endfor ${MKDIR} ${FAKEDIR}/libdata ${MV} -f ${FAKEDIR}/lib/pkgconfig ${FAKEDIR}/libdata/ || ${TRUE} ${RM} -f ${FAKEDIR}/lib/pkgconfig .for dir in ${MOZILLA_PLIST_DIRS} @cd ${FAKEDIR}/${dir} && ${FIND} -H -s * ! -type d | \ ${SED} -e 's|^|${dir}/|' >> ${PLISTF} && \ ${FIND} -d * -type d | \ ${SED} -e 's|^|@dirrm ${dir}/|' >> ${PLISTD} .endfor .for pcfile in ${MOZ_PKGCONFIG_FILES} ${ECHO_CMD} "libdata/pkgconfig/${pcfile}.pc" >> ${PLISTF} @${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|g' \ -e 's|${MOZILLA}-nspr = ${PORTVERSION}|nspr|' \ ${FAKEDIR}/libdata/pkgconfig/${pcfile}.pc .endfor ${CAT} ${PLISTF} | ${SORT} >> ${PLIST} ${CAT} ${PLISTD} | ${SORT} -r >> ${PLIST} ${ECHO_CMD} "@exec ${LOCALBASE}/bin/update-desktop-database > /dev/null || ${TRUE}" >> ${PLIST} ${ECHO_CMD} "@unexec ${LOCALBASE}/bin/update-desktop-database > /dev/null || ${TRUE}" >> ${PLIST} .endif # !defined(NOGECKO_PLIST) do-install: gecko-do-install gecko-do-install: .if !defined(NOGECKO_INSTALL) .for dir in ${MOZILLA_PLIST_DIRS} .if !exists(${PREFIX}/${dir}) ${MKDIR} ${PREFIX}/${dir} .endif ${TAR} cf - -C${FAKEDIR}/${dir} -s'|${FAKEDIR}|${PREFIX}|s' . | \ ${TAR} xof - -C${PREFIX}/${dir} .endfor .if (${OSVERSION} < 800081 ) # XXX: make sure bsdtar(1) corrected symlinks ${FIND} ${FAKEDIR} -type l -exec \ ${ECHO_CMD} stat -f \'${LN} -hfs \"%Y\" \"%N\"\' {} + | \ ${SED} s'|${FAKEDIR}|${PREFIX}|g' | ${SH} | \ ${SED} -n s'|${FAKEDIR}|${PREFIX}|p' | ${SH} -x .endif .for pcfile in ${MOZ_PKGCONFIG_FILES} ${INSTALL_DATA} ${FAKEDIR}/libdata/pkgconfig/${pcfile}.pc \ ${PREFIX}/libdata/pkgconfig/${pcfile}.pc .endfor .endif # !defined(NOGECKO_INSTALL) gecko-moz-pis-pre-install: .if defined(MOZ_PIS_SCRIPTS) ${MKDIR} ${FAKEDIR}/${MOZ_PIS_DIR} .for moz in ${MOZ_PIS_SCRIPTS} ${INSTALL_SCRIPT} ${WRKDIR}/${moz} ${FAKEDIR}/${MOZ_PIS_DIR} .endfor .endif post-install: gecko-post-install gecko-post-install: .if !defined(PACKAGE_BUILDING) && !defined(NO_MOZPKGINSTALL) @if [ -e ${PKGINSTALL} ] ; then \ ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL; \ fi .endif @-update-desktop-database .endif .endif # HERE THERE BE TACOS -- adamw diff --git a/UPDATING b/UPDATING index 7c24de9f2730..9cf805a5e485 100644 --- a/UPDATING +++ b/UPDATING @@ -1,6897 +1,6910 @@ This file documents some of the problems you may encounter when upgrading your ports. We try our best to minimize these disruptions, but sometimes they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20120910: + AFFECTS: users of www/libxul + AUTHOR: gecko@FreeBSD.org + + The www/libxul has been updated to 10.0 and the older version 1.9.2 + has moved to www/libxul19. + + If you want to stay with 1.9.2 please run the following command: + + # portmaster -o www/libxul19 www/libxul + or + # portupgrade -o www/libxul19 www/libxul + 20120909: AFFECTS: users of www/testlink AUTHOR: tota@FreeBSD.org Testlink 1.9.4 was released. Before updating, you should read carefully the included README file or go to www.teamst.org (Forum: TestLink 1.9.4 News, changes, etc) because this release requires a manual update of the database scheme. 20120908: AFFECTS: users of irc/bitlbee, irc/irssi-otr, net-im/climm, net-im/mcabber, net/kdenetwork4, security/kopete-otr, security/py-otr AUTHOR: Doug Barton The libotr library has been bumped in version 4.0.0, and the new version is not compatible with the old. In order to make it possible for both versions to coexist in the short term the old version has been moved to a new port. If you are currently using pidgin-otr: # pkg_delete -f pidgin-otr\* Then: # portmaster -o security/libotr3 security/libotr # portmaster -r libotr or # portugrade -o security/libotr3 security/libotr # portugrade -r libotr 20120902: AFFECTS: users of www/apache22, www/apache22-event-mpm, www/apache22-itk-mpm, www/apache22-peruser-mpm, www/apache22-worker-mpm AUTHOR: ohauer@FreeBSD.org The port use now the options NG framework, this means WITH_xxx directives are no longer valid. Additional: - APR only specific options like THREADS, MYSQL, PGSQL, SQLITE, BDB and IPV6 where removed. - PKGNAME has changed from apache-2... to apache22-2... - PROXY is now a MULTI directive which means at last one additional PROXY_(AJP|BALANCER|CONNECT|FTP|HTTP|SCGI) module is required. - CGI is only a valid option for MPM prefork, peruser and itk. 20120902: AFFECTS: users of devel/apr1 AUTHOR: ohauer@FreeBSD.org APR was updated to 1.4.6 and APR-util was updated to 1.4.1. Please rebuild all ports which are using functions from APR/APR-util such as apache, subversion ... 20120902: AFFECTS: users of math/cantor and math/kalgebra AUTHOR: kde@FreeBSD.org If you have both cantor and kalgebra installed, chances are that your cantor installation is corrupted. If the file ${KDE4_PREFIX}/lib/kde4/cantor_kalgebrabackend.so is missing on your system, rebuild cantor after updating kalgebra to 4.8.4_1 (or later). 20120822: AFFECTS: users of net/asterisk16, net/asterisk16-addons AUTHOR: Florian Smeets asterisk16 has been unsupported upstream for a while now and has known security vulnerabilities, therefore it was removed from the ports tree. People still running net/asterisk16 should upgrade to net/asterisk. First delete the asterisk addons, as they are part of asterisk now. # pkg_delete -f asterisk16-addons\* after that you can run one of the following # portmaster -o net/asterisk net/asterisk16 or # portupgrade -o net/asterisk net/asterisk16 After that you need to update your configuration. Take a look at the following URL for the changes between 1.6 and 1.8 http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE.txt 20120820: AFFECTS: users of ports-mgmt/portupgrade-devel AUTHOR: bdrewery@FreeBSD.org Due to a bug introduced in 20120601, portupgrade is unable to upgrade itself on FreeBSD 7.x. This has been fixed in 20120820. ports-mgmt/portupgrade is not affected. To upgrade, execute the following: # cd /usr/ports/ports-mgmt/portupgrade-devel && make deinstall install clean 20120817: AFFECTS: users of games/unnethack AUTHOR: knu@FreeBSD.org The place for variable files has changed from $PREFIX/share/unnethack to $PREFIX/var/games/unnethack. To keep your saved files and game records, please manually move the following files and directories to the new directory after upgrading. logfile perm record xlogfile bones/ level/ saves/ 20120816: AFFECTS: users of sysutils/cfengine* AUTHOR: gjb@FreeBSD.org The sysutils/cfengine* ports have been renamed as follows: o sysutils/cfengine -> sysutils/cfengine22 o sysutils/cfengine3-legacy -> sysutils/cfengine32 o sysutils/cfengine3 -> sysutils/cfengine33 Users are reminded to update the port origins, for example: # portmaster -o sysutils/cfengine22 sysutils/cfengine or # portupgrade -fo sysutils/cfengine22 sysutils/cfengine or # pkg set -o sysutils/cfengine:sysutils/cfengine22 20120815: AFFECTS: users of lang/erlang AUTHOR: olgeni@FreeBSD.org The lang/erlang port was updated to R15B01. Some port options were updated, so be sure to run "make config" in the port directory and check your configuration before upgrading. To upgrade Erlang and rebuild all of the dependent ports under the new environment: # portmaster -r erlang or # portupgrade -r lang/erlang 20120815: AFFECTS: users of lang/erlang-lite AUTHOR: olgeni@FreeBSD.org The lang/erlang-lite port uses the same default options as lang/erlang, which were changed some time ago. The couchdb, rabbitmq, freeswitch-core and freeswitch-core-devel ports have been updated to use lang/erlang rather than lang/erlang-lite. Please check that your lang/erlang options are configured as you wish (especially X11 support), then follow the instructions below to update your dependencies. # portmaster -o lang/erlang lang/erlang-lite or # portupgrade -fo lang/erlang erlang-lite 20120810: AFFECTS: users of net-p2p/transmission-gtk2 AUTHOR: crees@FreeBSD.org Unfortunately Transmission 2.61 moved the requirement for GTK to version 3.2.0, which is not yet in our tree. Those who wish to have a graphical client can either choose transmission-qt4 in the meantime, or switch to the transmission25 ports. A script to generate appropriate commands can be found at: http://people.FreeBSD.org/~crees/scripts/transmission25.sh 20120808: AFFECTS: users of www/libmicrohttpd AUTHOR: bdrewery@FreeBSD.org libmicrohttpd has been updated to version 0.9.21, with a shared library bump. This requires dependent ports to be rebuilt. # portmaster -r libmicrohttpd or # portupgrade -r www/libmicrohttpd or # pkg install -fR www/libmicrohttpd 20120804: AFFECTS: users of graphics/libglut AUTHOR: x11@FreeBSD.org The libglut library is replaced by the freeglut library. Due to shlib version bump all glut users should be rebuild. Please follow the instructions below to upgrade. # portmaster -o graphics/freeglut graphics/libglut # portmaster -r freeglut or # env DISABLE_CONFLICTS=1 portupgrade -fo graphics/freeglut libglut\* # portupgrade -frx freeglut freeglut or # pkg set -o graphics/libglut:graphics/freeglut # pkg install -Rf graphics/freeglut 20120801: AFFECTS: users of editors/emacs AUTHOR: ashish@FreeBSD.org GNU Emacs port is updated to 24.1. Emacs 23 is moved to editors/emacs23. If you prefer to stick with Emacs 23, please specify EMACS_PORT_NAME=emacs23 in /etc/make.conf, and do: # portmaster -o editors/emacs23 editors/emacs or # env DISABLE_CONFLICTS=1 portupgrade -fo editors/emacs23 editors/emacs or # pkg set -o editors/emacs:editors/emacs23 20120726: AFFECTS: users of www/firefox, www/seamonkey, mail/thunderbird, www/libxul AUTHOR: gecko@FreeBSD.org Gecko ports were switched to use system libraries. Some of them must be built with certain options set (default). - graphics/png has to be installed with APNG option - databases/sqlite3 has to be installed with SECURE_DELETE, THREADSAFE, FTS3, UNLOCK_NOTIFY options 20120726: AFFECTS: users of devel/pkg-config AUTHOR: bapt@FreeBSD.org devel/pkg-config has been replaced by devel/pkgconf # portmaster -o devel/pkgconf devel/pkg-config or # portupgrade -fo devel/pkgconf pkg-config-\* pkgng: # pkg set -o devel/pkg-config:devel/pkgconf # pkg install -f devel/pkgconf 20120725: AFFECTS: users of chinese/fcitx AUTHOR: lichray@gmail.com The textproc/fcitx-keyboard port is merged into chinese/fcitx. Before updating, be sure to # pkg_delete -f fcitx-keyboard-\* And make sure you have at least one keyboard layout based input method enabled in fcitx-configtool, to keep the activation/deactivation of IM panel working. And, since chinese/fcitx-sunpinyin depends on an update to chinese/sunpinyin 20120725: AFFECTS: users of www/py-beautifulsoup AUTHOR: rm@FreeBSD.org Current www/py-beautifulsoup has been moved to www/py-beautifulsoup32, since 4.1.1 is now current stable version. If you prefer to stick with 3.2.0 do: # portmaster -o www/py-beautifulsoup32 www/py-beautifulsoup 20120723: AFFECTS: users of security/snort AUTHOR: zi@FreeBSD.org The database output modules have been deprecated. If you need this functionality please look at the security/barnyard2 port. 20120723: AFFECTS: users of graphics/ImageMagick and graphics/ImageMagick-nox11 AUTHOR: mm@FreeBSD.org The options for ImageMagick have been changed to match commonly used option names. If you are using a customized build, please reconfigure your port options with "make config". 20120720: AFFECTS: users of net/spread and net/spread4 AUTHOR: ohauer@FreeBSD.org The ports net/spread and net/spread4 are using now the reserved UID/GID 282 instead (user|group)next. 20120722: AFFECTS: users of mail/mutt AUTHOR: crees@FreeBSD.org mail/mutt-devel has been moved to mail/mutt, since 1.5 has been around for a while. Should you wish to stick with version 1.4 at this time; # portmaster -o mail/mutt14 mutt 20120721: AFFECTS: users of audio/libogg AUTHOR: naddy@FreeBSD.org There is a new version of libogg (1.3.0) and the shared library version has been bumped (ogg.7 to ogg.8). All ports that have an identifiable direct dependency on this library have had their PORTREVISIONs bumped. However, some ports that pull in the library indirectly may continue to look for the old version. To ensure that all are updated, perform this step: # portmaster -r libogg or # portupgrade -rf libogg 20120717: AFFECTS: users of ftp/proftpd AUTHOR: mm@FreeBSD.org The options of ProFTPD have been made much more user-friendly. As the modules are all shared libraries, all possible modules are built and installed. The following modules are now in separate slave ports: databases/proftpd-mod_sql_odbc: mod_sql_odbc databases/proftpd-mod_sql_sqlite: mod_sql_sqlite databases/proftpd-mod_sql_tds: mod_sql_tds net/proftpd-mod_ldap: mod_ldap and mod_quotatab_ldap 20120716: AFFECTS: users of www/lighttpd AUTHOR: mm@FreeBSD.org The following port options have been reorganized: The OPENLDAP option has been renamed to LDAP. The MAGNET and CML options have been withdrawn in favor of new LUA option. 20120716: AFFECTS: users of mail/postfix-current AUTHOR: sahil@FreeBSD.org The postscreen-to-smtpd protocol has changed. To avoid "cannot receive connection attributes" warnings and dropped connections, execute the command "postfix reload". 20120716: AFFECTS: Nobody AUTHOR: beat@FreeBSD.org The FreeBSD ports tree switched from CVS to Subversion. A Subversion to CVS exporter is in place to continue the support of CVSup. 20120709: AFFECTS: users of math/metis AUTHOR: bf@FreeBSD.org The older version of metis has been moved to math/metis4, and math/metis has been updated to 5.0.2. Dependent ports still use the old API, and the different versions of metis cannot coexist, so most users should update with: # portmaster -o math/metis4 math/metis # portmaster -r math/metis4 or the equivalent. 20120702: AFFECTS: users of databases/couchdb AUTHOR: crees@FreeBSD.org, Adam Strohl The couchdb port has an unfortunate side effect; versions before 1.2.0 will clobber local.ini. The port will refuse to build if that file is present and an earlier version is installed, however no such protection can be afforded to package installation. To upgrade from 1.1.0 and earlier, simply move PREFIX/etc/couchdb/local.ini out of the way until the upgrade is complete. 20120702: AFFECTS: users of net-im/mikutter AUTHOR: tota@FreeBSD.org The net-im/mikutter has been updated to 0.1.1.810 which is required Ruby 1.9.2 or later. Before upgrading this port, please see the entry 20110822 in this file to upgrade Ruby to 1.9. If you want to stay with 0.0.3 (requires Ruby 1.8.7, 1.9.2 or later), please run the following command: # portmaster -o net-im/mikutter003 net-im/mikutter or # portupgrade -o net-im/mikutter003 net-im/mikutter 20120630: AFFECTS: users of lang/perl* AUTHOR: skv@FreeBSD.org lang/perl5.16 is out. If you want to switch to it from, for example lang/perl5.12, that is: Portupgrade users: 0) Fix pkgdb.db (for safety): pkgdb -Ff 1) Reinstall new version of Perl (5.16): env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.16 -f perl-5.12.\* 2) Reinstall everything that depends on Perl: portupgrade -fr perl Portmaster users: portmaster -o lang/perl5.16 lang/perl5.12 Conservative: portmaster p5- Comprehensive (but perhaps overkill): portmaster -r perl- Note: If the "perl-" glob matches more than one port you will need to specify the name of the Perl directory in /var/db/pkg explicitly. The default version for Perl has also been changed from 5.12 to 5.14. 20120623: AFFECTS: users of sysutils/xfce4-utils AUTHOR: xfce@FreeBSD.org The port has been discontinued, and installs files that conflict with the new versions of misc/xfce4-appfinder and x11-wm/xfce4-session. # pkg_delete -f xfce4-utils-\* # portmaster misc/xfce4-appfinder x11-wm/xfce4-session 20120618: AFFECTS: users of databases/db5 AUTHOR: mandree@FreeBSD.org The databases/db5 port has been upgraded to BerkeleyDB 5.3. This entails a shared library bump. Before upgrading this port, check if your applications use transactional data bases, and if they do, prepare them for a log file format upgrade. YOU MUST DO THIS BEFORE YOU UPGRADE THE DB5 PORT! See: http://docs.oracle.com/cd/E17076_02/html/upgrading/upgrade_process.html All packages that depend on db5 need to be rebuilt due to the shared library version change. The full changelog is at http://download.oracle.com/otndocs/products/berkeleydb/html/changelog_5_3.html To upgrade the packages that need Berkeley DB 5, please issue one of the following commands (depending on your preferred tool): # portmaster -r db5-5 or # portupgrade -fr databases/db5 20120616: AFFECTS: users of www/lighttpd AUTHOR: mm@FreeBSD.org The lighttpd startup script has been changed and is now compatible to the apache startup script. The "reload" subcommand now sends a SIGHUP to the process and triggers cycling of log files. The new command "graceful" performs a graceful restart (similiar to former "reload") and "gracefulstop" performs a graceful stop. The "check" command has been replaced with the "configtest" command. 20120615: AFFECTS: users of databases/akonadi AUTHOR: kde@FreeBSD.org The latest Akonadi update includes critical bug fixes. Manual intervention is required for people using local MySQL database (the default configuration) as backend: $ akonadictl stop Wait a bit, and make sure that akonadiserver and akonadi_control are not running. Kill them if needed. Then, you have two alternatives: $ mysql_install_db --force \ --defaults-file=~/.local/share/akonadi/mysql.conf \ --datadir=~/.local/share/akonadi/db_data \ --basedir=$(dirname `dirname $(which mysql_install_db)`) $ rm ~/.local/share/akonadi/mysql.conf ...or... $ rm -r ~/.local/share/akonadi In the latter case, Akonadi will have to recache your personal data (might take a while). Akonadi is only a cache, no data will be lost. Then: $ akonadictl start 20120613: AFFECTS: users of graphics/djvulibre and graphics/djvulibre-nox11 AUTHOR: bf@FreeBSD.org DjVuLibre been updated to 3.5.25.3. The QT3 GUI that was in graphics/djvulibre has been removed (users of this GUI should consider switching to the new QT4 GUI in graphics/djview4), and graphics/djvulibre-nox11 has been merged back into graphics/djvulibre. To update DjVuLibre, you can use: # pkg_delete djvulibre-\?.\* # portmaster -o graphics/djvulibre djvulibre-nox11 You should then update any installed ports that link to the djvulibre shared library: converters/pdf2djvu, graphics/djview4, graphics/okular, and -- if optional djvulibre support was enabled -- graphics/ImageMagick, graphics/apvlv, and graphics/evince. 20120612: AFFECTS: users of databases/postgresql-libpqxx AUTHOR: avilla@FreeBSD.org postgresql-libpqxx has been updated to 4.0. If you want to stick with version 3, install postgresql-libpqxx30: # portmaster -o databases/postgresql-libpqxx30 postgresql-libpqxx 20120612: AFFECTS: users of graphics/gdal AUTHOR: sunpoet@FreeBSD.org Language bindings (Perl, PHP, Python and Ruby) have been moved to separate ports. Please install them if required. The new ports are: Perl binding: graphics/p5-Geo-GDAL PHP binding: graphics/php-gdal Python binding: graphics/py-gdal Ruby binding: graphics/ruby-gdal 20120605: AFFECTS: users of net/p5-ZConf AUTHOR: vvelox@vvelox.net Please append '.set' to all sets for the FS backend. This was done to prevent collisions between config and set names. Previously the config "someConfig/default" would collide with the set "default" for "someConfig". 20120603: AFFECTS: users of lang/ghc and */hs-* AUTHOR: haskell@FreeBSD.org Note that The Glorious Glasgow Haskell Compiler and the Haskell Platform have been updated to versions 7.4.1 and 2012.2.0.0, respectively. At the same time, all Haskell ports have been updated to their latest working versions. To follow the changes, please issue one of the following commands (depending on the tool used): # portmaster -r ghc or # portupgrade -fr lang/ghc 20120531: AFFECTS: users of graphics/png AUTHOR: dinoex@FreeBSD.org The PNG library has been updated to version 1.5.10. Please rebuild all ports that depend on it. If you use portmaster: portmaster -r png- If you use portupgrade: portupgrade -fr graphics/png 20120531: AFFECTS: users of editors/koffice-kde4 AUTHOR: kde@FreeBSD.org KOffice 2 has been replaced by Calligra. You are encouraged to deinstall any KOffice port and install equivalent Calligra ones: # pkg_delete \*koffice\* # portmaster editors/calligra 20120530: AFFECTS: users of databases/postgresql*-server AUTHOR: jgh@FreeBSD.org Affected users are those who use the crypt(text, text) function with DES encryption in the optional pg_crypto module. Passwords affected are those that contain characters that cannot be represented with 7-bit ASCII. If a password contains a character that has the most significant bit set (0x80), and DES encryption is used, that character and all characters after it will be ignored. 20120530: AFFECTS: users of net/nss-pam-ldapd AUTHOR: scheidell@FreeBSD.org The net/nss-pam-ldapd port no longer provides an option for SASL. This has been sourced out to the new net/nss-pam-ldapd-sasl port, to accomodate users using packages (see ports/162240). Users with openldap-sasl-client installed are encouraged to change the port's origin to: net/nss-pam-ldapd-sasl using their favorite ports management tool. Example for portmaster: portmaster -o net/nss-pam-ldapd-sasl nss-pam-ldapd 20120527: AFFECTS: users of x11-toolkits/qt4-gui AUTHOR: kde@FreeBSD.org Qt started using the raster graphics system engine, which relies on shared memory. Be sure to check pkg-message. 20120525: AFFECTS: users of deskutils/kdepim4, deskutils/kdepim4-runtime AUTHOR: kde@FreeBSD.org kdepim4 has been updated to 4.8.3. For those who prefer old kdepim-4.4.11.1 deskutils/kdepim44* ports have been added. To stay with kdepim-4.4.11.1 run the following commands: # portmaster -o deskutils/kdepim44-runtime kdepim-runtime-4\* # portmaster -o deskutils/kdepim44 kdepim-4\* 20120525: AFFECTS: users of KDE SC 4 AUTHOR: kde@FreeBSD.org KDE SC ports have been updated to 4.8.3. Several ports were split, thus manual intervention into update procedure is required: # pkg_delete -f kde-runtime-\* ruby\*-kdebindings-korundum\* \ kalgebra-4\* kdeaccessibility-4\* kdeutils-4\* kde-baseapps-\* \ plasma-applet-icontasks\* # portmaster -a 20120518: AFFECTS: users of dns/poweradmin AUTHOR: Edmondas Girkantas Some database changes have been made between version 2.1.4 and 2.1.5, upgrading needs to be done manually by running the following SQL: For MySQL users: ALTER TABLE `zones` ADD `zone_templ_id` INT( 11 ) NOT NULL; ALTER TABLE zones ENGINE = InnoDB; ALTER TABLE zone_templ ENGINE = InnoDB; ALTER TABLE zone_templ_records ENGINE = InnoDB; For PostgreSQL users: ALTER TABLE zones ADD zone_templ_id INT DEFAULT NULL; Source: https://www.poweradmin.org/trac/wiki/ReleaseNotes/2.1.5 20120516: AFFECTS: users of lang/php5 AUTHOR: ale@FreeBSD.org PHP has been updated to 5.4. Suhosin patch has been disabled until the new version will be released (soon). Suhosing extension will take more time. LINKTHR option is now enabled by default, be sure to flag it if you are updating using an old saved configuration. sqlite2 extension has been permanently removed. If you want to remain at PHP 5.3, a new port (lang/php53) has been created for such purpose. 20120513: AFFECTS: users of net-mgmt/smokeping AUTHOR: lth@FreeBSD.org Smokeping has been updated to 2.6.7, and the web server configuration has changed. FastCGI is now preferred. Please check the documentation that your web server configuration is OK. 20120512: AFFECTS: users of textproc/p5-XML-SAX AUTHOR: crees@FreeBSD.org p5-XML-SAX (X-S) was split into p5-XML-SAX-Base (X-S-B) and p5-XML-SAX for version 0.99. Since X-S-B now installs some files formerly installed by X-S the package for X-S must be deinstalled before updating X-S. # pkg_delete -fx p5-XML-SAX # portmaster textproc/p5-XML-SAX (users of pkgng can substitute pkg_delete with pkg delete) 20120511: AFFECTS: users of graphics/xpdf AUTHOR: cy@FreeBSD.org In order to allow graphics/xpdf and graphics/poppler-utils to coexist, graphics/xpdf binaries have been moved from ${LOCALBASE}/bin to ${LOCALBASE}/lib/xpdf. The symlink ${LOCALBASE}/bin/xpdf points to ${LOCALBASE}/lib/xpdf/xpdf. However the other utilities installed by the xpdf port conflict with poppler-utils, no symlinks are maintained. Applicaions and scripts which use the pdf* utilities provided by graphics/xpdf must reference them using their new location, specify ${LOCALBASE}/lib/xpdf in $PATH, or use the same utilities provided by graphics/poppler-utils. 20120510: AFFECTS: users of devel/gitolite AUTHOR: milki@rescomp.berkeley.edu gitolite has been split into two ports: devel/gitolite for 3.x and devel/gitolite2 for 2.x gitolite 3.x is NOT "API" compatible with gitolite 2.x and requires additional manual migration steps which can be found in the online documentation. http://sitaramc.github.com/gitolite/install.html#migr Current users wishing to continue using gitolite 2.x should run: # portmaster -o devel/gitolite2 gitolite or # portupgrade -o devel/gitolite2 gitolite 20120508: AFFECTS: users of www/node and www/node-devel AUTHOR: sunpoet@FreeBSD.org npm is a package manager for node. Starting with node 0.6.17 (www/node) and node 0.7.8 (www/node-devel), we do not install bundled npm but provide a separate port (www/npm). Please install www/npm if you need it. 20120430: AFFECTS: users of www/py-google-api-python-client AUTHOR: nivit@FreeBSD.org The port has been updated to 1.0.b8. This new version has important changes which might break your code: * apiclient.anyjson has moved to oauth2client.anyjson. * Some calls, for example, taskqueue().lease() used to require a parameter named body. In this new release only methods that really need to send a body require a body parameter, and so you may get errors about an unknown 'body' parameter in your call. The solution is to remove the unneeded body={} parameter See http://code.google.com/p/google-api-python-client/wiki/PyDoc for more information. 20120426: AFFECTS: users of editors/libreoffice AUTHORS: bapt@FreeBSD.org LOCALIZED_LANG option has gone, localised packages are now available separately, you can also use editors/libreoffice-i18n to pick the localisation you want. 20120425: AFFECTS: users of mail/postfix, mail/postfix2[6-8] AUTHOR: sahil@FreeBSD.org The latest update to these ports adds support to turn off the TLSv1.1 and TLSv1.2 protocols introduced in OpenSSL 1.0.1. These protocols are known to cause inter-operability issues with certain services, e.g. hotmail. If using TLS with Postfix, please consult the RELEASE_NOTES for information about possible workarounds. 20120423: AFFECTS: users of astro/boinc-astropulse AUTHOR: rene@FreeBSD.org Astropulse has been updated to 6.01, which is a different application than version 5.06. You need to have Astropulse v6 enabled in your account under SETI@home preferences. It is also advisable to finish and report existing Astropulse units before updating. 20120421: AFFECTS: users of x11/xorg AUTHOR: x11@FreeBSD.org The default mesa has been updated to 7.6.1 and the default xorg-server to 1.7.7. A switch is available for people that want to use mesa 7.11.x and xorg-server 1.10.6. This requires an nvidia card or Intel+KMS support. If you have an intel card and can try these experimental KMS support patches: 10/head with a patch: http://people.freebsd.org/~kib/drm/ FreeBSD stable/9 and releng/9.0: http://lists.freebsd.org/pipermail/freebsd-x11/2012-April/011640.html 20120419: AFFECTS: users of security/openssl AUTHOR: dinoex@FreeBSD.org The OpenSSL port has been updated to 1.0.1a. Please rebuild all ports that depend on it. If you use portmaster: portmaster -r openssl Or, if you would prefer a more gradual approach: portmaster -w openssl (check the man page for more information) If you use portupgrade: portupgrade -fr security/openssl 20120418: AFFECTS: Nobody AUTHOR: wxs@FreeBSD.org FreeBSD 8.3 released. 20120418: AFFECTS: users of www/firefox and mail/thunderbird AUTHOR: gecko@FreeBSD.org Firefox and Thunderbird have been updated to 11.0. If you want to stay with the Extended Support Release please use the new -esr ports. Firefox: # portupgrade -o www/firefox-esr www/firefox # portupgrade -o www/firefox-esr-i18n www/firefox-i18n (if installed) or # portmaster -o www/firefox-esr www/firefox # portmaster -o www/firefox-esr-i18n www/firefox-i18n (if installed) Thunderbird: # portupgrade -o mail/thunderbird-esr mail/thunderbird # portupgrade -o mail/thunderbird-esr-i18n \ mail/thunderbird-i18n (if installed) or # portmaster -o mail/thunderbird-esr mail/thunderbird # portmaster -o mail/thunderbird-esr-i18n \ mail/thunderbird-i18n (if installed) 20120418: AFFECTS: users of www/chpasswd AUTHOR: madpilot@FreeBSD.org Previous version of the chpasswd port put the configuration file in the pkg-plist, causing it to be removed on deinstall. Users are advised to make a backup copy of the configuration file before upgrading. This has been fixed and will not happen anymore in future updates. 20120415: AFFECTS: users of irc/ircd-ratbox AUTHOR: scheidell@FreeBSD.org Ircd-ratbox has been updated to follow the current stable release branch (3.0.x). All previous branches are no longer supported by the ratbox team. Users of ircd-ratbox are advised to create new ircd configuration files based on the examples provided. 20120404: AFFECTS: users of net-mgmt/net-snmp AUTHOR: zi@FreeBSD.org The net-snmp startup script now specifies a new pid_file to avoid a conflict that existed with bsnmpd. As a result, the startup script cannot find currently running versions of snmpd. You will need to either stop the daemon before upgrading or locate the PID of snmpd and manually kill it after upgrade. Then, start the daemon as you normally would. 20120326: AFFECTS: users of www/tomcat7 AUTHOR: ale@FreeBSD.org Tomcat 7 startup script now uses 'jsvc' to monitor the daemon's process. A few rc.conf variables has been changed, be sure to adapt your configuration, if needed. 20120318: AFFECTS: users of mail/dbmail AUTHOR: rm@FreeBSD.org dbmail 3.0 is now available. There are a number of significant changes including Dependencies, Config, Schema and Server changes. Without required modifications, dbmail will not run and you will no longer have access to your emails. See UPGRADING for details. Don't forget to backup and fully test before upgrading. To stick with version 2.2.x run: # portupgrade -o mail/dbmail22 mail/dbmail or # portmaster -o mail/dbmail22 mail/dbmail 20120313: AFFECTS: users of x11-toolkits/qt4-gui AUTHOR: kde@FreeBSD.org MIT-SHM problem (blank windows in Marble and KDE-Games) has been fixed, kern.ipc.shm_allow_removed=1 is not needed anymore to workaround it. 20120311: AFFECTS: users of lang/perl5.8 and lang/perl5.10 AUTHOR: linimon@FreeBSD.org lang/perl5.8 and lang/perl5.10 have been restored from the Attic in order to give a FreeBSD-style deprecation cycle. However, users are advised to upgrade to perl5.12 as soon as feasible. 20120308: AFFECTS: users of lang/perl5.8 and lang/perl5.10 AUTHOR: pgollucci@FreeBSD.org lang/perl5.8 and lang/perl5.10 have been removed since they've been EOL upstream for 3yrs and 2yrs respectively. The default of lang/perl5.12 has not changed (yet). Conditional checks for perl < 5.12 have been removed. UNLESS you have PERL_VERSION=5.8.x or PERL_VERSION=5.10.x in /etc/make.conf you need take no action. If you do, you will have to recompile all perl dependant ports after updating your ports tree. Please see entry 20110517 for help. 20120225: AFFECTS: users of archivers/libarchive AUTHOR: glewis@FreeBSD.org libarchive has been updated to version 3.0.3, with a shared library bump. This requires dependent ports to be rebuilt. # portmaster -r libarchive or # portupgrade -r archivers/libarchive 20120221: AFFECTS: users of emulators/virtualbox-ose AUTHOR: decke@FreeBSD.org virtualbox-ose has been updated to 4.1.8 and requires the latest devel/kBuild-devel now. It is only a build dependency so it is safe to remove it before updating. # pkg_delete -f kBuild-\* 20120220: AFFECTS: users of graphics/libungif AUTHOR: dinoex@FreeBSD.org libungif is obsolete, please deinstall it and rebuild all ports using it with graphics/giflib. # portmaster -o graphics/giflib graphics/libungif # portmaster -r giflib or # portupgrade -o graphics/giflib graphics/libungif # portupgrade -rf giflib 20120216: AFFECTS: users of multimedia/libvpx AUTHOR: ashish@FreeBSD.org libvpx has been updated to version 1.0.0, with a shared library bump. This requires dependencies to be rebuilt. # portmaster -r libvpx or # portupgrade -r multimedia/libvpx 20120214: AFFECTS: users of net/libexosip2 AUTHOR: jgh@FreeBSD.org libexosip2 has been updated with a shared library bump. This requires dependencies to be rebuilt. # portmaster -r libexosip2 or # portupgrade -rf libexosip2-3.\* 20120214: AFFECTS: users of devel/pcre AUTHOR: dougb@FreeBSD.org Until all dependent ports have been updated you should update pcre in a manner that will preserve its old shared library. For example: # portmaster -w devel/pcre or # portupgrade devel/pcre 20120213: AFFECTS: users of lang/ghc and */hs-* AUTHOR: pgj@FreeBSD.org GHC has been updated to version 7.0.4, and Haskell Platform to version 2011.4.0.0, and other Haskell ports are also updated to their Haskell Platform versions or latest versions. To update all affected ports: # portmaster -r lang/ghc or # portupgrade -r lang/ghc 20120210: AFFECTS: users of mail/postfix AUTHOR: Sahil Tandon Postfix 2.9.0 contains several major changes, some of which could result in incompatible or unexpected behavior. Regardless of the version from which you are upgrading, please carefully review the RELEASE_NOTES before proceeding. 20120126: AFFECTS: users of ftp/proftpd and ftp/proftpd-mysql AUTHOR: Martin Matuska The proftpd port has been updated to 1.3.4 and changed to use dynamically loadable modules. Please add corresponding LoadModule directives to your configuration file, like in the following example: LoadModule mod_tls.c The modules mod_sql_mysql and mod_sql_postgres are now outside of the main proftpd port: databases/proftpd-mod_sql_mysql databases/proftpd-mod_sql_postgres The proftpd-mysql port has been removed, use the alternative port: databases/proftpd-mod_sql_mysql 20120121: AFFECTS: users of multimedia/vdr AUTHOR: Juergen Lock The vdr ports have been updated to 1.7.22 which involves at least two changes: - svdrpsend.pl is now called svdrpsend. - The ttxtsubs channels.conf format has changed so if you use that plugin you need to edit /usr/local/etc/vdr/channels.conf for the channels you want to receive teletext subtitles on - see: /usr/local/share/doc/vdr-plugin-ttxtsubs/HISTORY 20120116: AFFECTS: users of mail/postfix-current AUTHOR: Sahil Tandon From the upstream RELEASE_NOTES: Instead of terminating immediately with a "fatal" message when a database file can't be opened, a Postfix daemon program now logs an "error" message, and continues execution with reduced functionality. Specify "daemon_table_open_error_is_fatal = yes" to get the historical behavior (immediate termination with "fatal" message). Logfile-based alerting systems may need to be updated to look for "error" messages in addition to "fatal" messages. By default the Postfix SMTP server no longer reports transcripts of sessions where a client command is rejected because a table is unavailable. To receive such reports, add the new "data" class to the notify_classes parameter value. The reports will be sent to the error_notice_recipient address as before. This class is also used by the Postfix SMTP client to report about sessions that fail because a table is unavailable. 20120116: AFFECTS: users of x11/xcb-util AUTHOR: garga@FreeBSD.org x11/xcb-util was updated to 0.3.8 and was split in new modules. Dependencies were adjusted but main port symbols were moved to a single library, xcb-util.so. For this reason, all dependent ports must be recompiled.If you use portmaster, run: # portmaster -R -r xcb-util-0 Or for portupgrade: # portupgrade -r xcb-util-0\* 20120112: AFFECTS: Nobody AUTHOR: wxs@FreeBSD.org FreeBSD 9.0 released. 20120109: AFFECTS: users of www/p5-WWW-GitHub-Gist AUTHOR: lbr@FreeBSD.org gist command was moved into new www/p5-App-gist port. 20120109: AFFECTS: ports using Apache Software License 2.0 AUTHOR: tabthorpe@FreeBSD.org The correct acronym for Apache Software License 2.0 is really AL2. 20120109: AFFECTS: users of graphics/inkscape: AUTHOR: bsam@FreeBSD.org Before updating graphics/inkscape to version 0.48.2 one should deinstall the port graphics/libwpg01. 20120108: AFFECTS: users of devel/p5-CPAN-Meta and devel/p5-Version-Requirements AUTHOR: sunpoet@FreeBSD.org Author of Version::Requirements (devel/p5-Version-Requirements) merged its function to CPAN::Meta::Requirements (part of devel/p5-CPAN-Meta). As a result, devel/p5-Version-Requirements is marked DEPRECATED. Please run the following commands to update p5-CPAN-Meta and remove p5-Version-Requirements: # portmaster -o devel/p5-CPAN-Meta devel/p5-Version-Requirements # pkg_delete p5-Version-Requirements-\* 20120104: AFFECTS: users of devel/thrift, py-thrift, php5-thrift, p5-thrift AUTHOR: scheidell@FreeBSD.org Users upgrading thrift from 0.6.1, please take note: library structure and versions have changed, and are not compatible with 0.7.0+ 20111231: AFFECTS: users of lang/newlisp AUTHOR: olgeni@FreeBSD.org In lang/newlisp, the MYSQL5 and MYSQL51 options have been unified into MYSQL, which will pick the correct MySQL version using the standard MySQL selection logic. MySQL users will have to run "make config" and select the MYSQL option. Tinderbox users will have to update their options files with the new MYSQL option, and possibly change their Tinderbox environment to select a specific MySQL version. 20111229: AFFECTS: users of ftp/proftpd{-devel,-mysql} AUTHORS: delphij@FreeBSD.org,mm@FreeBSD.org Due to the nature of the way FreeBSD-SA-11:07.chroot is implemented, users have to update to latest -STABLE, -CURRENT, or supported security branch to use the chroot functionality in these ports. Please see the security advisory for more details. 20111219: AFFECTS: users of lang/perl5.14 AUTHOR: skv@FreeBSD.org lang/perl5.14 has been updated to 5.14.2. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.14. Please see its manual page for details. If you want to switch to lang/perl5.14 from lang/perl5.{8,10,12} please follow instructions in the entry 20110517 in this file. 20111205: AFFECTS: users of ruby-gnome ports AUTHOR: swills@FreeBSD.org ruby-gnome has been updated to 1.0.3. Some of them have been removed since they are no longer included upstream. The meta port is now x11/ruby-gnome2. To update run the following command: # portmaster -o x11/ruby-gnome2 x11/ruby-gnome2-all You may also wish to remove the old ports using: # portmaster -s 20111130: AFFECTS: users of dns/nsd AUTHOR: zi@FreeBSD.org The database format of nsd.db has changed as of version 3.2.9. Before you run nsd, you must convert the existing database: # nsdc rebuild 20111123: AFFECTS: users of net-im/kopete or net-im/libjingle AUTHOR: kde@FreeBSD.org kopete and libjingle are now depending on a newer oRTP from linphone-base. To correctly switch to the new port, you need to deinstall ortp prior to the update: # pkg_delete -f ortp-\* 20111123: AFFECTS: users of databases/redis AUTHOR: osa@FreeBSD.org The redis configuration file, redis.conf, have been changed, some options removed in newer versions (>=2.4). In some cases, redis-server with older configuration might does not run at startup. If you run into startup problems, re-edit configuration file. 20111101: AFFECTS: users of x11/kde4-workspace AUTHOR: kde@FreeBSD.org If your KDM fails with the message 'X server "/usr/bin/X" cannot be executed' you need to delete its configuration file and restart it: # rm /usr/local/kde4/share/config/kdm/kdmrc # service kdm4 restart 20111101: AFFECTS: users of graphics/poppler-gtk AUTHOR: Koop Mast Poppler was update to 0.18.0, and the gtk slave port was renamed to match the library it installs. Please run the following command to migrate. # portmaster -o graphics/poppler-glib poppler-gtk-0.16.7 20111031: AFFECTS: users of textproc/py-creole AUTHOR: Stanislav Svirid Some API is changed: replace 'parser_kwargs' and 'emitter_kwargs' with separate arguments. More information on new API: http://code.google.com/p/python-creole/wiki/API 20111025: AFFECTS: users of print/flpsed or www/dillo2 AUTHOR: bf@FreeBSD.org The new versions of flpsed and dillo have switched from x11-toolkits/fltk2 to the new fltk 1.3.0 from x11-toolkits/fltk. Users who have customizations specific to fltk2 may need to consult the fltk 1.3 documents in order to adjust their local settings. For dillo, some commonly-used key bindings have changed, and new configuration options are available: consult dillorc.dist and keysrc.dist for details. 20111019: AFFECTS: users of mail/thunderbird or www/seamonkey with lightning plugin installed. AUTHOR: gecko@FreeBSD.org To get an up to date version of lightning you should use the new LIGHTNING option in mail/thunderbird or www/seamonkey. This option is not enabled by default so you have to run "make config" prior to the build. The old deskutils/lightning-thunderbird and deskutils/lightning ports should no longer be used and will be removed very soon. Like other XPIs ports, lightning now registers itself as a global extension and doesn't create the XPI to be installed manually. Upgrading users should remove lightning from their profile before installing Thunderbird or SeaMonkey the first time with the new LIGHTNING option enabled. 20111018: AFFECTS: users of mail/postfix-current AUTHOR: Sahil Tandon The default smtp_address_preference value is now "any" instead of "ipv6", meaning choose randomly between IPv6 and IPv4. With this the Postfix SMTP client will have more success delivering mail to sites that have problematic IPv6 configurations. 20111016: AFFECTS: users of devel/p5-subversion-freebsd AUTHOR: wxs@FreeBSD.org devel/p5-subversion-freebsd has been removed as it is no longer necessary. If you have it installed please run the following to switch to devel/p5-subversion: portmaster -o devel/p5-subversion p5-subversion-freebsd Please also see the second entry below (20111016) if haven't upgraded subversion yet. 20111016: AFFECTS: users of KDE SC 4 AUTHOR: kde@FreeBSD.org KDE SC has been updated to 4.7.2. A number of files were moved between packages and several ports were split, thus manual intervention into update procedure is required: # pkg_delete -f raptor-1\* kdelibs-4\* kdebase-\*4\* \ kdeaccessibility-4\* kdeedu-4\* kdegames-4\* kdegraphics-4\* \ kdesdk-4\* kdeutils-4\* konq-plugins-4\* ktts\* nepomukcontroller\* \ ruby\*-kdebindings\* kdebindings-smoke\* # pkg_delete -f kdehier4\* # mv /usr/local/kde4/etc/pam.d/* \ /usr/local/etc/pam.d/ # mv /usr/local/kde4/etc/rc.d/* \ /usr/local/etc/rc.d/ # mv /usr/local/kde4/share/dbus-1/services/* \ /usr/local/share/dbus-1/services/ # mv /usr/local/kde4/share/dbus-1/system-services/* \ /usr/local/share/dbus-1/system-services/ # rmdir /usr/local/kde4/etc/pam.d /usr/local/kde4/etc/rc.d \ /usr/local/kde4/share/dbus-1/*services # rm -r /var/tmp/kdecache-* # portmaster misc/kdehier4 If you have - or plan to install - net/kdenetwork4, also run: # portmaster -o net/linphone-base ortp Finally: # portmaster -a Also, remove /usr/local/kde4/etc/rc.d from local_startup in rc.conf(5). Failure to do this will cause all enabled scripts in /usr/local/etc/rc.d to be started twice. Remember to check for missing ports, bearing in mind that x11/kdebase4* ports were replaced by x11/kde4-* ones, ktts was replaced by jovie, while konq-plugins-kde4 and nepomukcontroller were removed. Then: # portmaster --check-depends You're also encouraged to run `pkg_cutleaves` or similar to check for orphaned ports. Please, note that `pkg_add -r kde4` will not install Plasma scriptengines and printer utilities by default anymore, and `pkg_add -r kdegames4` will not install Kajongg. This was made to avoid depending by default on kdebindings. 20111016: AFFECTS: users of devel/subversion, devel/subversion-freebsd, devel/p5-subversion, devel/py-subversion, devel/ruby-subversion and java/subversion-java and all dependand ports. AUTHOR: Lev Serebryakov Subversion was updated to version 1.7.0 and port was reworked. Now there is no "devel/subversion-freebsd" port. All FreeBSD-specific patches are incorporated into main subversion port as options, which are turned ON by default. These options are: P4_STYLE_MARKERS -- change conflict markers to P4 style, established for FreeBSD projects. This is not mandatory for working with FreeBSD sources. ENHANCED_KEYWORD -- Support for custom keywords, like $ FreeBSD $ in sources. This is MANDATORY for working with FreeBSD sources. FREEBSD_TEMPLATE -- Standard FreeBSD commit template. It is RECOMMENDED for working with FreeBSD sources. Also, subversion 1.7.0 changes the working copy format, and a working copy can not be shared between subversion 1.7.0 and 1.6.x. Please, think twice before upgrading. Additional the port "devel/subversion16" was created to support subversion 1.6.x. Subversion 1.7.x and 1.6.x can not be installed simultaneously! Binding ports can be built with Subversion 1.7.0 (Default) or with Subversion 1.6.x. To build bindings with subversion 1.6.x you should set variable WITH_SUBVERSION_VER to "16". There are several ways to upgrade, depending on what you used before and what you want to get after upgrade. (a) You use devel/subversion without FreeBSD patches and, maybe, some bindings. You want fresh'n'new subversion 1.7.0. Please, run: # cd /usr/ports/devel/subversion && make config # portupgrade -r devel/subversion or # portmaster -R -r subversion-1.6 (b) You use devel/subversion-freebsd and, maybe, some bindings. You want fresh'n'new subversion 1.7.0, again with FreeBSD patches. Please, run: # cd /usr/ports/devel/subversion && make config # portupgrade -o devel/subversion devel/subversion-freebsd # portupgrade -r devel/subversion or # portmaster -o devel/subversion devel/subversion-freebsd # portmaster -R -r subversion-1.7 (c) You use devel/subversion without FreeBSD patches and, maybe, some bindings. You want good old subversion 1.6.x, again without again. Please, run: # cd /usr/ports/devel/subversion16 && make config # portupgrade -o devel/subversion16 devel/subversion # portupgrade -m "WITH_SUBVERSION_VER=16" -r devel/subversion16 or # portmaster -o devel/subversion16 devel/subversion # portmaster -m "WITH_SUBVERSION_VER=16" -R -r subversion-1.6 (d) You use devel/subversion-freebsd and, maybe, some bindings. You want good old subversion 1.6.x, with FreeBSD patches. Please, run: # cd /usr/ports/devel/subversion16 && make config # portupgrade -o devel/subversion16 devel/subversion-freebsd # portupgrade -m "WITH_SUBVERSION_VER=16" -r devel/subversion16 or # portmaster -o devel/subversion16 devel/subversion-freebsd # portmaster -m "WITH_SUBVERSION_VER=16" -R -r subversion-1.6 20111005: AFFECTS: users of lang/erlang AUTHOR: Jimmy Olgeni Following the R14B04 upgrade the JAVA, X11, WX and ODBC port options have been set to OFF by default; this will allow to replace lang/erlang-lite with lang/erlang for headless operation in the near future. If you need any of these options, run "make config" in lang/erlang before upgrading, or set your make.conf accordingly. 20111003: AFFECTS: users of math/qhull AUTHOR: Stephen Montgomery-Smith The port math/qhull has been moved to math/qhull5, and math/qhull has been updated to a version that is incompatible with all ports previously using math/qhull. If you are upgrading a port that has math/qhull as a dependency, please delete the port math/qhull first, so that math/qhull5 is properly made as a dependency. 20110929: AFFECTS: users of net/py-zope.proxy, devel/py-zope.testing and devel/py-zope.interface AUTHOR: Ruslan Mahmatkhanov Several Zope ports have been renamed for consistency with their upstream distributions. Please run the following commands to update your local installations: If you use portmaster run: # portmaster -o devel/py-zope.interface devel/py-zopeInterface # portmaster -o net/py-zope.proxy net/py-zopeproxy # portmaster -o devel/py-zope.testing devel/py-zopetesting If you use portupgrade run: # portupgrade -o devel/py-zope.interface devel/py-zopeInterface # portupgrade -o net/py-zope.proxy net/py-zopeproxy # portupgrade -o devel/py-zope.testing devel/py-zopetesting 20110928: AFFECTS: users of 10-current AUTHOR: eadler@FreeBSD.org There are known issues installing ports on FreeBSD 10+ due to bogus assumptions by various build scripts. This will not be fixed until 9-RELEASE is released. There are two workarounds: 1) Set UNAME_r=9.9-CURRENT in your environment 2) Set REVISION="9.9" in ${SRCDIR}/sys/conf/newvers.sh 20110928: AFFECTS: users of www/nginx-devel AUTHOR: osa@FreeBSD.ORG Note: 1.1.4 release introduces several API changes which may affect third-party modules. 20110925: AFFECTS: users of lang/python* AUTHOR: lwhsu@FreeBSD.org The HUGE_STACK_SIZE option has been removed, now Python will use default thread stack size of the system. If you want to change it, specify it with -DTHREAD_STACK_SIZE= in CFLAGS. 20110925: AFFECTS: users of net/openldap* AUTHOR: ume@FreeBSD.org The security/cyrus-sasl2 was updated to 2.1.25. If the SASL option is enabled (disabled by default), net/openldap* must be recompiled after upgrading cyrus-sasl2. 20110921: AFFECTS: users of devel/maven2 and devel/maven3 AUTHOR: hq@FreeBSD.org The devel/maven2 and devel/maven3 now rely on a wrapper port: devel/maven-wrapper. If you plan to upgrade the devel/maven[23] ports, you will have to uninstall all of them before reinstalling them. 20110917: AFFECTS: users of misc/tvbrowser AUTHOR: lme@FreeBSD.org From version 3.0.2 on TV-Browser doesn't include any plugins any longer. You are supposed to download the plugins manually, this also means that you need to download the appropriate channel sources plugin for your country. After installing it your previously configured channels are visible again. To do so, select "Tools -> Install / Update Plugins..." and choose the plugins you need. 20110915: AFFECTS: users of dns/unbound AUTHOR: sem@FreeBSD.org unbound supports GOST from version 1.4.12 but only if dns/ldns was build with GOST support too. There is no way to check the option when unbound builds, so you should make sure the option is on in both unbound and lds. 20110914: AFFECTS: users of www/asterisk-stat AUTHOR: flo@FreeBSD.org asterisk-stat depends on asterisk16 now, you will need to update asterisk and asterisk-addons to 1.6. Instructions on upgrading your configuration files are here: http://svnview.digium.com/svn/asterisk/branches/1.6.2/UPGRADE-1.6.txt If you use portmaster run: # portmaster -o net/asterisk16 net/asterisk14 # portmaster -o net/asterisk16-addons net/asterisk14-addons If you use portupgrade run: # portupgrade -o net/asterisk16 net/asterisk14 # portupgrade -o net/asterisk16-addons net/asterisk14-addons 20110909: AFFECTS: users of net/p5-SOAP-Lite AUTHOR: az@FreeBSD.org SOAP::Transport::TCP is not a part of net/p5-SOAP-Lite distribution since version 0.714. If you need SOAP::Transport::TCP you should install net/p5-SOAP-Transport-TCP manually. 20110901: AFFECTS: users of databases/db51 AUTHOR: mandree@FreeBSD.org The databases/db51 port (Oracle Berkeley DB version 5.1) has been removed. Version 5.2 of the package is available in databases/db5. Users of ports that depend on the removed 5.1 versions are advised to rebuild the affected ports. 20110830: AFFECTS: users of lang/racket AUTHOR: olgeni@FreeBSD.org Racket has been upgraded to version 5.1.3. Due to the recent rewrite of the Racket graphics handling code, it is no longer possible to build this port without X11. The WITHOUT_X11 switch now controls if X11 is brought in as USE_GNOME/LIB_DEPENDS or BUILD_DEPENDS. In the latter case you will be able to build a Racket package that can then be deployed on a headless server. 20110829: AFFECTS: users of security/maia AUTHOR: Janky Jay, III There have been many changes to the maia port, including renaming the rc script and variables from maia to maiad. You will need to replace any instances of maia with maiad in /etc/rc.conf, as well as renaming /var/amavisd to /var/maiad. The 'vscan' user's home directory also needs to be changed to /var/maiad. These can be done by: # mv /var/amavisd /var/maiad # sed -i.bak -e "s/^maia_/maiad_/" /etc/rc.conf # pw usermod vscan -d /var/maiad 20110828: AFFECTS: users of print/cups-{base,client,image} AUTHOR: sahil@FreeBSD.org During the update to 1.4.8, the GNUTLS option was changed from ON to OFF by default. Because old configuration options are saved, users should re-run 'make config' and explicitly deselect the GNUTLS option before upgrading. 20110823: AFFECTS: users of lang/ruby AUTHOR: swills@FreeBSD.org The default ruby version has been reverted from 1.9 to 1.8. If you followed the procedure in the 20110822 entry, you may need to follow these steps: If you use portmaster: # portmaster -o lang/ruby18 lang/ruby19 # portmaster -R -r ruby-1.8 If you use portupgrade: # portupgrade -f lang/ruby19 # portupgrade -f lang/ruby18 # if you have it installed # portupgrade -f ports-mgmt/portupgrade # portupgrade -x ruby-1.9.\* -fr lang/ruby19 If you wish to keep the 1.9 version as default, add the following lines to your /etc/make.conf file: # # Keep ruby 1.9 as default version. # RUBY_DEFAULT_VER=1.9 20110823: AFFECTS: users of devel/libnotify and net/libproxy AUTHOR: gnome@FreeBSD.org libnotify and libproxy are updated with shared library bumps. This requires dependancies to be rebuild. # portmaster -r libnotify-0 # portmaster -r libproxy-0 # portmaster -a or # portupgrade -rf libnotify-0.\* libproxy-0.\* # portupgrade -aR 20110822: AFFECTS: users of lang/ruby AUTHOR: stas@FreeBSD.org The default ruby version has been updated to 1.9. Please rebuild all ports that depends on it. If you use portmaster: # portmaster -o lang/ruby19 lang/ruby18 # portmaster -R -r ruby-1.9 If you use portupgrade: # portupgrade -f lang/ruby18 # portupgrade -f lang/ruby19 # if you have it installed # portupgrade -f ports-mgmt/portupgrade # portupgrade -x ruby-1.8.\* -fr lang/ruby18 After these steps are complete, you can pkg_delete ruby 1.8 if you no longer need it. If you wish to keep the 1.8 version as default, add the following lines to your /etc/make.conf file, and rebuild lang/ruby18 after that. # # Keep ruby 1.8 as default version. # RUBY_DEFAULT_VER=1.8 20110822: AFFECTS: users of graphics/opencv AUTHOR: mm@FreeBSD.org OpenCV python module was moved to own port: graphics/py-opencv 20110820: AFFECTS: users of www/apache* and depending ports AUTHOR: ohauer@FreeBSD.org The default apache version changed from www/apache13 to www/apache22. Users who will continue with apache13 should create the following entry in /etc/make.conf APACHE_PORT= www/apache13 20110818: AFFECTS: users of mail/enigmail-* ports AUTHOR: ale@FreeBSD.org Like other XPIs ports, enigmail now registers itself as a global extension and doesn't create the XPI to be installed manually. Upgrading users should remove enigmail from their profile before installing the new port. 20110815: AFFECTS: users of sysutils/swapexd AUTHOR: crees swapexd used to clobber its config file on deinstall, unfortunately this will not be fixed in installed packages. Back up your config before updating, or you will lose it! # cp /usr/local/etc/swapexd/swapexd.conf ~/swapexd.conf.bak 20110808: AFFECTS: users of net-mgmt/zenoss AUTHOR: pphillips@experts-exchange.com Some functionality of zenoss requires a valid shell. The FreeBSD port until now was installing a user account without a shell. To fix your existing installation, please run the following command as root: # pw usermod zenoss -s /bin/sh -d /usr/local/zenoss 20110808: AFFECTS: users of dns/powerdns AUTHOR: tremere@cainites.net The port has been updated to PowerDNS 3.0, which includes support for DNSSEC. Before upgrading please read the following: http://doc.powerdns.com/upgrades.html#from2.9to3.0 Make sure to read the documentation and wiki on http://powerdnssec.org/ on how to enable DNSSEC mode in the configuration-file and for the necessary database changes. Take note that not all backends support DNSSEC. The ones that do are BIND, SQLite3 and Generic MySQL and PgSQL. 20110808: AFFECTS: users of security/amavisd-new AUTHOR: sahil@FreeBSD.org Along with new features and bug fixes, amavisd-new 2.7.0 introduces some incompatibilities with previous releases. Several variable defaults, SQL schemas, and other changes warrant a careful review of the RELEASE_NOTES. Also note that helper programs amavis.c and amavis-milter.c are no longer distributed with this package; for milter functionality, please shift to the dedicated security/amavisd-milter port. 20110731: AFFECTS: users of lang/guile AUTHOR: jlaffaye@FreeBSD.org guile has been updated to version 1.8.8. Please rebuild all ports that depends on it. If you use portmaster: # portmaster -r guile If you use portupgrade: # portupgrade -fr lang/guile 20110731: AFFECTS: users of www/typo3 AUTHOR: Helmut Schneider www/typo3 has been repocopied to www/typo345. If you need to continue with the old stable version please run # portmaster -o www/typo345 www/typo3 or # portupgrade -o www/typo345 www/typo3 Please remember to change the path of your config files too. 20110730: AFFECTS: users of x11-toolkits/gtk20 AUTHOR: gnome@FreeBSD.org The gtk-update-icon-cache utility has been split out of the gtk20 port. Use the following instructions to update your system. # pkg_delete -f gtk-2.\* # portmaster x11-toolkits/gtk20 # portmaster -a 20110726: AFFECTS: users of devel/msp430-gcc AUTHOR: lev@FreeBSD.org msp430-gcc was updated to lates gcc-4.5.3 version. If you want to use old gcc-3.4.4, run command: # portmaster -o devel/msp430-gcc3 devel/msp430-gcc or # portupgrade -o devel/msp430-gcc3 devel/msp430-gcc before updating devel/msp430-libc port. 20110721: AFFECTS: users of games/megaglest AUTHOR: smoeller@nichthelfer.de If you upgraded from version 3.4.0, your personal settings are stored in ~/.megaglest3.4.0. If you copy glestuser.ini and glestuserkeys.ini to ~/.megaglest, you will have your old settings again. 20110721: AFFECTS: users of security/gpgme AUTHOR: jlaffaye@FreeBSD.org gpgme has been updated to version 1.3.1. Please rebuild all ports that depends on it. If you use portmaster: # portmaster -r gpgme If you use portupgrade: # portupgrade -fr security/gpgme 20110718: AFFECTS: users of hungarian/hunspell AUTHOR: jlaffaye@FreeBSD.org The hunspell port has been moved to textproc/hunspell. To update the installed port run the command # portmaster -o textproc/hunspell hungarian/hunspell or # portupgrade -o textproc/hunspell hungarian/hunspell 20110711: AFFECTS: users of java/openjdk6 AUTHOR: jkim@FreeBSD.org java/openjdk6 has been updated to b23 and "WEB" option (for web browser plug-in and Java Web Start) has been deprecated. If you need the same functionality, rebuild the port with "ICEDTEA" option first, then install a new port java/icedtea-web with "PLUGIN" option (default). Also, if you have a symlink to the previous IcedTeaPlugin.so in ~/.mozilla/plugins, for example, you need to remove it. Note system-wide symlinks are now automatically created by java/icedtea-web for your convenience. 20110711: AFFECTS: users of www/p5-libwww AUTHOR: mandree@FreeBSD.org portmaster cannot process the upgrade of www/p5-libwww from version 5 to version 6. To upgrade p5-libwww, use portupgrade instead, or deinstall p5-libwww before reinstalling: If you use portmaster: # pkg_delete -f 'p5-libwww-5*' ; portmaster www/p5-libwww If you use portupgrade, no special treatment is necessary. 20110711: AFFECTS: users of devel/icu AUTHOR: bapt@FreeBSD.org icu has been updated to version 4.8. Please rebuild all ports that depends on it. If you use portmaster: # portmaster -r icu If you use portupgrade: # portupgrade -fr devel/icu 20110706: AFFECTS: users of multimedia/zoneminder AUTHOR: bsam@FreeBSD.org RC script was renamed from zm to zoneminder. So do variables at /etc/rc.conf[.local]. One should fix the latter file. 20110705: AFFECTS: users of security/libgcrypt and any port that depends on it AUTHOR: swills@FreeBSD.org The libgcrypt port has been updated to 1.5.0 and all shared libraries' versions have been bumped. So you need to rebuild all applications that depend on libgcrypt. Do something like: # portmaster -r libgcrypt or # portupgrade -rf libgcrypt 20110703: AFFECTS: users of print/lyx and print/lyx-devel AUTHOR: makc@FreeBSD.org print/lyx has been updated to 2.0. print/lyx16 has been added to ports tree for those who prefers to stick with the last stable in lyx-1.6.x series. 20110630: AFFECTS: users of math/octave-forge* and benchmarks/octave-forge-benchmark AUTHOR: stephen@FreeBSD.org The octave-forge* port structure has been completely redesigned. This was to make them compatible with portmaster and other port installation tools. Before using the new octave-forge* ports, the old octave-forge* ports must be completely removed with, for example, the command: # pkg_delete "octave-forge*" 20110630: AFFECTS: users of mail/thunderbird AUTHOR: gecko@FreeBSD.org The mail/thunderbird port has been updated to 5.0. If you want to stay with Thunderbird 3.1 please run: # portupgrade -o mail/thunderbird3 mail/thunderbird # portupgrade -o mail/thunderbird3-i18n mail/thunderbird-i18n (if installed) or # portmaster -o mail/thunderbird3 mail/thunderbird # portmaster -o mail/thunderbird3-i18n mail/thunderbird-i18n (if installed) Do not select the OPTIMIZED_CFLAGS option on a system with less then 2 GB of RAM otherwise you will run out of memory during the build. Please make sure all your addons are compatible with Thunderbird 5.0 and backup your ~/.thunderbird directory prior to the first launch of Thunderbird 5.0. 20110630: AFFECTS: users of x11/wbar AUTHOR: nivit@FreeBSD.org x11/wbar has been updated to 2.2.2. Before launching the program, please backup your configuration file (~/.wbar), and then use the command wbar-config to set your preferences and change the path of the old icons (in particular the Bar image). 20110629: AFFECTS: users of graphics/opencv AUTHOR: mm@FreeBSD.org OpenCV was updated to version 2.3.0rc and to avoid circular dependencies split into two ports: graphics/opencv-core and graphics/opencv Before updating please uninstall the graphics/opencv port first because the new dependency graphics/opencv-core contains conflicting files with the old port graphics/opencv. 20110626: AFFECTS: users of mail/p5-Mail-SpamAssassin AUTHOR: wxs@FreeBSD.org mail/p5-Mail-SpamAssassin has been updated to version 3.3.2. Prior to starting spamd you must run sa-update, or spamd will fail to start. 20110624: AFFECTS: users of deskutils/opengoo AUTHOR: acm@FreeBSD.org desktutils/opengoo has been renamed to deskutils/fengoffice, because The OpenGoo name was changed to Feng Office Community Edition. If you want migrate from opengoo to fengoffice, please see upgrading section at: http://fengoffice.com/web/wiki/doku.php/installation 20110623: AFFECTS: users of databases/py-sqlalchemy AUTHOR: nivit@FreeBSD.org The version 0.6 of SQLAlchemy has been moved to databases/py-sqlalchemy06, while the port databases/py-sqlalchemy now holds the series 0.7.X. To update the installed port run the command # portmaster -o databases/py-sqlalchemy06 databases/py-sqlalchemy or # portupgrade -o databases/py-sqlalchemy06 databases/py-sqlalchemy 20110622: AFFECTS: users of lang/perl5.12 AUTHOR: skv@FreeBSD.org lang/perl5.12 has been updated to 5.12.4. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.12. Please see its manual page for details. If you want to switch to lang/perl5.12 from lang/perl5.{8,10} please follow instructions in the entry 20100715 in this file. 20110620: AFFECTS: users of net/samba35 AUTHOR: timur@FreeBSD.org A bug, introduced by local patch to pam_winbind.so, that made it coredump was spotted by Martin Minkus. It is fixed in the 3.5.9 version of the port. So, if pam_winbind.so started to work for you - send him kudos. 20110619: AFFECTS: users of irc/ezbounce and irc/ezbounce-devel AUTHOR: flo@FreeBSD.org irc/ezbounce-devel was moved to irc/ezbounce as the version previously in irc/ezbounce has been broken for some time and the distfile is not available anymore. If you are upgrading from a 1.0X version make sure to verify that your config still works. There is basic compatibility for old config files but a lot has changed, see http://linuxftw.com/ezbounce/files/CHANGES If you run irc/ezbounce-devel you need to run one of the following commands: # portmaster -o irc/ezbounce irc/ezbounce-devel or # portupgrade -o irc/ezbounce irc/ezbounce-devel 20110619: AFFECTS: users of lang/perl5.14 AUTHOR: skv@FreeBSD.org lang/perl5.14 has been updated to 5.14.1. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.14. Please see its manual page for details. If you want to switch to lang/perl5.14 from lang/perl5.{8,10,12} please follow instructions in the entry 20110517 in this file. 20110618: AFFECTS: users of mail/mailscanner AUTHOR: crees@FreeBSD.org mail/mailscanner no longer requires running of any renew-* targets to update the config files / wrapper scripts; it is now automatically performed as the port is installed -- these targets have been removed. As an added bonus, the binary package now performs these steps as well, in case you don't have a portstree handy. Before upgrading, please backup your PREFIX/etc/MailScanner, PREFIX/share/MailScanner and PREFIX/libexec/MailScanner if you have customised any of these directories, just in case. 20110608: AFFECTS: users of security/amavisd-milter AUTHOR: delphij@FreeBSD.org A change have been made to rc.d script for amavisd-milter makes it to specify -s explicitly. If you used to override the location of listening socket by specifying -s, please migrate to the new way (specify amavisd_milter_socket in /etc/rc.conf). 20110607: AFFECTS: users of devel/p5-Moose and devel/p5-Class-MOP AUTHOR: az@FreeBSD.org p5-Moose has been updated to 2.0007. Now p5-Class-MOP is a part of the p5-Moose distribution. Manual intervention of the update procedure is required: # portmaster -o devel/p5-Moose devel/p5-Class-MOP # portmaster -R -r p5-Moose-\* or do the same things with portupgrade. To check everything went fine you can run: # perl -Moose\ 999 and # perl -MClass::MOP\ 999 in both cases you should see output: version 999 required--this is only version 2.0007 20110606: AFFECTS: users of mail/sympa AUTHOR: crees@FreeBSD.org Sympa previously used to install to ${PREFIX}/sympa, which goes against the general rules for hierarchy. Most files which were previously found in ${PREFIX}/sympa should now be found in ${PREFIX}/libexec/sympa. Any configuration in httpd.conf files etc will need to be updated to the new directory. Before upgrade, it is advisable to back up configuration files ${PREFIX}/etc/sympa.conf and wwsympa.conf since previous versions wipe these out on deinstall. 20110606: AFFECTS: users of databases/mariadb AUTHOR: dougb@FreeBSD.org The mariadb port has been split into -client, -scripts, and -server ports ala mysql. You can now install only the parts that you need. If you have devel/libevent installed along with mariadb you should do something like: pkg_delete mariadb\* portmaster devel/libevent 20110605: AFFECTS: users of security/gnutls and any port that depends on it AUTHOR: novel@FreeBSD.org gnutls has been updated to 2.12.6.1 and all shared libraries' versions have been bumped. So you need to rebuild all applications that depend on gnutls. Do something like: portupgrade -rf gnutls portmaster -r gnutls 20110605: AFFECTS: users of sysutils/zfsnap AUTHOR: Aldis Berjoza There is an issue with zpool v28 (currently only on 9-CURRENT, or 8-STABLE systems that have been manually patched) that affects zfSnap. If you are using v28 make sure to use the -zpool28fix flag with zfsnap to work around the problem. For more information please see: http://wiki.bsdroot.lv/zfsnap#zpool_v28_zfs_destroy_-r_bug 20110602: AFFECTS: users of net/freeradius AUTHOR: Sevan Janiyan Freeradius no longer runs as nobody. It now runs as the freeradius user. Please ensure that the following paths are owned by freeradius: /var/run/radiusd /var/log/radacct /var/log/radius.log 20110529: AFFECTS: users of textproc/*kmfl* AUTHOR: nikola.lecic@anthesphoria.net KMFL keyboard ports are now shared between IBus and SCIM KMFL IMEngines (textproc/ibus-kmfl and textproc/scim-kmfl-imengine). Thus, the prefix 'scim-' is dropped from keyboard ports names. Similar to m17n, both engines now search engine-neutral locations, ${LOCALBASE}/share/kmfl/ and ~/.kmfl/. Users have to move their local keyboard files from ~/.scim/kmfl/ to ~/.kmfl/. 20110523: AFFECTS: users of www/mod_perl2 AUTHOR: ohauer@FreeBSD.org mod_perl2 was updated to version 2.0.5, this version includes p5-Apache-Reload again. The ports p5-Apache-Reload is now marked as conflict for mod_perl2. To update your mod_perl2 with portmaster use the commands # portmaster -o www/mod_perl2 www/p5-Apache-Reload # portmaster -R -r mod_perl2 20110522: AFFECTS: users of emulators/virtualbox-ose AUTHOR: vbox@FreeBSD.org The emulators/virtualbox-ose port has been updated to 4.0.8. If you want to stay with VirtualBox 3.2.x please run: # portmaster -o emulators/virtualbox-ose-kmod-legacy emulators/virtualbox-ose-kmod # portmaster -o emulators/virtualbox-ose-legacy emulators/virtualbox-ose or # portupgrade -o emulators/virtualbox-ose-kmod-legacy emulators/virtualbox-ose-kmod # portupgrade -o emulators/virtualbox-ose-legacy emulators/virtualbox-ose The emulators/virtualbox-ose-legacy port will always include the latest legacy version as a fallback if you hit a serious regression in the latest version. 20110517: AFFECTS: users of lang/perl* AUTHOR: skv@FreeBSD.org lang/perl5.14 is out. If you want to switch to it from, for example lang/perl5.12, that is: Portupgrade users: 0) Fix pkgdb.db (for safety): pkgdb -Ff 1) Reinstall new version of Perl (5.14): env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.14 -f perl-5.12.\* 2) Reinstall everything that depends on Perl: portupgrade -fr perl Portmaster users: portmaster -o lang/perl5.14 lang/perl5.12 Conservative: portmaster p5- Comprehensive (but perhaps overkill): portmaster -r perl- Note: If the "perl-" glob matches more than one port you will need to specify the name of the Perl directory in /var/db/pkg explicitly. 20110516: AFFECTS: users of net/skype, net/skype-devel, net-im/skype, net-im/skype-devel AUTHOR: Ion-Mihai Tetcu All skype ports were moved to net-im/: - skype12: unchanged, very old version (for FreeBSD 6) - skype20: last version with OSS support, that used to live in net/skype; the DISTFILE is gone from the vendor but if you happen to have it, it would be a way of having sound w/o needing to upgrade your base OS - [RECOMMENDED] skype: currently at 2.1.0.81 and the best supported - skype-devel: currently at 2.2.0.25, sounds is OK, video doesn't work To run either skype or skype-devel with fully working sound you need: - to run fc10 (most probably, please report what you can do with fc4): (OVERRIDE_LINUX_BASE_PORT=f10,OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf for systems that doesn't have it as default) - In order for Skype to work OK, you need your kernel and modules to be: - post 2011-05-03 in on HEAD - post 2011-05-08 in on 7,8-STABLE The port tries to catch if your system version is too old, but there's a ~3months window where because of a lack of OSVERSION bump, this is not possible. So please check; and PLEASE READ THE PKGMESSAGE for setup details. For how to update your kernel/world, see: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html IF YOUR OSVERSION IS NOT NEW ENOUGH, SOUND (ESPECIALLY MIC) WON'T WORK. If you run into problems, at very least we need to know the output of: $ uname -a; sysctl compat.linux | head -2; \ grep OVERRIDE_LINUX_ /etc/make.conf; \ cat /compat/linux/etc/alsa/pcm/pcm-oss.conf the skype version you are using and hardware details (eg. webcam, if related) I most probably will ignore any mail not containing this info since without it it's impossible to help. Please test your sound /video setup outside skype before blaming skype / mailing me. 20110516: AFFECTS: users of audio/musicpd AUTHOR: Chris Rees Musicpd now installs the binary for the server as bin/musicpd, rather than mpd, to remove a conflict with net/mpich2; before upgrade you should run: # /usr/local/etc/rc.d/musicpd stop Likewise, mpd.conf has been renamed musicpd.conf-- if you want to keep it as mpd.conf then place MPDCONF="mpd.conf" into /etc/make.conf, otherwise after upgrade run: # mv /usr/local/etc/mpd.conf /usr/local/etc/musicpd.conf 20110514: AFFECTS: users of sysutils/gksu, sysutils/libgksu, sysutils/libgksuui AUTHOR: bsam@FreeBSD.org sysutils/gksu has been updated to 2.0.2. sysutils/libgksuui has been deprecated since it has become a part of sysutils/libgksu. Before upgrading remove sysutils/libgksuui. 20110511: AFFECTS: users of editors/emacs AUTHOR: ashish@FreeBSD.org Due to a bug when upgrading from 23.2 or later versions, everything installed by other ports in "${PREFIX}/share/emacs" gets removed. Before upgrading: * Please backup custom configurations in "${PREFIX}/share/emacs". * After upgrading reinstall any ports that may have had files in the "${PREFIX}/share/emacs" directory. 20110509: AFFECTS: users of lang/ghc and */hs-* AUTHOR: ashish@FreeBSD.org GHC has been updated to version 7.0.3 and other Haskell ports are also updated to their Haskell Platform versions or latest versions. To update all affected ports: # portmaster -r lang/ghc or # portupgrade -r lang/ghc 20110506: AFFECTS: users of lang/perl* AUTHOR: skv@FreeBSD.org Default version of Perl was bumped to 5.12. If you already have lang/perl5.10 or lang/perl5.8 installed, and want to switch to lang/perl5.12 please follow instructions in the entry 20100715 in this file. 20110503: AFFECTS: users of www/codeigniter and www/codeigniter-devel AUTHOR: glarkin@FreeBSD.org www/codeigniter has been renamed to www/codeigniter17 to track the legacy 1.7.* branch of Codeigniter development. www/codeigniter-devel has been renamed to www/codeigniter to track the recommended 2.0.* branch of Codeigniter development. If you have Codeigniter 1.7.x installed and would like to continue using it, please run one of the following commands to update its origin: # portmaster -o www/codeigniter17 www/codeigniter or # portupgrade -o www/codeigniter17 www/codeigniter If you have Codeigniter 2.0.x installed, please run one of the following commands to update its origin: # portmaster -o www/codeigniter www/codeigniter-devel or # portupgrade -o www/codeigniter www/codeigniter-devel 20110427: AFFECTS: users of mail/ezmlm-idx AUTHOR: glarkin@FreeBSD.org 1) Please consult the instructions for upgrading to version 7.1.1 from the earlier 0.444 version in the ports tree: Online: https://github.com/bruceg/ezmlm-idx/blob/master/UPGRADE Local: /usr/local/share/doc/ezmlm-idx/UPGRADE 2) SQLite3 has been added as a supported database plugin. Note that the MySQL, PgSQL and SQLite options are mutually exclusive, and the first selected option takes precedence if multiple options are selected. 20110421: AFFECTS: users of multimedia/webcamd AUTHOR: kwm@FreeBSD.org Webcamd now creates device nodes with 0660 permission and webcamd:webcamd ownership. To get access to the webcamd devices just add yourself to the webcamd group. 20110409: AFFECTS: users of japanese/asterisk-sounds AUTHOR: tota@FreeBSD.org The japanese/asterisk-sounds has been updated to 1.8. If you want to stay with ja-asterisk14-sounds, please run: # portmaster -o japanese/asterisk14-sounds japanese/asterisk-sounds or # portupgrade -o japanese/asterisk14-sounds japanese/asterisk-sounds See also 20101128 net/asterisk entry. 20110406: AFFECTS: users of lang/ocaml and related libraries/applications AUTHOR: stas@FreeBSD.org Ocaml compiler and libraries suite has been updated to 3.12. There appears to be an ABI incompatibility with .cmi files generated by previous compiler versions. Though these should only affect the linking process, if some application you're using start to misbehave after the lang/ocaml updated you're advised to rebuild this applications using the new ocaml version. 20110402: AFFECTS: users of net-mgmt/xymon-client and net-mgmt/xymon-server AUTHOR: dinoex@FreeBSD.org Loginname, path, scripts and config files have been renamed in 4.3.0 Steps to update: 1. Stop and deinstall the old version. 2. Copy the remaining config files to the new location. 3. Read the instructions 4. merge your old config with the upgrade430.sh script 5. fix the hobbit_*_enable lines in /etc/rc.conf # /usr/local/etc/rc.d/hobbit-server stop # /usr/local/etc/rc.d/hobbit-client stop # pkg_delete /var/db/pkg/xymon-* # pkg_add xymon-client-4.3.0.tbz # pkg_add xymon-server-4.3.0.tbz # cp /usr/local/www/hobbit/server/etc/* /usr/local/www/xymon/server/etc/ # less /usr/local/www/xymon/server/www/help/upgrade-to-430.txt # /usr/local/www/xymon/server/bin/bbcmd /usr/local/www/xymon/server/bin/upgrade430.sh # sed -i '' -e 's|hobbit|xymon' /etc/rc.conf # /usr/local/etc/rc.d/xymon-client start # /usr/local/etc/rc.d/xymon-server start 20110328: AFFECTS: users of net/openldap24-client AUTHOR: delphij@FreeBSD.org OpenLDAP has been upgraded to 2.4.25. In this version, certain library routines were moved from liblutil to libldap. If you previously built the library with "FETCH" support, this would cause libldap to depend on FreeBSD's libfetch.so library. As of 20110402, a local change have been introduced so OpenLDAP libraries link against libfetch.so when FETCH is enabled. Normally, no further user interaction would be required. For new installations, the FETCH option have been turned off by default. 20110324: AFFECTS: users of KDE SC 4 AUTHOR: kde@FreeBSD.org KDE SC ports have been updated to 4.6.1. As usual a number of files were moved between packages, manual intervention into update procedure is required: # pkg_delete -f kdehier4\* kdebase-runtime-4\* kdebase-workspace-4\* # pkg_delete -f kdeedu-4\* kdeutils-4\* # portmaster -a 20110322: AFFECTS: users of www/firefox AUTHOR: gecko@FreeBSD.org The www/firefox port has been updated to 4.0. If you want to stay with Firefox 3.6 please run: # portupgrade -o www/firefox36 www/firefox # portupgrade -o www/firefox36-i18n www/firefox-i18n (if installed) or # portmaster -o www/firefox36 www/firefox # portmaster -o www/firefox36-i18n www/firefox-i18n (if installed) Do not select the OPTIMIZED_CFLAGS option on a system with less then 2 GB of RAM otherwise you will run out of memory during the build. Please make sure all your addons are compatible with Firefox 4.0 and backup your ~/.mozilla directory prior to the first launch of Firefox 4.0. The startup script has been renamed from firefox3 to firefox. 20110319: AFFECTS: users of databases/mysql55-client AUTHOR: ale@FreeBSD.org The shared library version of the client library was increased to reflect ABI changes, and avoid compatibility problems with the client library in MySQL 5.1, so client programs that use the 5.5 client library should be recompiled against the 5.5.10 client library. This can be achieved with: # portmaster -r mysql-client-5.5 or # portupgrade -fr mysql-client-5.5 20110318: AFFECTS: users of www/node and www/node-devel AUTHOR: araujo@FreeBSD.org The port www/node was merged with www/node-devel since there is no longer a development version. Also www/node has not followed the stable upstream prior to this update. To keep www/node updated in your applications, from now on you must use www/node instead of www/node-devel. If you have been using the www/node-devel, you must run one of the following commands to upgrade: # portmaster -o www/node www/node-devel or # portupgrade -o www/node www/node-devel 20110317: AFFECTS: users of www/uzbl AUTHOR: Klaus Aehlig The port has been updated to version as of 2011/02/15. This introduces the following incompatabilities. - $UZBL_FIFO, $UZBL_TITLE are available to scripts as environment variables, but not as command-line arguments. - environment variables are no longer expanded by the config parser - download handling has changed - cookie daemons are no longer supported Users are advised to change their personal configuration files/scripts accordingly. 20110316: AFFECTS: users of sysutils/duplicity AUTHOR: peter.schuller@infidyne.com sysutils/duplicity has been upgraded to 0.6.11. The old version (0.5.20) is retained as sysutils/duplicity05. Duplicity 0.6 should be generally compatible, but pay special attention to the new meaning of the --archive-dir command. In particular, the archive dir is now mandatory and defaults to ~/.cache/duplicity. You may have to --exclude accordingly. In addition, it is recommended you consult the CHANGELOG, specifically the "New in v0.6.00 (2009/06/08)" section which details the checkpoint/restore feature (enabled by default) and its implications. 20110313: AFFECTS: users of astro/boinc-setiathome-enhanced AUTHOR: rene@FreeBSD.org The setiathome client has been updated to version 6.12. Before you update, finish and report your current workunits to avoid losing them. 20110304: AFFECTS: users of lang/python* and py-* AUTHOR: miwi@FreeBSD.org The default version of Python has been changed from 2.6.x to 2.7.x. If you have 2.6.x installed, perform an upgrade of lang/python26 to lang/python27 with one of the following commands: If using portupgrade: # portupgrade -o lang/python27 lang/python26 If using portmaster: # portmaster -o lang/python27 lang/python26 If you want to retain 2.6.x as default Python version, set the PYTHON_DEFAULT_VERSION variable to 'python2.6' (without quotes) in /etc/make.conf, then go to lang/python and perform the following command: # portupgrade -R python Once the installed Python has been updated to 2.7, by using the method above, it is required to run the upgrade-site-packages target in lang/python to assure that site-packages are made available to the new Python version. If using portupgrade: # cd /usr/ports/lang/python && make upgrade-site-packages If using portmaster: # cd /usr/ports/lang/python && make upgrade-site-packages -DUSE_PORTMASTER The portmaster case can take quite some time to complete due to the lack of cached information that the portupgrade suite uses (specifically pkg_which). This is not the fault of portmaster. 20110301: AFFECTS: users of databases/jasperserver AUTHOR: jhelfman@experts-exchange.com (taken from release notes of 4.0 from vendor) If you are upgrading from an older JasperServer version such as 3.5 then you must first upgrade to JasperServer 3.7 before upgrading to 4.0. Upgrading directly from JasperServer 3.5 to 4.0 is not a "certified" (i.e. fully QA tested) procedure. The steps to carry out this operation are fully documented in the JasperReports Server Installation Guide for the 3.7 release. You will need to download the JasperServer 3.7 release package to get the relevant files and documentation. To download the JasperServer 3.7 WAR file distribution zip package, go to the JasperForge.org website and to the JasperServer project. http://jasperforge.org/projects/jasperserver 20110228: AFFECTS: users of devel/ccache AUTHOR: Emanuel Haupt ccache now allows the use of non-default compilers such as clang. This requires adjustments of the ccache make glue. Please (re)read the following document after updating ccache to ccache-3.1.4_1: /usr/local/share/doc/ccache/ccache-howto-freebsd.txt 20110227: AFFECTS: users of net/unison and net/unison-devel AUTHOR: mandree@FreeBSD.org Unison has been upgraded to version 2.40, which uses a different wire protocol than 2.32 did. In order to support synchronization with other computers where Unison is still at version 2.32, a new port net/unison232 has been created. It provides unison232 and if that is GTK2-enabled, also unison232-text. This unison232 port can be installed in parallel with the existing net/unison port. 20110224: AFFECTS: users of x11-drivers/xf86-video-ati AUTHOR: miwi@FreeBSD.org Xorg has been updated to 7.5.1. For all ATI users the driver was updated to 6.14.0 but the old one is still available in x11-drivers/xf86-video-ati613. See radeon(5) for options available. 20110224: AFFECTS: users of net/openldap24-{client,server} AUTHOR: delphij@FreeBSD.org OpenLDAP has been upgraded to 2.4.24, which requires a shared library version bump. Therefore, you need to reinstall all ports that depend on it. Please do something like: # portupgrade -fr net/openldap24-client or # portmaster -r net/openldap24-client 20110224: AFFECTS: Nobody AUTHOR: wxs@FreeBSD.org FreeBSD 8.2 and 7.4 released. 20110209: AFFECTS: users of www/testlink AUTHOR: tota@FreeBSD.org Testlink 1.9.1 was released. Before updating, you should read carefully the included README file because this release requires a manual update of the database scheme. 20110125: AFFECTS: users of lang/perl5.12 AUTHOR: skv@FreeBSD.org lang/perl5.12 has been updated to 5.12.3. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.12. Please see its manual page for details. If you want to switch to lang/perl5.12 from lang/perl5.{8,10} please follow instructions in the entry 20100715 in this file. 20110124: AFFECTS: users of mail/postfix AUTHOR: sahil@FreeBSD.org Postfix 2.8 introduces minor incompatibilities with previous versions. Alias expansion, dns lookups, TLS support, milters and other features are affected. To avoid surprises, carefully review the RELEASE_NOTES. If you upgrade from Postfix 2.6 or earlier, you must execute "postfix stop" and "postfix start" before you can use the postscreen(8) daemon. This is needed because the Postfix 2.6 "pass" master service type did not work reliably on some systems. If you upgrade from Postfix 2.7, or from Postfix 2.8 before July 25, 2010, you must "postfix reload" (or "postfix stop" followed by "postfix start"). This is needed because the queue manager to delivery agent protocol has changed. Also note that the optional SPF and VDA patches have not been updated for Postfix 2.8; as a result, they are currently disabled. 20110111: AFFECTS: users of www/redmine AUTHOR: decke@FreeBSD.org If you use 3rd party plugins that are incompatible with i18n >= 0.5.0 (eg. variables in yml files as {{variable}}) then you need to install an older i18n version manually. # gem install -v=0.4.2 i18n Then upgrade the database as usual: # rake db:migrate RAILS_ENV=production 20110107: AFFECTS: users of mail/exim AUTHOR: rea@FreeBSD.org [POSSIBLE CONFIG BREAKAGE] The default value for system_filter_user is now the Exim run-time user, instead of root. [POSSIBLE CONFIG BREAKAGE] ALT_CONFIG_ROOT_ONLY is no longer optional and is forced on. This is mitigated by the new build option TRUSTED_CONFIG_LIST which defines a list of configuration files which are trusted; one per line. If a config file is owned by root and matches a pathname in the list, then it may be invoked by the Exim build-time user without Exim relinquishing root privileges. [POSSIBLE CONFIG BREAKAGE] The Exim user is no longer automatically trusted to supply -D overrides on the command-line. Going forward, we recommend using TRUSTED_CONFIG_LIST with shim configs that include the main config. As a transition mechanism, we are temporarily providing a work-around: the new build option WHITELIST_D_MACROS provides a colon-separated list of macro names which may be overriden by the Exim run-time user. The values of these macros are constrained to the regex ^[A-Za-z0-9_/.-]*$ (which explicitly does allow for empty values). Upgrading users are encouraged to fully study ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.73 and ftp://exim.inode.at/exim/ChangeLogs/ChangeLog-4.73 20110103: AFFECTS: users of textproc/libwpd and graphics/libwpg AUTHOR: fluffy@FreeBSD.org LibWPD and LibWPG is now using new API, partially incompatible with previous versions. For correct upgrade procedure please upgrade LibWPD and LibWPG first as described, than follow usual upgrade procedure # portmaster -o textproc/libwpd08 libwpd # portmaster -o graphics/libwpg01 libwpg substitute 'portupgrade' for 'portmaster' accordingly if that's your your upgrade tool of choice. 20101230: AFFECTS: users of databases/postgresql??-(server|client) AUTHOR: ohauer@FreeBSD.org PostgreSQL version 8.4 is now the default. To upgrade from a version lower than 8.4, follow the instructions on the PostgreSQL.org website. http://www.postgresql.org/docs/8.4/interactive/install-upgrading.html 20101230: AFFECTS: users of net-mgmt/pnp AUTHOR: rea@FreeBSD.org Starting from 0.6.10_1 config.php is no longer preserved across upgrades; PNP way is to put all modifications into config_local.php. Existing config.php will be saved as config.php.orig and you should review your deviations from defaults and place them into config_local.php. 20101227: AFFECTS: users of databases/mysql55-server AUTHOR: ale@FreeBSD.org MySQL 5.5 has been updated to 5.5.8 GA release. Since layout is changed you should remove mysql55-{client/server/scripts} ports before upgrading. The build system is changed too, so expect failures. 20101227: AFFECTS: users of security/opensc AUTHOR: ale@FreeBSD.org opensc has been updated to 0.12.0 release. Only one backend can be choosen at compile-time: PC/SC is now the default one. opensc doesn't export anymore its internal library, PKCS#11 is the recommended interface. 20101220: AFFECTS: users of net-mgmt/flowd AUTHOR: ohauer@FreeBSD.org flowd use now a fix UID/GID (id 542) instead the next free UID. Before updating the port use the command "pw userdel _flowd" 20101216: AFFECTS: users of security/libksba AUTHOR: glarkin@FreeBSD.org libksba has been updated to 1.1.0, and the shared library version has increased from .17 to .18. Directly- and indirectly-dependent ports have had their PORTREVISION bumped to facilitate rebuilding. Please rebuild the dependent ports with your preferred upgrading tool: # portupgrade -rf security/libksba -or- # portmaster -w -r security/libksba If there are still ports on your system that require ksba.so.17 (either in ${LOCALBASE}/lib/compat/pkg, or non-existent), _please_ file a PR so that a correct direct dependency can be added. Once you are satisfied that no ports still depend on the old shared library version (libksba.so.17), you can safely delete it from the ${LOCALBASE}/lib/compat/pkg directory if it is present there. 20101216: AFFECTS: users of databases/akonadi AUTHOR: avilla@FreeBSD.org With SQLite 3 installed, Akonadi used to build its plugin and install it in a wrong place, without it being listed in plist. To remove the orphaned file, run the following commands PRIOR TO the Akonadi upgrade: # cd /usr/ports/databases/akonadi # rm `make -V KDE4_PREFIX`/`make -V QT_PLUGINDIR_REL`/sqldrivers/libqsqlite3.so # rmdir `make -V KDE4_PREFIX`/`make -V QT_PLUGINDIR_REL`/sqldrivers \ `make -V KDE4_PREFIX`/`make -V QT_PLUGINDIR_REL` \ `make -V KDE4_PREFIX`/`make -V QT_LIBDIR_REL` 20101214: AFFECTS: users of devel/icu AUTHOR: bapt@FreeBSD.org icu has been updated to version 4.6. Please rebuild all ports that depends on it. If you use portmaster: # portmaster -r icu If you use portupgrade: # portupgrade -fr devel/icu Note that devel/icu4 is now deprecated consider replacing it by devel/icu # portmaster -o devel/icu devel/icu4 or # env DISABLE_CONFLICTS=1 portupgrade -o devel/icu -f icu-4\* 20101211: AFFECTS: users of devel/bugzilla, japanese/bugzilla and russian/bugzilla-ru AUTHOR: tota@FreeBSD.org Bugzilla and its language packs are installed to WWWDIR (defaults to PREFIX/www/bugzilla). BUGZILLADIR (that defaulted to PREFIX/www/data/bugzilla) is deprecated. 20101211: AFFECTS: users of databases/mysql-proxy AUTHOR: Florian Smeets The parameters --admin-username and --admin-password are mandatory now. Add something like the following to rc.conf mysql_proxy_args="--admin-username admin --admin-password somepassword" 20101210: AFFECTS: users of multimedia/avidemux2 AUTHOR: nox@FreeBSD.org The port has been updated to 2.5.4 which now installs plugins separately and I had to make a slave port for them, multimedia/avidemux2-plugins. So you'll now have to install that port too for the app to become useful. 20101208: AFFECTS: autotools AUTHOR: autotools@FreeBSD.org Another stage in the autotools cleanup that reduces tree churn whilst updating components, a number of ports have now moved to non-versioned locations since there is now only the concept of legacy and current versions. # portmaster -o devel/autoconf devel/autoconf268 # portmaster -o devel/automake devel/automake111 # portmaster -o devel/libtool devel/libtool22 # portmaster -o devel/libltdl devel/libltdl22 substitute 'portupgrade' for 'portmaster' accordingly if that's your your upgrade tool of choice. 20101205: AFFECTS: users of www/py-flexget AUTHOR: lioux@FreeBSD.org Database schema changes. Please run: $ sqlite3 db-config.sqlite "ALTER TABLE thetvdb_favorites ADD series_id VARCHAR;" $ sqlite3 db-config.sqlite "ALTER TABLE imdb_movies ADD updated DateTime;" $ sqlite3 db-config.sqlite "ALTER TABLE imdb_movies ADD mpaa_rating VARCHAR;" inside flexget configuration directory (~/.flexget) for each sqlite database you might have. Replace "db-config.sqlite" with the appropriate name for your sqlite database file. 20101204: AFFECTS: users of audio/libmpcdec AUTHOR: lioux@FreeBSD.org audio/libmpcdec has been removed in favor of audio/musepack; which has a higher shared library version. You will have to rebuild all ports that depend on audio/libmpcdec. Do this: Portmaster users: # portmaster -o audio/musepack audio/libmpcdec # portmaster -r musepack- Portupgrade user: # env DISABLE_CONFLICTS=1 portupgrade -o audio/musepack -f libmpcdec-\* # pkgdb -Ff # portupgrade -rf musepack-\* 20101204: AFFECTS: autotools AUTHOR: autotools@FreeBSD.org The next stage in the ongoing cleanup of autotools-using ports is a refactoring of bsd.autotools.mk so that version numbers are no longer needed within the USE_AUTOTOOLS stanza. There is either autoconf213/autoconf or automake14/automake (for the legacy versions, and the currently available versions). This will considerably reduce the amount of tree-wide patching in future on an update. IMPORTANT: if you have either devel/autoconf-wrapper or devel/automake-wrapper installed on your system (and you most likely do) PLEASE update these ports to their new versions before updating anything else -- Bad Things[tm] are likely to happen otherwise. 20101202: AFFECTS: users of multimedia/gstreamer-plugins AUTHOR: multimedia@FreeBSD.org If during the upgrade of gstreamer-plugins the following error happens: GstAudio-0.10.gir: Incompatible version 1.0 (supported: 1.2) Use the following command to upgrade: cd ports/multimedia/gstreamer-plugins && make deinstall clean install 20101202: AFFECTS: users of www/wordpress AUTHOR: sunpoet@FreeBSD.org WordPress is now installed to WWWDIR (defaults to PREFIX/wordpress) instead of WORDPRESS (defaults to PREFIX/www/data/wordpress). 20101129: AFFECTS: users of sysutils/radmind AUTHOR: ohauer@FreeBSD.org The radmind user and group is created automatically during installation. The owner of $RADMIND_BASE_DIR changes from root to radmind. 20101128: AFFECTS: users of net/asterisk, net/asterisk-addons AUTHOR: Florian Smeets If you want to upgrade to 1.8.0 first remove asterisk-addons by running # pkg_delete -f asterisk-addons\* after that you can run one of the following # portmaster asterisk or # portupgrade asterisk You need to update your config files as the step from 1.4.x to 1.8.x is quite big. First you need to look at what changed between 1.4 and 1.6 http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE-1.6.txt After that you also need to take into account what chagne between 1.6 and 1.8 http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE.txt If you want to stay with asterisk 1.4.x please run # portmaster -o net/asterisk14 net/asterisk # portmaster -o net/asterisk14-addons net/asterisk-addons or # portupgrade -o net/asterisk14 net/asterisk # portupgrade -o net/asterisk14-addons net/asterisk-addons 20101127: AFFECTS: users of mail/postfix, mail/postfix2[56] AUTHOR: sahil@FreeBSD.org As of Postfix 2.7.2, 2.6.8, 2.5.11: Postfix no longer automatically appends the system default CA (certificate authority) certificates, when it reads the CA certificates specified with {smtp, lmtp, smtpd}_tls_CAfile or with {smtp, lmtp, smtpd}_tls_CApath. This prevents third-party certificates from getting mail relay permission with the permit_tls_all_clientcerts feature. Unfortunately, this change may cause compatibility problems with configurations that rely on certificate verification for other purposes. To get the old behavior, specify "tls_append_default_CA = yes". 20101124: AFFECTS: users of www/py-flexget AUTHOR: lioux@FreeBSD.org metainfo_series is no longer a builtin. This should only affect you if you aren't using one of the series plugins (series, all_series, thetvdb_favorites, or series_premiere.) If you need to enable metainfo_series manually for a feed it can be done like so: metainfo_series: yes 20101120: AFFECTS: users of x11-toolkits/gtk20 and x11-toolkits/gtkmm24 AUTHOR: FreeBSD GNOME Team In the GNOME 2.32 release. gdk-pixbuf2 has been split off from gtk20, and atkmm has been split off from gtkmm24. To upgrade please use the following instructions: Portmaster users: # pkg_delete -f gtkmm-2.20\* gtk-2.20\* # portmaster -a Portupgrade users: # pkgdb -fF # pkg_deinstall -fO gtkmm-2.20\* gtk-2.20\* # portupgrade -aOW 20101118: AFFECTS: users of editors/emacs-devel AUTHOR: Ashish SHUKLA Due to a bug when upgrading from 24.0.50.101606, everything installed by other ports in "${PREFIX}/share/emacs" gets removed. Before upgrading: * Please backup custom configurations in "${PREFIX}/share/emacs". * After upgrading reinstall any ports that may have had files in the "${PREFIX}/share/emacs" directory. Apologies for this inconvenience. 20101117: AFFECTS: users of net-p2p/transmission-cli and net-p2p/transmission-gtk AUTHOR: Mezz Transmission has been updated to 2.12. The following name of binaries and manpages have been renamed: transmissioncli -> transmission-cli transmission -> transmission-gtk 20101117: AFFECTS: users of devel/ccache AUTHOR: Emanuel Haupt Updated instructions on how to workaround a buildworld failure have been committed. Please (re)read the following document after updating ccache to 3.1.1_1: /usr/local/share/doc/ccache/ccache-howto-freebsd.txt 20101110: AFFECTS: users of databases/mysql55-server AUTHOR: Alex Dupre If you are upgrading from a previous MySQL release, the server will exit during startup after finding that the proxies_priv table is missing. To create the table, start the server with the --skip-grant-tables option to cause it to skip the normal grant table checks, then run mysql_upgrade. Then stop the server and restart it normally. You can do this by temporarly setting the following line in rc.conf: mysql_args="--skip-grant-tables --skip-networking" 20101108: AFFECTS: users of databases/py-bsddb3 AUTHOR: wen@FreeBSD.org py-bsddb3 update to 5.1.0. This release drops support for Berkeley DB 4.1, and adds support for Berkeley DB version 5.1, brand new. If you need Berkeley DB 4.1 support, keep using pybsddb 5.0.0. If you want support for Berkeley DB 5.1, remember to install the BDB library before installing these bindings. 20101030: AFFECTS: users of www/xshttpd-devel AUTHOR: johans@FreeBSD.org The default XS-httpd configuration file locations have changed: The main configuration file is now $PREFIX/etc/xshttpd/httpd.conf and other configuration file are stored in that same directory. Existing configurations should be moved over manually. Log files now appear in /var/log/xshttpd/ by default. 20101029: AFFECTS: users of ports-mgmt/portmaster AUTHOR: Doug Barton The changes to bsd.port.mk in 1.652 require all portmaster users to upgrade to version 3.1 or later. The best method to do this will be to use the port, rather than portmaster itself: # pkg_delete -f portmaster\* # cd /usr/ports/ports-mgmt/portmaster && make clean && make install clean 20101026: AFFECTS: users of net/samba35 AUTHOR: Timur Bakeyev This is the latest stable release of the Samba3 distribution. It has been extended with the experimental support of the NFS4-like ACLs on ZFS partitions, thanks to the sysutils/libsunacl library by Edward Tomasz Napierala(trasz). This support haven't been tested thoroughly, so try it on your own risk. This port reverted back to the pre- net/samba34 layout of the directories and now they are again $PREFIX/etc/samba, /var/run/samba, /var/log/samba, /var/db/samba and /var/spool/samba respectively. In case, you are upgrading from net/samba34, please rename corresponding samba34/ subdirectories into samba/ ones. Upgrades from older versions of Samba and fresh installations should be seamless. 20101015: AFFECTS: users of devel/llvm-devel who use clang AUTHOR: Brooks Davis The clang portion of devel/llvm-devel has been split out and now resides in lang/clang-devel. If you have devel/llvm-devel installed in order to use clang, you will need to install the clang-devel port when upgrading. 20101003: AFFECTS: users of www/typo3 AUTHOR: Helmut Schneider www/typo3 has been repocopied to www/typo343. If you need to continue with the old stable version please run # portmaster -o www/typo343 www/typo3 or # portupgrade -o www/typo343 www/typo3 Please remember to change the path of your config files too. 20101003: AFFECTS: users of net-mgmt/kismet AUTHOR: bf@FreeBSD.org This update includes major changes in how Kismet works and is configured. Clients, servers, drones, and configuration files must be updated to work with the new version. Map support has not yet been added. See the kismet README for details. 20100929: AFFECTS: users of sysutils/zfsnap AUTHOR: Aldis Berjoza Since timestamp format changed you need to use -o option with -d option in order to be able to delete old snapshots. Note however that you don't need -o when creating new snapshots, unless you want to keep using the old timestamp format. See http://wiki.bsdroot.lv/zfsnap for more info. 20100927: AFFECTS: users of mail/postfix-current AUTHOR: ohauer@FreeBSD.org Incompatibility with snapshot 20100912 ====================================== - If your DNSBL queries have a "secret" in the domain name, you must now censor this information from the postscreen(8) SMTP replies. - The postscreen "continue" action is now called "ignore". The old name is still supported but no longer documented. - The postscreen_hangup_action parameter was removed. Postscreen now always behaves as if "postscreen_hangup_action = drop". - The postscreen_cache_retention_time default was increased from 1d to 7d, to avoid deleting results from expensive deep SMTP protocol tests too quickly. Incompatibility with snapshot 20100827 ====================================== - The Postfix SMTP client no longer appends the local domain when looking up a DNS name without ".". Specify "smtp_dns_resolver_options = res_defnames" to get the old behavior, which may produce unexpected results. 20100924: AFFECTS: users of x11/nvidia-driver AUTHOR: makc@FreeBSD.org nvidia-driver does not install vdpau library and headers anymore, they are now provided by multimedia/libvdpau port. To avoid conflict, please rebuild nvidia-driver port before upgrading your ports and before installing multimedia/libvdpau. 20100921: AFFECTS: users of p5-Compress-Zlib, p5-IO-Compress-* AUTHOR: mm@FreeBSD.org The p5-Compress-Zlib, p5-IO-Compress-Base, p5-IO-Compress-Zlib and p5-IO-Compress-Bzip2 ports have been replaced by p5-IO-Compress. Users of Perl 5.10 and higher do not need to install this module because it is already included in the standard perl distribution. 20100920: AFFECTS: users of security/stunnel AUTHOR: roam@FreeBSD.org In stunnel-4.34, the DH support is no longer configurable by the user, but always enabled when OpenSSL supports it instead. This means that it will now most probably be enabled on the supported versions of FreeBSD. If this leads to problems with old SSL clients, I will look into making it configurable at build time again. 20100917: AFFECTS: users of sysutils/cdrtools-cjk AUTHOR: marius@FreeBSD.org sysutils/cdrtools-cjk port has been removed, as the required functionality is now available in cdrtools 3.0.0 in the standard sysutils/cdrtools port. 20100915: AFFECTS: autoconf, automake AUTHOR: autotools@FreeBSD.org autoconf has been updated from 2.62 to 2.67 -- all ports depending on autoconf-2.62 have had their PORTREVISIONs update, so a standard port updating method will suffice. USE_GETTEXT has been extended to also accept 'build' and 'run' for ports which need devel/gettext as a BUILD- or RUN-time dependency only. No port should now be directly depending on devel/gettext in Makefiles. 20100915: AFFECTS: users of sysutils/cdrtools-cjk AUTHOR: marius@FreeBSD.org Version 3.00 of sysutils/cdrtools breaks but at the same time also obsoletes sysutils/cdrtools-cjk as mkisofs now employs iconv for character conversion. Consequently sysutils/cdrtools-cjk is marked BROKEN and the use of USE_CDRTOOLS=cjk as well as USE_CDRTOOLS together with the WITH_CJK knob left in a broken state until bsd.port.mk is updated by portmgr@ accordingly. Once USE_CDRTOOLS is updated to no longer refer to sysutils/cdrtools-cjk the latter will be removed. Previous users of sysutils/cdrtools-cjk should switch to using sysutils/cdrtools instead, which might require not using the WITH_CJK knob until said update of bsd.port.mk has happened. 20100915: AFFECTS: users of lang/perl5.12 AUTHOR: skv@FreeBSD.org lang/perl5.12 has been updated to 5.12.2. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.12. Please see its manual page for details. If you want to switch to lang/perl5.12 from lang/perl5.{8,10} please follow instructions in the entry 20100715 in this file. 20100912: AFFECTS: ftp/curl AUTHOR: roam@FreeBSD.org With version 7.21.1, the cURL port is built with stricter compiler checking by default (the -Werror flag is passed to the C compiler, making it treat any warnings as fatal errors). If you experience problems building cURL, re-run "make config" in the ftp/curl directory and disable the WERROR knob. 20100912: AFFECTS: www/tdiary-devel, japanese/tdiary-devel AUTHOR: tota@FreeBSD.org The stable tDiary ports, www/tdiary and japanese/tdiary, have been updated to 3.0.0. The development versions of tDiary have been merged from www/tdiary-devel to www/tdiary and from japanese/tdiary-devel to japanese/tdiary, respectively. If you have been using the www/tdiary-devel or japanese/tdiary-devel, you run one of the following commands to upgrade: - www/tdiary-devel # portmaster -o www/tdiary www/tdiary-devel or # portupgrade -o www/tdiary www/tdiary-devel - japanese/tdiary-devel # portmaster -o japanese/tdiary japanese/tdiary-devel or # portupgrade -o japanese/tdiary japanese/tdiary-devel Before upgrading, please read the following for more details: http://www.tdiary.org/20100828.html (written in Japanese) 20100907: AFFECTS: sysutils/pecl-fileinfo AUTHOR: ale@FreeBSD.org If you are using php 5.3 (lang/php5) and fileinfo extension, you should switch to sysutils/php5-fileinfo port: portmaster -o sysutils/php5-fileinfo sysutils/pecl-fileinfo 20100904: AFFECTS: net/netcat AUTHOR: pgollucci@FreeBSD.org Rename nc to netcat to prevent /usr/bin/nc shadowing /usr/local/bin/nc 20100902: AFFECTS: users of KDE4 AUTHOR: kde@FreeBSD.org KDE SC ports has been updated to 4.5.1. A number of files were moved between packages, manual intervention into update procedure is required: # pkg_delete -f kdehier4\* kdelibs-4\* kdebase-4\* kdebase-runtime-4\* kdebase-workspace-4\* # rm -rf /usr/local/kde4/share/PolicyKit/policy # cd /usr/ports/misc/kdehier4 && make install clean # portmaster -a 20100901: AFFECTS: users of www/rubygem-rails AUTHOR: pgollucci@FreeBSD.org Rails has been updated to 3.0.0. As always, make sure you check the changes at http://weblog.rubyonrails.org/. 20100817: AFFECTS: users of www/lighttpd AUTHOR: mm@FreeBSD.org The modules mod_geoip and mod_h264_streaming have been moved into slave ports: www/lighttpd-mod_geoip and www/lighttpd-mod_h264_streaming 20100818: AFFECTS: users of www/lighttpd AUTHOR: mm@FreeBSD.org The default lighttpd configuration file locations have changed. The main configuration file is now: $PREFIX/etc/lighttpd/lighttpd.conf and includes other configuration files from $PREFIX/etc/lighttpd/ For compatibility with old-style configurations, if the lighttpd_conf variable is not set in /etc/rc.conf, $PREFIX/etc/lighttpd.conf takes precedence over $PREFIX/etc/lighttpd/lighttpd.conf 20100815: AFFECTS: users of databases/redis and databases/redis-devel AUTHOR: osa@FreeBSD.org The redis configuration file, redis.conf, have been changed, some options removed in newer versions (>=2.0). In some cases, redis-server with older configuration might does not run at startup. If you run into startup problems, re-edit configuration file. 20100813: AFFECTS: www/opera AUTHOR: dinoex@FreeBSD.org If you run opera without gtk or kde4, the browser might crash on shutdown. In this case go to about:config and change "Dialog Toolkit" from 0 to 4. 20100811: AFFECTS: multimedia/mpeg4ip-libmp4v2 AUTHOR: makc@FreeBSD.org multimedia/mpeg4ip-libmp4v2, which is not maintained upstream, has been replaced with new port, multimedia/mp4v2. The shared library version has been changed with this update, thus all ports that depends on mp4v2 library must be rebuilt: portmaster -o multimedia/mp4v2 multimedia/mpeg4ip-libmp4v2 portmaster -a 20100731: AFFECTS: users of devel/ccache AUTHOR: ehaupt@FreeBSD.org Users upgrading from 2.4 release should clear the old cache directory with: # ccache --clear 20100730: AFFECTS: users of www/neon28 and www/neon29 AUTHOR: mezz@FreeBSD.org Makes neon29 our default neon library in the ports tree. The www/neon28 has been removed and www/neon29's shared library version has been changed. You will have to rebuild all ports that depend on www/neon29. Do this: Portmaster users: portmaster -o www/neon29 www/neon28 portmaster -r neon29- Portupgrade user: env DISABLE_CONFLICTS=1 portupgrade -o www/neon29 -f neon28-\* pkgdb -Ff portupgrade -rf neon29-\* 20100728: AFFECTS: users of textproc/nltk AUTHOR: clsung@FreeBSD.org Nltk has been upgraded to 2.0b8 which depends on devel/py-yaml now. You need to deinstall nltk before upgrading, since the previous port will delete files installed from py-yaml during its deinstall phase. Use, for example: # pkg_delete nltk-2.0b7,1 # portsnap fetch update # cd /usr/ports/textproc/nltk/ # make install clean 20100727: AFFECTS: users of security/libgcrypt AUTHOR: wxs@FreeBSD.org libgcrypt has been upgraded to 1.4.6 which has a shared library version bump. You need to reinstall all ports that depend on it. Use something like this: portupgrade -rf libgcrypt portmaster -r libgcrypt 20100722: AFFECTS: users of net/rabbitmq AUTHOR: Phillip The database schema and the format in which persistent messages are stored have both changed since the last release (1.7.2). When starting, the RabbitMQ server will detect the existence of an old database and will move it to a backup location, before creating a fresh, empty database, and will log a warning. 20100715: AFFECTS: users of lang/perl* AUTHOR: skv@FreeBSD.org lang/perl5.12 is out. If you want to switch to it from, for example lang/perl5.10, that is: Portupgrade users: 0) Fix pkgdb.db (for safety): pkgdb -Ff 1) Reinstall new version of Perl (5.12): env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.12 -f perl-5.10.\* 2) Reinstall everything that depends on Perl: portupgrade -fr perl Portmaster users: portmaster -o lang/perl5.12 lang/perl5.10 Conservative: portmaster p5- Comprehensive (but perhaps overkill): portmaster -r perl- Note: If the "perl-" glob matches more than one port you will need to specify the name of the Perl directory in /var/db/pkg explicitly. 20100626: AFFECTS: users of japanese/ibus-mozc AUTHOR: daichi@FreeBSD.org The japanese/ibus-mozc port has been updated to version 0.11.383.102, and separated into 5 ports to cope with upcoming new port japanese/scim-mozc. o japanese/mozc-server o japanese/mozc-tool o japanese/mozc-additions o japanese/ibus-mozc o devel/py-gyp-devel You can not upgrade with portupgrade or portmaster. To upgrade, you must deinstall japanese/ibus-mozc first and then install the new japanese/ibus-mozc. For example: # pkg_delete ja-ibus-mozc-0.11.365.102_1 # portsnap fetch update # cd /usr/ports/japanese/ibus-mozc/ # make install clean 20100617: AFFECTS: users of security/{dirmngr|gnupg} AUTHOR: dougb@FreeBSD.org The security/libassuan port has been updated to version 2.0.0, and the applications listed above have been updated to use it as of versions 1.1.0 and 2.0.15 respectively. If you HAVE NOT updated your libassuan port as described in the 20100613 entry, you can simply update all 3 ports together (libassuan, dirmngr if installed, and gnupg) using your normal upgrade path. If you HAVE updated to libassuan-1, then you need to do the following before upgrading dirmngr and gnupg. If you use portupgrade: portupgrade -f -o security/libassuan security/libassuan-1 If you use portmaster: portmaster -o security/libassuan libassuan-1 If you use neither: pkg_delete -f libassuan* Please note, libassuan version 2.0.0 is now a shared library, so unlike the previous version it is now a runtime dependency and cannot be deleted after you are done building dirmngr and/or gnupg. 20100613: AFFECTS: users of deskutils/kdepim4, and security/{gpa|opensc} AUTHOR: dougb@FreeBSD.org The security/libassuan port has been updated to version 2.0.0, however, the applications listed above are not yet compatible with it. Therefore security/libassuan-1 has been created until they can be updated, and the ports listed above have been updated to depend on it. You must first replace your existing libassuan with version 1 in the new location, then you can update the ports listed above normally. If you use portupgrade: portupgrade -f -o security/libassuan-1 security/libassuan If you use portmaster: portmaster -o security/libassuan-1 libassuan If you use neither: pkg_delete -f libassuan* 20100609: AFFECTS: users of audio/libogg and audio/libao AUTHOR: naddy@FreeBSD.org There are new versions of libogg (1.2.0) and libao (1.0.0) and the shared library versions have been bumped (ogg.6 to ogg.7, ao.3 to ao.4). All ports that have an identifiable direct dependency on these libraries have had their PORTREVISIONs bumped. However, some ports that pull in the libraries indirectly may continue to look for the old versions. To ensure that all are updated, perform this step: If you use portupgrade: portupgrade -rf libogg libao If you use portmaster: portmaster -r libogg libao 20100605: AFFECTS: users of multimedia/gstreamer-plugins-good and multimedia/gstreamer-plugins-bad AUTHOR: kwm@FreeBSD.org Certain plugins were moved from the -bad port to the -good port. Please follow instructions below before proceeding with normal update steps: If you use portmaster: portmaster gstreamer-plugins-bad If you use portupgrade: portupgrade -R multimedia/gstreamer-plugins-bad 20100602: AFFECTS: users of lang/mono AUTHOR: romain@FreeBSD.org Starting with Mono 2.6, the Moonlight compiler and assemblies are not installed by the lang/mono port anymore. They are however provided by the multimedia/moonlight port. If you are doing some Silverlight development, install multimedia/moonlight after updating lang/mono. 20100530: AFFECTS: users of devel/gettext (i.e.: YOU) AUTHOR: ade@FreeBSD.org Another version of gettext (0.18), and another shared library version bump (from intl.8 to intl.9), so: All ports that have an identifiable known direct dependency on gettext have had their PORTREVISIONs bumped. If after upgrading: # portupgrade -rf gettext # portmaster -w -r gettext The upgrade of devel/gobject-introspection may fail because it is looking for libintl.so.8. In this case, do the following: # cd /usr/ports/devel/gobject-introspection # make clean # make deinstall # make install clean Then continue your upgrade procedure normally. If there are still ports on your system that are looking for libintl.so.8 (either in ${LOCALBASE}/lib/compat/pkg, or non-existent), _please_ file a PR so that a correct direct dependency can be added. Once you are satisfied that no ports still depend on the old versions (such as libgettextpo.so.4 and libintl.so.8) you can safely delete them from the ${LOCALBASE}/lib/compat/pkg directory if they are present there. 20100524: AFFECTS: users of devel/darcs, ports-mgmt/porte, textproc/pandoc, x11/xmobar, x11-wm/xmonad, x11-wm/xmonad-contrib AUTHOR: pgj@FreeBSD.org The following ports have been renamed to improve consistency among Haskell Cabal ports: - devel/darcs -> devel/hs-darcs - ports-mgmt/porte -> ports-mgmt/hs-porte - textproc/pandoc -> textproc/hs-pandoc - x11/xmobar -> x11/hs-xmobar - x11-wm/xmonad -> x11-wm/hs-xmonad - x11-wm/xmonad-contrib -> x11-wm/hs-xmonad-contrib Please follow these steps below to update Haskell ports that you have installed: 1) Reinstall the renamed Haskell port dependencies (see previous entry). Note that this will possibly require that you remove the affected leaf (aforementioned) ports as well; 2) Reinstall the renamed application(s) you use. 20100524: AFFECTS: users of hs-* ports AUTHOR: pgj@FreeBSD.org The following Haskell ports have been renamed in order to bring them in sync with the naming scheme used at HackageDB. Please follow these steps below to update your installation: 1) Delete the following ports (if you have any of them installed): - hs-zip-archive-ghc - hs-binary-ghc - hs-language-c-ghc - hs-lazysmallcheck-c-ghc - hs-pcre-light-ghc - hs-utf8-string-ghc - hs-HGL-ghc - hs-digest-ghc - hs-haxml - hs-highlighting-kate-ghc - hs-polyparse-ghc - hs-x11-ghc - hs-x11-xft-ghc - hs-opengl-ghc - hs-OpenGLRaw-ghc - hs-OpenGLURaw-ghc - hs-glut-ghc 2) Rebuild the renamed ports and all ports that depend on them. 20100518: AFFECTS: users of devel/pylint AUTHOR: mva@FreeBSD.org The pylint user configuration files have been changed slightly in newer versions (>=0.20.0). In some cases, older configurations might crash pylint at startup. If you run into startup problems, make sure you remove the .pylintrc configuration settings and the .pylint.d directory from your home directory: $ rm ~/.pylintrc $ rm -rf ~/.pylint.d 20100518: AFFECTS: users of devel/apr0, devel/apr1, www/apache20, www/apache22 AUTHOR: pgollucci@FreeBSD.org devel/apr port has been renamed to devel/apr1. WITH_APR_FROM_PORTS=yes for www/apache22 has been dissolved and may be removed from your configuration files; devel/apr1 is always used now. Please manually delete apache-2.\* if installed _before_ updating using either portmaster or portupgrade: pkg_delete -f apache-2.\* Then, if you use portmaster: portmaster -o devel/apr1 devel/apr If you use portupgrade: portupgrade -f -o devel/apr1 devel/apr Finally, reinstall Apache port if you deleted it earlier and update ports as usual (`XX' below is either 20 or 22): portinstall www/apacheXX 20100512: AFFECTS: users of www/apache20 AUTHOR: pgollucci@FreeBSD.org The rc.d script has been renamed: apache2.sh -> apache2 You'll need to update any crons wrappers, etc. for the new paths. 20100511: AFFECTS: users of KDE SC 4 AUTHOR: kde@FreeBSD.org KDE SC ports have been updated from 4.3.5 to 4.4.3. A number of libraries was moved between packages. The recommended update procedure is to delete kdelibs-experimental*, kdebase-4*, kdebase-workspace-4*, kdebase-runtime-4*, kdepim-4*, kdepim-runtime-4*, and then update ports as usual and install desired KDE4 ports: # pkg_delete -f kdebase-\*4\* kdepim-\*4\* kdelibs-experimental-\*4\* # portmaster -a (or portupgrade -aR) In order to enabled Nepomuk semantic desktop search you have to install databases/virtuoso (you don't need to manually configure or run virtuoso server). 20100511: AFFECTS: users of textproc/redland RDF engine AUTHOR: kde@FreeBSD.org Redland RDF engine has been split into redland itself and rasqal engine. The recommended update procedure is to delete redland, then update ports as usual and install desired RDF ports: # pkg_delete -f redland-\* # portmaster raptor (or portupgrade -r raptor) 20100511: AFFECTS: users of multimedia/qt4-phonon, multimedia/qt4-phonon-gst, multimedia/phonon, and multimedia/phonon-gstreamer AUTHOR: kde@FreeBSD.org WITH_QT_PHONON global knob has been introduced to allow selection between multimedia/qt4-phonon* ports (a bit outdated Phonon, which is shipped with Qt4) and multimedia/phonon* ports. Since KDE SC 4.4 requires fresh Phonon, multimedia/phonon* ports are installed by default. If you don't use KDE, you may set WITH_QT_PHONON=yes in /etc/make.conf and continue to use Qt4 Phonon implementation ports. If you want to use KDE SC 4.4 (or if you want the latest Phonon), do not define WITH_QT_PHONON, delete multimedia/qt4-phonon* ports, and install multimedia/phonon*: If you use portmaster: portmaster -o multimedia/phonon multimedia/qt4-phonon portmaster -o multimedia/phonon-gstreamer multimedia/qt4-phonon-gst If you use portupgrade: portupgrade -f -o multimedia/phonon multimedia/qt4-phonon portupgrade -f -o multimedia/phonon-gstreamer multimedia/qt4-phonon-gst 20100510: AFFECTS: users of security/gnome-keyring AUTHOR: kwm@FreeBSD.org libgnome-keyring was split out of the gnome-keyring package. Perform the following before doing your normal upgrade steps: pkg_delete -f "gnome-keyring-*" portmaster security/gnome-keyring or pkgdb -Ff portupgrade -R -x gnome-keyring -x libgnome-keyring gnome-keyring pkg_deinstall -fO gnome-keyring portinstall security/gnome-keyring 20100506: AFFECTS: users of mail/nullmailer on FreeBSD 6.X AUTHOR: glarkin@FreeBSD.org The nullmailer port was recently updated with an rc.d script to correctly daemonize nullmailer-send with daemon(8). On FreeBSD 6.X, daemon(8) does not support "[-u user]" command-line switch, causing the nullmailer rc.d script failure to start nullmailer-send. Support for "[-u user]" command-line switch was recently MFC'd to 6-STABLE (http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/146266). FreeBSD 6.X users should patch and install daemon(8) by one of the methods described below. If /usr/src is not yet populated, csup the 6-STABLE sources and run these commands: cd /usr/src/usr.sbin/daemon make install /usr/local/etc/rc.d/nullmailer start If /usr/src is already populated with sources from a previous 6.X release, use these commands: cd /usr/src/usr.sbin/daemon fetch 'http://people.freebsd.org/~glarkin/pr-links/daemon/patch-daemon.c' fetch 'http://people.freebsd.org/~glarkin/pr-links/daemon/patch-daemon.8' patch -p0 daemon.c < patch-daemon.c patch -p0 daemon.8 < patch-daemon.8 make install /usr/local/etc/rc.d/nullmailer start 20100502: AFFECTS: users of www/squid* AUTHOR: miwi@FreeBSD.org Starting with squid* the directory containing the default cache and log directory was changed from $PREFIX/squid/ to /var/squid/. The default values for the following Squid configuration parameters have changed as shown below: cache_log from $PREFIX/squid/logs/cache.log to /var/squid/logs/cache.log cache_store_log from $PREFIX/squid/logs/store.log to /var/squid/logs/store.log pid_filename from $PREFIX/squid/logs/squid.pid to /var/squid/logs/squid.pid coredump_dir from $PREFIX/squid/cache to /var/squid/cache Please check whether you need to define any of these variables in your squid.conf to the old defaults explicitly before updating, especially if you have set up automated log processing or automated log rotation. If you define pid_filename in your squid.conf, you should also set squid_pidfile to the same value in /etc/rc.conf, cf. $PREFIX/etc/rc.d/squid. 20100419: AFFECTS: users of math/libgmp4 AUTHOR: ale@FreeBSD.org The default gmp version in FreeBSD is now 5.0.x. The port directory changed from math/libgmp4 to math/gmp. An entry has been added to MOVED and all depending ports revisions have been bumped, so the update should be handled correctly by usual port management tools such as portupgrade. Portmaster users, please do the following before upgrading ports that depend on gmp: portmaster -o math/gmp math/libgmp4 20100409: AFFECTS: users of lang/php5 AUTHOR: ale@FreeBSD.org As of PHP 5.3, a few extensions were removed from or included into the core PHP5 package. Follow the steps below to update your installation. 1) Delete the following packages (if installed): - php5-dbase - php5-ncurses - php5-pcre - php5-spl - php5-ming - php5-mhash 2) Rebuild lang/php5 and all ports that depend on it. 20100403: AFFECTS: users of net/dgd AUTHOR: glewis@FreeBSD.org The kernel library has been separated from the main net/dgd port into its own net/dgd-kernel port so that all libraries are on an equal footing. This also reflects the split of the kernel library out from the main DGD distribution. If you wish to continue to use the kernel library you'll need to install net/dgd-kernel after updating to dgd-1.4.1_2. 20100330: AFFECTS: users of gstreamer-plugins-bad and gstreamer-plugins-good AUTHOR: kwm@FreeBSD.org Plugin moved from the -bad port to the -good port. Please follow the instructions below before proceeding with normal update steps. If you use portmaster: portmaster gstreamer-plugins-bad If you use portupgrade: portupgrade -R multimedia/gstreamer-plugins-bad 20100328: AFFECTS: users of graphics/png AUTHOR: dinoex@FreeBSD.org The PNG library has been updated to version 1.4.1. Please rebuild all ports that depend on it. If you use portmaster: make sure you update to portmaster version 2.20 or newer, then do: portmaster -r png- If you use portupgrade: portupgrade -fr graphics/png 20100221: AFFECTS: users of rblibtorrent-devel AUTHOR: dougb@FreeBSD.org The port name has changed to libtorrent-rasterbar-14. If you use portmaster: portmaster -o net-p2p/libtorrent-rasterbar-14 net-p2p/rblibtorrent-devel If you use portupgrade: portupgrade -o net-p2p/libtorrent-rasterbar-14 net-p2p/rblibtorrent-devel 20100216: AFFECTS: users of sysutils/bacula-server, sysutils/bacula-client AUTHOR: dvl@FreeBSD.org Bacula 5.x uses new shared objects which conflict with the shared objects from previous versions. You should delete all existing Bacula packages from your system before compiling Bacula 5.x, otherwise you'll encounter compilation errors. /usr/local/etc/rc.d/bacula-dir stop /usr/local/etc/rc.d/bacula-sd stop /usr/local/etc/rc.d/bacula-fd stop pkg_delete 'bacula-*' After upgrading, remember to run the database upgrade script supplied with the port. 20100214: AFFECTS: users of japanese/roundcube AUTHOR: nork@FreeBSD.org If you switch mail/roundcube to japanese/roundcube, please re-check configuration files like ${PREFIX}/www/roundcube/config/main.inc.php. At least, please add following settings: $rcmail_config['message_charset_languages'] = array('en_US' => 'ISO-8859-1', ... $rcmail_config['transfer_encoding_languages'] = array('en_US' => 'quoted-printable', ... See also: ${PREFIX}/www/roundcube/config/main.inc.php.dist 20100207: AFFECTS: users of www/firefox AUTHORS: beat@FreeBSD.org, mandree@FreeBSD.org (Java plugin) The www/firefox port has been updated to 3.6. From now on www/firefox will contain the most recent version of Firefox. Older but still supported releases will be available in www/firefox3 and www/firefox35. In order to update to Firefox 3.6 please delete your older installed version of Firefox first and install www/firefox afterwards. Please make sure all your addons are compatible with Firefox 3.6 and backup your ~/.mozilla directory prior to the first launch of Firefox 3.6. Note that in order to use Java with Firefox 3.6, you need to install java/openjdk6, build it with the "WEB" option enabled and use the Iced Tea plugin. To achieve the latter, each user needs to create a symlink to the Icedtea plugin as described in the Browsers/Firefox and Java[tm] Plugin section in the handbook: ln -s /usr/local/openjdk6/jre/lib/IcedTeaPlugin.so \ $HOME/.mozilla/plugins 20100207: AFFECTS: users of Mesa3D libraries and x11-drivers/xf86-video-nouveau AUTHOR: nork@FreeBSD.org If you want to use Mesa3D 7.6.1 and libdrm 2.4.17 rather than 7.4.4 and 2.4.12, you must define WITHOUT_NOUVEAU global macro, at least, enabled on graphics/libGL*, graphics/libglut, graphics/dri, graphics/mesa-demos, and graphics/libdrm. And please give up using x11-drivers/xf86-video-nouveau. At this time, I cannot enable latest Mesa3D and libdrm, because they break xf86-video-nouveau. But old (current?) Mesa3D and libdrm do not break any drivers. AMD Radeon HD 2xxx/3xxx/4xxx users: If you use AMD Radeon HD [234]xxx series, please define WITHOUT_NOUVEAU global macro. You can then use OpenGL Hardware Accelerator feature on these series. 20100206: AFFECTS: users of net/samba4-devel AUTHOR: timur@FreeBSD.org Default configuration file was moved to ${LOCALBASE}/etc/smb4.conf to avoid conflicts with the installed net/samba3?. Also, userland utils are not installed by default, which should also help with the parallel setup of Samba3 and Samba4. 20100205: AFFECTS: users of Qt 3 and KDE 3 AUTHOR: itetcu@FreeBSD.org When building qt33 and kdelibs3 (at least), while they are installed, because of -L/usr/local/lib being passed too soon, the currently installed libraries are used instead of the ones from the build. This makes the build fail if you updated any of the libraries these Qt/KDE libraries are linked against (e.g. libjpeg). For the moment the workaround, when you get to this, is to move the old lib out of the way, e.g.: mv /usr/local/lib/libqt-mt.so /usr/local/lib/libqt-mt.so.old && \ cd /usr/ports/x11-toolkits/qt33/ && make && \ mv /usr/local/lib/libqt-mt.so.old /usr/local/lib/libqt-mt.so && \ portmaster -C x11-toolkits/qt33 (or portupgrade -w qt-33\*) ... 20100205: AFFECTS: users of lang/perl* AUTHOR: skv@FreeBSD.org Default version of Perl was bumped to 5.10. If you already have lang/perl5.8 installed, and want to switch to lang/perl5.10 please follow instructions in the entry 20090328 in this file. 20100205: AFFECTS: users of net/samba34 AUTHOR: timur@FreeBSD.org This port was developed with the generous help of Florent Brodin. The default passdb backend has been changed to `tdbsam'! That breaks existing setups using the `smbpasswd' backend without explicit declaration! Please use `passdb backend = smbpasswd' if you would like to stick to the `smbpasswd' backend or convert your smbpasswd entries using e.g. `pdbedit -i smbpasswd -e tdbsam'. The `tdbsam' backend is much more flexible concerning per user settings like `profile path' or `home directory' and there are some commands which do not work with the `smbpasswd' backend at all. 20100130: AFFECTS: users of audio/sdl_mixer and graphics/sdl_image AUTHOR: mva@FreeBSD.org The SDL_mixer and SDL_image libraries have new shared library versions. Please rebuild all ports that depend on them. If you use portmaster: portmaster -r sdl_mixer- portmaster -r sdl_image- If you use portupgrade: portupgrade -fr audio/sdl_mixer portupgrade -fr graphics/sdl_image 20100125: AFFECTS: users of audio/openal and graphics/openal-soft AUTHOR: mva@FreeBSD.org The default OpenAL implementation was switched to audio/openal-soft. To update all ports correctly, the following steps have to be performed. pkg_delete -f openal-\* If you use portmaster: portmaster -o audio/openal-soft audio/openal portmaster -r audio/openal-soft If you use portupgrade: portupgrade -ro audio/openal audio/openal-soft If you want to stick with audio/openal, please specify the following ports make flag within /etc/make.conf (or an appropriate configuration file for your ports): WANT_OPENAL=si 20100122: AFFECTS: users of sysutils/policykit and sysutils/polkit AUTHOR: gnome@FreeBSD.org Due to a recent change in sysutils/policykit, both sysutils/policykit, and sysutils/polkit need to be rebuilt, but in a certain order. First, upgrade sysutils/policykit to 0.9_6. Then, force rebuild and reinstall of sysutils/polkit. If you do not do this, applications which depend on polkitd will fail. 20100113: AFFECTS: users of emulators/virtualbox AUTHOR: beat@FreeBSD.org Port has been renamed to emulators/virtualbox-ose to reflect that we are using the OSE version. A separate port for the kernel modules has been created: emulators/virtualbox-ose-kmod. Please see http://wiki.freebsd.org/VirtualBox for update instructions. 20100107: AFFECTS: users of security/openvpn* AUTHOR: mandree@FreeBSD.org security/openvpn has been moved to security/openvpn20 and upgraded to 2.0.9. security/openvpn has been upgraded to 2.1.1, and security/openvpn-devel has been removed. Regular upgrades of the security/openvpn port should succeed without manual intervention, but if you want to stick to openvpn 2.0 or if you had been using openvpn-devel, manual intervention is needed, as follows: If you'd been using the security/openvpn-devel port, please use one of these commands for upgrading: portmaster -m-DDISABLE_CONFLICTS -o security/openvpn security/openvpn-devel portupgrade -m-DDISABLE_CONFLICTS -o security/openvpn security/openvpn-devel If you want to stick to openvpn 2.0, please use one of these two upgrade commands: portmaster -m-DDISABLE_CONFLICTS -o security/openvpn20 security/openvpn portupgrade -m-DDISABLE_CONFLICTS -o security/openvpn20 security/openvpn 20100106: AFFECTS: users of devel/websvn AUTHOR: miwi@FreeBSD.org The default install directory for websvn has changed from ${PREFIX}/www/data/websvn to ${PREFIX}/www/websvn. If you are updating from a previous version, to preserve your settings and data, please do the following: mv /usr/local/www/data/websvn /usr/local/www Then update as usual. 20091227: AFFECTS: users of sysutils/grok AUTHOR: Wesley Shields The sysutils/grok port has been completely re-written. Configuration files will need to be reviewed. Also, the RC script has been removed until it can be made to work with the new version. 20091226: AFFECTS: users of net-mgmt/ndoutils AUTHOR: pgollucci@FreeBSD.org When upgrading you'll need to run ./upgradedb; see UPGRADING file. 20091214: AFFECTS: users of net/grdc AUTHOR: avl@FreeBSD.org Grdc has been renamed to Remmina upstream, and the port was also renamed to reflect this. After installing remmina port you will need to download the ``grdc2remmina.sh'' script and run it as your normal user(s) that have ~/.grdc. The script will only create ~/.remmina directory and move grdc config files to the new path; it does not affect anything else. $ fetch http://people.freebsd.org/~avl/script/grdc2remmina.sh $ sh grdc2remmina.sh 20091213: AFFECTS: users of net-mgmt/zabbix, net-mgmt/zabbix-agent AUTHOR: Jim Riggs In order to simplify configuration and better separate the different components of Zabbix, the former zabbix port has been split into three: zabbix-server, zabbix-proxy, and zabbix-frontend. Each component has distinct functionality and may be installed independently on separate systems. The existing zabbix-agent port remains. Additionally, the new zabbix-frontend port now (correctly) installs the PHP frontend in PREFIX/www/zabbix. The old zabbix port installed the files in PREFIX/share/zabbix/php. Web server configurations must be updated accordingly. Finally, Zabbix has been updated to version 1.8. Not everyone may be able to upgrade from version 1.6 immediately, though, so 1.6.8 versions of the ports are also available as zabbix16-server, zabbix16-proxy, zabbix16-agent, and zabbix16-frontend. 20091206: AFFECTS: users of emulators/qemu AUTHOR: nox@FreeBSD.org The port has been updated to 0.11.1, which no longer enables kqemu by default (if built with KQEMU knob on), now you also have to explicitly pass -enable-kqemu (or -kernel-kqemu as with the previous versions) if you want to use it. Also note the 0.11 stable branch is the last qemu branch that still supports kqemu, so if you depend on reasonably fast emulation on FreeBSD you should start looking for alternatives some time soon. (VirtualBox?) 20091120: AFFECTS: users of mail/postfixadmin AUTHOR: Terry Sposato Due to a bug in the previous postfixadmin port, existing users need to backup their config.inc.php before they upgrade to postfixadmin-2.3 or later and put it in place after the upgrade is complete. 20091120: AFFECTS: users of security/f-prot AUTHOR: Tim Bishop The main f-prot command is now named fpscan. Virus definitions are updated using the fpupdate command. fpupdate will automatically run from periodic every day. To disable set the following option in /etc/periodic.conf: fpupdate_enable="NO" The f-prot port now only works on i386. 20091118: AFFECTS: users of java/jboss5 AUTHOR: Jonathan Chen The JBoss directory structure has been reorganised to follow hier(7) guidelines more closely; in particular, transient and deployment files were moved to /var/jboss5, thus allowing /usr to be read-only. 20091118: AFFECTS: users of www/redmine AUTHOR: Bernhard Froehlich After the upgrade you need to generate a session secret before restarting the application. This is to protect you from cross-site request forgery. From your Redmine directory, simply run the following command once: # rake config/initializers/session_store.rb then upgrade as usual: # rake db:migrate RAILS_ENV=production 20091114: AFFECTS: users of emulators/win4bsd AUTHOR: Mario S F Ferreira The new port now depends on emulators/kqemu-kmod instead of installing its own version. Therefore, you should make sure that no other kqemu.ko modules are installed: # pkg_delete -f win4bsd\* # rm -f /boot/kernel/kqemu.ko # pkg_delete -f kqemu-kmod\* # portinstall emulators/win4bsd Do not forget to enable kqemu on rc.conf since win4bsd will not work without it. 20091018: AFFECTS: users of databases/mysql54-server AUTHOR: Alex Dupre After the upgrade the server may fail to start due to changes in the default values of innodb_log_files_in_group and innodb_log_file_size, which differ from those in earlier 5.4 releases. You should discard the old InnoDB log files and let MySQL 5.4.3 create new ones. It is necessary to shut down your current server cleanly so that no outstanding transaction information remains in the log. See here: http://dev.mysql.com/doc/refman/5.4/en/news-5-4-3.html 20091014: AFFECTS: users of mail/heirloom-mailx AUTHOR: Alexander Logvinov Since SourceForge switched to the new File Release System, mail/heirloom-mailx has wrong package name. All users who have mail/heirloom-mailx installed after 22 August 2009 should run the following commands: # pkg_delete "\-mailx-12.4_1" or # rm -r /var/db/pkg/-mailx-12.4_1 # rm -r /var/db/ports/-mailx # cd /usr/ports/mail/heirloom-mailx && make install clean 20090921: AFFECTS: users of archivers/lzmautils, archivers/lzmautils-devel AUTHOR: Christian Weisgerber The XZ Utils distribution has superseded LZMA Utils, so the xz port has been added and the lzmautils ports have been removed. To perform the move, run one of the following commands: If using portupgrade: # portupgrade -o archivers/xz lzmautils\* If using portmaster: # portmaster -o archivers/xz archivers/lzmautils or # portmaster -o archivers/xz archivers/lzmautils-devel as applicable. 20090919: AFFECTS: users of mail/postfix-postfwd AUTHOR: Sahil Tandon The recipient rate-limiting feature is now called via rcpt() command instead of with mrcpt() as in previous versions. Make sure to update your postfwd.conf if you use this feature. 20090917: AFFECTS: users of www/epiphany, x11/yelp, graphics/librsvg2, x11/toolkits/py-gnome-extras, and www/epiphany-extensions AUTHOR: gnome@FreeBSD.org The default Gecko provider has been changed from www/firefox to www/libxul. Firefox 2.x is now marked FORBIDDEN for security reasons, and libxul is new, stable, and preferred Gecko provider. Libxul uses the same Gecko engine as Firefox 3.0.x. Some ports may fail to upgrade or run when both www/firefox and libxul are installed on the same system. To make sure everything runs smoothly, uninstall www/firefox, then install libxul, then upgrade the affected ports. 20090915: AFFECTS: users of sysutils/gosa AUTHOR: Denis Shaposhnikov Please read the following: https://oss.gonicus.de/labs/gosa/wiki/DocumentationInstallingUpdatingGOsa before upgrading this port. And don't forget to check your slapd.conf because gosa scheme files were changed. Should you have any problems during LDAP migration step, try to restart your PHP process. 20090913: AFFECTS: users of www/ikiwiki AUTHOR: Henrik Brix Andersen In order to fix a performance bug, all wikis need to be rebuilt on upgrade to version 3.1415926. 20090912: AFFECTS: users of ports that have set USE_FORTRAN=yes AUTHOR: gerald@FreeBSD.org Ports that are built using the Fortran frontend of GCC (aka gfortran) will now use lang/gcc44 as the default compiler. 20090911: AFFECTS: users of lang/perl5.10 AUTHOR: skv@FreeBSD.org lang/perl5.10 has been updated to 5.10.1. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.10. Please see its manual page for details. If you want to switch to lang/perl5.10 from lang/perl5.8 please follow instructions in the entry 20090328 in this file. 20090910: AFFECTS: users of www/rubygem-rails AUTHOR: pgollucci@FreeBSD.org Rails has been updated to 2.3.4. As always, make sure you check the changes at http://weblog.rubyonrails.org/. 20090909: AFFECTS: users of gstreamer-plugins-bad gstreamer-plugins-good AUTHOR: kwm@FreeBSD.org Due to the move of several plugins from gstreamer-plugins-bad to gstreamer-plugins-good, it is necessary to update gstreamer-plugins-bad first: portupgrade -R gstreamer-plugins-bad or, using portmaster: portmaster gstreamer-plugins-bad After this step, the normal upgrade procedure can be used. 20090831: AFFECTS: users of emulators/linux-systemsimcell AUTHOR: stast@bsdportal.ru The port emulators/linux-systemsimcell has been updated to 3.1.25. Systemsimcell emulator now has a new dependency: x11-toolkits/linux-f10-blt. So you need to switch to linux-f10 ports in order to use 3.1.25 version. 20090828: AFFECTS: users of mail/dovecot and mail/dovecot-sieve AUTHOR: yds@CoolRat.org dovecot-sieve has been updated to a new implementation compatible with dovecot 1.2.x. For details of what this means please refer to: http://wiki.dovecot.org/LDA/Sieve/Dovecot#Migration_from_CMUSieve 20090827: AFFECTS: users of www/mediawiki AUTHOR: miwi@FreeBSD.org www/mediawiki version is 1.15.1 now. 1.14.1 version was preserved as www/mediawiki114 port. 20090818: AFFECTS: users of security/gnutls and any port that depends on it AUTHOR: novel@FreeBSD.org GnuTLS has been updated to 2.8.3 and all shared libraries' versions have been bumped. So you need to rebuild all applications that depend on gnutls. Do something like: portupgrade -rf gnutls 20090816: AFFECTS: users of astro/celestia and KDE AUTHOR: danfe@FreeBSD.org Celestia can now be compiled with KDE3 frontend (you can enable it with CELESTIA_UI=kde when building). It is very feature-rich, as it offers contextual menus, toolbars, KDE integration, internationalization, bookmarks, etc. If you use Celestia and KDE as your desktop, you might want to rebuild the port so it integrates into your environment better. 20090815: AFFECTS: users of mail/dovecot AUTHOR: wxs@FreeBSD.org Dovecot has been updated to version 1.2.3. The configuration file has changed significantly. Please see http://wiki.dovecot.org/Upgrading/1.2 for details of what this means. 20090804: AFFECTS: users of multimedia/phonon*, x11/kdebase4*, deskutils/kdepim4 AUTHOR: kde@FreeBSD.org KDE4 has been updated to version 4.3.0. KDE now uses qt4-phonon; multimedia/phonon and multimedia/phonon-gstreamer are deprecated in favor of their qt4 equivalents. You can still use multimedia/phonon-xine however. A number of files have been moved between packages. The recommended update procedure is to delete phonon, phonon-gstreamer, kdebase-*4*, kdepim-4*, then update ports as usual and install desired KDE4 ports: # pkg_delete -f phonon-4\* phonon-gstreamer\* kdebase-\*4\* kdepim-4\* # portmaster -a (or portupgrade -a) # cd ${PORTSDIR}/x11/kde4 && make config && make install clean 20090804: AFFECTS: users of devel/dbus-qt4, devel/qt4-designer AUTHOR: kde@FreeBSD.org Qt4 ports have been updated to 4.5.2. The recommended update procedure is to delete qt4-dbus and qt4-designer, then update ports as usual. Install qt4-designer if needed. 20090802: AFFECTS: users of devel/libtool15 and devel/libltdl15 AUTHOR: mezz@FreeBSD.org The devel/libtool15 and devel/libltdl15 ports have been moved to libtool22 and libltdl22, respectively, then updated to 2.2.6a. You will need to run portmaster or portupgrade to properly perform the upgrade: If using portmaster: portmaster -o devel/libtool22 devel/libtool15 portmaster -o devel/libltdl22 devel/libltdl15 If using portupgrade: portupgrade -o devel/libtool22 libtool-1.5\* portupgrade -o devel/libltdl22 libltdl-1.5\* After that, you will need to rebuild all ports that depend on libltdl. Since all dependent ports' PORTREVISIONs have been bumped, you can run portupgrade or portmaster with `-a' option to complete the upgrade. 20090801: AFFECTS: users of x11-drivers/xf86-video-nouveau AUTHOR: rnoland@FreeBSD.org An updated libdrm and xf86-video-nouveau have been committed. These update the API version to 0.0.14 and if you are using DRM you will need to update your kernel patch. See pkg-message in xf86-video-nouveau for details. 20090730: AFFECTS: users of www/tomcat6 AUTHOR: ale@FreeBSD.org Tomcat has been updated to 6.0.20 release and the installation directory is changed from apache-tomcat6.0 to apache-tomcat-6.0. Backup your configuration files before updating Tomcat, since the previous port will delete them on deinstall. 20090729: AFFECTS: users of sysutils/heartbeat AUTHOR: ports@encarnate.com Heartbeat has been upgraded to the 2.1.4 release. Older configurations based on version 1 should still work. Read more about the new features and possible configuration changes at the following URLs: http://clusterlabs.org/wiki/Documentation (Configuration 0.6 Explained) http://www.linux-ha.org/GettingStartedRevisedV2 20090724: AFFECTS: users of www/rubygem-rails AUTHOR: pgollucci@FreeBSD.org Rails has been updated to 2.3.3. As always, make sure you check the changes at http://weblog.rubyonrails.org/. 20090720: AFFECTS: users of net/openldap24-{client,server} AUTHOR: delphij@FreeBSD.org OpenLDAP has been upgraded to 2.4.17, which requires a shared library version bump. Therefore, you need to reinstall all ports that depend on it. Please do something like: # portupgrade -fr net/openldap24-client or # portmaster -r net/openldap24-client 20090719: AFFECTS: users of graphics/jpeg AUTHOR: dinoex@FreeBSD.org The IJG jpeg library has been updated to version 7.0. Please rebuild all ports that depend on it. If you use portmaster: portmaster -r jpeg- Or, if you would prefer a more gradual approach: portmaster -w jpeg- (Check the man page for more information) If you use portupgrade: portupgrade -fr graphics/jpeg 20090704: AFFECTS: users of www/yaws AUTHOR: olgeni@FreeBSD.org The default configuration file path was changed to ${LOCALBASE}/etc/yaws in version 1.83. Please remember to update your configuration before upgrading. 20090628: AFFECTS: users of www/firefox3-devel AUTHOR: gecko@FreeBSD.org If your Firefox crashes with the following message while viewing a HTML5 page: "Bad system call (core dumped)" you need to load the sem module (kldload sem). To load sem module on every boot, put the following into your /boot/loader.conf: sem_load="YES" 20090624: AFFECTS: users of mail/crm114 AUTHOR: glebius@cell.glebius.int.ru The new version of crm uses a new format for css files. Old files should be rebuilt or started from scratch. If not done, crm114 will lose any mail processed via it. 20090620: AFFECTS: users of gstreamer-plugins-bad, gstreamer-plugins-good, and gstreamer-plugins-ugly ports AUTHOR: kwm@FreeBSD.org Due to the move of several plugins from gstreamer-plugins-bad to gstreamer-plugins-good and gstreamer-plugins-ugly, it is necessary to update gstreamer-plugins-bad first: portupgrade -R gstreamer-plugins-bad or, using portmaster: portmaster gstreamer-plugins-bad 20090619: AFFECTS: users of net-p2p/transmission-daemon AUTHOR: mezz@FreeBSD.org The UID/GID of transmission has been changed from 919 to 921. The data configure has been changed from ${PREFIX}/etc/transmission/home/.config to ${PREFIX}/etc/transmission/home. To update the UID/GID: # pw groupmod transmission -g 921 # pw usermod transmission -u 921 -g 921 20090618: AFFECTS: users of www/p5-Catalyst AUTHOR: pgollucci@FreeBSD.org Most applications and plugins should run unaltered on Catalyst 5.80. However, a lot of refactoring work has taken place, and several changes have been made which could cause incompatibilities. If your application or plugin is using deprecated code, or relying on side effects, then you could have issues upgrading to this release. http://search.cpan.org/~mramberg/Catalyst-Runtime-5.80005/lib/Catalyst/Upgrading.pod 20090617: AFFECTS: users of emulators/virtualbox AUTHOR: beat@FreeBSD.org The GID of virtualbox has changed due to a conflict with databases/couchdb. Update GID of vboxusers after updating the port: # pw groupmod vboxusers -g 920 20090617: AFFECTS: users of math/fftw3 math/fftw3-long math/fftw3-float AUTHOR: db@FreeBSD.org The Fortran option has removed from fftw3 and moved into slave ports, math/fftw3-fortran math/fftw3-long-fortran and math/fftw3-float-fortran. 20090615: AFFECTS: users of x11-wm/enlightenment and x11-wm/enlightenment-devel AUTHOR: gahr@FreeBSD.org The development version of the Enlightenment window manager, a.k.a. E17, was moved from x11-wm/enlightenment-devel to x11-wm/enlightenment. The DR16 branch now resides in x11-wm/e16. 20090615: AFFECTS: users of multimedia/mlt++ AUTHOR: beat@FreeBSD.org The multimedia/mlt++ port was incorporated into multimedia/mlt since version 0.4.2. Delete multimedia/mlt++ first and then install/update multimedia/mlt. 20090613: AFFECTS: users of www/hudson AUTHOR: hq@FreeBSD.org Hudson is now running as a standalone process and no longer relies on Apache Tomcat. As such, it should now be configured by defining hudson_* variables in rc.conf. See comments from rc.d script for further details. The default setup is using the same port numbers and HTTP URL prefix as before in order to reduce the effort of upgrading the port. Hence, it may conflict with some running Apache Tomcat instance. To fix this problem, you may either deinstall www/tomcat6, or use the following settings in hudson_args from /etc/rc.conf: --httpPort=??? --ajp13Port=??? 20090611: AFFECTS: users of www/apache22 AUTHOR: pgollucci@FreeBSD.org Two rc.d scripts have been renamed: apache22.sh -> apache22 htcacheclean.sh -> htcacheclean You'll need to update any crons wrappers, etc. for the new paths. 20090608: AFFECTS: users of lang/python* and py-* AUTHOR: miwi@FreeBSD.org The default version of Python has been changed from 2.5.x to 2.6.x. If you have 2.5.x installed, perform an upgrade of lang/python25 to lang/python26 with one of the following commands: If using portupgrade: # portupgrade -o lang/python26 lang/python25 If using portmaster: # portmaster -o lang/python26 lang/python25 If you want to retain 2.5.x as default Python version, set the PYTHON_DEFAULT_VERSION variable to 'python2.5' (without quotes) in /etc/make.conf, then go to lang/python and perform the following command: # portupgrade -R python Once the installed Python has been updated to 2.6, by using the method above, it is required to run the upgrade-site-packages target in lang/python to assure that site-packages are made available to the new Python version. If using portupgrade: # cd /usr/ports/lang/python && make upgrade-site-packages If using portmaster: # cd /usr/ports/lang/python && make upgrade-site-packages -DUSE_PORTMASTER The portmaster case can take quite some time to complete due to the lack of cached information that the portupgrade suite uses (specifically pkg_which). This is not the fault of portmaster. 20090606: AFFECTS: users of java/eclipse AUTHOR: glewis@FreeBSD.org The update to 3.4.2 changes the location of the metadata for eclipse to be more in line with what is used on other platforms. This means that after the update plugins that have been installed by a user with the built in Update Manager will need to be reinstalled. 20090605: AFFECTS: users of mail/postfix AUTHOR: itetcu@FreeBSD.org Version 2.6.1 introduced a POLA violation by expecting aliases.db to be in /etc/mail/aliases.db (not /etc/aliases.db). With this version the location is reverted to the right place. If you updated your installation to 2.6.1 you need to run newaliases(1) again after you installed 2.6.2. 20090603: AFFECTS: users of japanese/font-mplus-ipa (and old japanese/ipa-ttfonts) AUTHOR: hrs@FreeBSD.org IPAUIGothic has been updated to a version included in IPA font version 002.03 and added as a separated port "japanese/font-ipa-uigothic". And the font-mplus-ipa has been updated to remove the old IPAUIGothic. Thus the old ipa-ttfonts is almost equivalent to font-ipa + font-ipa-uigothic + font-mplus-ipa. Note that these three packages have different licenses from each other. 20090601: AFFECTS: users of devel/cvs-devel AUTHOR: wxs@FreeBSD.org cvs-devel no longer installs /bin/cvs and /bin/cvsbug. These are now installed into ${PREFIX}/bin. If you wish to use these please be aware of this change with respect to your path. 20090531: AFFECTS: users of devel/viewvc AUTHOR: pgollucci@FreeBSD.org viewvc.conf and templates are not compatible to 1.0.x version, even the database scripts have changed. For details see: http://viewvc.tigris.org/source/browse/*checkout*/viewvc/trunk/docs/upgrading-howto.html 20090530: AFFECTS: users of Japanese and Chinese fonts AUTHOR: hrs@FreeBSD.org Ports for Japanese fonts have been reorganized in the following way: japanese/ipa-ttfonts -> japanese/font-mplus-ipa japanese/ipa-ttfonts -> japanese/font-ipa japanese/kochi-ttfonts -> japanese/font-kochi japanese/mplusfonts -> japanese/font-mplus japanese/sazanami-ttf -> japanese/font-sazanami japanese/shinonome -> japanese/font-shinonome japanese/umefont -> japanese/font-ume japanese/vlgothic -> japanese/font-vlgothic While basically these are port name changes for consistency, installation directories are also changed: font files -> ${PREFIX}/share/${PORTNAME}/* symlinks -> ${PREFIX}/share/fonts/{TTF,OTF,fontname,...}/* symlinks -> ${PREFIX}/lib/X11/fonts/{TTF,OTF,misc,fontname,...}/* A user-visible one is that the directory name "TrueType" is replaced with "TTF". Also, japanese/font-std and chinese/font-std have been added as standard fonts used in the Ports Collection. Currently they contain: std.ja_JP/Mincho std.ja_JP/Gothic std.ja_JP/Ryumin-Light std.ja_JP/GothicBBB-Medium std.zh_CN/STHeiti-Regular std.zh_CN/STSong-Light std.zh_CN/MSung-Light std.zh_CN/MHei-Medium under ${PREFIX}/share/fonts/. They are just symlinks to corresponding font files. The symlink names are based on popular PostScript font names. Applications should refer the font files via XLFD or fontconfig first. If they need a direct reference to the font file, please use files in std.*/*. This is because direct reference to a specific font name in an application configuration file makes the maintenance difficult when the font file name is changed, for example. 20090516: AFFECTS: users of devel/viewvc AUTHOR: pgollucci@FreeBSD.org OPTION APACHE2 has been changed to APACHE (WITH_APACHE) WITH_APACHE2 is deprecated and is being removed. APACHE_PORT will be pulled in when WITH_APACHE is selected 20090516: AFFECTS: users of print/cups-base and portupgrade AUTHOR: dinoex@FreeBSD.org The print/cups port has been split into multiple ports. If upgrading from 1.3.10_1 and below, you must remove the installed version first. 20090412: AFFECTS: users of sysutils/bacula-server AUTHOR: wxs@FreeBSD.org sysutils/bacula-server now uses a new catalog format. If upgrading from the old version please use the update_bacula_tables script provided with the port before restarting bacula. 20090410: AFFECTS: users of www/trac-email2trac AUTHOR: brooks@FreeBSD.org bin/email2trac.py and bin/delete_spam.py are now installed without the .py extension to make the suid run_email2trac work and match the online documentation. If you were using them in scripts or alias entries, you will need to update paths accordingly. 20090401: AFFECTS: users of Fedora 8 Linux infrastructure ports AUTHOR: bsam@FreeBSD.org ATTENTION! Those ports are not default for any version of FreeBSD for now and may be used with FreeBSD versions 7.2 and above (8-CURRENT is better) using compat.linux.osrelease=2.6.16 and linux_base-f8. Please, note that 2.6.16 is not fully supported on 7.x (ex., some syscalls are missing and cannot be MFCed due to a native FreeBSD ABI breakage). For more information about transition please read item "20070327: AFFECTS: users of emulators/linux_base-fc6". That note may be used for upgrading to linux_base-f8 and Fedora 8 Linux infrastructure ports as well. If you want to switch to linux-f8 ports, please define at /etc/make.conf: OVERRIDE_LINUX_BASE_PORT=f8 OVERRIDE_LINUX_NONBASE_PORTS=f8 20090328: AFFECTS: users of lang/perl* AUTHOR: skv@FreeBSD.org lang/perl5.10 is out. If you want to switch to it from, for example lang/perl5.8, that is: Portupgrade users: 0) Fix pkgdb.db (for safety): pkgdb -Ff 1) Reinstall new version of Perl (5.10): env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.10 -f perl-5.8.\* 2) Reinstall everything that depends on Perl: portupgrade -fr perl Portmaster users: env DISABLE_CONFLICTS=1 portmaster -o lang/perl5.10 lang/perl5.8 portmaster -r perl- Note: If the "perl-" glob matches more than one port you will need to specify the name of the Perl directory in /var/db/pkg explicitly. 20090327: AFFECTS: users of security/clamav AUTHOR: garga@FreeBSD.org After version 0.95 clamav-milter does not accept parameters by command line. If you are using $clamav_milter_flags on rc.conf to set its parameters you will need to move to new ${PREFIX}/etc/clamav-milter.conf. 20090319: AFFECTS: users of shells/bash3 AUTHOR: ehaupt@FreeBSD.org With the addition of shells/bash version 4.x, people wanting to stick with bash 3.x should perform the following update: $ portupgrade -f -o shells/bash3 bash 20090318: AFFECTS: users of www/suphp AUTHOR: yzlin@cs.nctu.edu.tw The suPHP port has been upgraded to 0.7.x. This new version of suPHP has some new features and changes for the configuration file: - Multiple path (with patterns) & variable substitution support for docroots - Double-quoted strings at section '[handlers]' ex. application/x-httpd-php="php:/usr/local/bin/php-cgi" These changes may lead to internal server error if without modifications of the configuration file from previous version. 20090316: AFFECTS: users of www/geeklog AUTHOR: beat@FreeBSD.org To follow the standards this port has received a small reworking. WWW_DIR (that defaulted to PREFIX/www/data/geeklog) is deprecated, use WWWDIR (defaults to PREFIX/www/geeklog). 20090316: AFFECTS: users of net-im/ejabberd AUTHOR: skylord@linkline.ru ejabberd's UID and GID have changed (PR ports/105122). Users are advised to check all configuration files and data in /var/spool/ejabberd to ensure everything has the correct owner/group. 20090316: AFFECTS: users of sysutils/lire AUTHOR: edwin@FreeBSD.org Lire now requires DBD::SQLite, which uses SQLite 3.0. This means that the Lire database format has changed. If you have one or more old Lire stores, you will need to convert each of them from SQLite2 format to SQLite3 like this: $ sqlite oldstore.db .dump | sqlite3 newstore.db This assumes that you have both SQLite2 and SQLite3 installed on your system, and that the names of the command line interface for the old and new version are `sqlite' and `sqlite3' respectively (this is at least correct for Fedora). 20090310: AFFECTS: users of multimedia/mythtv AUTHOR: glarkin@FreeBSD.org The upgrade from version 0.20 to version 0.21 should be transparent. Any changes to the database structure should be applied automatically. However, it is strongly recommended that you back up your database before installing a new version of MythTV. For example: $ mysqldump -u mythtv -pmythtv mythconverg -c > mythtv_backup.sql To restore (assuming that you've dropped the database): $ mysql -u root mysql>create database mythconverg; mysql>exit $ mysql -u mythtv -pmythtv mythconverg < mythtv_backup.sql 20090309: AFFECTS: users of devel/libusb on CURRENT AUTHOR: stas@FreeBSD.org FreeBSD libusb20 was renamed to libusb in r189585 and thus, being fully compatible with libusb20, replaces devel/libusb on HEAD. devel/libusb should not be used on these systems. Users of libusb-dependent ports are advised to remove libusb package from their systems, and rebuild all libusb dependencies. One of the possible ways to achieve this is listed below: # set tempfile=`mktemp /tmp/usbports.XX` # pkg_info -qR /var/db/pkg/libusb-* > ${tempfile} # pkg_delete -f /var/db/pkg/libusb-* # cat ${tempfile} | xargs portupgrade -f # rm -f ${tempfile} 20090309: AFFECTS: users of multimedia/phonon AUTHOR: kde@FreeBSD.org multimedia/phonon port has been split into phonon itself, phonon-xine, and phonon-gstreamer backends. After updating phonon port you have to install at least one backend; phonon-xine backend is recommended for KDE. 20090308: AFFECTS: users of emulators/qemu AUTHOR: nox@FreeBSD.org The port has been updated to 0.10.0, which now uses the newer (incompatible) kqemu-kmod-devel port that now also works for the 32 bit "qemu" executable on amd64. If you upgrade emulators/qemu with the KQEMU knob on, you have to # pkg_delete kqemu-kmod-1\* the old kqemu version first if it is installed. 20090304: AFFECTS: users of comms/py-gammu AUTHOR: bsam@FreeBSD.org The port comms/py-gammu was incorporated into comms/gammu since 1.23.0. Delete comms/py-gammu first and then deinstall/reinstall comms/gammu with option WITH_PYTHON_GAMMU=YES. 20090304: AFFECTS: users of x11-wm/xfce4 AUTHOR: oliver@FreeBSD.org When upgrading from Xfce 4.4 to 4.6 make sure you uninstall the following ports: x11/libxfce4mcs sysutils/xfce4-mcs-manager sysutils/xfce4-mcs-plugins x11-themes/xfce4-icon-theme You may uninstall them before you start the upgrade procedure (preferred) or even afterwards when the upgrade went fine. Please also note that Xfce 4.6 does not come with an icon theme any more. Xfce 4.6 now depends on the Tango theme which is now installed by default. The default installation of Xfce is also adjusted to use this icon theme instead of the Xfce 4.4 standard Rodent theme. If you are upgrading from Xfce 4.4 to 4.6 you probably still have the Rodent theme selected. This will lead to several "missing" icons when starting up Xfce. Make sure to switch as well to the Tango theme. To do this just open the Settings Manager and select Appearance. Inside the Appearance dialog switch to the Icons tab and select the "Tango" entry in the list on the left side of the Icons tab. For enabling the Reboot/Shutdown functionality of Xfce's logout dialog please read the note which gets printed out after the installation of x11-wm/xfce4 about how to configure PolicyKit. 20090223: AFFECTS: users of Tcl/Tk AUTHOR: mm@FreeBSD.org The default version of Tcl/Tk has been changed from 8.4 to 8.5. To restore old behavior and prefer using Tcl 8.4 with supported ports set WITH_TCL_VER=84 in /etc/make.conf. This has no effect on ports that have USE_TCL=yes or USE_TK=yes. They stick to the new default version and have to be updated by their maintainers to support other versions than default. 20090218: AFFECTS: users of www/zend-framework AUTHOR: glarkin@FreeBSD.org A local file inclusion (LFI) vulnerability was fixed in Zend Framework 1.7.5. The LFI was present in the Zend_View::render() method, and allowed inclusion of scripts with relative path names, e.g. "../../../my/script/dir/myscript.php". If the script path name is hard-coded into the application and is not generated by user input, the vulnerability does not apply. Because of this exception, the Zend Framework team has added a flag to disable the LFI protection in the render() method. Full details of the vulnerability, whether it applies to your application and how to disable the LFI protection in the render() method can be found here: http://framework.zend.com/manual/en/zend.view.migration.html 20090216: AFFECTS: users of net/openldap24-{client,server} AUTHOR: delphij@FreeBSD.org OpenLDAP has been upgraded to 2.4.14, which requires a shared library version bump. Therefore you need to reinstall all ports that depend on it. Please do something like: # portupgrade -fr net/openldap24-client 20090209: AFFECTS: users of multimedia/phonon, x11/kdelibs4, x11/kdebase4*, deskutils/kdepimlib4, deskutils/kdepim4, devel/automoc4 AUTHOR: kde@FreeBSD.org KDE4 has been updated from 4.1.4 to 4.2.0. A number of applications have been moved between packages. The easiest way to avoid various problems during update is to delete all KDE-4.1.4 ports and install KDE-4.2.0: # pkg_delete -f kde\*4.1.4\* automoc4-\* # portmaster -a (or portupgrade -a) # cd ${PORTSDIR}/x11/kde4 && make config && make install clean 20090207: AFFECTS: users of devel/libslang and devel/libslang2 AUTHOR: pgollucci@FreeBSD.org devel/libslang has been removed in favor of devel/libslang2 after not being released during last five years. WITH_SLANG2 is no longer a valid ports KNOB. All ports that depend on devel/libslang should be recompiled, e.g.: # portupgrade -o devel/libslang2 devel/libslang 20090130: AFFECTS: users of www/httptunnel AUTHOR: rafan@FreeBSD.org The startup script has been converted to new rc.d style and split into two scripts: htc (client) and hts (server). Please check the scripts for how to set variables in /etc/rc.conf. 20090127: AFFECTS: users of gstreamer-plugins AUTHOR: kwm@FreeBSD.org The gstapp library moved from the gstreamer-plugins-bad package to gstreamer-plugins. It will be necessary to rebuild the gstreamer-plugins port. After updating your installed ports please do (if you are using portupgrade): # portupgrade -f gstreamer-plugins 20090127: AFFECTS: users of www/xpi-deepestsender AUTHOR: pgollucci@FreeBSD.org www/xpi-deepestsender has been updated to version 0.9.0. This version is *only* for Firefox version 3.x. 20090124: AFFECTS: users of x11-servers/xorg-server, sysutils/hal AUTHOR: rnoland@FreeBSD.org sysutils/hal has been updated and should now properly detect mice for in X.Org. Use of AllowEmptyInput should no longer be needed for most users and moused should now work fine. 20090123: AFFECTS: users of x11-servers/xorg-server AUTHOR: rnoland@FreeBSD.org If you are using an older xorg.conf several config lines are no longer needed and will generate warnings when X is started. RgbPath will cause X to fail to start, remove it from your config. Server 1.5.3 also really wants to configure its input devices via hald. This is causing some issues with moused and /dev/sysmouse. There are couple of options for how to deal with it: 1. Add Option "AllowEmptyInput" "off" to your ServerLayout section. This will cause X to use the configured kbd, mouse, and vmmouse sections from your xorg.conf 2. Don't use moused. If you want it to work with addon USB mice set this in rc.conf: moused_enable="NO" moused_nondefault_enable="NO" I'm working on fixing hald or the mouse driver or both. 20090123: AFFECTS: users of x11/libxcb AUTHOR: flz@FreeBSD.org Libxcb shared library version was bumped from 1 to 2. You need to rebuild any consumer of libxcb.so.1 or some applications will be linked against two versions of libxcb once libX11 is upgraded. For portupgrade users: # portupgrade -rf libxcb 20090121: AFFECTS: users of devel/linux-glib2, emulation/linux_base-f4 AUTHOR: bsam@FreeBSD.org Glib2 now is incorporated to emulation/linux_base-fc4 (it has always been a part of more recent Linux base ports). All users should deinstall devel/linux-glib2 and then deinstall/reinstall emulation/linux_base-f4. 20090119: AFFECTS: users of mail/claws-mail, mail/claws-mail-smime AUTHOR: netchild@FreeBSD.org The claws-mail port includes the S/MIME plugin itself now, it is not distributed as a separate plugin anymore. It can be enabled with the GPGME option in the port (disabled by default). If you use the S/MIME plugin, you should remove the mail/claws-mail-smime port before enabling GPGME and updating the mail/claws-mail port. People which already updated mail/claws-mail with GPGME enabled and a non-working S/MIME plugin need to deinstall mail/claws-mail-smime and reinstall mail/claws-mail. 20090118: AFFECTS: users of net-p2p/deluge AUTHOR: mezz@FreeBSD.org The Deluge has been updated from 0.5.x to 1.x. The 1.x has been rewritten, so it is recommend for you to make the back up of your ~/.config/deluge. The configuration and plugins of 0.5.x do not work in 1.x. Deluge will picking up the old configuration and try to convert it to the newer format, but I wouldn't trust it to do it without the back up. If you prefer to stick with 0.5.x, you can use portmaster: # portmaster -o net-p2p/deluge05 net-p2p/deluge or if you use portupgrade: # portupgrade -o net-p2p/deluge05 net-p2p/deluge 20090118: AFFECTS: users of www/ikiwiki AUTHOR: brix@FreeBSD.org IkiWiki has been upgraded from 2.x to 3.x. Instructions for migrating existing IkiWiki configurations to 3.x format can be found at http://ikiwiki.info/tips/upgrade_to_3.0/. 20090118: AFFECTS: users of devel/apr-svn devel/apr AUTHOR: pgollucci@FreeBSD.org devel/apr-svn has been removed and devel/apr now handles its role. devel/apr now defaults to building with Berkeley database support (bdb) APR_UTIL_* tunables have been renamed to comply with ports/KNOBS names. 20090114: AFFECTS: users of x11/kdebase4-workspace, x11/kdebase4-runtime AUTHOR: kde@FreeBSD.org KDE4 has been updated from 4.1.1 to 4.1.4. A number of files have been moved between packages. You should deinstall kdebase4-runtime package before updating: pkg_delete -f kdebase-runtime-4.1\* portmaster -a After successful update you could install kdebase4-runtime if it has not been installed during update process. 20090114: AFFECTS: users of GNOME and GTK+ AUTHOR: gnome@FreeBSD.org GNOME has been updated to 2.24.x. You have to deinstall a few ports first before using portupgrade or portmaster in order to successfully upgrade your GNOME installation. After successful upgrade, you have to reinstall gnome-session so the gnome.desktop session file is properly installed. Portupgrade users: # pkgdb -Ff (Answer "yes" to unregister gail while keeping gtk20.) (Answer "yes" to unregister fast-user-switch-applet while keeping gdm.) # pkg_deinstall -fO gtkmm-2.12\* # portupgrade -aOW # portupgrade -f gnome-session Portmaster users: # pkg_delete -f gtkmm-2.12\* # portmaster -a # portmaster gnome-session 20090113: AFFECTS: users of lang/perl5.8 AUTHOR: skv@FreeBSD.org lang/perl5.8 has been updated to 5.8.9. You should update everything that depends on perl. The easiest way to do that is to use perl-after-upgrade script supplied with lang/perl5.8. Please see its manual page for details. 20090112: AFFECTS: users of mail/claws-mail* AUTHOR: miwi@FreeBSD.org claws-mail has been updated to 3.7.0, with this update OpenSSL support has been removed by upstream in favour of GnuTLS. GnuTLS is now enabled by default. Themes were have also been split to an extra port which your can find under x11-themes/claws-mail-themes. Menu was rewritten entirely in version 3.6.0 using modern GTK interface; as a consequence, all your custom shortcuts will be lost after upgrade. 20090109: AFFECTS: users of any Mozilla and Opera products AUTHOR: mezz@FreeBSD.org The Java plugins now will no longer be picked up by automatically from these browsers. Because all Java ports share the name of plugins file, I am thinking about someone or maybe me will need to write something similar to nspluginwrapper (but in shell script) that can add Java plugin in ~/.*/plugins/ when user requests one specific version of Java plugin if this user has more than one version of Java installed. However, for now, you will have to add Java plugin in ~/.*/plugins/ manually. 20090107: AFFECTS: users of databases/unixODBC AUTHOR: beech@FreeBSD.org The databases/unixODBC port has been updated to 2.2.14. While containing many bug fixes and minor feature adjustments, this version no longer ships with the (obsolete) MySQL ODBC driver. MySQL ODBC driver users will probably want to use databases/mysql-connector-odbc instead. The text-backed/flatfile driver (libtxtodbc) has also been removed by the developers but due to some demand may make a return in a future version or as a separate port. 20090107: AFFECTS: users of security/libgcrypt AUTHOR: rafan@FreeBSD.org libgcrypt has been upgraded to 1.4.3 which has a shared library version bump. You need to reinstall all ports that depend on it. Use something like this: portupgrade -rf libgcrypt portmaster -r libgcrypt 20090104: AFFECTS: users of net/openldap24-{client,server} AUTHOR: delphij@FreeBSD.org OpenLDAP has been upgraded to 2.4.13, which requires a shared library version bump. Therefore, you need to reinstall all ports that depend on it. Please do something like: # portupgrade -fr net/openldap24-client 20081230: AFFECTS: users of net/rabbitmq AUTHOR: pneumann@gmail.com The database schema has changed between RabbitMQ-1.4.0 and this release. When the RabbitMQ server detects the presence of an old database, it moves it to a backup location, creates a fresh, empty database, and logs a warning. 20081226: AFFECTS: users of www/rt38 AUTHOR: pgollucci@FreeBSD.org www/rt38 now respects the FreeBSD directory layout, see hier(7). With this change, p5-RT-* and p5-RTx-* should be much simpler to use in the ports collection. Please note that www/p5-RTx-Shredder is included in www/rt38. This port will be deprecated and removed. 20081228: AFFECTS: users of astro/boinc-setiathome-enhanced AUTHOR: rene@FreeBSD.org The setiathome client has been updated to version 6.03 and version 5.00 of the astropulse client has been added. Before you update, finish and report your current workunits to avoid losing them. The port now also includes the client screensavers. 20081228: AFFECTS: users of japanese/kinput2 AUTHOR: hrs@FreeBSD.org The Wnn backend of japanese/kinput2 port now uses unix domain socket to communicate the server by default. If $JSERVER environment variable is defined, the value is used as the server host name. In In short, the server name is determined in the following way: $JSERVER --(if null)--> CcWnn.Jserver --(if null)--> "localhost" If the server host name is null or matches "^unix$", unix domain socket is used. Note that the default server name in CcWnn.Jserver is "unix" now. 20081226: AFFECTS: users of www/rt* AUTHOR: pgollucci@FreeBSD.org www/rt2 www/rt3 www/rt32 www/rt34 are now deprecated and will expire 2009-02-01. All ports now depend on www/rt38 If you can not update to www/rt38, www/rt36 is still around. 20081224: AFFECTS: users of www/phpSysInfo AUTHOR: miwi@FreeBSD.org The www/phpSysInfo port has been split into www/phpsysinfo and www/phpsysinfo-dev ports. 20081217: AFFECTS: users of mail/policyd2 AUTHOR: wxs@FreeBSD.org The RC script for mail/policyd2 has been renamed to avoid a conflict. If you use this port please change the setting in rc.conf to be policyd2_enable. 20081211: AFFECTS: users of lang/php5 AUTHOR: pav@FreeBSD.org, itetcu@FreeBSD.org, ale@FreeBSD.org As of PHP 5.2.7, pcre extension is distributed with the core PHP5 package, and not as a standalone module anymore. Follow the steps below to update your installation. Portupgrade users: pkg_delete -f php5-pcre-5.2.6 pkgdb -F portupgrade as usual Portmaster users: pkg_delete -f php5-pcre\* portmaster php5 If you are using pecl ports you might need to force an update on them: portupgrade -f pecl\* or portmaster pecl If you have the pecl hash, json and/or zip extensions you need to replace them with the PHP5 bundled ones, e.g.: portmaster/portupgrade -o archivers/php5-zip archivers/pecl-zip portmaster/portupgrade -o devel/php5-json devel/pecl-json portmaster/portupgrade -o security/php5-hash security/pecl-hash If you build your INDEX locally and you tried to build it after the PHP update commit, you need to rebuild it _after_ you updated lang/php5: cd /usr/ports && make index or (if you use ports-mgmt/p5-FreeBSD-Portindex): cd /usr/ports && cache-init && portindex -o `make -V INDEXFILE` 20081207: AFFECTS: users of games/mkgichessclub AUTHOR: nivit@FreeBSD.org After the update to the version 2.2.0, please, alter the SQL tables with the command: mysql _mkgichessclub_ < /usr/local/share/mkgichessclub/db_migrate_2.1_to_2.2.sql where _mkgichessclub_ is the database name chosen during the installation of the port. 20081205: AFFECTS: users of net-p2p/ktorrent AUTHOR: makc@FreeBSD.org ktorrent has been updated to 3.1.5 for KDE 4. The last release of ktorrent for KDE 3 is available under net-p2p/ktorrent2. 20081121: AFFECTS: users of comms/smstools3 AUTHOR: mm@FreeBSD.org The startup script of comms/smstools3 has changed. For increased security smstools now runs as user uucp / group dialer by default. The script commands like sendsms etc. should be executed as user uucp. To restore the old behaviour, set smsd_user="root" and smsd_group="wheel" in your /etc/rc.conf. Hint: use security/sudo for running smsd scripts as user uucp. 20081108: AFFECTS: users of editors/tamago AUTHOR: hrs@FreeBSD.org The Wnn backend of editors/tamago port now uses unix domain socket to communicate the server by default. If $[CJKT]SERVER environment variable is defined, the value is used as the server host name. In JSERVER case, for example, the server name is determined in the following way: $JSERVER --(if null)--> wnn-jserver --(if null)--> "unix" If the server host name is null or matches "^unix$", unix domain socket is used. The path name of the socket can be specified in wnn-[cjkt]udpath custom variable. 20081105: AFFECTS: users of french/pluxm-devel AUTHOR: jadawin@FreeBSD.org Please, use http://download.pluxml.org/plugins/migration-blog-beta3x-beta4.zip to migrate. It's strongly advised to backup your blog before updating. 20081102: AFFECTS: users of devel/git AUTHOR: wxs@FreeBSD.org The location of git-shell has changed to ${PREFIX}/libexec/git-core/git-shell. Please remove the old entry from /etc/shells. 20081030: AFFECTS: users of japanese/FreeWnn-server AUTHOR: hrs@FreeBSD.org The jserver daemon in japanese/FreeWnn-server port now uses "127.0.0.1" as the default listen address for security reason. If you need the wildcard address (INADDR_ANY), you have to explicitly set "listenaddr" to 0.0.0.0 in ${PREFIX}/lib/wnn/ja_JP/jserverrc or add "-a 0.0.0.0" to ${wnn_flags} in /etc/rc.conf. 20081026: AFFECTS: users of www/asterisk-gui AUTHOR: pneumann@gmail.com The upgrade to version 2.0 will modify your asterisk dialplan when login to the page. Hardware autodetection will not work, pending update of misc/zaptel. 20081028: AFFECTS: users of www/codeigniter AUTHOR: glarkin@FreeBSD.org For certain installations, the following steps should be performed after the CodeIgniter 1.7.0 upgrade (taken from: http://codeigniter.com/user_guide/installation/upgrade_170.html). >>> Update your Session Table If you are using the Session class in your application, AND if you are storing session data to a database, you must add a new column named user_data to your session table. Here is an example of what this column might look like for MySQL: user_data text NOT NULL To add this column you will run a query similar to this: ALTER TABLE `ci_sessions` ADD `user_data` text NOT NULL You'll find more information regarding the new Session functionality in the Session class page: http://codeigniter.com/user_guide/libraries/sessions.html >>> Update your Validation Syntax This is an optional, but recommended step, for people currently using the Validation class. CI 1.7 introduces a new Form Validation class (http://codeigniter.com/user_guide/libraries/form_validation.html) which deprecates the old Validation library. We have left the old one in place so that existing applications that use it will not break, but you are encouraged to migrate to the new version as soon as possible. Please read the user guide carefully as the new library works a little differently, and has several new features. 20081026: AFFECTS: users of japanese/sj3-server AUTHOR: hrs@FreeBSD.org The sj3serv daemon in japanese/sj3-server port now uses "localhost" as the default listen address for security reason. If you need the wildcard address (INADDR_ANY), you have to explicitly set "servername" to 0.0.0.0 in ${PREFIX}/etc/sj3/serverrc. 20081026: AFFECTS: users of japanese/Canna and japanese/sj3 AUTHOR: hrs@FreeBSD.org The japanese/Canna and japanese/sj3 port have been split into japanese/canna-server and japanese/canna-lib, and japanese/sj3-server and japanese/sj3-lib, respectively for more fine-grained dependency management in the Ports Collection. 20080926: AFFECTS: users of www/squid30 AUTHOR: tmseck@netcologne.de The Squid developers decided to disable COSS support in 3.0, cf. the discussion starting here: http://www.squid-cache.org/mail-archive/squid-dev/200809/0067.html The corresponding port configuration option WITH_SQUID_COSS is still available but is a no-op for now. If you currently use COSS storage with Squid 3.0 you need to disable it in squid.conf. 20080924: AFFECTS: users of ftp/proftpd AUTHOR: beech@FreeBSD.org proftpd now stores its .delay and .scoreboard files in /var/run/proftpd instead of /var/run. If you are updating an existing installation, adjust the following in /usr/local/etc/proftpd.conf: ScoreboardFile /var/run/proftpd/proftpd.scoreboard Also of note: The third party modules, mod_codeconv, mod_comb, and mod_sql_tds are not compatible with this release and have been removed. They will be re-added when the respective authors provide updated versions. 20080909: AFFECTS: users of security/logcheck AUTHOR: glarkin@FreeBSD.org logcheck now stores its configuration files in /usr/local/etc/logcheck instead of /usr/local/etc. If you are upgrading the port from version 1.1.1 to version 1.2.54, copy the following files to a temporary location, in case they are removed during the upgrade: /usr/local/etc/logcheck.hacking /usr/local/etc/logcheck.ignore /usr/local/etc/logcheck.violations /usr/local/etc/logcheck.violations.ignore e.g.: cd /usr/local/etc mkdir /tmp/logcheck.saveconf cp logcheck.hacking logcheck.ignore logcheck.violations* \ /tmp/logcheck.saveconf After the upgrade, integrate your local changes to the files listed above into the new configuration files found in the following directories: /usr/local/etc/logcheck/cracking.d /usr/local/etc/logcheck/ignore.d.paranoid /usr/local/etc/logcheck/ignore.d.server /usr/local/etc/logcheck/ignore.d.workstation /usr/local/etc/logcheck/violations.d /usr/local/etc/logcheck/violations.ignore.d Please consult the following files for more information about logcheck rules and reporting levels: /usr/local/share/doc/logcheck/README.logcheck /usr/local/share/doc/logcheck/README.logcheck-database Also note that the upgraded port installs a crontab file for user "logcheck" that executes the logcheck script every hour and emails the results to root. If the installation process cannot install the crontab file, it can be installed manually from /usr/local/share/examples/logcheck/crontab.in, e.g.: crontab -u logcheck /usr/local/share/examples/logcheck/crontab.in 20080907: AFFECTS: users of www/mediawiki AUTHOR: miwi@FreeBSD.org www/mediawiki version is 1.13 now. 1.12 version was preserved as www/mediawiki12 port. 20080902: AFFECTS: users of net-mgmt/nagios and net-mgmt/nagios-devel AUTHOR: Jarrod Sayers The stable Nagios port has now been updated to version 3.0.3. Upgrading to this version shouldn't require any configuration changes, but note that most sample configuration files were moved into objects/ directory. Nagios 2.12 is still available as net-mgmt/nagios2, use the following to remain on this legacy stable branch: portmaster -o net-mgmt/nagios2 net-mgmt/nagios or, if you're using portupgrade: portupgrade -o net-mgmt/nagios2 net-mgmt/nagios Nagios 3.x development continues in net-mgmt/nagios-devel, users of this port in production use should consider switching to the stable branch: portmaster -o net-mgmt/nagios net-mgmt/nagios-devel or, if you're using portupgrade: portupgrade -o net-mgmt/nagios net-mgmt/nagios-devel 20080902: AFFECTS: users of math/ploticus AUTHOR: linimon@FreeBSD.org This is a major update. Deprecated: server-side image maps (use client-side instead); definition of categories within proc areadef (use proc categories instead); proc print. Discontinued attributes: proc processdata's stack; proc usedata's element, proc getdata's rotate, and proc defineunits (use the $changeunits() function instead). proc rangebar has been renamed proc boxplot and there are major functionality changes. Any script that uses proc rangebar will need maintenance. See http://ploticus.sourceforge.net/doc/news.html for more information. 20080901: AFFECTS: users of mail/pine4 and editors/pico AUTHOR: dougb@FreeBSD.org These two ports have been removed in favor of the new mail/alpine and editors/pico-alpine ports. UW discontinued work on Pine in September 2005 and is focusing on Alpine now. You should be able to directly replace pine with alpine. See http://www.washington.edu/alpine/ for more information. 20080831: AFFECTS: users of net-mgmt/smokeping AUTHOR: lth@FreeBSD.org Smokeping has been updated to 2.4.1, and the example web server configuration has changed. Please read pkg-message and check that your server configuration is OK. 20080827: AFFECTS: users of devel/git AUTHOR: wxs@FreeBSD.org With the default Makefile settings, most of the programs are now installed outside your $PATH, except for "git", "gitk", and some server side programs that need to be accessible for technical reasons. Invoking a git subcommand as "git-xyzzy" from the command line has been deprecated since early 2006 (and officially announced in 1.5.4 release notes); use of them from your scripts after adding output from "git --exec-path" to the $PATH is still supported in this release, but users are again strongly encouraged to adjust their scripts to use "git xyzzy" form, as we will stop installing "git-xyzzy" hardlinks for built-in commands in later releases. Please see this URL for more information: http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.txt 20080827: AFFECTS: users of mail/qmhandle AUTHOR: garga@FreeBSD.org A qmHandle.conf file was created, for now, is not needed to edit ${PREFIX}/bin/qmHandle to change stopqmail and startqmail variables. Just remember to edit configuration file after upgrade. 20080820: AFFECTS: users of www/p5-Apache-DBI AUTHOR: pgollucci@FreeBSD.org www/p5-Apache-DBI has been forked into a MASTER and SLAVE setup www/p5-Apache-DBI-mp1 and www/p5-Apache-DBI-mp2 so as to work with www/rt38 among possibly other ports. 20080820: AFFECTS: users of net/rabbitmq AUTHOR: pneumann@gmail.com The database schema has changed in this version of RabbitMQ. If you attempt to start RabbitMQ-1.4.0 over top of a previous installation, it will fail, citing "schema_integrity_check_failed". To correct this, delete your mnesia directory (/var/db/rabbitmq/mnesia) and restart the server. Note that this will destroy all your durable exchanges and queues, and all your persisted messages! 20080816: AFFECTS: users of mail/assp AUTHOR: J.R. Oldroyd The periodic(8) script no longer outputs to files in the assp directory. You should remove /var/db/assp/nightly.log and nightly.log.old by hand once you are done with them. The information that was stored there will now come in your nightly system email. 20080815: AFFECTS: users of sysutils/rdiff-backup AUTHOR: vd@FreeBSD.org sysutils/rdiff-backup has been upgraded from 1.0.5 to 1.2.0. This is an incompatible upgrade. If you need the "old" 1.0.5, you can find it in sysutils/rdiff-backup10. 20080813: AFFECTS: users of www/ikiwiki AUTHOR: brix@FreeBSD.org The layout of the ikiwiki.setup file has changed in a significant way in this release. Old setup files will continue to work, but new features, like the new websetup interface, require a new format setup file. You can convert old setup files into the new format by running the following command for all your ikiwiki.setup files: ikiwiki-transition setupformat ikiwiki.setup 20080812: AFFECTS: users of mail/spamdyke AUTHOR: mm@FreeBSD.org The spamdyke port has been updated to 4.0.2. The new version is not backwards compatible with previous versions. Please examine the new configuration file for the changes. 20080812: AFFECTS: users of databases/pgbouncer AUTHOR: mm@FreeBSD.org Starting with port version 1.2.3, pgbouncer does not run as root anymore. If you are upgrading from earlier versions, please update your configuration in ${PREFIX}/etc/pgbouncer.ini to use log and pid file paths owned by the newly created pgbouncer user (or customize for a different user yourself). Default logfile: /var/log/pgbouncer/pgbouncer.log Default pidfile: /var/run/pgbouncer/pgbouncer.pid 20080808: AFFECTS: users of chinese/phpbb-tw AUTHOR: chinsan@FreeBSD.org The default install directory for phpbb-tw has changed from ${PREFIX}/www/data/phpBB2 to ${PREFIX}/www/phpBB2. If you are updating from a previous version, to preserve your settings and data, please do the following: mv /usr/local/www/data/phpBB2 /usr/local/www Then update as usual. 20080806: AFFECTS: users of net-p2p/transmission AUTHOR: mezz@FreeBSD.org Update to 1.3x, the net-p2p/transmission now is a meta-port. It depends on cli, daemon, and gtk2. If you don't want that, uninstall transmission and install net-p2p/transmission-cli by doing: portmaster -o net-p2p/transmission-cli net-p2p/transmission or, if you're using portupgrade: portupgrade -o net-p2p/transmission-cli net-p2p/transmission 20080805: AFFECTS: users of devel/qt4 AUTHOR: kde@FreeBSD.org The qt4 ports has been updated to 4.4.1. 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. Before you start to update your ports, please force update of qmake4 and qt4-corelib ports. Portmaster users can do: portmaster devel/qmake4 devel/qt4-moc devel/qt4-corelib or, if you're using portupgrade: portupgrade -f devel/qmake4 devel/qt4-moc devel/qt4-corelib 20080804: AFFECTS: users of devel/git AUTHOR: wxs@FreeBSD.org Git's cvsps dependency has been switched from cvsps-devel to cvsps. The two are incompatible, so you will need to do the following before upgrading git: portmaster -o devel/cvsps devel/cvsps-devel 20080728: AFFECTS: users of net/freeradius2 AUTHOR: David Wood Upgrading the FreeRADIUS port used to replace all unmodified files in your configuration with the latest version from the sample configuration. This strategy has two disadvantages; over time your configuration became based on different versions of the sample configuration, also major changes to the sample configuration could leave your configuration in a confusing state. From version 2.0.5, your configuration is not touched if any configuration files have been modified. You are recommended to track changes in the sample configuration and keep your configuration in a version control system. I use Subversion (see the devel/subversion port) to track my changes. Keeping the sample configuration in a 'vendor branch' (see the Subversion book for more details) allows easy merging of changes from the sample configuration. *** IMPORTANT *** You are urged to move your configuration out of the default location (/usr/local/etc/raddb) before upgrading from 2.0.4 (or earlier) to 2.0.5 (or later). Once this upgrade is complete, remove the sample configuration that has been installed in the default location and move your configuration back to the default location. This is a one time procedure that will prevent unmodified files in your configuration from being deleted from your configuration and not restored during the upgrade. No customised files will be lost in any circumstances. The sample configuration in 2.0.5 has been reorganised: the configuration of most modules is now in the modules directory rather than in radiusd.conf. You are urged to rearrange your configuration to match this layout. There are several improvements in this version of the port, including a new pkg-message that will help new FreeRADIUS users to get started with the port, also new 'reload' and 'debug' commands for the rc.d script. Enjoy! 20080725: AFFECTS: users of x11-fm/nautilus and misc/shared-mime-info AUTHOR: gnome@FreeBSD.org In order to properly update x11-fm/nautilus and misc/shared-mime-info, do the following using portupgrade: # pkg_deinstall -fO nautilus # portupgrade shared-mime-info # portinstall -O nautilus Once misc/shared-mime-info has been updated, each user will need to run the following command: $ update-mime-database ~/.local/share/mime/ 20080725: AFFECTS: users of www/ojs2 AUTHOR: Greg Larkin If you are upgrading from a prior version of ojs2, please backup your database, uploaded files directory, and your config.inc.php before the upgrade. Read /usr/local/share/docs/ojs2/UPGRADE or visit http://pkp.sfu.ca/ojs/UPGRADE for additional upgrade information. 20080721: AFFECTS: users of net/freenet6 AUTHOR: Edwin Groothuis Please note that there has been a major update of this port (from version 2.x to 5.x) and that the name of the binaries and configuration files has changed from "tpsc" to "gw6c". The configuration files have to be copied from ${PREFIX}/share/examples/freenet6 to ${PREFIX}/etc again. 20080719: AFFECTS: users of x11-fm/gprename AUTHOR: Martin Tournoij GPRename configuration files now live ~/.config/gprename instead of ~/, to upgrade use the following commands: % mkdir -p ~/.config/gprename % mv ~/.gprename ~/.config/gprename/gprename % mv ~/.gprename_log ~/.config/gprename/gprename_log 20080717: AFFECTS: users of devel/anjuta AUTHOR: gnome@FreeBSD.org Anjuta's neon dependency has been switched from neon26 to neon28. The two are incompatible, so you will need to do the following to upgrade: portupgrade -o www/neon28 neon26 portupgrade anjuta 20080714: AFFECTS: users of www/squid AUTHOR: Thomas-Martin Seck www/squid has been updated to Squid 2.7.STABLE3. The update should be rather straightforward. The only noticeable change in the port is that the ICAP patch is no longer included; this is because this patch was unmaintained for a long time and its use was not really recommended. Please consider moving to Squid-3 (currently available as www/squid30) if you need ICAP support. Squid 2.6 is still available as www/squid26 and will probably be removed from the Ports Tree by the end of 2008. 20080712: AFFECTS: users of databases/rrdtool AUTHOR: rafan@FreeBSD.org If you use language bindings, like the Perl's RRDs, please upgrade this port *twice* in order to get the library dependency right. 20080711: AFFECTS: users of x11-toolkits/gtkdatabox2 AUTHOR: Beech Rintoul The port has been deprecated and gtkdatabox has been updated. This was done so the port tracks vendor name. Please update by doing: portupgrade -o x11-toolkits/gtkdatabox x11-toolkits/gtkdatabox2 20080709: AFFECTS: users of www/ikiwiki AUTHOR: Henrik Brix Andersen The IkiWiki editpage form now uses the raw page name, not the page title, in its `page' CGI parameter. You will need to rebuild any existing IkiWiki installations in order to update their `edit' links to the new format. 20080708: AFFECTS: users of emulators/qemu-devel AUTHOR: nox@FreeBSD.org The port has been updated to a 20080620 SVN snapshot, which uses the new (incompatible) kqemu-kmod-devel port that now also works for the 32 bit "qemu" executable on amd64. If you upgrade qemu-devel with the KQEMU knob on, you have to # pkg_delete kqemu-kmod-1\* the old kqemu version first if it is installed. 20080705: AFFECTS: users of www/ikiwiki AUTHOR: Henrik Brix Andersen The IkiWiki search plug-in now uses www/xapian-omega as backend instead of textproc/hyperestraier. You will need to update the configuration of any search enabled IkiWiki installations and rebuild them since the search form has changed. 20080704: AFFECTS: users of misc/shared-mime-info AUTHOR: FreeBSD GNOME Team The misc/shared-mime-info has been updated to 0.40. The Mime Types caches have been changed a bit. If you have created any custom MIME types, you will need to run update-mime-database to update your local Mime Types caches: $ update-mime-database ~/.local/share/mime/ 20080702: AFFECTS: users of irc/ratbox-services AUTHOR: Beech Rintoul Configuration file and database changes have been made between the 1.1.x series and the current release version of ratbox-services. It is highly recommended that services are stopped, and the proper upgrade procedure is followed as described in port's documentation, before restarting newly updated ratbox-services again. Please remember to backup the database before attempting an upgrade, as incorrectly upgraded database may be rendered unusable. The ratbox-services-1.2.x branch implements multi-language support. However, an inconsistency in the language indexing may result in errors. It is therefore recommended that the English default to be used until the next version release. 20080702: AFFECTS: users of mail/nocc AUTHOR: Alex Dupre The Nocc configuration file has been moved into 'config' subdir. When updating, remove the old conf.php file and reconfigure Nocc. 20080701: AFFECTS: users of devel/subversion* AUTHOR: Lev Serebryakov subversion now uses neon-0.28.x (www/neon28) port, and automatic portupgrade will fail because www/neon28 will conflict with installed www/neon26 port. You should upgrade neon library before subversion with the command: # portupgrade -o www/neon28 neon26 Also, if you use any special subversion ports with bindings, you should upgrade these ports to clean subversion port with # portupgrade -o devel/subversion subversion-\* and install needed bindings (p5-subversion, py-subversion and/or ruby-subversion) after that. If you use subversion with bindings installed from devel/subversion with custom options, don't forget to install separate bindings ports after subversion upgrade. 20080630: AFFECTS: users of graphics/cairo, graphics/poppler*, and future users of www/firefox3 AUTHOR: FreeBSD GNOME Team The poppler* ports have been updated to 0.8.3 and the shared libraries have changed. Firefox 3.0 has been added to the tree as www/firefox3. These changes require that all dependent ports be updated. You can do this in one of two ways: # portmaster pixman # portmaster \*cairo\* # portmaster -r poppler-0 or: # pkgdb -Ff # portupgrade pixman\* \*cairo\* # portupgrade -r poppler-0.\* 20080627: AFFECTS: users of x11-drivers/xf86-video-ati AUTHOR: Jung-uk Kim mach64 and r128 drivers are now separated out from the ati driver. These video cards are supported by x11-drivers/xf86-video-mach64 and x11-drivers/xf86-video-r128 respectively. If you have one of the affected video cards and xorg.conf contains the following line: Driver "ati" you must specify "mach64" or "r128". Alternatively, you may install x11-drivers/xf86-video-ati to get a wrapper driver. 20080626: AFFECTS: users of science/gramps AUTHOR: Anders Troback Before you upgrade from 2.x to 3.x you need to export your existing databases to a GRAMPS XML file. After the upgrade you can import them into the new version. 20080624: AFFECTS: users of irc/ircd-ratbox-devel AUTHOR: Beech Rintoul Upgrading between different beta releases can cause problems when changes to the ban database schema have occurred. The 'bantool' utility now comes with a -u switch that will check and update the ban database as necessary. Issuing 'bantool -u' is required when upgrading between beta releases and must not be done while the ircd is running. 20080624: AFFECTS: users of www/mod_security AUTHOR: Marcelo Araujo The mod_security port has been updated from 1.9.4 to 2.5.5. Branch 1.9.x will not receive any further updates; all users must update mod_security port to versions 2.1 or 2.5. You can get more information about update issues at: http://www.modsecurity.org/documentation/ 20080624: AFFECTS: users of www/opera and www/opera/devel AUTHOR: Ion-Mihai Tetcu The Opera port has been updated from 9.2x to 9.5x. A lot of things have been changed such as keyboard shortcuts[1]; new storage and indexing formats for mail and feeds; new search.ini; native amd64 binaries; no 4.x support. You will be asked whether to convert mail and feeds to new format during start up. Warning: there is no way to downgrade back to the old format. Be sure to see the Changelog[2]. [1] http://www.opera.com/support/search/view/884/ [2] http://www.opera.com/docs/changelogs/freebsd/950/ 20080622: AFFECTS: users of devel/subversion, subversion-devel and subversion-freebsd with apr from www/apache22 AUTHOR: Clement Laforet apr and apr-util bundled with apache 2.2.9 have been upgraded to 1.3.x, so shared libraries' versions have been bumped. If you are using subversion with apache22 apr, you must rebuild subversion after the update. 20080617: AFFECTS: users of editors/nvi-devel AUTHOR: Wesley Shields editors/nvi-devel has been changed to install nvi, nex, and nview as to not conflict with editors/2bsd-vi. Please note the new names if you use this port. 20080616: AFFECTS: users of mail/dkim-milter AUTHOR: Hirohisa Yamaguchi Most of the command line options can now be set in configure files. So the default values (such as milterdkim_socket) are changed to blank. Upgrading users should check the values both in rc.conf and dkim-filter.conf. 20080612: AFFECTS: users of www/linux-opera AUTHOR: mezz@FreeBSD.org The Opera port has been updated from 9.2x to 9.5x. A lot of things have been changed such as keyboard shortcuts[1]; new storage and indexing formats for mail and feeds; new search.ini; probably more that I have missed. I do not know if the keyboard shortcuts and search.ini will be overwritten. You will be asked whether you want mail and feeds to be converted to new format during start up. Warning: there is no way to downgrade back to the old format. Be sure to see the Changelog[2]. [1] http://www.opera.com/support/search/view/884/ [2] http://www.opera.com/docs/changelogs/linux/950/ It is probably best for you to back up your linux-opera directory in case until you have no problem with new Opera for a while. Also, you might have to re-configure search and keyboard shortcuts if these were overwritten: # cp -Rp ~/.linux-opera ~/.linux-opera-bak If you are seeing an error of undefined symbols related to GTK+, it is because it needs newer linux-gtk2 that ports doesn't have. You can enter 'opera:config#FileSelector|DialogToolkit' in the address bar and change from 0 to 1 in 'Dialog Toolkit' if it annoys you. 0 = auto detection, 1 = QT, and 2 = GTK+. 20080610: AFFECTS: users of mail/svnmailer AUTHOR: pgollucci@FreeBSD.org Some of the config directives and sections allowed have changed. You will have to edit your config file when updating to 1.1.0-dev-r1373 version of the port. Please see the following URL for more information: http://opensource.perlig.de/en/svnmailer/doc-1.1/#general-config-charset 20080609: AFFECTS: users of devel/pear-Date_Holidays AUTHOR: tabthorpe@FreeBSD.org pear-Date_Holidays has been split into multiple subports. If you want a specific geographic region, look at devel/pear-Date_Holidays_* 20080605: AFFECTS: users of audio/paman and audio/pavucontrol AUTHOR: lippe@FreeBSD.org paman was renamed to pavucontrol, which are two different projects. paman is a GTK frontend to PulseAudio, while pavucontrol is a GTK-based volume control tool to PulseAudio. 20080605: AFFECTS: users of devel/gettext (i.e.: YOU) AUTHOR: ade@FreeBSD.org As a result of the upgrade to gettext-0.17, the shared library version of libintl has changed, so you will need to rebuild all ports that depend on gettext: # portupgrade -rf gettext # portmaster -r gettext Given the scope and sheer number of dependent ports, it may be more advisable to simply blow away all existing install ports (after keeping any local configuration changes), and rebuilding from scratch. 20080603: AFFECTS: users of editors/emacs AUTHOR: Yasuhiro KIMURA The port (editors/emacs) is updated to 22.2 and some of Emacs Lisp directories had changed. So you should reinstall all ports that depend on it. Please do something like: # portupgrade -fr emacs 20080601: AFFECTS: users of www/ikiwiki AUTHOR: brix@FreeBSD.org If password based logins is enabled in IkiWiki, those passwords were stored in cleartext in the userdb. To guard against exposing users' passwords, IkiWiki 2.48 and later use strong (blowfish) hashes for storing passwords. To hash existing passwords, update to ikiwiki-2.48 and run the following command for each of your IkiWiki src dirs: ikiwiki-transition hashpassword /path/to/your/wiki/srcdir 20080524: AFFECTS: users of net-im/jabberd AUTHOR: mm@FreeBSD.org Starting with version 2.2.0, resolver is now built in the S2S component. Jabberd configuration files require updating: jabberd.cfg: resolver component must be removed s2s.xml: section must be added (see s2s.xml.dist) resolver.xml: may be deleted (file not required anymore) 20080519: AFFECTS: users of www/nginx and www/nginx-devel AUTHOR: osa@FreeBSD.org Nginx version lines have been changed: 0.5 -> 0.6 for stable and 0.6 -> 0.7 for development version. Make sure your configuration files are compatible with the new version(s). 20080519: AFFECTS: users of irc/bitlbee AUTHOR: brix@FreeBSD.org The default installation is now configured for running bitlbee as user 'bitlbee'. Make sure any existing configuration files are readable by that user. 20080517: AFFECTS: users of multimedia/smplayer-* AUTHOR: miwi@FreeBSD.org The slave port multimedia/smplayer-qt4 has been removed with the upgrade of multimedia/smplayer to 0.6.0, qt3 is no longer supported. They are now fully integrated into multimedia/smplayer. Please uninstall multimedia/smplayer-qt4 port before upgrading multimedia/smplayer to version 0.6.0 or higher. 20080513: AFFECTS: users of security/amavisd-new AUTHOR: scheidell@secnap.net Amavisd-new 2.6.0 introduces several incompatibilities with prior versions. If you are upgrading from 2.5.4 or earlier, you will need to update your SQL schema. If you have third party programs that access SQL tables, you will need to update those also. COMPATIBILITY WITH 2.5.4: - when using SQL for logging (e.g. for a pen pals feature) or for quarantining, SQL tables maddr, msgs, msgrcpt and quarantine need to be extended by a new field 'partition_tag'; see below for details; - when SQL logging (pen pals) or SQL lookups are used, one can choose a binary or a character data type for fields users.email, mailaddr.email, and maddr.email; now may be a good opportunity to change a data type to binary (string of bytes); see below for details; - when using SQL for logging, a default for $sql_clause{'upd_msg'} has changed, so if a configuration file replaces this SQL clause by a non-default setting, it needs to be updated; Full information in /usr/local/share/doc/amavisd-new/RELEASE_NOTES. 20080513: AFFECTS: users of audio/ampache AUTHOR: jadawin@FreeBSD.org Ampache 3.4 uses a different config parser. Unfortunately the new parser is unable to read old config files. In order to migrate your current configuration, you should run `php ${WWWDIR}/bin/migrate_config.inc' from the command line. 20080508: AFFECTS: users of databases/ptop AUTHOR: beech@FreeBSD.org The authors have changed the name of this utility to `pg_top'. To avoid conflict with another port in the Tree with the same name we have retained `ptop' as the portname. Note that binary has also changed to `pg_top'. Please start the utility with that name after updating. 20080507: AFFECTS: Perl interface users of audio/gramofile AUTHOR: rafan@FreeBSD.org Perl support is removed due to devel/swig11 removal in ports. If you use the Perl interface, you are encouraged to use the new Audio::Gramofile found on CPAN (contact me for the ports). 20080506: AFFECTS: users of net-mgmt/collectd AUTHOR: daniel@roe.ch Previously, net-mgmt/collectd used to remove the config file even if it was changed by the user. This has now been fixed. To upgrade without losing your configuration, copy ${PREFIX}/etc/collectd.conf away to a safe place before upgrading net-mgmt/collectd. In addition, the default location of the data files changed from ${PREFIX}/var/lib/collectd to /var/db/collectd; you may want to move your data files and edit your configuration accordingly. 20080503: AFFECTS: users of net/skype-devel AUTHOR: beech@FreeBSD.org Skype-devel port has been removed in favor and by upading of net/skype. If you are running skype-devel, please do the following: portupgrade -o net/skype net/skype-devel 20080426: AFFECTS: users of www/phpgedview AUTHOR: beech@FreeBSD.org The install location of phpgedview has changed from www/data/phpGedView to www/phpgedview. If you are updating from a previous version please do the following: mv /usr/local/www/data/phpGedView /usr/local/www You will also need to adjust the paths in your web server to reflect the new location. 20080416: AFFECTS: users of security/clamav AUTHOR: garga@FreeBSD.org Clamav 0.93 does not support the daily.inc and main.inc directories format for virus databases. You need to remove these directories manually and force freshclam to get new cvd format files before starting clamd: portupgrade clamav /usr/local/etc/rc.d/clamav-clamd stop /usr/local/etc/rc.d/clamav-freshclam stop rm -rf /var/db/clamav/main.inc /var/db/clamav/daily.inc freshclam /usr/local/etc/rc.d/clamav-freshclam start /usr/local/etc/rc.d/clamav-clamd start 20080408: AFFECTS: users of www/p5-Apache-Test AUTHOR: pgollucci@FreeBSD.org www/p5-Apache-Test doesn't actually need www/mod_perl{1,2}. If you would like to test a mod_perl, than please install www/mod_perl2 or www/mod_perl as well. The ports infrastructure doesn't support this (yet) but you can use it to test www/apache13, www/apache20, and/or www/apache22 without chaining www/p5-Apache-Test. 20080405: AFFECTS: users of sysutils/tracker AUTHOR: ahze@FreeBSD.org The sysutils/tracker port is now a meta port and tracker is now split into separate ports to allow non-GNOME users to install tracker without pulling in GNOME components. To upgrade please use the directions below. Portmaster users: portmaster -o sysutils/tracker-client tracker portmaster sysutils/tracker Portupgrade users: portupgrade -o sysutils/tracker-client tracker portupgrade -u sysutils/tracker 20080405: AFFECTS: users and maintainers of ports that depend on databases/sqlite3 AUTHOR: mnag@FreeBSD.org Port databases/sqlite3 was updated to 3.5.6 and now has threads enabled by default. If you encounter any problem with it, you can rebuild SQLite3 without threads and test or change Makefile of affected port with this: sed -i.bak -E -e "s|USE_SQLITE=.*|USE_SQLITE=34|g" \ -e "s|databases/sqlite3|databases/sqlite34|g" Makefile Please report success or failure to port maintainer and to me. 20080403: AFFECTS: users of emulators/qemu and emulators/qemu-devel AUTHOR: nox@FreeBSD.org The default configuration location (qemu-ifup script etc.) has been changed from /etc to ${PREFIX}/etc (usually /usr/local/etc). Move your files accordingly. 20080330: AFFECTS: users of www/mediawiki AUTHOR: miwi@FreeBSD.org www/mediawiki version is 1.12 now. 1.11 version was preserved on www/mediawiki111 port. 20080329: AFFECTS: users of www/phpadsnew AUTHOR: beech@FreeBSD.org Phpadsnew has been replaced with www/openx. To upgrade please do the following: 1. Install www/openx 2. Copy the configuration file from phpadsnew to the var directory of www/openx 3. Copy your banner images from phpadsnew/www/images to openx/www/images 4. Access openx on your browser and follow the instructions for upgrading 5. When you are satisfied with everything working properly you can remove www/phpadsnew 20080326: AFFECTS: users of emulators/linux_base-f8 AUTHOR: bsam@FreeBSD.org The new port is used just like emulators/linux_base-fc6. Please, read carefully entry 20070327 about emulators/linux_base-fc6. 20080323: AFFECTS: users of multimedia/gstreamer AUTHOR: multimedia@FreeBSD.org Gstreamer port was updated. Due to the move of some plugins between ports, you will have to rebuild the gstreamer-plugins-good port after upgrading. Portupgrade users: # portupgrade -a # portupgrade -f gstreamer-plugins-good Portmaster users: # portmaster -a # portmaster gstreamer-plugins-good 20080323: AFFECTS: all GNOME users and ports depend on misc/gnomehier AUTHOR: gnome@FreeBSD.org GNOME has been updated to 2.22.0. You have to deinstall a few ports first before using portupgrade or portmaster in order to successfully upgrade your GNOME installation. Portupgrade users: # pkgdb -Ff # pkg_deinstall -fO gnome-applets\* totem\* gnome-control-center\* # portupgrade -aOW Portmaster users: # pkg_delete -f gnome-applets\* totem\* gnome-control-center\* \ gnome-keyring-manager\* # portmaster -a Be sure to read in our known issues and solutions: http://www.freebsd.org/gnome/docs/faq222.html#q4 20080323: AFFECTS: users of devel/glib20 and future users of devel/gio-fam-backend AUTHOR: gnome@FreeBSD.org In order to update to glib 2.16 or higher, you must first update the glib20 port on its own or you will get a failure trying to install devel/gio-fam-backend saying it cannot find -lgio-2.0. Portmaster users can do: portmaster glib-2 or, if you're using portupgrade: portupgrade glib-2\* 20080318: AFFECTS: users of audio/gnump3d AUTHOR: jadawin@FreeBSD.org The layout of gnump3d 3.0 is changed, please read documentation and the manual pages of gnump3d. 20080318: AFFECTS: users of net/skype net/skype-devel AUTHOR: beech@FreeBSD.org For FreeBSD versions 7.0 and above: It is required with both skype and skype-devel to update to linux_base-fc6. Please do the following: 1. Make sure there are no running Linux applications. 2. Unmount linprocfs (umount /compat/linux/proc) 3. Uninstall your current linux_base port 4. Set appropriate sysctl (sysctl compat.linux.osrelease=2.6.16) 5. Install emulators/linux_base-fc6 6 Remount linprocfs (mount /compat/linux/proc) 7. Add compat.linux.osrelease=2.6.16 to etc/sysctl.conf 8. Add OVERRIDE_LINUX_BASE_PORT=fc6 to /etc/make.conf Note: These instructions also apply to linux_base-f8, please use the same osrelease. For FreeBSD versions 5.X and 6.X: Please use the legacy version net/skype12: portupgrade -o net/skype12 net/skype 20080316: AFFECTS: users of net/iscsi-target AUTHOR: rafan@FreeBSD.org The default configuration location has been changed from /etc to ${PREFIX}/etc. Move your files accordingly. 20080314: AFFECTS: users of security/nmapfe AUTHOR: miwi@FreeBSD.org nmapfe has been renamed to zenmap upstream. The port has also been renamed. If you haven't already installed nmapfe, you need to: portupgrade -o security/zenmap nmapfe\* 20080313: AFFECTS: users of mail/ezmlm-web AUTHOR: hans@nordhaug.priv.no The layout of ezmlm-web 3.2 is changed, please read documentation and the manual page of ezmlm-web.cgi. 20080312: AFFECTS: users of x11-wm/enlightenment-devel, x11/ecore and grephics/evas AUTHOR: stas@FreeBSD.org Evas and ecore ports have been split to separate modules to simplify dependency tracking. Thus, portupgrade in many cases won't be able to correctly update these ports. The easiest upgrade path would be to remove all EFL ports and install them from scratch. At least, you should reinstall ecore and evas. Please note that your old $HOME/.e is no longer compatible with new snapshot version. You will need to remove this directory and let e17 create it automatically on the next startup. 20080306: AFFECTS: users of mail/dovecot AUTHOR: ehaupt@FreeBSD.org The update to version 1.0.12 will require manual change to the active configuration file. mail_extra_groups setting was commonly used insecurely. This setting is now deprecated. Most users should switch to using mail_privileged_group setting, but if you really need the old functionality use mail_access_groups instead. 20080303: AFFECTS: users of security/gnutls and any port that depends on it AUTHOR: novel@FreeBSD.org gnutls has been updated to 2.2.2 and all shared libraries' versions have been bumped. So you need to rebuild all applications that depend on gnutls. Do something like: portupgrade -rf gnutls 20080223: AFFECTS: users of www/instiki AUTHOR: beech@FreeBSD.org The default installation directory for instiki has changed from /usr/local/instiki to /usr/local/share/instiki. If you are updating from a previous version, to preserve your settings and data, please do the following: mv /usr/local/instiki /usr/local/share Then update as usual. 20080219: AFFECTS: users of x11-wm/xmonad AUTHOR: jacula@gmail.com From now XMonad uses a new configuration file system, so you don't have to edit Config.hs anymore. Instead, create a custom configuration file ~/.xmonad/xmonad.hs. You can take a look at some samples on Xmonad's website. Note that you can be interested in x11-wm/xmonad-contrib. 20080218: AFFECTS: users of devel/poco and devel/poco-ssl AUTHOR: lippemail@gmail.com The HashFunction class template has been changed in an incompatible way. The member function formerly named hash() is now the function call operator. If you have defined your own HashFunction classes, then you have to update your code. 20080216: AFFECTS: users of sysutils/symon AUTHOR: uspoerlein@gmail.com The symon port has been updated from 2.75 to 2.78. It changes the wire protocol again. You should update your symux(8) and symon(8) installations simultaneously, as: - new symon clients will make old symux servers exit, and - new symux servers don't understand the old symon client's if() and mem() probes. 20080208: AFFECTS: users of ports-mgmt/portupgrade AUTHOR: sem@FreeBSD.org As was claimed in the entry 20070301 below in this file, you should fill ALT_DEPENDS section of pkgtools.conf for portupgrade to work correctly with your alternative dependencies. Now it is an obligatory requirement. It was done as a compromise between speed and complexity. 20080203: AFFECTS: users of www/xshttpd AUTHOR: johans@FreeBSD.org www/xshttpd now uses ${PREFIX}/www/xshttpd/ as a root directory for its data files. The xshttpd configuration files have been moved to ${PREFIX}/www/xshttpd/conf/. Please move the appropriate local files manually if you are upgrading from 3.4 or older versions. 20080202: AFFECTS: users of www/punbb AUTHOR: beech@FreeBSD.org Install paths have changed. Please do the following prior to upgrade: cd /usr/local/www mv punbb punbb.old cp -R punbb.old/upload punbb It is now safe to update as usual. Notes: * You will probably get uninstall errors regarding files not found. It's safe to ignore them * Your webserver path has changed from www/punbb/upload to www/punbb, please adjust your webserver configuration and restart it * When you are satisfied with everything working properly you may remove the punbb.old directory: rm -r /usr/local/www/punbb.old 20080201: AFFECTS: users of www/ziproxy AUTHOR: pankov_p@mail.ru The configuration file was moved from /usr/local/etc to /usr/local/etc/ziproxy. 20080126: AFFECTS: users of net-p2p/deluge AUTHOR: mezz@FreeBSD.org Deluge was updated to version 0.5.8.2. If you are using blocklist plugin, you have to remove blocklist.conf first before you can run it, or it will crash upon start up. $ rm -f ~/.config/deluge/blocklist.conf 20080125: AFFECTS: users of www/mod_security2 AUTHOR: araujo@FreeBSD.org Update of mod_security2 is a dramatic change, because there is a need to completely rewrite their obsolete rules and migrate for capacity to use new syntax. You are advised to make a complete backup of your configuration files before you can perform an update. 20080120: AFFECTS: users of www/apache20 AUTHOR: clement@FreeBSD.org BDB framework provided by bsd.database.mk is now used by www/apache20 port. WITH_BERKELEYDB knob is deprecated in favor of WITH_BDB and WITH_BDB_VER/WITH_BDB_BASE, see documentation for more details ('make show-options'). 20080120: AFFECTS: users of www/apache22 AUTHOR: clement@FreeBSD.org BDB framework provided by bsd.database.mk is now used by www/apache22 port. WITH_BERKELEYDB knob is deprecated in favor of WITH_BDB and WITH_BDB_VER/WITH_BDB_BASE, see documentation for more details. ('make show-options'). 20080118: AFFECTS: users of net/freeradius AUTHOR: David Wood FreeRADIUS 2.0 is now available as the net/freeradius2 port. All FreeRADIUS users are advised to consider upgrading to 2.0. It is the FreeRADIUS team's intention to put the 1.x server into 'maintenance' mode with just critical bug fixes.[1] 2.0 has many improvements including numerous bug fixes that were too difficult for the 1.x server, as well as many new features. Before uninstalling 1.x, it is recommended that you backup your configuration, which is typically in /usr/local/etc/raddb, then move it out of the way. It is also worth backing up the default configuration, which is typically in /usr/local/share/examples/freeradius/raddb. 1.x configurations should work with the 2.0 server [2]. However the port automatically upgrades any unedited files in the configuration when you install a new version of FreeRADIUS. Installing 2.0 with the residue of a 1.x configuration in the default location will result in a mixed 1.x and 2.0 configuration that may not work. The recommended approach is to diff your 1.x configuration against the default 1.x configuration, then make corresponding changes to a copy of the default 2.0 configuration. If you moved your 1.x configuration out of the way before upgrading, you will have a 2.0 configuration ready to edit in the default location. It is worth reading man 5 unlang for details of the new FreeRADIUS 'un-language' before starting. Alternatively, you can move your 1.x configuration to another location, such as /usr/local/etc/raddb_v1, then edit /etc/rc.conf to point the rc.d script to that location. For example: radiusd_flags="-d /usr/local/etc/raddb_v1" I cannot guarantee that all 1.x configurations will work with the 2.0 server, and I only recommend using a 1.x configuration as an interim measure. [1] - http://www.freeradius.org/business/roadmap.html [2] - http://preview.tinyurl.com/ysrr6a 20080114: AFFECTS: users of devel/perforce AUTHOR: lth@FreeBSD.org Perforce has been updated to version 2007.3. Upgrading is fairly straightforward, but it is still highly recommended to follow the upgrading instructions in the release notes: http://www.perforce.com/perforce/doc.073/user/relnotes.txt 20080108: AFFECTS: users of irc/bitlbee AUTHOR: brix@FreeBSD.org irc/bitlbee now stores saved user settings in /var/db/bitlbee/, not $PREFIX/etc/bitlbee/. You will have to manually move any existing user settings to the new location (or override the user settings directory using -d if you wish to keep the old behavior). Other configuration files are still kept in $PREFIX/etc/bitlbee/ by default. The default installation is now configured for running bitlbee as user 'nobody' by default. Make sure any existing configuration files are readable by that user. $FreeBSD$ diff --git a/audio/tuxguitar/Makefile b/audio/tuxguitar/Makefile index fafff448eb25..a6247fae75fd 100644 --- a/audio/tuxguitar/Makefile +++ b/audio/tuxguitar/Makefile @@ -1,132 +1,132 @@ # ex: ts=8 # New ports collection makefile for: tuxguitar # Date created: 26 April 2007 # Whom: Pietro Cerutti (gahr@gahr.ch) # # $FreeBSD$ # PORTNAME= tuxguitar PORTVERSION= 1.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio java MASTER_SITES= SF/${PORTNAME}/TuxGuitar/TuxGuitar-${PORTVERSION}:src \ ${MASTER_SITE_LOCAL}/gahr/:fluid \ http://people.freebsd.org/~gahr/distfiles/:fluid \ http://www.alsa-project.org/~james/sound-fonts/:fluid DISTFILES= ${PORTNAME}-src-${DISTVERSION}${EXTRACT_SUFX}:src \ 8MBGMSFX.SF2:fluid EXTRACT_ONLY= ${PORTNAME}-src-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= gahr@FreeBSD.org COMMENT= A Multitrack tablature editor and player BUILD_DEPENDS= ${JAVALIBDIR}/swt-devel.jar:${PORTSDIR}/x11-toolkits/swt-devel \ ${JAVALIBDIR}/itext.jar:${PORTSDIR}/devel/itext \ ${JAVALIBDIR}/gervill.jar:${PORTSDIR}/audio/gervill RUN_DEPENDS:= ${BUILD_DEPENDS} LIB_DEPENDS= fluidsynth.1:${PORTSDIR}/audio/fluidsynth \ jack.0:${PORTSDIR}/audio/jack MAKE_ENV+= PREFIX=${PREFIX} INSTALL_DOC_DIR=${DOCSDIR} \ INSTALL_SHARE_DIR=${DATADIR} USE_JAVA= yes USE_ANT= yes -USE_GECKO= libxul +USE_GECKO= libxul19 USE_GMAKE= yes USE_LDCONFIG= yes JAVA_VERSION= 1.5+ JAVA_VENDOR= freebsd bsdjava sun NOCCACHE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-src-${PORTVERSION}/TuxGuitar .if !defined(WITHOUT_MAN) MAN1= tuxguitar.1 .endif .include PLUGINS= ascii browser-ftp compat converter fluidsynth gervill gtp \ jsa lilypond midi musicxml oss pdf ptb tef tray tuner SUB_FILES= tuxguitar SUB_LIST= DATADIR=${DATADIR} \ PREFIX=${PREFIX} \ JAVALIBDIR=${JAVALIBDIR} \ - GECKO=${GECKO} + GECKO=${GECKO:S/19//} post-extract: ${CP} ${DISTDIR}/8MBGMSFX.SF2 ${WRKDIR} post-patch: ${FIND} ${WRKSRC}/.. -name build.properties | ${XARGS} ${REINPLACE_CMD} -e '\ s|path\.swt=.*|path.swt=${JAVAJARDIR}/swt-devel.jar|; \ s|path\.itext=.*|path.itext=${JAVAJARDIR}/itext.jar|; \ s|path\.gervill=.*|path.gervill=${JAVAJARDIR}/gervill.jar|' ${FIND} ${WRKSRC}/.. -name GNUmakefile | ${XARGS} ${REINPLACE_CMD} -e '\ s|-I$$(shell gcj -print-file-name=include/)|-I${JAVA_HOME}/include \ -I${JAVA_HOME}/include/freebsd -I${LOCALBASE}/include|; \ s|LDFLAGS\?=.*|LDFLAGS?=-L${LOCALBASE}/lib|' ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g; \ s|%%PREFIX%%|${PREFIX}|g; \ s|%%JAVAJARDIR%%|${JAVAJARDIR}|g; \ s|%%JAVASHAREDIR%%|${JAVASHAREDIR}|g; \ s|%%DATADIR%%|${DATADIR}|g; \ s|%%DOCSDIR%%|${DOCSDIR}|g' \ ${WRKSRC}/build.properties post-build: .for p in ${PLUGINS} (cd ${WRKSRC}/../TuxGuitar-${p}; \ ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${ALL_TARGET}) .endfor cd ${WRKSRC}/../TuxGuitar-oss/jni && ${GMAKE} cd ${WRKSRC}/../TuxGuitar-fluidsynth/jni && ${GMAKE} cd ${WRKSRC}/../TuxGuitar-jack/jni && ${GMAKE} do-install: ${INSTALL} -d ${DATADIR} ${INSTALL} -d ${DATADIR}/plugins # Main program and plugins ${INSTALL_SCRIPT} ${WRKDIR}/tuxguitar ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/tuxguitar.jar ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/../misc/*.tg ${DATADIR} ${INSTALL_DATA} ${WRKDIR}/8MBGMSFX.SF2 ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/../TuxGuitar-oss/jni/libtuxguitar-oss-jni.so ${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/../TuxGuitar-fluidsynth/jni/libtuxguitar-fluidsynth-jni.so ${PREFIX}/lib .for p in ${PLUGINS} ${INSTALL_DATA} ${WRKSRC}/../TuxGuitar-${p}/tuxguitar-${p}.jar ${DATADIR}/plugins .endfor # Inline documentation cd ${WRKSRC}/share/help && ${COPYTREE_SHARE} \* ${DATADIR}/help cd ${WRKSRC}/share/lang && ${COPYTREE_SHARE} \* ${DATADIR}/lang cd ${WRKSRC}/share/scales && ${COPYTREE_SHARE} \* ${DATADIR}/scales cd ${WRKSRC}/share/skins && ${COPYTREE_SHARE} \* ${DATADIR}/skins # XPM icon ${INSTALL} -d ${PREFIX}/share/pixmaps ${INSTALL_DATA} ${WRKSRC}/../misc/tuxguitar.xpm ${PREFIX}/share/pixmaps # Desktop entry ${INSTALL} -d ${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/../misc/tuxguitar.desktop ${PREFIX}/share/applications .if !defined(WITHOUT_MAN) # MAN page ${INSTALL_MAN} ${WRKSRC}/../misc/tuxguitar.1 ${MANPREFIX}/man/man1 .endif post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR} .endif @${ECHO} @${ECHO} "SoundFonts for the FluidSynth plugin are available at:" @${ECHO} "${DATADIR}/8MBGMSFX.SF2" @${ECHO} "Add this path in the FluidSynth plugin configuration to" @${ECHO} "enable them." @${ECHO} .include diff --git a/deskutils/chmsee/Makefile b/deskutils/chmsee/Makefile index 70865139a817..a047e53dd639 100644 --- a/deskutils/chmsee/Makefile +++ b/deskutils/chmsee/Makefile @@ -1,55 +1,55 @@ # New ports collection makefile for: chmsee # Date created: 10 June 2006 # Whom: Yinghong Liu # # $FreeBSD$ # PORTNAME= chmsee PORTVERSION= 1.3.1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils gnome MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MAINTAINER= sylvio@FreeBSD.org COMMENT= A viewer for Microsoft Help "CHM" files LIB_DEPENDS= chm.0:${PORTSDIR}/misc/chmlib \ gcrypt.18:${PORTSDIR}/security/libgcrypt LICENSE= GPLv2 USE_GNOME= gnomehier libglade2 -USE_GECKO= libxul +USE_GECKO= libxul19 USE_GETTEXT= yes USE_CMAKE= yes CMAKE_ARGS= -DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=TRUE INSTALLS_ICONS= yes MAN1= chmsee.1 .include -.if defined(GECKO) && ${GECKO:Mlibxul}!="" -GTKMOZEMBED_LIB="${GECKO}-embedding-unstable nspr" +.if defined(GECKO) && ${GECKO:S/19//:Mlibxul}!="" +GTKMOZEMBED_LIB="${GECKO:S/19//}-embedding nspr" .else GTKMOZEMBED_LIB="${GECKO}-gtkmozembed" CFLAGS+= -I${LOCALBASE}/include/${GECKO}/commandhandler \ -I${LOCALBASE}/include/${GECKO}/locale \ -DGECKO_LIB_ROOT="\\\"\"${LOCALBASE}/lib/${GECKO}\"\\\"" .endif post-extract: @(cd ${WRKSRC}/data; ${CP} -f chmsee.desktop.in chmsee.desktop.skel) post-patch: @${REINPLACE_CMD} -e \ '/REQUIRED/s|libxul-.*=1.9.0.999|${GTKMOZEMBED_LIB}|g ; \ - /FLAVOUR/s|libxul|${GECKO}|g' ${WRKSRC}/CMakeLists.txt + /FLAVOUR/s|libxul|${GECKO:S/19//}|g' ${WRKSRC}/CMakeLists.txt @${REINPLACE_CMD} -e \ 's|.desktop.in|.desktop.skel|g' ${WRKSRC}/data/CMakeLists.txt post-install: ${INSTALL_MAN} ${WRKSRC}/doc/chmsee.1 ${MANPREFIX}/man/man1 .include diff --git a/deskutils/google-gadgets/Makefile b/deskutils/google-gadgets/Makefile index c5f13ac2466a..28276f5dfb0d 100644 --- a/deskutils/google-gadgets/Makefile +++ b/deskutils/google-gadgets/Makefile @@ -1,147 +1,147 @@ # New ports collection makefile for: google-gadgets # Date created: 2008-06-08 # Whom: Ashish Shukla # # $FreeBSD$ # PORTNAME= google-gadgets PORTVERSION= 0.11.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils MASTER_SITES= http://google-gadgets-for-linux.googlecode.com/files/ DISTNAME= ${PORTNAME}-for-linux-${PORTVERSION} MAINTAINER= ashish@FreeBSD.org COMMENT= Google Desktop Gadgets BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dbus-1.pc:${PORTSDIR}/devel/dbus \ ${LOCALBASE}/libdata/pkgconfig/libcurl.pc:${PORTSDIR}/ftp/curl \ ${LOCALBASE}/libdata/pkgconfig/libxml-2.0.pc:${PORTSDIR}/textproc/libxml2 \ ${LOCALBASE}/libdata/pkgconfig/cairo.pc:${PORTSDIR}/graphics/cairo \ ${LOCALBASE}/libdata/pkgconfig/librsvg-2.0.pc:${PORTSDIR}/graphics/librsvg2 \ ${LOCALBASE}/libdata/pkgconfig/libstartup-notification-1.0.pc:${PORTSDIR}/x11/startup-notification \ zip:${PORTSDIR}/archivers/zip LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo \ xml2.5:${PORTSDIR}/textproc/libxml2 \ dbus-1.3:${PORTSDIR}/devel/dbus \ curl.6:${PORTSDIR}/ftp/curl \ rsvg-2.2:${PORTSDIR}/graphics/librsvg2 \ startup-notification-1.0:${PORTSDIR}/x11/startup-notification RUN_DEPENDS= ${LOCALBASE}/bin/update-mime-database:${PORTSDIR}/misc/shared-mime-info BROKEN= does not link USE_BZIP2= yes USE_LDCONFIG= yes USE_GMAKE= yes USE_GCC= 4.2+ USE_GSTREAMER= yes GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib CFLAGS+= -I${LOCALBASE}/include -Wno-deprecated-declarations CONFIGURE_ARGS= --disable-werror --enable-ltdl-install=no --with-browser-plugins-dir=${LOCALBASE}/lib/browser_plugins USE_AUTOTOOLS= libtool:env autoconf:env automake:env aclocal:env libltdl WANT_GNOME= yes USE_GNOME= gnomehack INSTALLS_ICONS= yes OPTIONS= DEBUGGING "Enable debug output on runtime" on\ GTK "Build GTK Host" on\ QT "Build Qt Host" on\ GTKWEBKIT "Build with GTK Webkit support" on\ MOZILLA "Build with Mozilla support" on .include .if defined(WITH_QT) USE_QT4= webkit opengl gui corelib script network moc_build .endif .if defined(WITH_GTKWEBKIT) BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/webkit-1.0.pc:${PORTSDIR}/www/webkit-gtk2 LIB_DEPENDS+= webkitgtk-1.0.0:${PORTSDIR}/www/webkit-gtk2 .endif .if defined(WITH_MOZILLA) -USE_GECKO= libxul +USE_GECKO= libxul19 .endif .if defined(WITHOUT_GTKWEBKIT) && defined(WITHOUT_MOZILLA) && defined(WITH_GTK) IGNORE= gtk host requires GTK Webkit or/and Mozilla support to be enabled. Please, rerun 'make config' .elif defined(WITH_GTKWEBKIT) && defined(WITHOUT_GTK) .undef WITHOUT_GTK WITH_GTK=yes pre-everything:: @${ECHO_MSG} "==> GTK Webkit or/and Mozilla support is enabled." @${ECHO_MSG} "==> Enabling GTK support. If this is not desired," @${ECHO_MSG} "==> please rerun 'make config'." .endif .include CPPFLAGS+= -I${LOCALBASE}/include -Wno-deprecated-declarations .if defined(WITH_DEBUGGING) CONFIGURE_ARGS+= --enable-debug .endif .if defined(WITHOUT_GTK) PLIST_SUB+= GTK="@comment " CONFIGURE_ARGS+= --disable-gtk-host \ --disable-libggadget-gtk \ --disable-gtkmoz-browser-element \ --disable-gtk-system-framework \ --disable-webkit-script-runtime \ --disable-gtkwebkit-browser-element \ --disable-soup-xml-http-request .elif defined(WITH_GTK) USE_GNOME= gtk20 PLIST_SUB+= GTK="" CONFIGURE_ARGS+= --enable-gtk-host BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/libsoup-2.4.pc:${PORTSDIR}/devel/libsoup LIB_DEPENDS+= soup-2.4.1:${PORTSDIR}/devel/libsoup RUN_DEPENDS+= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss CONFIGURE_ARGS+= --with-ssl-ca-file=${LOCALBASE}/share/certs/ca-root-nss.crt .endif .if defined(WITHOUT_GTKWEBKIT) PLIST_SUB+= GTKWEBKIT="@comment " CONFIGURE_ARGS+= --disable-webkit-script-runtime --disable-gtkwebkit-browser-element .elif defined(WITH_GTKWEBKIT) PLIST_SUB+= GTKWEBKIT="" .endif .if defined(WITHOUT_MOZILLA) PLIST_SUB+= MOZILLA="@comment " CONFIGURE_ARGS+= --disable-smjs-script-runtime --disable-gtkmoz-browser-element .elif defined(WITH_MOZILLA) PLIST_SUB+= MOZILLA="" .endif .if defined(WITHOUT_QT) PLIST_SUB+= QT="@comment " CONFIGURE_ARGS+= --disable-qt-host --disable-libggadget-qt --disable-qt-system-framework\ --disable-qtwebkit-browser-element --disable-qt-script-runtime --disable-qt-xml-http-request .else PLIST_SUB+= QT="" CONFIGURE_ARGS+= --enable-qt-host .endif .if defined(WITHOUT_QT) && defined(WITHOUT_GTK) IGNORE= requires GTK or/and Qt host to be enabled. Please, rerun 'make config' .endif post-patch: @${FIND} ${WRKSRC} -type f -name Makefile.am -exec ${GREP} -l pkgconfig {} \; | ${XARGS} ${REINPLACE_CMD} -e 's|^\(pkgconfigdir[[:space:]]*=\).*|\1 $$(prefix)/libdata/pkgconfig|' pre-configure: @cd ${WRKSRC} && ${SH} autotools/bootstrap.sh && ${CP} ${AUTOMAKE_DIR}/mkinstalldirs libltdl/ @cd ${WRKSRC} && ${CHMOD} +x autotools/install-sh post-install: @-update-desktop-database .include diff --git a/editors/morla/Makefile b/editors/morla/Makefile index 6b5954d8ce1e..732e46734f90 100644 --- a/editors/morla/Makefile +++ b/editors/morla/Makefile @@ -1,57 +1,57 @@ # New ports collection makefile for: morla # Date created: 2006-04-09 # Whom: Nicola Vitale # # $FreeBSD$ # PORTNAME= morla PORTVERSION= 0.16.1 PORTREVISION= 2 CATEGORIES= editors textproc MASTER_SITES= http://www.morlardf.net/src/ \ http://nivi.interfree.it/distfiles/${PORTNAME}/${PORTVERSION}/ MAINTAINER= nivit@FreeBSD.org COMMENT= A RDF editor LIB_DEPENDS= nxml.18:${PORTSDIR}/textproc/libnxml \ rdf.0:${PORTSDIR}/textproc/redland \ raptor2.0:${PORTSDIR}/textproc/raptor2 \ curl.6:${PORTSDIR}/ftp/curl BUILD_DEPENDS= dot:${PORTSDIR}/graphics/graphviz RUN_DEPENDS= dot:${PORTSDIR}/graphics/graphviz OPTIONS= XULRUNNER "Install xulrunner as JavaScript engine" off GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-gconf=auto USE_GETTEXT= yes USE_GNOME= gconf2 libgtkhtml libxslt USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} MAN1= morla.1 DESKTOP_ENTRIES="morla" \ "Edit RDF documents" \ "${DATADIR}/icons/128_color.png" \ "morla" \ "WebDevelopment;" \ true post-patch: @${REINPLACE_CMD} -e 's|-D.*_DISABLE_DEPRECATED||g' \ ${WRKSRC}/configure .include .if defined(WITH_XULRUNNER) -USE_GECKO= libxul +USE_GECKO= libxul19 CONFIGURE_ARGS+= --with-javascript=xulrunner .else CONFIGURE_ARGS+= --with-javascript=none .endif .include diff --git a/graphics/gnash/Makefile b/graphics/gnash/Makefile index e269814da31c..8484dc46f876 100644 --- a/graphics/gnash/Makefile +++ b/graphics/gnash/Makefile @@ -1,291 +1,291 @@ # New ports collection makefile for: gnash # Date created: 12 Jan 2006 # Whom: Dmitry Marakasov # # $FreeBSD$ # PORTNAME= gnash PORTVERSION= 0.8.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= GNU/${PORTNAME}/${PORTVERSION}/ MAINTAINER= dinoex@FreeBSD.org COMMENT= GNU Flash movie player LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs \ jpeg.11:${PORTSDIR}/graphics/jpeg \ curl.6:${PORTSDIR}/ftp/curl \ gif.5:${PORTSDIR}/graphics/giflib \ speex.1:${PORTSDIR}/audio/speex \ nspr4:${PORTSDIR}/devel/nspr CONFLICTS= gnash-devel-[0-9]* USE_BZIP2= yes USE_GMAKE= yes USE_AUTOTOOLS= libltdl GNU_CONFIGURE= yes WANT_SDL= yes WANT_GNOME= yes USE_GCC= 4.2+ # triggers compiler error on gcc 3.4 WANT_GSTREAMER= yes USE_GNOME= pkgconfig libxml2 USE_XORG= x11 xau xdmcp xext xi xinerama ice sm xv USE_AUTOTOOLS= libltdl MAKE_JOBS_SAFE= yes INSTALLS_ICONS= yes # jemalloc leads to infinite recursion on FreeBSD CONFIGURE_ARGS= --with-boost-incl="${LOCALBASE}/include" \ --with-boost-lib="${LOCALBASE}/lib" \ --disable-testsuite \ --with-plugins-install=prefix \ --sysconfdir="${WRKDIR}/etc" \ --disable-jemalloc \ --disable-silent-rules GNASHVER= ${PORTVERSION} CONFIG_FILES= gnashpluginrc gnashrc WRKSRC= ${WRKDIR}/${PORTNAME}-${GNASHVER} PLIST_SUB+= GNASHVER="${GNASHVER}" USE_LDCONFIG= ${PREFIX}/lib/gnash MAN1= cygnal.1 findmicrophones.1 findwebcams.1 \ flvdumper.1 gnash.1 gprocessor.1 \ rtmpget.1 soldumper.1 OPTIONS_DEFINE= PLUGIN CYGNAL VAAPI FFMPEG GSTREAMER OPTIONS_SINGLE= GUI RENDERER OPTIONS_SINGLE_GUI= GTK2 KDE3 KDE4 OPTIONS_SINGLE_RENDERER=AGG OPENGL CAIRO #OPTIONS_SINGLE_MEDIA= FFMPEG GSTREAMER OPTIONS_DEFAULT=GTK2 PLUGIN AGG FFMPEG VAAPI NO_OPTIONS_SORT=yes PLUGIN_DESC= browser plugin CYGNAL_DESC= Cygnal media server AGG_DESC= AGG renderer OPENGL_DESC= OpenGL renderer (broken) CAIRO_DESC= Cairo renderer (experimental) FFMPEG_DESC= ffmpeg media handler GSTREAMER_DESC= GStreamer media handler VAAPI_DESC= VAAPI support (requires FFMPEG) .include # Cygnal option processing .if ${PORT_OPTIONS:MCYGNAL} PLIST_SUB+= CYGNAL="" CONFIGURE_ARGS+= --enable-cygnal CONFIG_FILES+= cygnalrc .else PLIST_SUB+= CYGNAL="@comment " CONFIGURE_ARGS+= --disable-cygnal .endif # NLS option processing (not sure if --disable-nls actually has any effect) .if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .endif # # Plugin configuration # .if ${PORT_OPTIONS:MGTK2} && ${PORT_OPTIONS:MPLUGIN} USE_WEBPLUGINS= native WEBPLUGINS_FILES= libgnashplugin.so .include "${PORTSDIR}/www/firefox/Makefile.webplugins" PLIST_SUB+= NPAPI="" CONFIGURE_ARGS+=--with-npapi-plugindir="${WEBPLUGINS_DIR}" -BUILD_DEPENDS+= ${LOCALBASE}/lib/libxul/xpidl:${PORTSDIR}/www/libxul -RUN_DEPENDS+= ${LOCALBASE}/lib/libxul/xpidl:${PORTSDIR}/www/libxul +BUILD_DEPENDS+= ${LOCALBASE}/lib/libxul/xpidl:${PORTSDIR}/www/libxul19 +RUN_DEPENDS+= ${LOCALBASE}/lib/libxul/xpidl:${PORTSDIR}/www/libxul19 .else PLIST_SUB+= NPAPI="@comment " CONFIGURE_ARGS+= --disable-npapi .endif .if ${PORT_OPTIONS:MKDE3} && ${PORT_OPTIONS:MPLUGIN} PLIST_SUB+= KPARTS3="" USE_LDCONFIG+= ${PREFIX}/lib/kde3 .else PLIST_SUB+= KPARTS3="@comment " CONFIGURE_ARGS+= --disable-kparts3 .endif .if ${PORT_OPTIONS:MKDE4} && ${PORT_OPTIONS:MPLUGIN} PLIST_SUB+= KPARTS4="" USE_LDCONFIG+= ${KDE4_PREFIX}/lib/kde4 CONFIGURE_ARGS+= --with-kde4_prefix=${PREFIX}/kde4 .else PLIST_SUB+= KPARTS4="@comment " CONFIGURE_ARGS+= --disable-kparts4 .endif # # GUI options processing # GNASH_GUIS= .if ${PORT_OPTIONS:MGTK2} USE_GNOME= gtk20 atk gconf2 GNASH_GUIS+= gtk PLIST_SUB+= GTK="" MAN1+= gnash-gtk-launcher.1 gtk-gnash.1 .else PLIST_SUB+= GTK="@comment " .endif .if ${PORT_OPTIONS:MKDE3} GNASH_GUIS+= kde3 PLIST_SUB+= KDE="" USE_KDELIBS_VER=3 .else PLIST_SUB+= KDE="@comment " .endif .if ${PORT_OPTIONS:MKDE4} GNASH_GUIS+= kde4 PLIST_SUB+= KDE4="" USE_QT4= moc_build QT_NONSTANDARD= yes USE_KDE4= kdehier kdelibs CONFIGURE_ENV+= KDE4_CONFIG="${KDE4_PREFIX}/bin/kde4-config" .if exists(${LOCALBASE}/lib/libkdeui.so) IGNORE= KDE4 GUI can't be built when KDE3 is installed. Please rerun 'make config' and disable KDE4 GUI or deinstall kdelibs-3 .endif MAN1+= gnash-qt-launcher.1 kde4-gnash.1 .else PLIST_SUB+= KDE4="@comment " .endif .if ${PORT_OPTIONS:MKDE3} && ${PORT_OPTIONS:MKDE4} IGNORE= KDE3 and KDE4 GUIs are mutually exclusive. Please rerun 'make config' and disable one of these .endif .if ${GNASH_GUIS} == "" IGNORE= needs at least one GUI enabled. Please rerun 'make config' and enable GTK, KDE or KDE4 .endif CONFIGURE_ARGS+=--enable-gui=`${ECHO} ${GNASH_GUIS} | ${TR} ' ' ,` # # Renderer options processing # GNASH_RENDERERS= .if ${PORT_OPTIONS:MAGG} LIB_DEPENDS+= agg.2:${PORTSDIR}/graphics/agg GNASH_RENDERERS+= agg .endif .if ${PORT_OPTIONS:MOPENGL} USE_GL= yes GNASH_RENDERERS+= ogl .if ${PORT_OPTIONS:MGTK2} LIB_DEPENDS+= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext .endif .endif .if ${PORT_OPTIONS:MCAIRO} .if ${PORT_OPTIONS:MKDE3} || ${PORT_OPTIONS:MKDE4} IGNORE= doesn't support Cairo renderer with KDE/KDE4 gui. Please rerun 'make config' and select different renderer or disable KDE/KDE4 GUIs .endif LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo GNASH_RENDERERS+= cairo .endif .if ${GNASH_RENDERERS} == "" IGNORE= needs at least one renderer enabled. Please rerun 'make config' and enable AGG, OPENGL or CAIRO .endif CONFIGURE_ARGS+= --enable-renderer=`${ECHO} ${GNASH_RENDERERS} | ${TR} ' ' ,` # # Hardware acceleration options processing # .if ${PORT_OPTIONS:MVAAPI} .if empty(PORT_OPTIONS:MFFMPEG) IGNORE= VAAPI currently works only with FFMPEG. Please rerun 'make config' and enable FFMPEG. .endif LIB_DEPENDS+= va.1:${PORTSDIR}/multimedia/libva PLIST_SUB+= VAAPI="" .else CONFIGURE_ARGS+= --enable-hwaccel=none # XVideo PLIST_SUB+= VAAPI="@comment " .endif # # Media handler options processing # .if ${PORT_OPTIONS:MFFMPEG} && empty(PORT_OPTIONS:MGSTREAMER) LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg CONFIGURE_ARGS+= --enable-media=ffmpeg USE_SDL+= sdl .elif empty(PORT_OPTIONS:MFFMPEG) && ${PORT_OPTIONS:MGSTREAMER} USE_GSTREAMER= yes CONFIGURE_ARGS+= --enable-media=gst USE_SDL+= sdl .elif empty(PORT_OPTIONS:MFFMPEG) && empty(PORT_OPTIONS:MGSTREAMER) CONFIGURE_ARGS+= --enable-media=none IGNORE= can't be built with multiple media handlers enabled. Please rerun 'make config' and leave one or none of them (ffmpeg|gstreamer) .endif .if ${PORT_OPTIONS:MGSTREAMER} PLIST_SUB+= GSTREAMER="" .else PLIST_SUB+= GSTREAMER="@comment " .endif .include pre-everything:: .if ${PORT_OPTIONS:MOPENGL} @${ECHO_CMD} "OpenGL support is currently broken (Gnash hangs using 100% CPU). Use at your own risk" @sleep 3 .endif post-patch: @${REINPLACE_CMD} -e '/^PTHREAD_[LC][IF]*=/ d; s|-lpthread|${PTHREAD_LIBS}|' \ -e '/KDE4_APPSDATADIR=/ s|share/kde4|share|' \ -e 's|/usr/local|${LOCALBASE}|g; \ s|/lib64|/lib|g; \ s|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/configure \ ${WRKSRC}/macros/libslist ${WRKSRC}/macros/incllist @${REINPLACE_CMD} -e '/^pkgconfigdir =/ s|libdir)|exec_prefix)/libdata|' \ ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e '/^man1dir =/ s|=.*|= ${MAN1PREFIX}/man/man1|' \ ${WRKSRC}/doc/C/Makefile.in post-install: .for conf in ${CONFIG_FILES} @${INSTALL_DATA} ${WRKDIR}/etc/${conf} ${PREFIX}/etc/${conf}.dist if [ ! -f ${PREFIX}/etc/${conf} ]; then \ ${INSTALL_DATA} ${PREFIX}/etc/${conf}.dist \ ${PREFIX}/etc/${conf}; \ fi .endfor .if ${PORT_OPTIONS:MPLUGIN} .if ${PORT_OPTIONS:MGTK2} ${MKDIR} ${WEBPLUGINS_DIR} @cd ${INSTALL_WRKSRC}/plugin && \ ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} install-plugin .endif .if ${PORT_OPTIONS:MKDE3} @cd ${INSTALL_WRKSRC}/plugin/klash && \ ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} install-plugin .endif .if ${PORT_OPTIONS:MKDE4} @cd ${INSTALL_WRKSRC}/plugin/klash4 && \ ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} install-plugin .endif .endif .include diff --git a/java/eclipse-devel/Makefile b/java/eclipse-devel/Makefile index dd1f238cd93d..1a32a0c1b097 100644 --- a/java/eclipse-devel/Makefile +++ b/java/eclipse-devel/Makefile @@ -1,284 +1,284 @@ # New ports collection makefile for: eclipse-devel # Date created: April 9, 2005 # Whom: various members of freebsd-java # # $FreeBSD$ # PORTNAME= eclipse-devel PORTVERSION= 3.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= java devel MASTER_SITES= http://download.eclipse.org/technology/linuxtools/eclipse-build/3.7.x_Indigo/:1 \ http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository/plugins/:2 \ ${MASTER_SITE_APACHE:S,%SUBDIR%/,ant/binaries/:4,} \ ${MASTER_SITE_SOURCEFORGE:S,%SUBDIR%/,junit/junit/${JUNIT3_VERSION}/:5,} \ http://cloud.github.com/downloads/KentBeck/junit/:6 \ ${MASTER_SITE_APACHE_TOMCAT:S,%SUBDIR%/,tomcat-7/v${TOMCAT_VERSION}/bin/:7,} \ ${MASTER_SITE_APACHE_TOMCAT:S,%SUBDIR%/,tomcat-7/v${TOMCAT_VERSION}/bin/extras/:7,} DISTFILES= ${ECLIPSE_BUILD_SRCFILE}:1 \ ${ECLIPSE_SRCFILE}:1 \ ${ANT_SRCFILE}:4 \ ${JUNIT3_SRCFILE}:5 \ ${JUNIT4_SRCFILE}:6 \ ${TOMCAT_SRCFILES:C,(.*),\\1:7,} DIST_SUBDIR= eclipse EXTRACT_ONLY= ${ECLIPSE_BUILD_SRCFILE} MAINTAINER= freebsd-eclipse@FreeBSD.org COMMENT= An open extensible IDE for anything and nothing in particular EXTRACT_DEPENDS=${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip PATCH_DEPENDS= ant:${PORTSDIR}/devel/apache-ant \ gpatch:${PORTSDIR}/devel/patch \ zip:${PORTSDIR}/archivers/zip \ ${DEPEND_JAVA} BUILD_DEPENDS= gpatch:${PORTSDIR}/devel/patch \ rsync:${PORTSDIR}/net/rsync \ unzip:${PORTSDIR}/archivers/unzip \ zip:${PORTSDIR}/archivers/zip LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo IGNORE= is currently older than java/eclipse OPTIONS= TESTS "Build SDK test suite" off ONLY_FOR_ARCHS= i386 amd64 USE_ANT= yes -USE_GECKO= libxul +USE_GECKO= libxul19 USE_GL= glu USE_GMAKE= yes USE_GNOME= desktopfileutils gconf2 gtk20 gnomevfs2 libgnome libgnomeui pkgconfig USE_JAVA= yes USE_XZ= yes BZIP2_SUFX= .tar.bz2 ZIP_CMD?= ${LOCALBASE}/bin/zip JAVA_BUILD= yes JAVA_OS= native JAVA_RUN= yes JAVA_VERSION= 1.6 JAVA_VENDOR= openjdk ECLIPSE_BUILD_SRCFILE= eclipse-build-914dc6de2bfc5ee5819a229cf4877f7043040a92${EXTRACT_SUFX} ECLIPSE_SRCFILE= eclipse-${PORTVERSION}-src${BZIP2_SUFX} ECLIPSE_TEST_SRCFILE= eclipse-sdktests-${PORTVERSION}-src${BZIP2_SUFX} ECLIPSE_TEST_SCRIPTFILE=eclipse-sdktests-${PORTVERSION}-scripts${BZIP2_SUFX} ECLIPSE_JAR_BUNDLES= com.ibm.icu_4.4.2.v20110208.jar \ com.jcraft.jsch_0.1.41.v201101211617.jar \ org.apache.commons.codec_1.3.0.v201101211617.jar \ org.apache.commons.el_1.0.0.v201101211617.jar \ org.apache.commons.httpclient_3.1.0.v201012070820.jar \ org.apache.commons.logging_1.0.4.v201101211617.jar \ org.apache.lucene.core_2.9.1.v201101211721.jar \ org.apache.lucene.analysis_2.9.1.v201101211721.jar \ org.hamcrest.core_1.1.0.v20090501071000.jar \ org.mortbay.jetty.util_6.1.23.v201012071420.jar \ org.mortbay.jetty.server_6.1.23.v201012071420.jar \ org.objectweb.asm_3.3.1.v201105211655.jar ECLIPSE_SAT4J_BUNDLES= org.sat4j.core_2.3.0.v20110329.jar \ org.sat4j.pb_2.3.0.v20110329.jar ANT_VERSION= 1.8.2 ANT_SRCFILE= apache-ant-${ANT_VERSION}-bin${BZIP2_SUFX} ANT_BUNDLES= ant-antlr.jar \ ant-apache-bcel.jar \ ant-apache-bsf.jar \ ant-apache-log4j.jar \ ant-apache-oro.jar \ ant-apache-regexp.jar \ ant-apache-resolver.jar \ ant-apache-xalan2.jar \ ant-commons-logging.jar \ ant-commons-net.jar \ ant.jar \ ant-javamail.jar \ ant-jdepend.jar \ ant-jmf.jar \ ant-jsch.jar \ ant-junit.jar \ ant-junit4.jar \ ant-launcher.jar \ ant-swing.jar \ ant-testutil.jar JUNIT3_VERSION= 3.8.2 JUNIT3_SRCFILE= junit${JUNIT3_VERSION}.zip JUNIT4_VERSION= 4.8.2 JUNIT4_SRCFILE= junit-${JUNIT4_VERSION}.jar TOMCAT_VERSION= 7.0.25 TOMCAT_SRCFILES= apache-tomcat-${TOMCAT_VERSION}.tar.gz tomcat-juli.jar TOMCAT_BUNDLES= el-api.jar \ jasper-el.jar \ jasper.jar \ jsp-api.jar \ servlet-api.jar \ tomcat-api.jar \ tomcat-juli.jar FBSD_SUPPORT_SRCFILE= freebsd-support.patch ECLIPSE_GENERATED_BUILDSCRIPTS= eclipse-build-generatedScripts.tar.bz2 ALL_TARGET= provision.cvs INSTALL_TARGET= installSDKinDropins MAKE_ARGS= -DbuildOs=freebsd -DbuildArch=${ARCH:C/amd64/x86_64/:C/i386/x86/} -Dprefix=${PREFIX} -Dlocalbase=${LOCALBASE} -Dlabel=${PORTVERSION} -MAKE_ENV+= GRE_HOME=${PREFIX}/lib/${GECKO} _JAVA_OPTIONS="-Xmx1024m" JAVA_VENDOR=${JAVA_VENDOR} +MAKE_ENV+= GRE_HOME=${PREFIX}/lib/${GECKO:S/19//} _JAVA_OPTIONS="-Xmx1024m" JAVA_VENDOR=${JAVA_VENDOR} WRKSRC= ${WRKDIR}/${ECLIPSE_BUILD_SRCFILE:C/${EXTRACT_SUFX}//} PATCH_STRIP= -p1 BOOTCLASSPATH= ${JAVA_HOME}/jre/lib/rt.jar:${JAVA_HOME}/jre/lib/jce.jar:${JAVA_HOME}/jre/lib/jsse.jar PORTDESTDIR= ${PREFIX}/lib/${PORTNAME} DROPINS_DIR= share/${PORTNAME}/dropins PLIST_FILES= bin/${PORTNAME} \ share/applications/${PORTNAME}.desktop \ share/icons/hicolor/16x16/apps/${PORTNAME}.png \ share/icons/hicolor/32x32/apps/${PORTNAME}.png \ share/icons/hicolor/48x48/apps/${PORTNAME}.png \ share/pixmaps/${PORTNAME}.png .for f in ${ECLIPSE_JAR_BUNDLES} ${ECLIPSE_SAT4J_BUNDLES} DISTFILES+= ${f}:2 .endfor .include .if defined(WITH_TESTS) DISTFILES+= ${ECLIPSE_TEST_SRCFILE}:1 ${ECLIPSE_TEST_SCRIPTFILE}:1 BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash \ Xvnc:${PORTSDIR}/net/tightvnc ALL_TARGET= runTests .endif # Prepare Eclipse source, Ant, JUnit and Tomcat bundles post-extract: @${MKDIR} ${BUILD_WRKSRC}/bundles @${CP} ${DISTDIR}/${DIST_SUBDIR}/${ECLIPSE_SRCFILE} ${BUILD_WRKSRC} @${CP} ${FILESDIR}/${FBSD_SUPPORT_SRCFILE} ${BUILD_WRKSRC}/patches/ .for f in ${ECLIPSE_JAR_BUNDLES} ${ECLIPSE_SAT4J_BUNDLES} @${CP} ${DISTDIR}/${DIST_SUBDIR}/${f} ${BUILD_WRKSRC}/bundles/ .endfor @(${MKDIR} ${BUILD_WRKSRC}/generatedScripts && cd ${BUILD_WRKSRC}/generatedScripts && ${BZIP2_CMD} ${EXTRACT_BEFORE_ARGS} ${BUILD_WRKSRC}/${ECLIPSE_GENERATED_BUILDSCRIPTS} ${EXTRACT_AFTER_ARGS}) @(cd ${WRKDIR} && ${BZIP2_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${ANT_SRCFILE} ${EXTRACT_AFTER_ARGS}) .for f in ${ANT_BUNDLES} @${CP} ${WRKDIR}/apache-ant-${ANT_VERSION}/lib/${f} ${BUILD_WRKSRC}/bundles/ .endfor @${MKDIR} ${WRKDIR}/junit @${UNZIP_CMD} -qo ${DISTDIR}/${DIST_SUBDIR}/${JUNIT3_SRCFILE} -d ${WRKDIR}/junit @${CP} ${WRKDIR}/junit/junit${JUNIT3_VERSION}/junit.jar ${BUILD_WRKSRC}/bundles/ @${CP} ${DISTDIR}/${DIST_SUBDIR}/${JUNIT4_SRCFILE} ${BUILD_WRKSRC}/bundles/junit4.jar @(cd ${WRKDIR} && ${GZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${TOMCAT_SRCFILES:Mapache-tomcat*.tar.gz} ${EXTRACT_AFTER_ARGS}) @${CP} ${DISTDIR}/${DIST_SUBDIR}/${TOMCAT_SRCFILES:M*.jar} ${WRKDIR}/apache-tomcat-${TOMCAT_VERSION}/lib/ .for f in ${TOMCAT_BUNDLES} @${CP} ${WRKDIR}/apache-tomcat-${TOMCAT_VERSION}/lib/${f} ${BUILD_WRKSRC}/bundles/ .endfor .if defined(WITH_TESTS) @${CP} ${DISTDIR}/${DIST_SUBDIR}/${ECLIPSE_TEST_SRCFILE} ${BUILD_WRKSRC} @${CP} ${DISTDIR}/${DIST_SUBDIR}/${ECLIPSE_TEST_SCRIPTFILE} ${BUILD_WRKSRC} .endif # Apply patches that have been pushed upstream pre-patch: @${PATCH} -d ${BUILD_WRKSRC} --forward --quiet --suffix .orig -E -p0 -i ${PATCHDIR}/eclipse-build-upstream.patch @${PATCH} -d ${BUILD_WRKSRC}/eclipse-build-config --forward --quiet --suffix .orig -E -p0 -i ${PATCHDIR}/eclipse-build-config-upstream.patch # Fixup boot classes path post-patch: @(cd ${BUILD_WRKSRC}/generatedScripts; tar cjf ${BUILD_WRKSRC}/${ECLIPSE_GENERATED_BUILDSCRIPTS} plugins) @${REINPLACE_CMD} -e "s+%%BOOTCLASSPATH%%+${BOOTCLASSPATH}+g" ${BUILD_WRKSRC}/build.properties @${REINPLACE_CMD} -e "s+%%BOOTCLASSPATH%%+${BOOTCLASSPATH}+g" ${BUILD_WRKSRC}/pdebuild.properties @${REINPLACE_CMD} -e "s+%%PORTNAME%%+${PORTNAME}+g" ${BUILD_WRKSRC}/build.xml @${REINPLACE_CMD} -e "s+%%PORTNAME%%+${PORTNAME}+g" ${BUILD_WRKSRC}/eclipse.desktop @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} applyPatches) .for f in ${ECLIPSE_JAR_BUNDLES} @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/dependencies.properties @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/jdtdependencies.properties @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/sdkdependencies.properties .endfor .for f in ${ECLIPSE_SAT4J_BUNDLES} @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/dependencies.properties .endfor .for f in ${ANT_BUNDLES} @${REINPLACE_CMD} -e "s+${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/nonosgidependencies.properties .endfor @${REINPLACE_CMD} -e "s+=/usr/share/java/junit.jar+=${BUILD_WRKSRC}/bundles/junit.jar+" ${BUILD_WRKSRC}/jdtnonosgidependencies.properties @${REINPLACE_CMD} -e "s+=/usr/share/java/junit4.jar+=${BUILD_WRKSRC}/bundles/junit4.jar+" ${BUILD_WRKSRC}/jdtnonosgidependencies.properties @${REINPLACE_CMD} -e "s+/usr/share/java/junit4.jar+${BUILD_WRKSRC}/bundles/junit4.jar+" ${BUILD_WRKSRC}/build.xml @${REINPLACE_CMD} -e "s+^\(javax.el_2.2.0.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/el-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/javax.el_2.2.0.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/el-api.jar @${REINPLACE_CMD} -e "s+^\(org.apache.el_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/jasper-el.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.el_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/jasper-el.jar @${REINPLACE_CMD} -e "s+^\(org.apache.jasper_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/jasper.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.jasper_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/jasper.jar @${REINPLACE_CMD} -e "s+^\(javax.servlet.jsp_2.2.0.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/jsp-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/javax.servlet.jsp_2.2.0.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/jsp-api.jar @${REINPLACE_CMD} -e "s+^\(javax.servlet_3.0.0.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/servlet-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/javax.servlet_3.0.0.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/servlet-api.jar @${REINPLACE_CMD} -e "s+^\(org.apache.tomcat_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/tomcat-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.tomcat_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/tomcat-api.jar @${REINPLACE_CMD} -e "s+^\(org.apache.juli_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/tomcat-juli.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.juli_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/tomcat-juli.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/com.jcraft.jsch_0.1.41.v200903070017.jar ${BUILD_WRKSRC}/dependencyManifests/com.jcraft.jsch_0.1.41.v201101211617.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.el_1.0.0.v200806031608.jar ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.el_1.0.0.v201101211617.jar @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.el_1.0.0.v201101211617.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/org.apache.commons.el_1.0.0.v201101211617.jar @${ZIP_CMD} -qd ${BUILD_WRKSRC}/bundles/org.apache.commons.el_1.0.0.v201101211617.jar META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.httpclient_3.1.0.v201005080502.jar ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.httpclient_3.1.0.v201012070820.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.server_6.1.23.v201004211559.jar ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.server_6.1.23.v201012071420.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.util_6.1.23.v201004211559.jar ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.util_6.1.23.v201012071420.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.objectweb.asm_3.3.1.v201101071600.jar ${BUILD_WRKSRC}/dependencyManifests/org.objectweb.asm_3.3.1.v201105211655.jar .if defined(WITH_TESTS) @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} applyTestPatches) .endif do-install: @${RM} -rf ${PORTDESTDIR} @${MKDIR} ${PORTDESTDIR} @${MKDIR} ${PREFIX}/${DROPINS_DIR} @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${INSTALL_TARGET}) @${SED} \ - -e "s+%%BROWSER%%+${GECKO}+g" \ + -e "s+%%BROWSER%%+${GECKO:S/19//}+g" \ -e "s+%%ECLIPSE_HOME%%+${PORTDESTDIR}+g" \ -e "s+%%JAVA_HOME%%+${JAVA_HOME}+g" \ -e "s+%%JAVA_OS%%+${JAVA_OS}+g" \ -e "s+%%JAVA_VERSION%%+${JAVA_VERSION}+g" \ -e "s+%%LOCALBASE%%+${LOCALBASE}+g" \ ${FILESDIR}/eclipse.in > ${BUILD_WRKSRC}/eclipse.tmp .if defined(JAVA_VENDOR) @${REINPLACE_CMD} -e "s+%%JAVA_VENDOR_SPECIFICATION%%+JAVA_VENDOR=\"${JAVA_VENDOR}\"+g" \ ${BUILD_WRKSRC}/eclipse.tmp .else @${REINPLACE_CMD} -e "s+%%JAVA_VENDOR_SPECIFICATION%%++g" \ ${BUILD_WRKSRC}/eclipse.tmp .endif @${INSTALL_SCRIPT} ${WRKSRC}/eclipse.tmp ${PREFIX}/bin/${PORTNAME} @${PREFIX}/bin/${PORTNAME} -initialize -consolelog -@update-desktop-database @(cd ${PREFIX}; ${FIND} -s lib/${PORTNAME} -not -type d) >> ${TMPPLIST} @(cd ${PREFIX}; ${FIND} -s -d lib/${PORTNAME} -type d) | ${SED} -ne "s,^,@dirrm ,p" >> ${TMPPLIST} @${ECHO_CMD} "@exec ${MKDIR} %D/share/${PORTNAME}/dropins 2>/dev/null || true " >> ${TMPPLIST} @${ECHO_CMD} "@unexec ${RMDIR} %D/share/${PORTNAME}/dropins 2>/dev/null || true " >> ${TMPPLIST} @${ECHO_CMD} "@unexec ${RMDIR} %D/share/${PORTNAME} 2>/dev/null || true " >> ${TMPPLIST} @${ECHO_CMD} "@exec ${PREFIX}/bin/update-desktop-database > /dev/null || /usr/bin/true" >> ${TMPPLIST} @${ECHO_CMD} "@unexec ${PREFIX}/bin/update-desktop-database > /dev/null || /usr/bin/true" >> ${TMPPLIST} .if defined(WITH_TESTS) tests: build @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} runTests) .else tests: @${ECHO_CMD} "Tests are not enabled!" .endif .include diff --git a/java/eclipse/Makefile b/java/eclipse/Makefile index 65dbbb123310..2568703f606c 100644 --- a/java/eclipse/Makefile +++ b/java/eclipse/Makefile @@ -1,282 +1,282 @@ # New ports collection makefile for: eclipse # Date created: March 7, 2003 # Whom: various members of freebsd-java # # $FreeBSD$ # PORTNAME= eclipse PORTVERSION= 3.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= java devel MASTER_SITES= http://download.eclipse.org/technology/linuxtools/eclipse-build/3.7.x_Indigo/:1 \ http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository/plugins/:2 \ ${MASTER_SITE_APACHE:S,%SUBDIR%/,ant/binaries/:4,} \ ${MASTER_SITE_SOURCEFORGE:S,%SUBDIR%/,junit/junit/${JUNIT3_VERSION}/:5,} \ http://cloud.github.com/downloads/KentBeck/junit/:6 \ ${MASTER_SITE_APACHE_TOMCAT:S,%SUBDIR%/,tomcat-7/v${TOMCAT_VERSION}/bin/:7,} \ ${MASTER_SITE_APACHE_TOMCAT:S,%SUBDIR%/,tomcat-7/v${TOMCAT_VERSION}/bin/extras/:7,} DISTFILES= ${ECLIPSE_BUILD_SRCFILE}:1 \ ${ECLIPSE_SRCFILE}:1 \ ${ANT_SRCFILE}:4 \ ${JUNIT3_SRCFILE}:5 \ ${JUNIT4_SRCFILE}:6 \ ${TOMCAT_SRCFILES:C,(.*),\\1:7,} DIST_SUBDIR= eclipse EXTRACT_ONLY= ${ECLIPSE_BUILD_SRCFILE} MAINTAINER= freebsd-eclipse@FreeBSD.org COMMENT= An open extensible IDE for anything and nothing in particular EXTRACT_DEPENDS=${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip PATCH_DEPENDS= ant:${PORTSDIR}/devel/apache-ant \ gpatch:${PORTSDIR}/devel/patch \ zip:${PORTSDIR}/archivers/zip \ ${DEPEND_JAVA} BUILD_DEPENDS= gpatch:${PORTSDIR}/devel/patch \ rsync:${PORTSDIR}/net/rsync \ unzip:${PORTSDIR}/archivers/unzip \ zip:${PORTSDIR}/archivers/zip LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo OPTIONS= TESTS "Build SDK test suite" off ONLY_FOR_ARCHS= i386 amd64 USE_ANT= yes -USE_GECKO= libxul +USE_GECKO= libxul19 USE_GL= glu USE_GMAKE= yes USE_GNOME= desktopfileutils gconf2 gtk20 gnomevfs2 libgnome libgnomeui pkgconfig USE_JAVA= yes USE_XZ= yes BZIP2_SUFX= .tar.bz2 ZIP_CMD?= ${LOCALBASE}/bin/zip JAVA_BUILD= yes JAVA_OS= native JAVA_RUN= yes JAVA_VERSION= 1.6 JAVA_VENDOR= openjdk ECLIPSE_BUILD_SRCFILE= eclipse-build-914dc6de2bfc5ee5819a229cf4877f7043040a92${EXTRACT_SUFX} ECLIPSE_SRCFILE= eclipse-${PORTVERSION}-src${BZIP2_SUFX} ECLIPSE_TEST_SRCFILE= eclipse-sdktests-${PORTVERSION}-src${BZIP2_SUFX} ECLIPSE_TEST_SCRIPTFILE=eclipse-sdktests-${PORTVERSION}-scripts${BZIP2_SUFX} ECLIPSE_JAR_BUNDLES= com.ibm.icu_4.4.2.v20110208.jar \ com.jcraft.jsch_0.1.41.v201101211617.jar \ org.apache.commons.codec_1.3.0.v201101211617.jar \ org.apache.commons.el_1.0.0.v201101211617.jar \ org.apache.commons.httpclient_3.1.0.v201012070820.jar \ org.apache.commons.logging_1.0.4.v201101211617.jar \ org.apache.lucene.core_2.9.1.v201101211721.jar \ org.apache.lucene.analysis_2.9.1.v201101211721.jar \ org.hamcrest.core_1.1.0.v20090501071000.jar \ org.mortbay.jetty.util_6.1.23.v201012071420.jar \ org.mortbay.jetty.server_6.1.23.v201012071420.jar \ org.objectweb.asm_3.3.1.v201105211655.jar ECLIPSE_SAT4J_BUNDLES= org.sat4j.core_2.3.0.v20110329.jar \ org.sat4j.pb_2.3.0.v20110329.jar ANT_VERSION= 1.8.2 ANT_SRCFILE= apache-ant-${ANT_VERSION}-bin${BZIP2_SUFX} ANT_BUNDLES= ant-antlr.jar \ ant-apache-bcel.jar \ ant-apache-bsf.jar \ ant-apache-log4j.jar \ ant-apache-oro.jar \ ant-apache-regexp.jar \ ant-apache-resolver.jar \ ant-apache-xalan2.jar \ ant-commons-logging.jar \ ant-commons-net.jar \ ant.jar \ ant-javamail.jar \ ant-jdepend.jar \ ant-jmf.jar \ ant-jsch.jar \ ant-junit.jar \ ant-junit4.jar \ ant-launcher.jar \ ant-swing.jar \ ant-testutil.jar JUNIT3_VERSION= 3.8.2 JUNIT3_SRCFILE= junit${JUNIT3_VERSION}.zip JUNIT4_VERSION= 4.8.2 JUNIT4_SRCFILE= junit-${JUNIT4_VERSION}.jar TOMCAT_VERSION= 7.0.25 TOMCAT_SRCFILES= apache-tomcat-${TOMCAT_VERSION}.tar.gz tomcat-juli.jar TOMCAT_BUNDLES= el-api.jar \ jasper-el.jar \ jasper.jar \ jsp-api.jar \ servlet-api.jar \ tomcat-api.jar \ tomcat-juli.jar FBSD_SUPPORT_SRCFILE= freebsd-support.patch ECLIPSE_GENERATED_BUILDSCRIPTS= eclipse-build-generatedScripts.tar.bz2 ALL_TARGET= provision.cvs INSTALL_TARGET= installSDKinDropins MAKE_ARGS= -DbuildOs=freebsd -DbuildArch=${ARCH:C/amd64/x86_64/:C/i386/x86/} -Dprefix=${PREFIX} -Dlocalbase=${LOCALBASE} -Dlabel=${PORTVERSION} -MAKE_ENV+= GRE_HOME=${PREFIX}/lib/${GECKO} _JAVA_OPTIONS="-Xmx1024m" JAVA_VENDOR=${JAVA_VENDOR} +MAKE_ENV+= GRE_HOME=${PREFIX}/lib/${GECKO:S/19//} _JAVA_OPTIONS="-Xmx1024m" JAVA_VENDOR=${JAVA_VENDOR} WRKSRC= ${WRKDIR}/${ECLIPSE_BUILD_SRCFILE:C/${EXTRACT_SUFX}//} PATCH_STRIP= -p1 BOOTCLASSPATH= ${JAVA_HOME}/jre/lib/rt.jar:${JAVA_HOME}/jre/lib/jce.jar:${JAVA_HOME}/jre/lib/jsse.jar PORTDESTDIR= ${PREFIX}/lib/${PORTNAME} DROPINS_DIR= share/${PORTNAME}/dropins PLIST_FILES= bin/${PORTNAME} \ share/applications/${PORTNAME}.desktop \ share/icons/hicolor/16x16/apps/${PORTNAME}.png \ share/icons/hicolor/32x32/apps/${PORTNAME}.png \ share/icons/hicolor/48x48/apps/${PORTNAME}.png \ share/pixmaps/${PORTNAME}.png .for f in ${ECLIPSE_JAR_BUNDLES} ${ECLIPSE_SAT4J_BUNDLES} DISTFILES+= ${f}:2 .endfor .include .if defined(WITH_TESTS) DISTFILES+= ${ECLIPSE_TEST_SRCFILE}:1 ${ECLIPSE_TEST_SCRIPTFILE}:1 BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash \ Xvnc:${PORTSDIR}/net/tightvnc ALL_TARGET= runTests .endif # Prepare Eclipse source, Ant, JUnit and Tomcat bundles post-extract: @${MKDIR} ${BUILD_WRKSRC}/bundles @${CP} ${DISTDIR}/${DIST_SUBDIR}/${ECLIPSE_SRCFILE} ${BUILD_WRKSRC} @${CP} ${FILESDIR}/${FBSD_SUPPORT_SRCFILE} ${BUILD_WRKSRC}/patches/ .for f in ${ECLIPSE_JAR_BUNDLES} ${ECLIPSE_SAT4J_BUNDLES} @${CP} ${DISTDIR}/${DIST_SUBDIR}/${f} ${BUILD_WRKSRC}/bundles/ .endfor @(${MKDIR} ${BUILD_WRKSRC}/generatedScripts && cd ${BUILD_WRKSRC}/generatedScripts && ${BZIP2_CMD} ${EXTRACT_BEFORE_ARGS} ${BUILD_WRKSRC}/${ECLIPSE_GENERATED_BUILDSCRIPTS} ${EXTRACT_AFTER_ARGS}) @(cd ${WRKDIR} && ${BZIP2_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${ANT_SRCFILE} ${EXTRACT_AFTER_ARGS}) .for f in ${ANT_BUNDLES} @${CP} ${WRKDIR}/apache-ant-${ANT_VERSION}/lib/${f} ${BUILD_WRKSRC}/bundles/ .endfor @${MKDIR} ${WRKDIR}/junit @${UNZIP_CMD} -qo ${DISTDIR}/${DIST_SUBDIR}/${JUNIT3_SRCFILE} -d ${WRKDIR}/junit @${CP} ${WRKDIR}/junit/junit${JUNIT3_VERSION}/junit.jar ${BUILD_WRKSRC}/bundles/ @${CP} ${DISTDIR}/${DIST_SUBDIR}/${JUNIT4_SRCFILE} ${BUILD_WRKSRC}/bundles/junit4.jar @(cd ${WRKDIR} && ${GZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${TOMCAT_SRCFILES:Mapache-tomcat*.tar.gz} ${EXTRACT_AFTER_ARGS}) @${CP} ${DISTDIR}/${DIST_SUBDIR}/${TOMCAT_SRCFILES:M*.jar} ${WRKDIR}/apache-tomcat-${TOMCAT_VERSION}/lib/ .for f in ${TOMCAT_BUNDLES} @${CP} ${WRKDIR}/apache-tomcat-${TOMCAT_VERSION}/lib/${f} ${BUILD_WRKSRC}/bundles/ .endfor .if defined(WITH_TESTS) @${CP} ${DISTDIR}/${DIST_SUBDIR}/${ECLIPSE_TEST_SRCFILE} ${BUILD_WRKSRC} @${CP} ${DISTDIR}/${DIST_SUBDIR}/${ECLIPSE_TEST_SCRIPTFILE} ${BUILD_WRKSRC} .endif # Apply patches that have been pushed upstream pre-patch: @${PATCH} -d ${BUILD_WRKSRC} --forward --quiet --suffix .orig -E -p0 -i ${PATCHDIR}/eclipse-build-upstream.patch @${PATCH} -d ${BUILD_WRKSRC}/eclipse-build-config --forward --quiet --suffix .orig -E -p0 -i ${PATCHDIR}/eclipse-build-config-upstream.patch # Fixup boot classes path post-patch: @(cd ${BUILD_WRKSRC}/generatedScripts; tar cjf ${BUILD_WRKSRC}/${ECLIPSE_GENERATED_BUILDSCRIPTS} plugins) @${REINPLACE_CMD} -e "s+%%BOOTCLASSPATH%%+${BOOTCLASSPATH}+g" ${BUILD_WRKSRC}/build.properties @${REINPLACE_CMD} -e "s+%%BOOTCLASSPATH%%+${BOOTCLASSPATH}+g" ${BUILD_WRKSRC}/pdebuild.properties @${REINPLACE_CMD} -e "s+%%PORTNAME%%+${PORTNAME}+g" ${BUILD_WRKSRC}/build.xml @${REINPLACE_CMD} -e "s+%%PORTNAME%%+${PORTNAME}+g" ${BUILD_WRKSRC}/eclipse.desktop @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} applyPatches) .for f in ${ECLIPSE_JAR_BUNDLES} @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/dependencies.properties @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/jdtdependencies.properties @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/sdkdependencies.properties .endfor .for f in ${ECLIPSE_SAT4J_BUNDLES} @${REINPLACE_CMD} -e "s+^${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/dependencies.properties .endfor .for f in ${ANT_BUNDLES} @${REINPLACE_CMD} -e "s+${f}=\(.*\)+${f}=${BUILD_WRKSRC}/bundles/${f}+" ${BUILD_WRKSRC}/nonosgidependencies.properties .endfor @${REINPLACE_CMD} -e "s+=/usr/share/java/junit.jar+=${BUILD_WRKSRC}/bundles/junit.jar+" ${BUILD_WRKSRC}/jdtnonosgidependencies.properties @${REINPLACE_CMD} -e "s+=/usr/share/java/junit4.jar+=${BUILD_WRKSRC}/bundles/junit4.jar+" ${BUILD_WRKSRC}/jdtnonosgidependencies.properties @${REINPLACE_CMD} -e "s+/usr/share/java/junit4.jar+${BUILD_WRKSRC}/bundles/junit4.jar+" ${BUILD_WRKSRC}/build.xml @${REINPLACE_CMD} -e "s+^\(javax.el_2.2.0.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/el-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/javax.el_2.2.0.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/el-api.jar @${REINPLACE_CMD} -e "s+^\(org.apache.el_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/jasper-el.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.el_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/jasper-el.jar @${REINPLACE_CMD} -e "s+^\(org.apache.jasper_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/jasper.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.jasper_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/jasper.jar @${REINPLACE_CMD} -e "s+^\(javax.servlet.jsp_2.2.0.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/jsp-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/javax.servlet.jsp_2.2.0.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/jsp-api.jar @${REINPLACE_CMD} -e "s+^\(javax.servlet_3.0.0.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/servlet-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/javax.servlet_3.0.0.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/servlet-api.jar @${REINPLACE_CMD} -e "s+^\(org.apache.tomcat_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/tomcat-api.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.tomcat_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/tomcat-api.jar @${REINPLACE_CMD} -e "s+^\(org.apache.juli_7.0.21.jar\)=\(.*\)+\1=${BUILD_WRKSRC}/bundles/tomcat-juli.jar+" ${BUILD_WRKSRC}/dependencies.properties @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.juli_7.0.21.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/tomcat-juli.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/com.jcraft.jsch_0.1.41.v200903070017.jar ${BUILD_WRKSRC}/dependencyManifests/com.jcraft.jsch_0.1.41.v201101211617.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.el_1.0.0.v200806031608.jar ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.el_1.0.0.v201101211617.jar @${JAR} umf ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.el_1.0.0.v201101211617.jar/META-INF/MANIFEST.MF ${BUILD_WRKSRC}/bundles/org.apache.commons.el_1.0.0.v201101211617.jar @${ZIP_CMD} -qd ${BUILD_WRKSRC}/bundles/org.apache.commons.el_1.0.0.v201101211617.jar META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.httpclient_3.1.0.v201005080502.jar ${BUILD_WRKSRC}/dependencyManifests/org.apache.commons.httpclient_3.1.0.v201012070820.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.server_6.1.23.v201004211559.jar ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.server_6.1.23.v201012071420.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.util_6.1.23.v201004211559.jar ${BUILD_WRKSRC}/dependencyManifests/org.mortbay.jetty.util_6.1.23.v201012071420.jar @${MV} ${BUILD_WRKSRC}/dependencyManifests/org.objectweb.asm_3.3.1.v201101071600.jar ${BUILD_WRKSRC}/dependencyManifests/org.objectweb.asm_3.3.1.v201105211655.jar .if defined(WITH_TESTS) @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} applyTestPatches) .endif do-install: @${RM} -rf ${PORTDESTDIR} @${MKDIR} ${PORTDESTDIR} @${MKDIR} ${PREFIX}/${DROPINS_DIR} @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${INSTALL_TARGET}) @${SED} \ - -e "s+%%BROWSER%%+${GECKO}+g" \ + -e "s+%%BROWSER%%+${GECKO:S/19//}+g" \ -e "s+%%ECLIPSE_HOME%%+${PORTDESTDIR}+g" \ -e "s+%%JAVA_HOME%%+${JAVA_HOME}+g" \ -e "s+%%JAVA_OS%%+${JAVA_OS}+g" \ -e "s+%%JAVA_VERSION%%+${JAVA_VERSION}+g" \ -e "s+%%LOCALBASE%%+${LOCALBASE}+g" \ ${FILESDIR}/eclipse.in > ${BUILD_WRKSRC}/eclipse.tmp .if defined(JAVA_VENDOR) @${REINPLACE_CMD} -e "s+%%JAVA_VENDOR_SPECIFICATION%%+JAVA_VENDOR=\"${JAVA_VENDOR}\"+g" \ ${BUILD_WRKSRC}/eclipse.tmp .else @${REINPLACE_CMD} -e "s+%%JAVA_VENDOR_SPECIFICATION%%++g" \ ${BUILD_WRKSRC}/eclipse.tmp .endif @${INSTALL_SCRIPT} ${WRKSRC}/eclipse.tmp ${PREFIX}/bin/${PORTNAME} @${PREFIX}/bin/${PORTNAME} -initialize -consolelog -@update-desktop-database @(cd ${PREFIX}; ${FIND} -s lib/${PORTNAME} -not -type d) >> ${TMPPLIST} @(cd ${PREFIX}; ${FIND} -s -d lib/${PORTNAME} -type d) | ${SED} -ne "s,^,@dirrm ,p" >> ${TMPPLIST} @${ECHO_CMD} "@exec ${MKDIR} %D/share/${PORTNAME}/dropins 2>/dev/null || true " >> ${TMPPLIST} @${ECHO_CMD} "@unexec ${RMDIR} %D/share/${PORTNAME}/dropins 2>/dev/null || true " >> ${TMPPLIST} @${ECHO_CMD} "@unexec ${RMDIR} %D/share/${PORTNAME} 2>/dev/null || true " >> ${TMPPLIST} @${ECHO_CMD} "@exec ${PREFIX}/bin/update-desktop-database > /dev/null || /usr/bin/true" >> ${TMPPLIST} @${ECHO_CMD} "@unexec ${PREFIX}/bin/update-desktop-database > /dev/null || /usr/bin/true" >> ${TMPPLIST} .if defined(WITH_TESTS) tests: build @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} runTests) .else tests: @${ECHO_CMD} "Tests are not enabled!" .endif .include diff --git a/java/icedtea-web/Makefile b/java/icedtea-web/Makefile index 68032408f244..3448dc3917f4 100644 --- a/java/icedtea-web/Makefile +++ b/java/icedtea-web/Makefile @@ -1,135 +1,136 @@ # New ports collection makefile for: icedtea-web # Date created: July 11, 2011 # Whom: Jung-uk Kim # # $FreeBSD$ # PORTNAME= icedtea-web PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= java www MASTER_SITES= http://icedtea.wildebeest.org/download/source/ \ http://icedtea.classpath.org/download/source/ MAINTAINER= java@FreeBSD.org COMMENT= A free Java plug-in and Java Web Start for OpenJDK LICENSE= GPLv2 GNU_CONFIGURE= yes USE_GMAKE= yes USE_JAVA= yes JAVA_OS= native JAVA_VENDOR= openjdk JAVA_VERSION= 1.6+ USE_PERL5_BUILD=yes USE_XORG= x11 OPTIONS_DEFINE= PLUGIN RHINO TEST OPTIONS_DEFAULT=PLUGIN PLUGIN_DESC= Enable the browser plug-in RHINO_DESC= Add support for Proxy Auto Config files TEST_DESC= Add support for running regression test .include MAN1= itweb-javaws.1 PLIST_FILES= bin/itweb-javaws bin/itweb-settings \ share/applications/itweb-javaws.desktop \ share/applications/itweb-settings.desktop \ share/pixmaps/itweb-javaws.png PORTDATA= about.jar about.jnlp netx.jar PORTDOCS= netx BUILD_DEPENDS+= ${LOCALBASE}/bin/zip:${PORTSDIR}/archivers/zip RUN_DEPENDS+= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash USE_PKGCONFIG= yes CONFIGURE_ARGS+=--with-ecj=no --with-jdk-home="${JAVA_HOME}" EXTRACT_AFTER_ARGS= | ${SETENV} LC_ALL=en_US.UTF-8 ${TAR} -xf - .include .if empty(PORT_OPTIONS:MDOCS) CONFIGURE_ARGS+= --disable-docs .endif .if ${PORT_OPTIONS:MPLUGIN} USE_WEBPLUGINS= native WEBPLUGINS_DIR= ${PREFIX}/lib WEBPLUGINS_FILES=IcedTeaPlugin.so PLIST_FILES+= lib/IcedTeaPlugin.so PORTDATA+= plugin.jar PORTDOCS+= plugin BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/glib-2.0.pc:${PORTSDIR}/devel/glib20 \ ${LOCALBASE}/libdata/pkgconfig/gtk+-2.0.pc:${PORTSDIR}/x11-toolkits/gtk20 \ - ${LOCALBASE}/libdata/pkgconfig/mozilla-plugin.pc:${PORTSDIR}/www/libxul + ${LOCALBASE}/libdata/pkgconfig/mozilla-plugin.pc:${PORTSDIR}/www/libxul19 CONFIGURE_ARGS+=--with-gtk=2 .include "${PORTSDIR}/www/firefox/Makefile.webplugins" .else CONFIGURE_ARGS+=--disable-plugin .endif .if ${PORT_OPTIONS:MRHINO} CONFIGURE_ARGS+=--with-rhino=${JAVASHAREDIR}/rhino/rhino.jar BUILD_DEPENDS+= ${JAVASHAREDIR}/rhino/rhino.jar:${PORTSDIR}/lang/rhino RUN_DEPENDS+= ${JAVASHAREDIR}/rhino/rhino.jar:${PORTSDIR}/lang/rhino .else CONFIGURE_ARGS+=--with-rhino=no .endif .if ${PORT_OPTIONS:MTEST} CONFIGURE_ARGS+=--with-junit=${JAVALIBDIR}/junit.jar BUILD_DEPENDS+= ${JAVALIBDIR}/junit.jar:${PORTSDIR}/java/junit \ ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash .else CONFIGURE_ARGS+=--with-junit=no .endif post-patch: ${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|' ${WRKSRC}/javac.in ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/launcher/javaws.in .if ${JAVA_PORT_VERSION} == "1.6.0" pre-extract: @${ECHO_MSG} @${ECHO_MSG} "IMPORTANT: To build IcedTea-Web ${PORTVERSION}, you have to turn on 'ICEDTEA' option" @${ECHO_MSG} "for ${JAVA_PORT} (default). Otherwise, it will neither build nor work." @${ECHO_MSG} @sleep 10 .endif .if ${PORT_OPTIONS:MTEST} post-build: @${ECHO_MSG} @${ECHO_MSG} "Run \"make test\" to execute regression test." @${ECHO_MSG} .endif post-install: ${MKDIR} ${DESKTOPDIR} ${REINPLACE_CMD} -e 's|^Icon=javaws|Icon=itweb-javaws|' \ ${WRKSRC}/itweb-javaws.desktop ${WRKSRC}/itweb-settings.desktop ${INSTALL_DATA} ${WRKSRC}/itweb-javaws.desktop \ ${WRKSRC}/itweb-settings.desktop ${DESKTOPDIR} ${MKDIR} ${PREFIX}/share/pixmaps ${INSTALL_DATA} ${WRKSRC}/javaws.png \ ${PREFIX}/share/pixmaps/itweb-javaws.png .if ${PORT_OPTIONS:MTEST} test: build @${SED} -e 's|^SHELL = /bin/sh|SHELL = ${LOCALBASE}/bin/bash|' \ ${WRKSRC}/Makefile > ${WRKSRC}/Makefile.test @(cd ${WRKSRC}; ${GMAKE} -f Makefile.test check) .if ${PORT_OPTIONS:MPLUGIN} @(cd ${WRKSRC}; ${GMAKE} -f Makefile.test plugin-tests) .endif .endif .include diff --git a/lang/gjs/Makefile b/lang/gjs/Makefile index 177b21e76b4d..573fd326572b 100644 --- a/lang/gjs/Makefile +++ b/lang/gjs/Makefile @@ -1,43 +1,43 @@ # New ports collection makefile for: gjs # Date created: 14 Aug 2009 # Whom: Pawel Worach # # $FreeBSD$ # $MCom: ports/lang/gjs/Makefile,v 1.12 2010/11/15 20:14:53 kwm Exp $ # PORTNAME= gjs PORTVERSION= 0.7.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= GNOME JavaScript binding BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib -USE_GECKO= libxul +USE_GECKO= libxul19 USE_BZIP2= yes USE_GETTEXT= yes USE_GMAKE= yes USE_PYTHON_BUILD= yes USE_AUTOTOOLS= libtool USE_GNOME= gnomeprefix gnomehack intlhack glib20 ltverhack USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib .include .if ${OSVERSION} < 700000 BROKEN= does not link on 6.x .endif post-patch: ${REINPLACE_CMD} -e 's|/usr/bin/python|/usr/bin/env python|g' \ ${WRKSRC}/scripts/make-tests .include diff --git a/mail/firetray/Makefile b/mail/firetray/Makefile index 40f97bda131b..42cc670e1187 100644 --- a/mail/firetray/Makefile +++ b/mail/firetray/Makefile @@ -1,52 +1,52 @@ # New ports collection makefile for: firetray # Date created: 2010-08-27 # Whom: Andriy Gapon # # $FreeBSD$ # PORTNAME= firetray DISTVERSION= 0.2.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail www MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= ${PORTNAME}-${DISTVERSION}-src MAINTAINER= avg@icyb.net.ua COMMENT= System tray add-on for firefox, thunderbird, seamonkey, etc PATCH_DEPENDS= nspr>=4.8:${PORTSDIR}/devel/nspr BROKEN= does not build USE_ZIP= yes -USE_GECKO= libxul +USE_GECKO= libxul19 USE_SCONS= yes USE_PKGCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} EXTRACT_AFTER_ARGS= -d ${WRKSRC} -GECKO_CONFIG= ${LOCALBASE}/bin/pkg-config ${GECKO} +GECKO_CONFIG= ${LOCALBASE}/bin/pkg-config ${GECKO:S/19//} BUILD_SH_FLAGS= --dynamic-linking \ - --gecko-sdk-bin=`${DIRNAME} ${XPIDL}` \ + --gecko-sdk-bin=`${DIRNAME} ${XPIDL:S/19//}` \ --gecko-sdk-lib=`${GECKO_CONFIG} --variable=sdkdir`/lib \ --gecko-sdk-idl=`${GECKO_CONFIG} --variable=idldir` \ --gecko-sdk-include=`${GECKO_CONFIG} --variable=includedir` NSPR_INCLUDE= `${LOCALBASE}/bin/pkg-config nspr --variable=includedir` PLIST_DIRS= ${DATADIR:S,${PREFIX}/,,} PLIST_FILES= ${DATADIR:S,${PREFIX}/,,}/${PORTNAME}.xpi post-patch: @${REINPLACE_CMD} s,/usr/include/nspr,${NSPR_INCLUDE}, \ ${WRKSRC}/components/SConscript do-build: cd ${WRKSRC} && ./build.sh ${BUILD_SH_FLAGS} do-install: ${MKDIR} ${DATADIR} && \ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.xpi ${DATADIR} .include diff --git a/misc/xiphos/Makefile b/misc/xiphos/Makefile index 1fe2f8bce547..357f69c4f8ce 100644 --- a/misc/xiphos/Makefile +++ b/misc/xiphos/Makefile @@ -1,67 +1,67 @@ # New ports collection makefile for: xiphos # Date created: February 2, 2009 # Whom: Thomas Abthorpe # # $FreeBSD$ # PORTNAME= xiphos PORTVERSION= 3.1.5 PORTREVISION= 3 CATEGORIES= misc gnome MASTER_SITES= SF/gnomesword/Xiphos/${PORTVERSION} MAINTAINER= tabthorpe@FreeBSD.org COMMENT= A bible interface utilizing the sword framework LICENSE= GPLv2 RUN_DEPENDS= ${LOCALBASE}/lib/libsword-1.6.2.so:${PORTSDIR}/misc/sword \ yelp:${PORTSDIR}/x11/yelp BUILD_DEPENDS:= ${RUN_DEPENDS} \ docbook2html:${PORTSDIR}/textproc/docbook-utils \ gnome-doc-tool:${PORTSDIR}/textproc/gnome-doc-utils \ nspr>=4.8:${PORTSDIR}/devel/nspr USE_PYTHON_BUILD= yes USE_GETTEXT= yes INSTALLS_OMF= yes INSTALLS_ICONS= yes USE_GNOME= gnomehack gnomeprefix gtkhtml3 intlhack libgsf OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= GTKHTML LIBXUL WEBKIT GTKHTML_DESC= Use gtkhtml for rendering LIBXUL_DESC= Use xulrunner for rendering WEBKIT_DESC= Use webkit for rendering (preferred) OPTIONS_DEFAULT= WEBKIT .include .if ${PORT_OPTIONS:MWEBKIT} WAF_CONFIGURE_ARGS= --backend=webkit LIB_DEPENDS= webkitgtk:${PORTSDIR}/www/webkit-gtk2 .endif .if ${PORT_OPTIONS:MLIBXUL} WAF_CONFIGURE_ARGS= --backend=xulrunner -USE_GECKO= libxul +USE_GECKO= libxul19 .endif .if ${PORT_OPTIONS:MGTKHTML} WAF_CONFIGURE_ARGS= --backend=gtkhtml .endif do-configure: @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./waf configure \ --prefix=${PREFIX} --destdir=${PREFIX} \ ${WAF_CONFIGURE_ARGS} --gtk=2 do-build: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./waf build do-install: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./waf install .include diff --git a/multimedia/gxine/Makefile b/multimedia/gxine/Makefile index 8813b81f61ad..3f512358d949 100644 --- a/multimedia/gxine/Makefile +++ b/multimedia/gxine/Makefile @@ -1,82 +1,82 @@ # New ports collection makefile for: gxine # Date created: Sa 19 Apr 2003 01:34:06 CEST # Whom: Grigori Goronzy # # $FreeBSD$ # PORTNAME= gxine PORTVERSION= 0.5.907 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= SF/xine/${PORTNAME}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= An alternative GUI for the Xine media player LICENSE= GPLv2 LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/nspr \ xine.2:${PORTSDIR}/multimedia/libxine OPTIONS_DEFINE= MOZILLA_PLUGIN GNOME LIRC MOZILLA_PLUGIN_DESC= Mozilla plugin USE_XZ= yes USE_GNOME= gnomehack gtk20 -USE_GECKO= libxul +USE_GECKO= libxul19 USE_GMAKE= yes USE_AUTOTOOLS= libtool CONFIGURE_ENV= MKDIR_P="${MKDIR}" CONFIGURE_ARGS= --enable-mozjs --disable-ffjs --disable-seajs \ --without-hal --with-libintl-prefix=${LOCALBASE} INSTALLS_ICONS= yes MAKE_JOBS_SAFE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib MANLANG= "" de es MAN1= gxine.1 gxine_client.1 MANCOMPRESSED= no .include .if ${PORT_OPTIONS:MMOZILLA_PLUGIN} USE_XORG+= xaw USE_WEBPLUGINS= native WEBPLUGINS_DIR= ${PREFIX}/lib/gxine WEBPLUGINS_FILES=gxineplugin.so .include "${PORTSDIR}/www/firefox/Makefile.webplugins" PLIST_SUB+= MOZILLA_PLUGIN="" .else CONFIGURE_ARGS+=--without-browser-plugin PLIST_SUB+= MOZILLA_PLUGIN="@comment " .endif .if ${PORT_OPTIONS:MGNOME} BUILD_DEPENDS+= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib RUN_DEPENDS+= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver CONFIGURE_ARGS+=--with-dbus .else CONFIGURE_ARGS+=--disable-integration-wizard --without-dbus .endif .if ${PORT_OPTIONS:MLIRC} LIB_DEPENDS+= lirc_client.2:${PORTSDIR}/comms/lirc CONFIGURE_ARGS+=--enable-lirc .else CONFIGURE_ARGS+=--disable-lirc .endif post-patch: @${REINPLACE_CMD} -e \ '/CFLAGS/s|-I/usr/local/include|| ; \ /CFLAGS/s|-L/usr/local/lib|| ; \ /CPPFLAGS/s|-I/usr/local/include|| ; \ s|XINE_LIST=.*|XINE_LIST=|' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ 's|@MAKE_PNG_TRUE@|#|' ${WRKSRC}/pixmaps/Makefile.in .include diff --git a/net-p2p/vuze/Makefile b/net-p2p/vuze/Makefile index 442fa3e0ec60..6af8b9ffcb1a 100644 --- a/net-p2p/vuze/Makefile +++ b/net-p2p/vuze/Makefile @@ -1,112 +1,113 @@ # New ports collection makefile for: Azureus # Date created: October 6, 2004 # Whom: Jeremy Faulkner # # $FreeBSD$ # PORTNAME= vuze PORTVERSION= 4.7.0.2 +PORTREVISION= 1 CATEGORIES= net-p2p java # Moved to x-obsolete, could do with an update MASTER_SITES= SF/azureus/vuze/Vuze_${PORTVERSION:S/.//g} DISTNAME= Vuze_${PORTVERSION:S/.//g}_source MAINTAINER= ports@FreeBSD.org COMMENT= A BitTorrent client written in Java BUILD_DEPENDS= ${JAVALIBDIR}/log4j.jar:${PORTSDIR}/devel/log4j \ ${JAVALIBDIR}/commons-cli.jar:${PORTSDIR}/java/jakarta-commons-cli \ ${JAVALIBDIR}/junit.jar:${PORTSDIR}/java/junit USE_JAVA= yes JAVA_VERSION= 1.5+ JAVA_OS= native USE_ANT= yes USE_ZIP= yes #USE_DOS2UNIX= \ #org/gudy/azureus2/platform/macosx/access/jnilib/OSXAccess.java \ #org/gudy/azureus2/platform/unix/ScriptBeforeStartup.java \ #org/gudy/azureus2/platform/PlatformManagerFactory.java \ #org/gudy/azureus2/ui/swt/test/PrintTransferTypes.java \ #org/gudy/azureus2/ui/swt/views/table/impl/TableViewSWTImpl.java \ #com/aelitis/azureus/core/networkmanager/impl/TransportHelperFilterStream.java \ #com/aelitis/azureus/core/networkmanager/impl/TransportHelperFilterTransparent.java -USE_GECKO= libxul +USE_GECKO= libxul19 NO_WRKSUBDIR= yes JARFILE= ${PORTNAME}.jar OPTIONS= SWTDEVEL "Use SWT Development port" on # build classpath from BUILD_DEPENDS MAKE_ENV= LANG=C CLASSPATH_JARS= ${BUILD_DEPENDS:C/:.+$//:M*.jar} PLIST_FILES= %%JAVAJARDIR%%/${JARFILE} \ bin/${PORTNAME} \ share/icons/hicolor/16x16/apps/${PORTNAME}.png \ share/icons/hicolor/32x32/apps/${PORTNAME}.png \ share/icons/hicolor/64x64/apps/${PORTNAME}.png SUB_FILES= ${PORTNAME} SUB_LIST= LIBDIR="${LOCALBASE}/lib" JARFILE="${JARFILE}" \ SWTJAR="${JAVALIBDIR}/${SWT}.jar" JAVA="${LOCALBASE}/bin/java" \ - GECKO="${GECKO}" + GECKO="${GECKO:S/19//}" DESKTOP_ENTRIES= "Vuze" \ "A full feature BitTorrent client" \ "${PORTNAME}.png" \ "${PORTNAME}" \ "Application;Network;P2P;" \ true INSTALLS_ICONS= yes .include .if defined(WITH_SWTDEVEL) SWT= swt-devel BUILD_DEPENDS+= ${JAVALIBDIR}/swt-devel.jar:${PORTSDIR}/x11-toolkits/swt-devel RUN_DEPENDS+= ${JAVALIBDIR}/swt-devel.jar:${PORTSDIR}/x11-toolkits/swt-devel .else SWT= swt BUILD_DEPENDS+= ${JAVALIBDIR}/swt.jar:${PORTSDIR}/x11-toolkits/swt RUN_DEPENDS+= ${JAVALIBDIR}/swt.jar:${PORTSDIR}/x11-toolkits/swt .endif CLASSPATH=. .for jar in ${CLASSPATH_JARS} CLASSPATH:=${CLASSPATH}:${jar} .endfor post-patch: ${RM} -rf ${WRKSRC}/org/eclipse @${SED} -E -e 's|%%CLASSPATH%%|${CLASSPATH}|' \ ${FILESDIR}/build.xml > ${WRKSRC}/build.xml # bash -> sh @${REINPLACE_CMD} -E -e 's|/bin/bash|${SH}|' \ ${WRKSRC}/com/aelitis/azureus/core/update/impl/AzureusRestarterImpl.java do-install: ${MKDIR} ${JAVAJARDIR} ${INSTALL_DATA} ${WRKSRC}/dist/lib/${JARFILE} ${JAVAJARDIR} ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} ${MKDIR} ${PREFIX}/share/icons/hicolor/16x16/apps ${INSTALL_DATA} ${WRKDIR}/org/gudy/azureus2/ui/icons/a16.png \ ${PREFIX}/share/icons/hicolor/16x16/apps/${PORTNAME}.png ${MKDIR} ${PREFIX}/share/icons/hicolor/32x32/apps ${INSTALL_DATA} ${WRKDIR}/org/gudy/azureus2/ui/icons/a32.png \ ${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png ${MKDIR} ${PREFIX}/share/icons/hicolor/64x64/apps ${INSTALL_DATA} ${WRKDIR}/org/gudy/azureus2/ui/icons/a64.png \ ${PREFIX}/share/icons/hicolor/64x64/apps/${PORTNAME}.png post-install: @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} .include diff --git a/net/libproxy-mozjs/Makefile b/net/libproxy-mozjs/Makefile index 8a212934fea6..c45127bc7551 100644 --- a/net/libproxy-mozjs/Makefile +++ b/net/libproxy-mozjs/Makefile @@ -1,28 +1,28 @@ # New ports collection makefile for: libproxy-mozjs # Date created: 26 February 2009 # Whom: Joe Marcus Clarke # # $FreeBSD$ # $MCom: ports/net/libproxy-mozjs/Makefile,v 1.5 2011/01/12 13:10:53 kwm Exp $ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net www PKGNAMESUFFIX= -mozjs MAINTAINER= gnome@FreeBSD.org COMMENT= Mozilla JavaScript plug-in for libproxy LIB_DEPENDS= proxy.1:${PORTSDIR}/net/libproxy MASTERDIR= ${.CURDIR}/../libproxy DESCR= ${.CURDIR}/pkg-descr PLIST= ${.CURDIR}/pkg-plist -USE_GECKO= libxul +USE_GECKO= libxul19 LIBPROXY_SLAVE= mozjs do-install: ${INSTALL_LIB} ${WRKSRC}/libproxy/pacrunner_mozjs.so \ ${PREFIX}/lib/libproxy/${PORTVERSION}/modules/ .include "${MASTERDIR}/Makefile" diff --git a/science/gchemutils/Makefile b/science/gchemutils/Makefile index 28dc9abc4c1c..387a86ee703c 100644 --- a/science/gchemutils/Makefile +++ b/science/gchemutils/Makefile @@ -1,76 +1,76 @@ # New ports collection makefile for: gchemutils # Date created: Mar 18, 2003 # Whom: Pav Lucistnik # # $FreeBSD$ # PORTNAME= gchemutils PORTVERSION= 0.12.10 PORTREVISION= 1 CATEGORIES= science MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME}/0.12 DISTNAME= gnome-chemistry-utils-${PORTVERSION} MAINTAINER= kwm@FreeBSD.org COMMENT= C++ classes and Gtk2 widgets related to chemistry LIB_DEPENDS= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext \ openbabel.3:${PORTSDIR}/science/openbabel \ goffice-0.8.8:${PORTSDIR}/devel/goffice BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/bodr.pc:${PORTSDIR}/science/bodr \ ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:${PORTSDIR}/science/chemical-mime-data RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/bodr.pc:${PORTSDIR}/science/bodr \ ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:${PORTSDIR}/science/chemical-mime-data PORTSCOUT= limitw:1,even USE_BZIP2= yes USE_XORG= x11 USE_GNOME= gnomehack intlhack gnomedocutils gtk20 libgsf USE_GMAKE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS= --with-omf-dir=${PREFIX}/share/omf INSTALLS_ICONS= yes INSTALLS_OMF= yes GCONF_SCHEMAS= gcrystal.schemas gchempaint.schemas gchempaint-arrows.schemas \ gchemutils.schemas GLIB_SCHEMAS= org.gnome.gchemutils.crystal.gschema.xml \ org.gnome.gchemutils.gschema.xml \ org.gnome.gchemutils.paint.gschema.xml \ org.gnome.gchemutils.paint.plugins.arrows.gschema.xml MAN1= gchem3d.1 gchemcalc.1 gchempaint.1 gchemtable.1 gcrystal.1 \ gspectrum.1 PLIST_SUB= VER=0.12 GOFFICE=0.8.17 GNUMERIC_VER=1.10.17 OPTIONS_DEFINE= XUL XUL_DESC= Build browser plugin (requires Xulrunner) .include .if ${PORT_OPTIONS:MXUL} -USE_GECKO= libxul +USE_GECKO= libxul19 CONFIGURE_ARGS+=--enable-mozilla-plugin PLIST_SUB+= XUL="" .else CONFIGURE_ARGS+=--disable-mozilla-plugin PLIST_SUB+= XUL="@comment " .endif .if exists(${LOCALBASE}/bin/gnumeric) RUN_DEPENDS+= gnumeric:${PORTSDIR}/math/gnumeric PLIST_SUB+= GNUMERIC="" .else PLIST_SUB+= GNUMERIC="@comment " .endif post-patch: @${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/libs/gcp/Makefile.in .include diff --git a/security/seahorse-plugins/Makefile b/security/seahorse-plugins/Makefile index 21a97e3cf16a..fd7c9b7df078 100644 --- a/security/seahorse-plugins/Makefile +++ b/security/seahorse-plugins/Makefile @@ -1,101 +1,101 @@ # New ports collection makefile for: seahorse-plugins # Date created: 06 August 2008 # Whom: Dave McKay # # $FreeBSD$ # $MCom: ports/security/seahorse-plugins/Makefile,v 1.28 2011/07/03 11:57:45 kwm Exp $ # PORTNAME= seahorse-plugins PORTVERSION= 2.30.1 PORTREVISION= 7 CATEGORIES= security gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= Plug-ins for the Seahorse key and password management application LIB_DEPENDS= cryptui.0:${PORTSDIR}/security/seahorse \ gcrypt.18:${PORTSDIR}/security/libgcrypt USE_BZIP2= yes USE_GETTEXT= yes USE_GMAKE= yes -#USE_GECKO= libxul +#USE_GECKO= libxul19 USE_GNOME= gnomehack intlhack gnomeprefix gconf2 gnomedocutils GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALLS_OMF= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib OPTIONS= NAUTILUS "Enable the Nautilus component" on \ GEDIT "Enable GEdit plug-in support" on \ APPLET "Enable clipboard encryption applet" on \ NOTIFY "Enable libnotify support" on #EPIPHANY "Enable Epiphany plug-in support" on GCONF_SCHEMAS= seahorse-plugins.schemas MAN1= seahorse-agent.1 seahorse-tool.1 .include #.if ${GECKO}=="libxul" #CONFIGURE_ARGS+=--with-gecko=libxul-unstable #.else -#CONFIGURE_ARGS+=--with-gecko=${GECKO} +#CONFIGURE_ARGS+=--with-gecko=${GECKO:S/19//} #.endif .if !defined(WITHOUT_GEDIT) BUILD_DEPENDS+= gedit:${PORTSDIR}/editors/gedit RUN_DEPENDS+= gedit:${PORTSDIR}/editors/gedit PLIST_SUB+= GEDIT="" GCONF_SCHEMAS+= seahorse-gedit.schemas .else PLIST_SUB+= GEDIT="@comment " CONFIGURE_ARGS+=--disable-gedit .endif .if !defined(WITHOUT_NAUTILUS) USE_GNOME+= nautilus2 PLIST_SUB+= NAUTILUS="" .else PLIST_SUB+= NAUTILUS="@comment " CONFIGURE_ARGS+=--disable-nautilus .endif #.if !defined(WITHOUT_EPIPHANY) #BUILD_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany #RUN_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany #PLIST_SUB+= EPIPHANY="" EPHY_VERSION="2.26" #.else CONFIGURE_ARGS+=--disable-epiphany PLIST_SUB+= EPHY="@comment " #.endif .if !defined(WITHOUT_APPLET) USE_GNOME+= gnomepanel PLIST_SUB+= APPLET="" .else CONFIGURE_ARGS+=--disable-applet PLIST_SUB+= APPLET="@comment " .endif .if !defined(WITHOUT_NOTIFY) LIB_DEPENDS+= notify.4:${PORTSDIR}/devel/libnotify .else CONFIGURE_ARGS+=--disable-libnotify .endif post-patch: @${REINPLACE_CMD} -e 's|" == "|" = "|g' \ -e 's|epiphany-2.24|epiphany-2.26|g' \ -e 's|2.24|2.26|g' \ ${WRKSRC}/configure post-install: @-update-desktop-database @-update-mime-database ${PREFIX}/share/mime .include diff --git a/www/Makefile b/www/Makefile index c3f61227c7f4..9fd7b2f76daa 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,2147 +1,2148 @@ # $FreeBSD$ # COMMENT = Ports related to the World Wide Web SUBDIR += MT SUBDIR += R-cran-Rpad SUBDIR += R-cran-scrapeR SUBDIR += WebMagick SUBDIR += abyssws SUBDIR += ach SUBDIR += admuser SUBDIR += adzap SUBDIR += amphetadesk SUBDIR += analog SUBDIR += anyremote2html SUBDIR += anyterm SUBDIR += aolserver SUBDIR += aolserver-xotcl SUBDIR += apache-forrest SUBDIR += apache-mode.el SUBDIR += apache22 SUBDIR += apache22-event-mpm SUBDIR += apache22-itk-mpm SUBDIR += apache22-peruser-mpm SUBDIR += apache22-worker-mpm SUBDIR += apercu SUBDIR += aria SUBDIR += aria2 SUBDIR += aria2fe SUBDIR += arora SUBDIR += asp2php SUBDIR += asql SUBDIR += asterisk-stat SUBDIR += aswedit SUBDIR += aswiki SUBDIR += atutor SUBDIR += august SUBDIR += autoindex SUBDIR += autoindex2 SUBDIR += awffull SUBDIR += aws SUBDIR += awstats SUBDIR += axis SUBDIR += axis2 SUBDIR += b2evolution SUBDIR += bacula-web SUBDIR += bannerfilter SUBDIR += bblog SUBDIR += bigbluebutton SUBDIR += bins SUBDIR += bk2site SUBDIR += bkmrkconv SUBDIR += blogsum SUBDIR += bluefish SUBDIR += bluefish-devel SUBDIR += boa SUBDIR += bookmarkbridge SUBDIR += bozohttpd SUBDIR += bugmenot-firefox SUBDIR += c-icap SUBDIR += c-icap-modules SUBDIR += cacheboy15-devel SUBDIR += cacheboy16 SUBDIR += cadaver SUBDIR += cakephp11 SUBDIR += cakephp12 SUBDIR += cakephp13 SUBDIR += cakephp21 SUBDIR += cakephp22 SUBDIR += calamaris SUBDIR += cas SUBDIR += castget SUBDIR += caudium14 SUBDIR += cblog SUBDIR += cgi-lib SUBDIR += cgi-lib.pl SUBDIR += cgic SUBDIR += cgicc SUBDIR += cgichk SUBDIR += cgihtml SUBDIR += cgiparse SUBDIR += cgiwrap SUBDIR += checkbot SUBDIR += chems SUBDIR += cherokee SUBDIR += chimera SUBDIR += choqok SUBDIR += chpasswd SUBDIR += chromium SUBDIR += chtml SUBDIR += ckeditor SUBDIR += cl-lml SUBDIR += cl-lml-clisp SUBDIR += cl-lml-sbcl SUBDIR += claroline SUBDIR += clearsilver SUBDIR += clearsilver-python SUBDIR += clickheat SUBDIR += closure-compiler SUBDIR += closure-linter SUBDIR += cmsmadesimple SUBDIR += cntlm SUBDIR += cocoon SUBDIR += codeigniter SUBDIR += codeigniter17 SUBDIR += comclear SUBDIR += coppermine SUBDIR += cplanet SUBDIR += crawl SUBDIR += crp SUBDIR += css-mode.el SUBDIR += cssed SUBDIR += csstidy SUBDIR += ctemplate SUBDIR += cutycapt SUBDIR += dalbum SUBDIR += dansguardian SUBDIR += dansguardian-devel SUBDIR += davical SUBDIR += decss SUBDIR += demoroniser SUBDIR += dfileserver SUBDIR += dhttpd SUBDIR += diamanda SUBDIR += dillo SUBDIR += dillo-i18n SUBDIR += dillo2 SUBDIR += docebo SUBDIR += dojo SUBDIR += dojo-shrinksafe SUBDIR += dokeos SUBDIR += dokuwiki SUBDIR += dotclear SUBDIR += dotproject SUBDIR += dpsearch SUBDIR += drood SUBDIR += drraw SUBDIR += drupal6 SUBDIR += drupal6-advanced_help SUBDIR += drupal6-cck SUBDIR += drupal6-chaos SUBDIR += drupal6-ckeditor SUBDIR += drupal6-content_access SUBDIR += drupal6-geshifilter SUBDIR += drupal6-google_analytics SUBDIR += drupal6-image SUBDIR += drupal6-imce SUBDIR += drupal6-menu_block SUBDIR += drupal6-mimedetect SUBDIR += drupal6-nice_menus SUBDIR += drupal6-nodewords SUBDIR += drupal6-page_title SUBDIR += drupal6-panels SUBDIR += drupal6-path_redirect SUBDIR += drupal6-pathauto SUBDIR += drupal6-print SUBDIR += drupal6-seo_checklist SUBDIR += drupal6-services SUBDIR += drupal6-tagadelic SUBDIR += drupal6-token SUBDIR += drupal6-views SUBDIR += drupal6-webform SUBDIR += drupal6-wysiwyg SUBDIR += drupal6-zeropoint SUBDIR += drupal7 SUBDIR += drupal7-jailadmin SUBDIR += drupal7-vulnscan SUBDIR += drupal7-wysiwyg SUBDIR += drush SUBDIR += dtse SUBDIR += dummyflash SUBDIR += dwoo SUBDIR += e107 SUBDIR += eaccelerator SUBDIR += efront SUBDIR += eldav.el SUBDIR += elgg SUBDIR += elinks SUBDIR += elog SUBDIR += emacs-w3m SUBDIR += emacs-w3m-emacs21 SUBDIR += emacs-w3m-emacs22 SUBDIR += emacs-w3m-xemacs21-mule SUBDIR += encode-explorer SUBDIR += entrans SUBDIR += ephemera SUBDIR += epiphany SUBDIR += epiphany-extensions SUBDIR += erwn SUBDIR += eventum SUBDIR += evolution-webcal SUBDIR += extjs SUBDIR += extsm SUBDIR += eyeos SUBDIR += eyeos-themes SUBDIR += fancybox SUBDIR += fcgi SUBDIR += fcgiwrap SUBDIR += feedjack SUBDIR += feedonfeeds SUBDIR += ffproxy SUBDIR += fhttpd SUBDIR += firefox SUBDIR += firefox-esr SUBDIR += firefox-esr-i18n SUBDIR += firefox-i18n SUBDIR += firefox-remote SUBDIR += flat-frog SUBDIR += flickcurl SUBDIR += flood SUBDIR += flot SUBDIR += fluxbb SUBDIR += fluxcms SUBDIR += fnord SUBDIR += formication SUBDIR += foswiki SUBDIR += foswiki-ModPerlEngineContrib SUBDIR += fpc-fastcgi SUBDIR += fpc-httpd22 SUBDIR += free-sa SUBDIR += free-sa-devel SUBDIR += freeway SUBDIR += fswiki SUBDIR += ftasv SUBDIR += fusionpbx SUBDIR += g-cows SUBDIR += g-gcl SUBDIR += gaeo SUBDIR += gaeutilities SUBDIR += gallery SUBDIR += gallery2 SUBDIR += gallery3 SUBDIR += gatling SUBDIR += gecko-mediaplayer SUBDIR += gecko-sharp20 SUBDIR += geeklog SUBDIR += geneweb SUBDIR += geolizer SUBDIR += geronimo SUBDIR += get_flash_videos SUBDIR += getleft SUBDIR += gist SUBDIR += glpi SUBDIR += gnome-user-share SUBDIR += gnome-web-photo SUBDIR += gnustep-ticker SUBDIR += google-appengine SUBDIR += google-sitemapgen SUBDIR += googlebook_dl SUBDIR += goose SUBDIR += grails SUBDIR += gregarius SUBDIR += groupoffice SUBDIR += grr SUBDIR += gstreamer-plugins-neon SUBDIR += gtkhtml3 SUBDIR += guile-www SUBDIR += gurlchecker SUBDIR += habari SUBDIR += harvest SUBDIR += hastymail SUBDIR += hastymail2 SUBDIR += hastymail2-devel SUBDIR += havp SUBDIR += helixplugin SUBDIR += helma SUBDIR += hiawatha SUBDIR += hinventory-client SUBDIR += horde-ansel SUBDIR += horde-base SUBDIR += horde-meta SUBDIR += horde-passwd SUBDIR += horde-trean SUBDIR += horde-wicked SUBDIR += horde4-ansel SUBDIR += horde4-base SUBDIR += horde4-passwd SUBDIR += horde4-wicked SUBDIR += hotcrp SUBDIR += hs-HTTP SUBDIR += hs-authenticate SUBDIR += hs-cgi SUBDIR += hs-cookie SUBDIR += hs-css-text SUBDIR += hs-fastcgi SUBDIR += hs-gitit SUBDIR += hs-hS3 SUBDIR += hs-hamlet SUBDIR += hs-happstack SUBDIR += hs-happstack-server SUBDIR += hs-heist SUBDIR += hs-hjsmin SUBDIR += hs-http-conduit SUBDIR += hs-http-date SUBDIR += hs-http-server SUBDIR += hs-http-types SUBDIR += hs-oeis SUBDIR += hs-path-pieces SUBDIR += hs-recaptcha SUBDIR += hs-scgi SUBDIR += hs-shakespeare SUBDIR += hs-shakespeare-css SUBDIR += hs-shakespeare-i18n SUBDIR += hs-shakespeare-js SUBDIR += hs-shakespeare-text SUBDIR += hs-snap SUBDIR += hs-snap-core SUBDIR += hs-snap-server SUBDIR += hs-url SUBDIR += hs-wai SUBDIR += hs-wai-app-static SUBDIR += hs-wai-extra SUBDIR += hs-wai-logger SUBDIR += hs-wai-test SUBDIR += hs-warp SUBDIR += hs-webkit SUBDIR += hs-xss-sanitize SUBDIR += hs-yesod SUBDIR += hs-yesod-auth SUBDIR += hs-yesod-core SUBDIR += hs-yesod-default SUBDIR += hs-yesod-form SUBDIR += hs-yesod-json SUBDIR += hs-yesod-persistent SUBDIR += hs-yesod-platform SUBDIR += hs-yesod-routes SUBDIR += hs-yesod-static SUBDIR += hs-yesod-test SUBDIR += htdump SUBDIR += html2hdml SUBDIR += html2wml SUBDIR += htmlcompressor SUBDIR += htmlobject SUBDIR += htmlpp SUBDIR += httest SUBDIR += http-analyze SUBDIR += http_get SUBDIR += http_load SUBDIR += http_post SUBDIR += httpclient SUBDIR += httpcore SUBDIR += httpgrabber SUBDIR += httpsqs SUBDIR += httptunnel SUBDIR += httrack SUBDIR += hudson SUBDIR += hydra SUBDIR += hypermail SUBDIR += igal SUBDIR += igal2 SUBDIR += ikiwiki SUBDIR += ilias SUBDIR += ilias3 SUBDIR += imgsizer SUBDIR += impresscms SUBDIR += interchange SUBDIR += ismail SUBDIR += iwebcal SUBDIR += jakarta-jmeter SUBDIR += jawstats SUBDIR += jdresolve SUBDIR += jericho-html SUBDIR += jesred SUBDIR += jetspeed SUBDIR += jetty SUBDIR += jinzora SUBDIR += joomla15 SUBDIR += joomla25 SUBDIR += jspacker SUBDIR += jspwiki SUBDIR += jtoolkit SUBDIR += junkbuster SUBDIR += kannel SUBDIR += kdewebdev SUBDIR += kdewebdev4 SUBDIR += khtml2png SUBDIR += kompozer SUBDIR += kpartsplugin SUBDIR += kplaylist SUBDIR += kwebkitpart SUBDIR += larbin SUBDIR += libapreq2 SUBDIR += libecap SUBDIR += libepc SUBDIR += libghttp SUBDIR += libgtkhtml SUBDIR += libmicrohttpd SUBDIR += libwww SUBDIR += libxul + SUBDIR += libxul19 SUBDIR += lifetype SUBDIR += lightsquid SUBDIR += lighttpd SUBDIR += lighttpd-mod_geoip SUBDIR += lighttpd-mod_h264_streaming SUBDIR += lilurl SUBDIR += limesurvey SUBDIR += linkcheck SUBDIR += linkchecker SUBDIR += linklint SUBDIR += links SUBDIR += links-hacked SUBDIR += links1 SUBDIR += linux-f10-flashplugin11 SUBDIR += linux-firefox SUBDIR += linux-flashplugin9 SUBDIR += linux-libgtkembedmoz SUBDIR += linux-mplayer-plugin SUBDIR += linux-opera SUBDIR += linux-opera-devel SUBDIR += linux-seamonkey SUBDIR += linuxpluginwrapper SUBDIR += lionwiki SUBDIR += ljdeps SUBDIR += ljdump SUBDIR += llgal SUBDIR += logtools SUBDIR += luakit SUBDIR += lusca-head SUBDIR += lynx SUBDIR += lynx-current SUBDIR += magento SUBDIR += mahara SUBDIR += mambo SUBDIR += man2web SUBDIR += mathjax SUBDIR += mathopd SUBDIR += mawstats SUBDIR += mediawiki SUBDIR += mediawiki118 SUBDIR += mergelog SUBDIR += metacafe_dl SUBDIR += mgstat SUBDIR += mhonarc SUBDIR += micro_httpd SUBDIR += middleman SUBDIR += midori SUBDIR += mimetex SUBDIR += mini_httpd SUBDIR += mkapachepw SUBDIR += mknmz-wwwoffle SUBDIR += mnogosearch SUBDIR += mod_amazon_proxy SUBDIR += mod_antiloris SUBDIR += mod_asn SUBDIR += mod_auth_cas SUBDIR += mod_auth_cookie_mysql2 SUBDIR += mod_auth_external2 SUBDIR += mod_auth_form SUBDIR += mod_auth_imap2 SUBDIR += mod_auth_kerb2 SUBDIR += mod_auth_mellon SUBDIR += mod_auth_mysql2 SUBDIR += mod_auth_mysql_another SUBDIR += mod_auth_openid SUBDIR += mod_auth_pam2 SUBDIR += mod_auth_pgsql2 SUBDIR += mod_auth_pubtkt SUBDIR += mod_auth_tkt SUBDIR += mod_auth_xradius SUBDIR += mod_authn_otp SUBDIR += mod_authn_sasl SUBDIR += mod_authnz_external SUBDIR += mod_authz_unixgroup SUBDIR += mod_backtrace SUBDIR += mod_bw SUBDIR += mod_cband SUBDIR += mod_cfg_ldap SUBDIR += mod_chroot SUBDIR += mod_clamav SUBDIR += mod_cplusplus SUBDIR += mod_cvs2 SUBDIR += mod_dnssd SUBDIR += mod_domaintree SUBDIR += mod_encoding SUBDIR += mod_evasive SUBDIR += mod_extract_forwarded SUBDIR += mod_fastcgi SUBDIR += mod_fcgid SUBDIR += mod_fileiri SUBDIR += mod_flickr SUBDIR += mod_ftp SUBDIR += mod_geoip2 SUBDIR += mod_gnutls SUBDIR += mod_gzip2 SUBDIR += mod_h264_streaming SUBDIR += mod_hosts_access SUBDIR += mod_jail SUBDIR += mod_jk SUBDIR += mod_jk-apache2 SUBDIR += mod_layout22 SUBDIR += mod_limitipconn2 SUBDIR += mod_line_edit SUBDIR += mod_lisp2 SUBDIR += mod_log_config-st SUBDIR += mod_log_dbd SUBDIR += mod_log_firstbyte SUBDIR += mod_log_mysql SUBDIR += mod_log_sql2 SUBDIR += mod_log_sql2-dtc SUBDIR += mod_macro22 SUBDIR += mod_memcache SUBDIR += mod_memcache_block SUBDIR += mod_mono SUBDIR += mod_musicindex SUBDIR += mod_myvhost SUBDIR += mod_ntlm2 SUBDIR += mod_pagespeed SUBDIR += mod_perl2 SUBDIR += mod_proctitle SUBDIR += mod_proxy_html SUBDIR += mod_proxy_xml SUBDIR += mod_python3 SUBDIR += mod_remoteip SUBDIR += mod_reproxy SUBDIR += mod_rivet SUBDIR += mod_rpaf2 SUBDIR += mod_ruby SUBDIR += mod_scgi SUBDIR += mod_security SUBDIR += mod_security21 SUBDIR += mod_setenvifplus SUBDIR += mod_smooth_streaming SUBDIR += mod_spdy SUBDIR += mod_tidy SUBDIR += mod_tsa SUBDIR += mod_umask SUBDIR += mod_uid SUBDIR += mod_vhost_ldap SUBDIR += mod_vhs SUBDIR += mod_webkit SUBDIR += mod_whatkilledus SUBDIR += mod_wsgi SUBDIR += mod_wsgi3 SUBDIR += mod_xml2enc SUBDIR += mod_xmlns SUBDIR += mod_xsendfile SUBDIR += mohawk SUBDIR += moinmoin SUBDIR += momspider SUBDIR += monast SUBDIR += mongrel2 SUBDIR += moodle SUBDIR += moodle2 SUBDIR += moodle22 SUBDIR += moonshine SUBDIR += mozplugger SUBDIR += multisort SUBDIR += mybb SUBDIR += myfaces SUBDIR += mysar SUBDIR += mysqlphp2postgres SUBDIR += mythplugin-mythweb SUBDIR += nanoblogger SUBDIR += nanoblogger-extra SUBDIR += nd SUBDIR += neon29 SUBDIR += netoffice SUBDIR += netrik SUBDIR += netstiff SUBDIR += netsurf SUBDIR += newsbeuter SUBDIR += nginx SUBDIR += nginx-devel SUBDIR += nibbleblog SUBDIR += node SUBDIR += node-devel SUBDIR += node04 SUBDIR += node06 SUBDIR += nostromo SUBDIR += notftp SUBDIR += npapi-xine SUBDIR += npc SUBDIR += npm SUBDIR += nscache SUBDIR += nspluginwrapper SUBDIR += nspluginwrapper-devel SUBDIR += ocaml-net SUBDIR += ocsigen SUBDIR += ojs2 SUBDIR += ompload SUBDIR += oops SUBDIR += openacs SUBDIR += openacs-dotlrn SUBDIR += openbravoerp SUBDIR += opencart SUBDIR += openvrml SUBDIR += openx SUBDIR += openxmldir SUBDIR += opera SUBDIR += opera-devel SUBDIR += opera-linuxplugins SUBDIR += orangehrm SUBDIR += oscommerce SUBDIR += owncloud SUBDIR += p5-AMF-Perl SUBDIR += p5-Acme-Monta SUBDIR += p5-Any-Template SUBDIR += p5-AnyEvent-HTTP SUBDIR += p5-AnyEvent-HTTPD SUBDIR += p5-AnyEvent-Mojo SUBDIR += p5-AnyEvent-ReverseHTTP SUBDIR += p5-AnyEvent-SCGI SUBDIR += p5-Apache-ASP SUBDIR += p5-Apache-Admin-Config SUBDIR += p5-Apache-AuthCookie SUBDIR += p5-Apache-AuthTicket SUBDIR += p5-Apache-Clean2 SUBDIR += p5-Apache-ConfigFile SUBDIR += p5-Apache-ConfigParser SUBDIR += p5-Apache-DB SUBDIR += p5-Apache-DBI SUBDIR += p5-Apache-Gallery SUBDIR += p5-Apache-GopherHandler SUBDIR += p5-Apache-Htgroup SUBDIR += p5-Apache-MP3 SUBDIR += p5-Apache-ParseFormData SUBDIR += p5-Apache-Profiler SUBDIR += p5-Apache-Session SUBDIR += p5-Apache-Session-PHP SUBDIR += p5-Apache-Session-SQLite3 SUBDIR += p5-Apache-Session-SharedMem SUBDIR += p5-Apache-Session-Wrapper SUBDIR += p5-Apache-SessionX SUBDIR += p5-Apache-Singleton SUBDIR += p5-Apache2-Scoreboard SUBDIR += p5-Apache2-SiteControl SUBDIR += p5-ApacheBench SUBDIR += p5-App-Nopaste SUBDIR += p5-App-gist SUBDIR += p5-Ark SUBDIR += p5-Bigtop SUBDIR += p5-Blog-Spam SUBDIR += p5-Bundle-Sledge SUBDIR += p5-Business-PayPal SUBDIR += p5-CGI-Ajax SUBDIR += p5-CGI-Application SUBDIR += p5-CGI-Application-Dispatch SUBDIR += p5-CGI-Application-Dispatch-Server SUBDIR += p5-CGI-Application-PSGI SUBDIR += p5-CGI-Application-Plugin-AnyTemplate SUBDIR += p5-CGI-Application-Plugin-Apache SUBDIR += p5-CGI-Application-Plugin-Authentication SUBDIR += p5-CGI-Application-Plugin-Authorization SUBDIR += p5-CGI-Application-Plugin-AutoRunmode SUBDIR += p5-CGI-Application-Plugin-Config-YAML SUBDIR += p5-CGI-Application-Plugin-ConfigAuto SUBDIR += p5-CGI-Application-Plugin-DBH SUBDIR += p5-CGI-Application-Plugin-DebugScreen SUBDIR += p5-CGI-Application-Plugin-DevPopup SUBDIR += p5-CGI-Application-Plugin-Forward SUBDIR += p5-CGI-Application-Plugin-HTDot SUBDIR += p5-CGI-Application-Plugin-HTMLPrototype SUBDIR += p5-CGI-Application-Plugin-HtmlTidy SUBDIR += p5-CGI-Application-Plugin-JSON SUBDIR += p5-CGI-Application-Plugin-LinkIntegrity SUBDIR += p5-CGI-Application-Plugin-LogDispatch SUBDIR += p5-CGI-Application-Plugin-MessageStack SUBDIR += p5-CGI-Application-Plugin-Redirect SUBDIR += p5-CGI-Application-Plugin-Session SUBDIR += p5-CGI-Application-Plugin-Stream SUBDIR += p5-CGI-Application-Plugin-TT SUBDIR += p5-CGI-Application-Plugin-ValidateRM SUBDIR += p5-CGI-Application-Plugin-ViewCode SUBDIR += p5-CGI-Application-Server SUBDIR += p5-CGI-ArgChecker SUBDIR += p5-CGI-Builder SUBDIR += p5-CGI-Builder-TT2 SUBDIR += p5-CGI-Cache SUBDIR += p5-CGI-Compile SUBDIR += p5-CGI-Compress-Gzip SUBDIR += p5-CGI-Cookie-Splitter SUBDIR += p5-CGI-Cookie-XS SUBDIR += p5-CGI-Deurl-XS SUBDIR += p5-CGI-Emulate-PSGI SUBDIR += p5-CGI-EncryptForm SUBDIR += p5-CGI-Ex SUBDIR += p5-CGI-Expand SUBDIR += p5-CGI-FCKeditor SUBDIR += p5-CGI-FastTemplate SUBDIR += p5-CGI-FormBuilder SUBDIR += p5-CGI-Framework SUBDIR += p5-CGI-Kwiki SUBDIR += p5-CGI-Minimal SUBDIR += p5-CGI-PSGI SUBDIR += p5-CGI-Pager SUBDIR += p5-CGI-Prototype SUBDIR += p5-CGI-Response SUBDIR += p5-CGI-SSI SUBDIR += p5-CGI-Session SUBDIR += p5-CGI-Session-ExpireSessions SUBDIR += p5-CGI-Simple SUBDIR += p5-CGI-SpeedyCGI SUBDIR += p5-CGI-Thin SUBDIR += p5-CGI-Untaint SUBDIR += p5-CGI-Untaint-date SUBDIR += p5-CGI-Untaint-email SUBDIR += p5-CGI-Upload SUBDIR += p5-CGI-Utils SUBDIR += p5-CGI-XMLApplication SUBDIR += p5-CGI-modules SUBDIR += p5-CGI.pm SUBDIR += p5-CGI_Lite SUBDIR += p5-CIF-Client SUBDIR += p5-CSS-DOM SUBDIR += p5-CSS-Inliner SUBDIR += p5-Catalyst-Action-REST SUBDIR += p5-Catalyst-Action-RenderView SUBDIR += p5-Catalyst-ActionRole-ACL SUBDIR += p5-Catalyst-Authentication-Credential-HTTP SUBDIR += p5-Catalyst-Authentication-Credential-OpenID SUBDIR += p5-Catalyst-Authentication-Store-DBIx-Class SUBDIR += p5-Catalyst-Authentication-Store-LDAP SUBDIR += p5-Catalyst-Component-ACCEPT_CONTEXT SUBDIR += p5-Catalyst-Component-InstancePerContext SUBDIR += p5-Catalyst-Controller-ActionRole SUBDIR += p5-Catalyst-Controller-BindLex SUBDIR += p5-Catalyst-Controller-FormBuilder SUBDIR += p5-Catalyst-Controller-HTML-FormFu SUBDIR += p5-Catalyst-Controller-RateLimit SUBDIR += p5-Catalyst-Controller-RequestToken SUBDIR += p5-Catalyst-Devel SUBDIR += p5-Catalyst-Engine-Apache SUBDIR += p5-Catalyst-Engine-HTTP-Prefork SUBDIR += p5-Catalyst-Engine-PSGI SUBDIR += p5-Catalyst-Enzyme SUBDIR += p5-Catalyst-Helper-Controller-Scaffold SUBDIR += p5-Catalyst-Manual SUBDIR += p5-Catalyst-Model-Adaptor SUBDIR += p5-Catalyst-Model-CDBI SUBDIR += p5-Catalyst-Model-CDBI-Plain SUBDIR += p5-Catalyst-Model-CDBI-Sweet SUBDIR += p5-Catalyst-Model-DBIC-Plain SUBDIR += p5-Catalyst-Model-DBIC-Schema SUBDIR += p5-Catalyst-Model-DynamicAdaptor SUBDIR += p5-Catalyst-Model-LDAP SUBDIR += p5-Catalyst-Model-Memcached SUBDIR += p5-Catalyst-Model-Oryx SUBDIR += p5-Catalyst-Model-XML-Feed SUBDIR += p5-Catalyst-Model-Xapian SUBDIR += p5-Catalyst-Model-Xapian10 SUBDIR += p5-Catalyst-Plugin-AtomServer SUBDIR += p5-Catalyst-Plugin-Authentication SUBDIR += p5-Catalyst-Plugin-Authentication-CDBI SUBDIR += p5-Catalyst-Plugin-Authentication-OpenID SUBDIR += p5-Catalyst-Plugin-Authentication-Store-Htpasswd SUBDIR += p5-Catalyst-Plugin-Authorization-ACL SUBDIR += p5-Catalyst-Plugin-Authorization-Roles SUBDIR += p5-Catalyst-Plugin-AutoCRUD SUBDIR += p5-Catalyst-Plugin-Browser SUBDIR += p5-Catalyst-Plugin-C3 SUBDIR += p5-Catalyst-Plugin-Cache SUBDIR += p5-Catalyst-Plugin-Cache-FastMmap SUBDIR += p5-Catalyst-Plugin-Cache-Memcached SUBDIR += p5-Catalyst-Plugin-Cache-Memcached-Fast SUBDIR += p5-Catalyst-Plugin-Captcha SUBDIR += p5-Catalyst-Plugin-ConfigLoader SUBDIR += p5-Catalyst-Plugin-ConfigLoader-Environment SUBDIR += p5-Catalyst-Plugin-CookiedSession SUBDIR += p5-Catalyst-Plugin-DateTime SUBDIR += p5-Catalyst-Plugin-DefaultEnd SUBDIR += p5-Catalyst-Plugin-Email SUBDIR += p5-Catalyst-Plugin-ErrorCatcher SUBDIR += p5-Catalyst-Plugin-FillInForm SUBDIR += p5-Catalyst-Plugin-FormBuilder SUBDIR += p5-Catalyst-Plugin-FormValidator SUBDIR += p5-Catalyst-Plugin-I18N SUBDIR += p5-Catalyst-Plugin-Log-Dispatch SUBDIR += p5-Catalyst-Plugin-Log-Handler SUBDIR += p5-Catalyst-Plugin-LogWarnings SUBDIR += p5-Catalyst-Plugin-PageCache SUBDIR += p5-Catalyst-Plugin-Params-Nested SUBDIR += p5-Catalyst-Plugin-Pluggable SUBDIR += p5-Catalyst-Plugin-Prototype SUBDIR += p5-Catalyst-Plugin-RunAfterRequest SUBDIR += p5-Catalyst-Plugin-Scheduler SUBDIR += p5-Catalyst-Plugin-Server SUBDIR += p5-Catalyst-Plugin-Session SUBDIR += p5-Catalyst-Plugin-Session-FastMmap SUBDIR += p5-Catalyst-Plugin-Session-State-Cookie SUBDIR += p5-Catalyst-Plugin-Session-State-URI SUBDIR += p5-Catalyst-Plugin-Session-Store-Cache SUBDIR += p5-Catalyst-Plugin-Session-Store-DBI SUBDIR += p5-Catalyst-Plugin-Session-Store-DBIC SUBDIR += p5-Catalyst-Plugin-Session-Store-Delegate SUBDIR += p5-Catalyst-Plugin-Session-Store-FastMmap SUBDIR += p5-Catalyst-Plugin-Session-Store-File SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached-Fast SUBDIR += p5-Catalyst-Plugin-Setenv SUBDIR += p5-Catalyst-Plugin-Singleton SUBDIR += p5-Catalyst-Plugin-SmartURI SUBDIR += p5-Catalyst-Plugin-StackTrace SUBDIR += p5-Catalyst-Plugin-Static SUBDIR += p5-Catalyst-Plugin-Static-Simple SUBDIR += p5-Catalyst-Plugin-SubRequest SUBDIR += p5-Catalyst-Plugin-Textile SUBDIR += p5-Catalyst-Plugin-Unicode SUBDIR += p5-Catalyst-Plugin-Unicode-Encoding SUBDIR += p5-Catalyst-Plugin-XMLRPC SUBDIR += p5-Catalyst-Runtime SUBDIR += p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging SUBDIR += p5-Catalyst-TraitFor-Request-BrowserDetect SUBDIR += p5-Catalyst-View-ClearSilver SUBDIR += p5-Catalyst-View-Email SUBDIR += p5-Catalyst-View-GraphViz SUBDIR += p5-Catalyst-View-HTML-Template SUBDIR += p5-Catalyst-View-HTML-Template-Compiled SUBDIR += p5-Catalyst-View-JSON SUBDIR += p5-Catalyst-View-Jemplate SUBDIR += p5-Catalyst-View-Mason SUBDIR += p5-Catalyst-View-REST-XML SUBDIR += p5-Catalyst-View-RRDGraph SUBDIR += p5-Catalyst-View-TT SUBDIR += p5-Catalyst-View-TT-ControllerLocal SUBDIR += p5-Catalyst-View-Template-Declare SUBDIR += p5-Catalyst-View-Templated SUBDIR += p5-Catalyst-View-XML-Simple SUBDIR += p5-Catalyst-View-XSLT SUBDIR += p5-CatalystX-Component-Traits SUBDIR += p5-CatalystX-InjectComponent SUBDIR += p5-CatalystX-LeakChecker SUBDIR += p5-CatalystX-Profile SUBDIR += p5-CatalystX-REPL SUBDIR += p5-CatalystX-RoleApplicator SUBDIR += p5-CatalystX-SimpleLogin SUBDIR += p5-Class-DBI-FromForm SUBDIR += p5-ClearSilver SUBDIR += p5-Compress-LeadingBlankSpaces SUBDIR += p5-Continuity SUBDIR += p5-Corona SUBDIR += p5-Dancer SUBDIR += p5-Dancer-Plugin-DataFu SUBDIR += p5-Dancer-Plugin-Feed SUBDIR += p5-Dancer-Plugin-SiteMap SUBDIR += p5-Dancer-Plugin-ValidationClass SUBDIR += p5-Dancer-Session-Cookie SUBDIR += p5-Dancer-Template-Xslate SUBDIR += p5-Data-TreeDumper-Renderer-DHTML SUBDIR += p5-Data-Validate-URI SUBDIR += p5-Emplacken SUBDIR += p5-FAQ-OMatic SUBDIR += p5-FCGI SUBDIR += p5-FCGI-Async SUBDIR += p5-FCGI-Client SUBDIR += p5-FCGI-Engine SUBDIR += p5-FCGI-ProcManager SUBDIR += p5-FCGI-Spawn SUBDIR += p5-FEAR-API SUBDIR += p5-Facebook-Graph SUBDIR += p5-Feed-Find SUBDIR += p5-Feersum SUBDIR += p5-File-Mork SUBDIR += p5-Flea SUBDIR += p5-Flickr-API SUBDIR += p5-Flickr-Upload SUBDIR += p5-Fliggy SUBDIR += p5-Furl SUBDIR += p5-FurlX-Coro SUBDIR += p5-Gantry SUBDIR += p5-Geo-Caching SUBDIR += p5-Google-Code-Upload SUBDIR += p5-Google-Search SUBDIR += p5-Gtk2-WebKit SUBDIR += p5-Gungho SUBDIR += p5-GunghoX-FollowLinks SUBDIR += p5-HTML-Adsense SUBDIR += p5-HTML-Breadcrumbs SUBDIR += p5-HTML-CalendarMonthSimple SUBDIR += p5-HTML-Chunks SUBDIR += p5-HTML-Clean SUBDIR += p5-HTML-ContentExtractor SUBDIR += p5-HTML-DOM SUBDIR += p5-HTML-Declare SUBDIR += p5-HTML-Defaultify SUBDIR += p5-HTML-Diff SUBDIR += p5-HTML-Display SUBDIR += p5-HTML-Element-Extended SUBDIR += p5-HTML-Element-Library SUBDIR += p5-HTML-Element-Replacer SUBDIR += p5-HTML-Encoding SUBDIR += p5-HTML-ExtractContent SUBDIR += p5-HTML-ExtractMain SUBDIR += p5-HTML-Field SUBDIR += p5-HTML-FillInForm SUBDIR += p5-HTML-FillInForm-ForceUTF8 SUBDIR += p5-HTML-Form SUBDIR += p5-HTML-FormFu SUBDIR += p5-HTML-FormFu-Imager SUBDIR += p5-HTML-FormFu-Model-DBIC SUBDIR += p5-HTML-FormHandler SUBDIR += p5-HTML-FromANSI SUBDIR += p5-HTML-FromText SUBDIR += p5-HTML-GenToc SUBDIR += p5-HTML-GenerateUtil SUBDIR += p5-HTML-GoogleMaps SUBDIR += p5-HTML-Highlight SUBDIR += p5-HTML-LinkExtractor SUBDIR += p5-HTML-LinkList SUBDIR += p5-HTML-Lint SUBDIR += p5-HTML-Location SUBDIR += p5-HTML-Macro SUBDIR += p5-HTML-Mason SUBDIR += p5-HTML-Mason-PSGIHandler SUBDIR += p5-HTML-MobileConverter SUBDIR += p5-HTML-Pager SUBDIR += p5-HTML-Parser SUBDIR += p5-HTML-Parser-Simple SUBDIR += p5-HTML-Perlinfo SUBDIR += p5-HTML-PrettyPrinter SUBDIR += p5-HTML-Prototype SUBDIR += p5-HTML-Query SUBDIR += p5-HTML-QuickCheck SUBDIR += p5-HTML-RSSAutodiscovery SUBDIR += p5-HTML-ResolveLink SUBDIR += p5-HTML-RobotsMETA SUBDIR += p5-HTML-Scrubber SUBDIR += p5-HTML-Seamstress SUBDIR += p5-HTML-Selector-XPath SUBDIR += p5-HTML-Shakan SUBDIR += p5-HTML-SimpleLinkExtor SUBDIR += p5-HTML-SimpleParse SUBDIR += p5-HTML-StickyQuery SUBDIR += p5-HTML-StickyQuery-DoCoMoGUID SUBDIR += p5-HTML-Stream SUBDIR += p5-HTML-Strip SUBDIR += p5-HTML-StripScripts SUBDIR += p5-HTML-StripScripts-Parser SUBDIR += p5-HTML-Summary SUBDIR += p5-HTML-Table SUBDIR += p5-HTML-TableContentParser SUBDIR += p5-HTML-TableExtract SUBDIR += p5-HTML-TableLayout SUBDIR += p5-HTML-TableParser SUBDIR += p5-HTML-TableTiler SUBDIR += p5-HTML-TagCloud SUBDIR += p5-HTML-TagCloud-Extended SUBDIR += p5-HTML-TagParser SUBDIR += p5-HTML-Tagset SUBDIR += p5-HTML-Template SUBDIR += p5-HTML-Template-Associate SUBDIR += p5-HTML-Template-Compiled SUBDIR += p5-HTML-Template-Expr SUBDIR += p5-HTML-Template-HashWrapper SUBDIR += p5-HTML-Template-JIT SUBDIR += p5-HTML-Template-Pluggable SUBDIR += p5-HTML-Toc SUBDIR += p5-HTML-TokeParser-Simple SUBDIR += p5-HTML-Tree SUBDIR += p5-HTML-TreeBuilder-LibXML SUBDIR += p5-HTML-TreeBuilder-XPath SUBDIR += p5-HTML-Webmake SUBDIR += p5-HTML-Widgets-SelectLayers SUBDIR += p5-HTML-WikiConverter SUBDIR += p5-HTML-WikiConverter-DokuWiki SUBDIR += p5-HTML-WikiConverter-GoogleCode SUBDIR += p5-HTML-WikiConverter-Kwiki SUBDIR += p5-HTML-WikiConverter-Markdown SUBDIR += p5-HTML-WikiConverter-MediaWiki SUBDIR += p5-HTML-WikiConverter-MoinMoin SUBDIR += p5-HTML-WikiConverter-Oddmuse SUBDIR += p5-HTML-WikiConverter-PbWiki SUBDIR += p5-HTML-WikiConverter-PhpWiki SUBDIR += p5-HTML-WikiConverter-PmWiki SUBDIR += p5-HTML-WikiConverter-SnipSnap SUBDIR += p5-HTML-WikiConverter-Socialtext SUBDIR += p5-HTML-WikiConverter-TikiWiki SUBDIR += p5-HTML-WikiConverter-UseMod SUBDIR += p5-HTML-WikiConverter-WakkaWiki SUBDIR += p5-HTML-WikiConverter-WikkaWiki SUBDIR += p5-HTTP-Async SUBDIR += p5-HTTP-Body SUBDIR += p5-HTTP-BrowserDetect SUBDIR += p5-HTTP-Cache-Transparent SUBDIR += p5-HTTP-Cookies SUBDIR += p5-HTTP-Cookies-Mozilla SUBDIR += p5-HTTP-Cookies-iCab SUBDIR += p5-HTTP-Cookies-w3m SUBDIR += p5-HTTP-DAV SUBDIR += p5-HTTP-Daemon SUBDIR += p5-HTTP-Daemon-SSL SUBDIR += p5-HTTP-Date SUBDIR += p5-HTTP-Engine SUBDIR += p5-HTTP-Engine-Middleware SUBDIR += p5-HTTP-Exception SUBDIR += p5-HTTP-GHTTP SUBDIR += p5-HTTP-HeaderParser-XS SUBDIR += p5-HTTP-Headers-Fast SUBDIR += p5-HTTP-Lite SUBDIR += p5-HTTP-MHTTP SUBDIR += p5-HTTP-Message SUBDIR += p5-HTTP-MobileAgent SUBDIR += p5-HTTP-MobileAgent-Plugin-Charset SUBDIR += p5-HTTP-MobileAgent-Plugin-Locator SUBDIR += p5-HTTP-Negotiate SUBDIR += p5-HTTP-Parser SUBDIR += p5-HTTP-Parser-XS SUBDIR += p5-HTTP-Proxy SUBDIR += p5-HTTP-Recorder SUBDIR += p5-HTTP-Request-AsCGI SUBDIR += p5-HTTP-Request-Params SUBDIR += p5-HTTP-Response-Encoding SUBDIR += p5-HTTP-Router SUBDIR += p5-HTTP-Server-Simple SUBDIR += p5-HTTP-Server-Simple-Authen SUBDIR += p5-HTTP-Server-Simple-Mason SUBDIR += p5-HTTP-Server-Simple-PSGI SUBDIR += p5-HTTP-Server-Simple-Recorder SUBDIR += p5-HTTP-Server-Simple-Static SUBDIR += p5-HTTP-Session SUBDIR += p5-HTTP-Session-State-MobileAgentID SUBDIR += p5-HTTP-SimpleLinkChecker SUBDIR += p5-HTTP-Size SUBDIR += p5-HTTP-Tiny SUBDIR += p5-HTTP-WebTest SUBDIR += p5-HTTPD-Log-Filter SUBDIR += p5-HTTPD-User-Manage SUBDIR += p5-I18N-AcceptLanguage SUBDIR += p5-IMDB-Film SUBDIR += p5-Image-Delivery SUBDIR += p5-JE SUBDIR += p5-Jemplate SUBDIR += p5-Jifty SUBDIR += p5-Kwiki SUBDIR += p5-LWP-Authen-OAuth SUBDIR += p5-LWP-Authen-Wsse SUBDIR += p5-LWP-ConnCache-MaxKeepAliveRequests SUBDIR += p5-LWP-MediaTypes SUBDIR += p5-LWP-Online SUBDIR += p5-LWP-Protocol-http10 SUBDIR += p5-LWP-Protocol-https SUBDIR += p5-LWP-UserAgent-Determined SUBDIR += p5-LWP-UserAgent-POE SUBDIR += p5-LWP-UserAgent-WithCache SUBDIR += p5-LWPx-ParanoidAgent SUBDIR += p5-LWPx-TimedHTTP SUBDIR += p5-Markup-Perl SUBDIR += p5-Mason SUBDIR += p5-MasonX-Interp-WithCallbacks SUBDIR += p5-MasonX-Profiler SUBDIR += p5-MasonX-Request-WithApacheSession SUBDIR += p5-MasonX-WebApp SUBDIR += p5-Maypole SUBDIR += p5-Maypole-Authentication-UserSessionCookie SUBDIR += p5-Maypole-Component SUBDIR += p5-MediaWiki SUBDIR += p5-MediaWiki-API SUBDIR += p5-Mobile-UserAgent SUBDIR += p5-ModPerl-VersionUtil SUBDIR += p5-Mojo-Server-FastCGI SUBDIR += p5-MojoMojo SUBDIR += p5-Mojolicious SUBDIR += p5-Mojolicious-Plugin-Database SUBDIR += p5-Mojolicious-Plugin-Mongodb SUBDIR += p5-Mojolicious-Plugin-YamlConfig SUBDIR += p5-Mozilla-CA SUBDIR += p5-Net-Akismet SUBDIR += p5-Net-Amazon-AWIS SUBDIR += p5-Net-Async-FastCGI SUBDIR += p5-Net-FastCGI SUBDIR += p5-Net-FireEagle SUBDIR += p5-Net-Flickr-API SUBDIR += p5-Net-Flickr-Backup SUBDIR += p5-Net-Flickr-RDF SUBDIR += p5-Net-FreshBooks-API SUBDIR += p5-Net-GeoPlanet SUBDIR += p5-Net-Plurk SUBDIR += p5-Net-STF-Client SUBDIR += p5-Net-Trac SUBDIR += p5-Net-YAP SUBDIR += p5-Net-eBay SUBDIR += p5-Newsletter SUBDIR += p5-Nginx-ReadBody SUBDIR += p5-PHP-Session SUBDIR += p5-POE-Component-Client-HTTP SUBDIR += p5-POE-Component-Client-UserAgent SUBDIR += p5-POE-Component-Server-HTTP SUBDIR += p5-POE-Component-Server-HTTPServer SUBDIR += p5-POE-Component-Server-PSGI SUBDIR += p5-POE-Component-Server-SOAP SUBDIR += p5-POE-Component-Server-SimpleHTTP SUBDIR += p5-POE-Filter-HTTP-Parser SUBDIR += p5-POEx-Role-PSGIServer SUBDIR += p5-PSGI SUBDIR += p5-ParallelUA SUBDIR += p5-Parse-HTTP-UserAgent SUBDIR += p5-Path-Class-URI SUBDIR += p5-Perlanet SUBDIR += p5-Perlbal-Plugin-PSGI SUBDIR += p5-Plack SUBDIR += p5-Plack-App-Proxy SUBDIR += p5-Plack-Handler-AnyEvent-HTTPD SUBDIR += p5-Plack-Handler-AnyEvent-ReverseHTTP SUBDIR += p5-Plack-Handler-AnyEvent-SCGI SUBDIR += p5-Plack-Handler-CLI SUBDIR += p5-Plack-Handler-SCGI SUBDIR += p5-Plack-Middleware-AMF SUBDIR += p5-Plack-Middleware-AddDefaultCharset SUBDIR += p5-Plack-Middleware-Auth-Digest SUBDIR += p5-Plack-Middleware-AutoRefresh SUBDIR += p5-Plack-Middleware-ConsoleLogger SUBDIR += p5-Plack-Middleware-Debug SUBDIR += p5-Plack-Middleware-Deflater SUBDIR += p5-Plack-Middleware-Expires SUBDIR += p5-Plack-Middleware-File-Sass SUBDIR += p5-Plack-Middleware-ForceEnv SUBDIR += p5-Plack-Middleware-Header SUBDIR += p5-Plack-Middleware-IEnosniff SUBDIR += p5-Plack-Middleware-JSConcat SUBDIR += p5-Plack-Middleware-Precompressed SUBDIR += p5-Plack-Middleware-Reproxy SUBDIR += p5-Plack-Middleware-ReverseProxy SUBDIR += p5-Plack-Middleware-ServerStatus-Lite SUBDIR += p5-Plack-Middleware-Session SUBDIR += p5-Plack-Middleware-SocketIO SUBDIR += p5-Plack-Middleware-Status SUBDIR += p5-Plack-Middleware-Throttle SUBDIR += p5-Plack-Middleware-XForwardedFor SUBDIR += p5-Plack-Server-Coro SUBDIR += p5-Plack-Server-POE SUBDIR += p5-Plack-Server-ReverseHTTP SUBDIR += p5-Plack-Test-ExternalServer SUBDIR += p5-PocketIO SUBDIR += p5-Pod-Site SUBDIR += p5-PodToHTML SUBDIR += p5-Protocol-SocketIO SUBDIR += p5-Protocol-WebSocket SUBDIR += p5-Protocol-XMLRPC SUBDIR += p5-REST-Client SUBDIR += p5-REST-Google-Apps-Provisioning SUBDIR += p5-RT-Authen-ExternalAuth SUBDIR += p5-RT-Client-REST SUBDIR += p5-RT-Extension-LDAPImport SUBDIR += p5-RT-Extension-SLA SUBDIR += p5-RTx-Calendar SUBDIR += p5-Reaction SUBDIR += p5-Reddit SUBDIR += p5-Rose-HTML-Objects SUBDIR += p5-Router-Simple SUBDIR += p5-SCGI SUBDIR += p5-SRU SUBDIR += p5-STF-Dispatcher-PSGI SUBDIR += p5-SWF-Chart SUBDIR += p5-Scrappy SUBDIR += p5-Sledge SUBDIR += p5-Sledge-Plugin-CacheContent SUBDIR += p5-Sledge-Plugin-Download SUBDIR += p5-Sledge-Plugin-Dumper SUBDIR += p5-Sledge-Plugin-HTML2HDML SUBDIR += p5-Sledge-Plugin-Log SUBDIR += p5-Sledge-Plugin-NoCache SUBDIR += p5-Sledge-Plugin-SaveUpload SUBDIR += p5-Sledge-Plugin-ScratchPad SUBDIR += p5-Sledge-Plugin-SessionAutoCleanup SUBDIR += p5-Sledge-Plugin-XSLT SUBDIR += p5-Sledge-SessionManager-CookieStore SUBDIR += p5-Sledge-Template-Expr SUBDIR += p5-Squatting SUBDIR += p5-Squatting-On-PSGI SUBDIR += p5-Starlet SUBDIR += p5-Starman SUBDIR += p5-Syntax-Highlight-HTML SUBDIR += p5-Syntax-Highlight-Shell SUBDIR += p5-Task-Catalyst SUBDIR += p5-Task-Plack SUBDIR += p5-Tatsumaki SUBDIR += p5-Template-Alloy SUBDIR += p5-Template-GD SUBDIR += p5-Template-Iterator-AlzaboWrapperCursor SUBDIR += p5-Template-Multilingual SUBDIR += p5-Template-Mustache SUBDIR += p5-Template-Plugin-Class SUBDIR += p5-Template-Plugin-Clickable SUBDIR += p5-Template-Plugin-Clickable-Email SUBDIR += p5-Template-Plugin-Comma SUBDIR += p5-Template-Plugin-FillInForm SUBDIR += p5-Template-Plugin-JSON SUBDIR += p5-Template-Plugin-JavaScript SUBDIR += p5-Template-Plugin-MP3 SUBDIR += p5-Template-Plugin-Markdown SUBDIR += p5-Template-Plugin-Monta SUBDIR += p5-Template-Plugin-Number-Format SUBDIR += p5-Template-Plugin-Subst SUBDIR += p5-Template-Plugin-VMethods SUBDIR += p5-Template-Provider-Encoding SUBDIR += p5-Template-Provider-FromDATA SUBDIR += p5-Template-Simple SUBDIR += p5-Template-Stash-AutoEscape SUBDIR += p5-Template-Timer SUBDIR += p5-Template-Toolkit SUBDIR += p5-Template-Toolkit-Simple SUBDIR += p5-Tenjin SUBDIR += p5-Test-HTTP SUBDIR += p5-Test-HTTP-Server-Simple SUBDIR += p5-TestGen4Web-Runner SUBDIR += p5-Tie-TinyURL SUBDIR += p5-Twiggy SUBDIR += p5-Twiggy-TLS SUBDIR += p5-URI-Encode SUBDIR += p5-URI-Escape-JavaScript SUBDIR += p5-URI-Escape-XS SUBDIR += p5-URI-Fetch SUBDIR += p5-URI-ParseSearchString SUBDIR += p5-URI-Sequin SUBDIR += p5-URI-Title SUBDIR += p5-URI-ToDisk SUBDIR += p5-VUser-Google-ProvisioningAPI SUBDIR += p5-W3C-LinkChecker SUBDIR += p5-W3C-LogValidator SUBDIR += p5-WWW-AtMovies-TV SUBDIR += p5-WWW-Babelfish SUBDIR += p5-WWW-Baseball-NPB SUBDIR += p5-WWW-Comic SUBDIR += p5-WWW-Contact SUBDIR += p5-WWW-Curl SUBDIR += p5-WWW-DHL SUBDIR += p5-WWW-Dilbert SUBDIR += p5-WWW-Facebook-API SUBDIR += p5-WWW-FreeProxy SUBDIR += p5-WWW-GitHub-Gist SUBDIR += p5-WWW-Google-Calculator SUBDIR += p5-WWW-Google-News SUBDIR += p5-WWW-Google-News-TW SUBDIR += p5-WWW-Google-Notebook SUBDIR += p5-WWW-Google-PageRank SUBDIR += p5-WWW-Google-Video SUBDIR += p5-WWW-HatenaDiary SUBDIR += p5-WWW-HatenaLogin SUBDIR += p5-WWW-HatenaStar SUBDIR += p5-WWW-IMDb SUBDIR += p5-WWW-Instapaper-Client SUBDIR += p5-WWW-Link SUBDIR += p5-WWW-LongURL SUBDIR += p5-WWW-Mechanize SUBDIR += p5-WWW-Mechanize-CGI SUBDIR += p5-WWW-Mechanize-Cached SUBDIR += p5-WWW-Mechanize-DecodedContent SUBDIR += p5-WWW-Mechanize-FormFiller SUBDIR += p5-WWW-Mechanize-GZip SUBDIR += p5-WWW-Mechanize-Meta SUBDIR += p5-WWW-Mechanize-Pluggable SUBDIR += p5-WWW-Mechanize-Plugin-phpBB SUBDIR += p5-WWW-Mechanize-Shell SUBDIR += p5-WWW-Mechanize-SpamCop SUBDIR += p5-WWW-Mechanize-TreeBuilder SUBDIR += p5-WWW-Mediawiki-Client SUBDIR += p5-WWW-Mixi SUBDIR += p5-WWW-Mixi-Scraper SUBDIR += p5-WWW-Myspace SUBDIR += p5-WWW-NicoVideo-Download SUBDIR += p5-WWW-NioTV SUBDIR += p5-WWW-OpenSVN SUBDIR += p5-WWW-OpenSearch SUBDIR += p5-WWW-Pastebin-PastebinCom-Create SUBDIR += p5-WWW-Plurk SUBDIR += p5-WWW-Robot SUBDIR += p5-WWW-RobotRules SUBDIR += p5-WWW-RobotRules-Parser SUBDIR += p5-WWW-Scraper-ISBN SUBDIR += p5-WWW-Scraper-ISBN-Amazon_Driver SUBDIR += p5-WWW-Scraper-ISBN-Driver SUBDIR += p5-WWW-Scraper-ISBN-ORA_Driver SUBDIR += p5-WWW-Scraper-ISBN-Record SUBDIR += p5-WWW-Scripter SUBDIR += p5-WWW-Scripter-Plugin-Ajax SUBDIR += p5-WWW-Scripter-Plugin-JavaScript SUBDIR += p5-WWW-Search SUBDIR += p5-WWW-Search-AltaVista SUBDIR += p5-WWW-Search-Google SUBDIR += p5-WWW-Search-MSN SUBDIR += p5-WWW-Shorten SUBDIR += p5-WWW-Shorten-0rz SUBDIR += p5-WWW-Shorten-Bitly SUBDIR += p5-WWW-Shorten-Googl SUBDIR += p5-WWW-Shorten-KUSO SUBDIR += p5-WWW-Shorten-NotLong SUBDIR += p5-WWW-Shorten-isgd SUBDIR += p5-WWW-SourceForge SUBDIR += p5-WWW-Spinn3r SUBDIR += p5-WWW-TV SUBDIR += p5-WWW-TWSMS SUBDIR += p5-WWW-TinySong SUBDIR += p5-WWW-Tumblr SUBDIR += p5-WWW-VenusEnvy SUBDIR += p5-WWW-WebArchive SUBDIR += p5-WWW-Wikipedia SUBDIR += p5-WWW-Yandex-TIC SUBDIR += p5-WWW-iTunesConnect SUBDIR += p5-Web-Query SUBDIR += p5-Web-Scraper SUBDIR += p5-Web-Scraper-Config SUBDIR += p5-Web-oEmbed SUBDIR += p5-WebDAO SUBDIR += p5-WebService-Basecamp SUBDIR += p5-WebService-Bloglines SUBDIR += p5-WebService-BuzzurlAPI SUBDIR += p5-WebService-CIA SUBDIR += p5-WebService-GData SUBDIR += p5-WebService-Google-Reader SUBDIR += p5-WebService-Google-Sets SUBDIR += p5-WebService-IMDB SUBDIR += p5-WebService-ISBNDB SUBDIR += p5-WebService-Linode SUBDIR += p5-WebService-MoviePosterDB SUBDIR += p5-WebService-MusicBrainz SUBDIR += p5-WebService-NoPaste SUBDIR += p5-WebService-Rakuten SUBDIR += p5-WebService-Simple SUBDIR += p5-WebService-Technorati SUBDIR += p5-WebService-YouTube SUBDIR += p5-WordPress-XMLRPC SUBDIR += p5-Yahoo-Lifestyle SUBDIR += p5-Yahoo-Search SUBDIR += p5-ZConf-RSS SUBDIR += p5-ZConf-RSS-GUI-GTK SUBDIR += p5-chklinks SUBDIR += p5-libapreq2 SUBDIR += p5-libservlet SUBDIR += p5-libwww SUBDIR += p5-pQuery SUBDIR += p5-webservice-validator-css-w3c SUBDIR += p5-webservice-validator-html-w3c SUBDIR += paros SUBDIR += pear-HTML_AJAX SUBDIR += pear-HTML_TagCloud SUBDIR += pear-HTTP SUBDIR += pear-HTTP_Client SUBDIR += pear-HTTP_Download SUBDIR += pear-HTTP_FloodControl SUBDIR += pear-HTTP_Header SUBDIR += pear-HTTP_Request SUBDIR += pear-HTTP_Request2 SUBDIR += pear-HTTP_Server SUBDIR += pear-HTTP_Session2 SUBDIR += pear-HTTP_Upload SUBDIR += pear-HTTP_WebDAV_Client SUBDIR += pear-HTTP_WebDAV_Server SUBDIR += pear-Horde_Browser SUBDIR += pear-Horde_Editor SUBDIR += pear-Horde_Feed SUBDIR += pear-Horde_Form SUBDIR += pear-Horde_Http SUBDIR += pear-Horde_Routes SUBDIR += pear-Horde_Service_Facebook SUBDIR += pear-Horde_Service_Twitter SUBDIR += pear-Horde_Service_UrlShortener SUBDIR += pear-Horde_Service_Weather SUBDIR += pear-Horde_SessionHandler SUBDIR += pear-Horde_Template SUBDIR += pear-Services_Amazon SUBDIR += pear-Services_Amazon_S3 SUBDIR += pear-Services_Blogging SUBDIR += pear-Services_Compete SUBDIR += pear-Services_Delicious SUBDIR += pear-Services_Digg SUBDIR += pear-Services_Facebook SUBDIR += pear-Services_GeoNames SUBDIR += pear-Services_Google SUBDIR += pear-Services_OpenSearch SUBDIR += pear-Services_SharedBook SUBDIR += pear-Services_ShortURL SUBDIR += pear-Services_TinyURL SUBDIR += pear-Services_TwitPic SUBDIR += pear-Services_W3C_CSSValidator SUBDIR += pear-Services_W3C_HTMLValidator SUBDIR += pear-Services_Yadis SUBDIR += pear-Services_Yahoo SUBDIR += pear-Services_urlTea SUBDIR += pear-Structures_DataGrid_Renderer_Flexy SUBDIR += pear-Structures_DataGrid_Renderer_Pager SUBDIR += pear-Structures_DataGrid_Renderer_Smarty SUBDIR += pear-Text_Wiki SUBDIR += pear-UDDI SUBDIR += pear-XML_GRDDL SUBDIR += pebble SUBDIR += pecl-APC SUBDIR += pecl-amfext SUBDIR += pecl-http SUBDIR += pecl-sphinx SUBDIR += pecl-swish SUBDIR += pecl-yaf SUBDIR += pelican SUBDIR += perlbal SUBDIR += pglogd SUBDIR += phalcon SUBDIR += photo_gallery SUBDIR += php-plurk-api SUBDIR += php-screw SUBDIR += php-templates SUBDIR += php5-session SUBDIR += php5-tidy SUBDIR += php52-session SUBDIR += php52-tidy SUBDIR += php53-session SUBDIR += php53-tidy SUBDIR += phpbb SUBDIR += phpbb-devel SUBDIR += phpbb3 SUBDIR += phpgedview SUBDIR += phpgroupware SUBDIR += phpmp SUBDIR += phpmustache SUBDIR += phpmyfaq SUBDIR += phprecipebook SUBDIR += phproxy SUBDIR += phpscheduleit SUBDIR += phpsysinfo SUBDIR += phpsysinfo-dev SUBDIR += phpvirtualbox SUBDIR += phpwebapp SUBDIR += pivotx SUBDIR += piwigo SUBDIR += piwik SUBDIR += planet SUBDIR += pligg SUBDIR += plone SUBDIR += plugger SUBDIR += plugger-plugins-hubbe SUBDIR += pmwiki SUBDIR += pnews SUBDIR += podcastamatic SUBDIR += polipo SUBDIR += pound SUBDIR += prado SUBDIR += privoxy SUBDIR += privoxy+ipv6 SUBDIR += protovis SUBDIR += pserv SUBDIR += publicfile SUBDIR += punbb SUBDIR += pwebstats SUBDIR += py-GinGin SUBDIR += py-HTMLgen SUBDIR += py-Lightbox SUBDIR += py-Products.CMFPlone SUBDIR += py-Products.PloneLDAP SUBDIR += py-Products.TinyMCE SUBDIR += py-Products.kupu SUBDIR += py-WebError SUBDIR += py-WebFlash SUBDIR += py-WebTest SUBDIR += py-albatross SUBDIR += py-amf SUBDIR += py-apachelog SUBDIR += py-beaker SUBDIR += py-beautifulsoup SUBDIR += py-beautifulsoup30 SUBDIR += py-beautifulsoup32 SUBDIR += py-bjoern SUBDIR += py-bleach SUBDIR += py-blogofile SUBDIR += py-bottle SUBDIR += py-cherrypy SUBDIR += py-cherrypy-old SUBDIR += py-clientform SUBDIR += py-cssselect SUBDIR += py-cssutils SUBDIR += py-django SUBDIR += py-django-annoying SUBDIR += py-django-app-plugins SUBDIR += py-django-appconf SUBDIR += py-django-appmedia SUBDIR += py-django-caching-app-plugins SUBDIR += py-django-classy-tags SUBDIR += py-django-cms SUBDIR += py-django-devel SUBDIR += py-django-evolution SUBDIR += py-django-extensions SUBDIR += py-django-filer SUBDIR += py-django-haystack SUBDIR += py-django-json-rpc SUBDIR += py-django-keyedcache SUBDIR += py-django-livesettings SUBDIR += py-django-mezzanine-filebrowser SUBDIR += py-django-mezzanine-grappelli SUBDIR += py-django-mptt SUBDIR += py-django-openid-auth SUBDIR += py-django-photologue SUBDIR += py-django-pipeline SUBDIR += py-django-piston SUBDIR += py-django-profiles SUBDIR += py-django-registration SUBDIR += py-django-reversion SUBDIR += py-django-sekizai SUBDIR += py-django-signals-ahoy SUBDIR += py-django-storages SUBDIR += py-django-tagging SUBDIR += py-django-tastypie SUBDIR += py-django-threaded-multihost SUBDIR += py-django13 SUBDIR += py-django_compressor SUBDIR += py-djblets SUBDIR += py-dojango SUBDIR += py-dotcloud.cli SUBDIR += py-dtflickr SUBDIR += py-fcgi SUBDIR += py-fedex SUBDIR += py-feedfinder SUBDIR += py-feedgenerator SUBDIR += py-flask SUBDIR += py-flask-cache SUBDIR += py-flask-uploads SUBDIR += py-flexget SUBDIR += py-flup SUBDIR += py-formalchemy SUBDIR += py-formencode SUBDIR += py-funkload SUBDIR += py-google-api-python-client SUBDIR += py-graphite-web SUBDIR += py-grequests SUBDIR += py-gunicorn SUBDIR += py-html5lib SUBDIR += py-httplib2 SUBDIR += py-imdbpy SUBDIR += py-jonpy SUBDIR += py-jswebkit SUBDIR += py-mechanize SUBDIR += py-meld SUBDIR += py-meld3 SUBDIR += py-mt SUBDIR += py-nevow SUBDIR += py-openssl-proxy SUBDIR += py-paste SUBDIR += py-pastedeploy SUBDIR += py-pastescript SUBDIR += py-plone.app.blob SUBDIR += py-plone.app.caching SUBDIR += py-plone.app.collection SUBDIR += py-plone.app.content SUBDIR += py-plone.app.contentlisting SUBDIR += py-plone.app.contentmenu SUBDIR += py-plone.app.contentrules SUBDIR += py-plone.app.controlpanel SUBDIR += py-plone.app.customerize SUBDIR += py-plone.app.discussion SUBDIR += py-plone.app.folder SUBDIR += py-plone.app.form SUBDIR += py-plone.app.i18n SUBDIR += py-plone.app.imaging SUBDIR += py-plone.app.iterate SUBDIR += py-plone.app.jquerytools SUBDIR += py-plone.app.kss SUBDIR += py-plone.app.layout SUBDIR += py-plone.app.ldap SUBDIR += py-plone.app.linkintegrity SUBDIR += py-plone.app.locales SUBDIR += py-plone.app.portlets SUBDIR += py-plone.app.querystring SUBDIR += py-plone.app.redirector SUBDIR += py-plone.app.registry SUBDIR += py-plone.app.search SUBDIR += py-plone.app.testing SUBDIR += py-plone.app.theming SUBDIR += py-plone.app.upgrade SUBDIR += py-plone.app.users SUBDIR += py-plone.app.uuid SUBDIR += py-plone.app.viewletmanager SUBDIR += py-plone.app.vocabularies SUBDIR += py-plone.app.workflow SUBDIR += py-plone.app.z3cform SUBDIR += py-plone.autoform SUBDIR += py-plone.browserlayer SUBDIR += py-plone.cachepurging SUBDIR += py-plone.caching SUBDIR += py-plone.contentrules SUBDIR += py-plone.fieldsets SUBDIR += py-plone.folder SUBDIR += py-plone.i18n SUBDIR += py-plone.indexer SUBDIR += py-plone.intelligenttext SUBDIR += py-plone.locking SUBDIR += py-plone.memoize SUBDIR += py-plone.outputfilters SUBDIR += py-plone.portlet.collection SUBDIR += py-plone.portlet.static SUBDIR += py-plone.portlets SUBDIR += py-plone.registry SUBDIR += py-plone.resource SUBDIR += py-plone.scale SUBDIR += py-plone.stringinterp SUBDIR += py-plone.subrequest SUBDIR += py-plone.supermodel SUBDIR += py-plone.testing SUBDIR += py-plone.theme SUBDIR += py-plone.transformchain SUBDIR += py-plone.uuid SUBDIR += py-plone.z3cform SUBDIR += py-plonetheme.classic SUBDIR += py-plonetheme.sunburst SUBDIR += py-poster SUBDIR += py-postmarkup SUBDIR += py-prewikka SUBDIR += py-py-restclient SUBDIR += py-pylons SUBDIR += py-pyquery SUBDIR += py-pyramid SUBDIR += py-pyramid_rpc SUBDIR += py-pysearch SUBDIR += py-pywebdav SUBDIR += py-qp SUBDIR += py-qpy SUBDIR += py-qt4-webkit SUBDIR += py-rackspace-monitoring SUBDIR += py-recaptcha SUBDIR += py-requests SUBDIR += py-requests-oauth-hook SUBDIR += py-restclient SUBDIR += py-rhodecode SUBDIR += py-routes SUBDIR += py-satchmo SUBDIR += py-scgi SUBDIR += py-scrapy SUBDIR += py-scriptaculous SUBDIR += py-selenium SUBDIR += py-slimmer SUBDIR += py-slumber SUBDIR += py-surl SUBDIR += py-textile SUBDIR += py-tgwebservices SUBDIR += py-tornado SUBDIR += py-turbogears SUBDIR += py-turbogears2 SUBDIR += py-tvdb_api SUBDIR += py-twistedWeb SUBDIR += py-twistedWeb2 SUBDIR += py-urlgrabber SUBDIR += py-urljr SUBDIR += py-utidy SUBDIR += py-waitress SUBDIR += py-webhelpers SUBDIR += py-webkitgtk SUBDIR += py-webob SUBDIR += py-webunit SUBDIR += py-webware SUBDIR += py-webware-component SUBDIR += py-werkzeug SUBDIR += py-wikitools SUBDIR += py-wsgiauth SUBDIR += py-zope.app.wsgi SUBDIR += pyblosxom SUBDIR += pyjamas SUBDIR += pylot SUBDIR += pyweblib SUBDIR += qdecoder SUBDIR += qooxdoo SUBDIR += qt4-webkit SUBDIR += quickie SUBDIR += quixote SUBDIR += red5 SUBDIR += redmine SUBDIR += redmine-backlogs SUBDIR += redmine-basecamp SUBDIR += redmine-http-auth SUBDIR += rejik SUBDIR += rekonq SUBDIR += reportmagic SUBDIR += repos-style SUBDIR += resin3 SUBDIR += retawq SUBDIR += reviewboard SUBDIR += rnews SUBDIR += roundup SUBDIR += rsskit SUBDIR += rssowl SUBDIR += rsstail SUBDIR += rsstool SUBDIR += rt38 SUBDIR += rt40 SUBDIR += ruboard SUBDIR += ruby-amazon SUBDIR += ruby-aws SUBDIR += ruby-borges SUBDIR += ruby-cruisecontrolrb SUBDIR += ruby-div SUBDIR += ruby-fcgi SUBDIR += ruby-fcgiwrap SUBDIR += ruby-google SUBDIR += ruby-nora SUBDIR += ruby-wgettsv SUBDIR += rubygem-actionpack SUBDIR += rubygem-activeresource SUBDIR += rubygem-addressable SUBDIR += rubygem-amazon-ecs SUBDIR += rubygem-anemone SUBDIR += rubygem-bluecloth SUBDIR += rubygem-cgi_multipart_eof_fix SUBDIR += rubygem-chef-server-api SUBDIR += rubygem-chef-server-webui SUBDIR += rubygem-cookiejar SUBDIR += rubygem-cuba SUBDIR += rubygem-davclient SUBDIR += rubygem-domainatrix SUBDIR += rubygem-em-http-request SUBDIR += rubygem-em-websocket SUBDIR += rubygem-emk-sinatra-url-for SUBDIR += rubygem-erubis SUBDIR += rubygem-faraday SUBDIR += rubygem-faraday_middleware SUBDIR += rubygem-feed-normalizer SUBDIR += rubygem-feedzirra SUBDIR += rubygem-haml SUBDIR += rubygem-hpricot SUBDIR += rubygem-httparty SUBDIR += rubygem-httpclient SUBDIR += rubygem-innate SUBDIR += rubygem-jekyll SUBDIR += rubygem-journey SUBDIR += rubygem-jquery-rails SUBDIR += rubygem-jwt SUBDIR += rubygem-layout-yullio SUBDIR += rubygem-less SUBDIR += rubygem-lighthouse-api SUBDIR += rubygem-maruku SUBDIR += rubygem-mechanize SUBDIR += rubygem-merb-assets SUBDIR += rubygem-merb-core SUBDIR += rubygem-merb-haml SUBDIR += rubygem-merb-helpers SUBDIR += rubygem-merb-param-protection SUBDIR += rubygem-mongrel SUBDIR += rubygem-mongrel_cluster SUBDIR += rubygem-multipart-post SUBDIR += rubygem-nanoc SUBDIR += rubygem-net-http-digest_auth SUBDIR += rubygem-net-http-persistent SUBDIR += rubygem-nicovideo SUBDIR += rubygem-ntlm-http SUBDIR += rubygem-passenger SUBDIR += rubygem-rack SUBDIR += rubygem-rack-cache SUBDIR += rubygem-rack-mount SUBDIR += rubygem-rack-protection SUBDIR += rubygem-rack-ssl SUBDIR += rubygem-rack-test SUBDIR += rubygem-rails SUBDIR += rubygem-rails-app-installer SUBDIR += rubygem-railties SUBDIR += rubygem-raindrops SUBDIR += rubygem-ramaze SUBDIR += rubygem-redcloth SUBDIR += rubygem-rest-client SUBDIR += rubygem-rfacebook SUBDIR += rubygem-rfeedfinder SUBDIR += rubygem-robotex SUBDIR += rubygem-robots SUBDIR += rubygem-rubyfulsoup SUBDIR += rubygem-scrapi SUBDIR += rubygem-scrubyt SUBDIR += rubygem-simple-rss SUBDIR += rubygem-sinatra SUBDIR += rubygem-sinatra-respond_to SUBDIR += rubygem-staticmatic SUBDIR += rubygem-taggable SUBDIR += rubygem-thin SUBDIR += rubygem-typhoeus SUBDIR += rubygem-uglifier SUBDIR += rubygem-unicorn SUBDIR += rubygem-url-mount SUBDIR += rubygem-url_escape SUBDIR += rubygem-webmock SUBDIR += rubygem-webrobots SUBDIR += rubygem-yapra SUBDIR += runsomebrowser SUBDIR += sahi SUBDIR += sakai SUBDIR += samidare SUBDIR += sams SUBDIR += sarg SUBDIR += sbox-dtc SUBDIR += scloader SUBDIR += screem SUBDIR += script4rss SUBDIR += seamonkey SUBDIR += seamonkey-i18n SUBDIR += selenium SUBDIR += serendipity SUBDIR += serf SUBDIR += servlet-api SUBDIR += session2 SUBDIR += sfnt2woff SUBDIR += shellinabox SUBDIR += shttpd SUBDIR += simplog SUBDIR += sit SUBDIR += siteatschool SUBDIR += sitebar SUBDIR += sitecopy SUBDIR += siteframe SUBDIR += skytemplate SUBDIR += smarty SUBDIR += smb_auth SUBDIR += snarf SUBDIR += snownews SUBDIR += spawn-fcgi SUBDIR += speedtest-mini SUBDIR += spreadlogd SUBDIR += sqstat SUBDIR += squid SUBDIR += squid31 SUBDIR += squid_radius_auth SUBDIR += squidclamav SUBDIR += squidguard SUBDIR += squidpurge SUBDIR += squidstats SUBDIR += squidview SUBDIR += squirm SUBDIR += srg SUBDIR += subsonic SUBDIR += suphp SUBDIR += surf SUBDIR += surfraw SUBDIR += sventon SUBDIR += swfdec-plugin SUBDIR += swiggle SUBDIR += swish++ SUBDIR += swish-e SUBDIR += syndigator SUBDIR += tclhttpd SUBDIR += tclwebtest SUBDIR += tdiary SUBDIR += tdom SUBDIR += template_ SUBDIR += templatelite SUBDIR += testlink SUBDIR += textpattern SUBDIR += thttpd SUBDIR += thumbnail_index SUBDIR += thundercache SUBDIR += thundersnarf SUBDIR += tidy SUBDIR += tidy-devel SUBDIR += tidy-lib SUBDIR += tikiwiki SUBDIR += tinymce SUBDIR += tinymce3 SUBDIR += tinyproxy SUBDIR += tinytinyhttpd SUBDIR += tivoka SUBDIR += tntnet SUBDIR += tokyopromenade SUBDIR += tomcat-native SUBDIR += tomcat55 SUBDIR += tomcat6 SUBDIR += tomcat7 SUBDIR += trac SUBDIR += trac-OhlohWidgetsMacro SUBDIR += trac-TracGoogleAnalytics SUBDIR += trac-accountmanager SUBDIR += trac-addcomment SUBDIR += trac-advancedticketworkflow SUBDIR += trac-announcer SUBDIR += trac-autocomplete SUBDIR += trac-batchmodify SUBDIR += trac-bzr SUBDIR += trac-calendar SUBDIR += trac-ccselector SUBDIR += trac-childtickets SUBDIR += trac-codetags SUBDIR += trac-customfieldadmin SUBDIR += trac-customroadmap SUBDIR += trac-datefield SUBDIR += trac-defaultcc SUBDIR += trac-discussion SUBDIR += trac-down SUBDIR += trac-downloads SUBDIR += trac-email2trac SUBDIR += trac-email2trac-postfix SUBDIR += trac-estimator SUBDIR += trac-fivestarvote SUBDIR += trac-fullblog SUBDIR += trac-fullblognotification SUBDIR += trac-gantt SUBDIR += trac-gitplugin SUBDIR += trac-graphviz SUBDIR += trac-hierwiki SUBDIR += trac-iniadmin SUBDIR += trac-keywords SUBDIR += trac-ldap SUBDIR += trac-macropost SUBDIR += trac-mastertickets SUBDIR += trac-math SUBDIR += trac-mercurial SUBDIR += trac-nav SUBDIR += trac-navadd SUBDIR += trac-pagelist SUBDIR += trac-pagetopdf SUBDIR += trac-pendingticket SUBDIR += trac-permredirect SUBDIR += trac-privatetickets SUBDIR += trac-pydotorgtheme SUBDIR += trac-remind SUBDIR += trac-revtree SUBDIR += trac-robotstxt SUBDIR += trac-scrumburndown SUBDIR += trac-simpleticket SUBDIR += trac-spam-filter SUBDIR += trac-tags SUBDIR += trac-themeengine SUBDIR += trac-ticketimport SUBDIR += trac-tickettemplate SUBDIR += trac-timingandestimation SUBDIR += trac-tocmacro SUBDIR += trac-tweakui SUBDIR += trac-vote SUBDIR += trac-wantedpages SUBDIR += trac-wikigoodies SUBDIR += trac-wikinegotiator SUBDIR += trac-wikinotification SUBDIR += trac-wikirename SUBDIR += trac-wikitemplates SUBDIR += trac-wikitopdf SUBDIR += trac-wysiwyg SUBDIR += trac-xmlrpc SUBDIR += trafficserver SUBDIR += transmission-web SUBDIR += transmission25-web SUBDIR += transproxy SUBDIR += tt-rss SUBDIR += ttf2eot SUBDIR += twig SUBDIR += twiki SUBDIR += twiki-BehaviourContrib SUBDIR += twiki-BlogAddOn SUBDIR += twiki-BugzillaLinkPlugin SUBDIR += twiki-ClassicSkin SUBDIR += twiki-CommentPlugin SUBDIR += twiki-EditTablePlugin SUBDIR += twiki-EmptyPlugin SUBDIR += twiki-GluePlugin SUBDIR += twiki-InterwikiPlugin SUBDIR += twiki-JSCalendarContrib SUBDIR += twiki-LDAPPasswordChangerPlugin SUBDIR += twiki-LdapContrib SUBDIR += twiki-LdapNgPlugin SUBDIR += twiki-MailerContrib SUBDIR += twiki-MathModePlugin SUBDIR += twiki-NewUserPlugin SUBDIR += twiki-PatternSkin SUBDIR += twiki-PreferencesPlugin SUBDIR += twiki-RenderListPlugin SUBDIR += twiki-SlideShowPlugin SUBDIR += twiki-SmiliesPlugin SUBDIR += twiki-SpreadSheetPlugin SUBDIR += twiki-SubscribePlugin SUBDIR += twiki-TWikiUserMappingContrib SUBDIR += twiki-TablePlugin SUBDIR += twiki-TagMePlugin SUBDIR += twiki-TinyMCEPlugin SUBDIR += twiki-TipsContrib SUBDIR += twiki-TopicVarsPlugin SUBDIR += twiki-TwistyContrib SUBDIR += twiki-TwistyPlugin SUBDIR += twiki-WysiwygPlugin SUBDIR += twill SUBDIR += twms SUBDIR += typo SUBDIR += typo3 SUBDIR += typo345 SUBDIR += typo346 SUBDIR += typolight SUBDIR += udmsearch SUBDIR += ump SUBDIR += usermanager SUBDIR += uwsgi SUBDIR += uzbl SUBDIR += validator SUBDIR += varnish SUBDIR += varnish-libvmod-header SUBDIR += varnish-nagios SUBDIR += varnish2 SUBDIR += vdr-plugin-live SUBDIR += vdradmin-am SUBDIR += vee SUBDIR += vertx SUBDIR += videocache SUBDIR += visitors SUBDIR += volta SUBDIR += vtiger SUBDIR += vtiger-customerportal SUBDIR += w3m SUBDIR += w3m-img SUBDIR += w3m-m17n SUBDIR += w3m-m17n-img SUBDIR += w3mir SUBDIR += waccess SUBDIR += wacko SUBDIR += wadcomblog SUBDIR += web2ldap SUBDIR += webalizer SUBDIR += webcalendar SUBDIR += webcalendar-devel SUBDIR += webcheck SUBDIR += webcopy SUBDIR += webcrawl SUBDIR += webfs SUBDIR += webgo SUBDIR += webinject SUBDIR += webkit-gtk2 SUBDIR += webkit-sharp SUBDIR += weblint SUBDIR += weblint++ SUBDIR += webobjects SUBDIR += webpy SUBDIR += webreport SUBDIR += webresolve SUBDIR += webserver SUBDIR += webservices SUBDIR += websh SUBDIR += webstats SUBDIR += webstone SUBDIR += webstone-ssl SUBDIR += webtrees SUBDIR += wgetpaste SUBDIR += wikicalc SUBDIR += wikindx SUBDIR += wml SUBDIR += woof SUBDIR += wordpress SUBDIR += wsdlpull SUBDIR += wsmake SUBDIR += www6to4 SUBDIR += wwwcount SUBDIR += wwwoffle SUBDIR += wwwstat SUBDIR += wyvern SUBDIR += xapian-omega SUBDIR += xapian-omega10 SUBDIR += xaraya SUBDIR += xcache SUBDIR += xfce4-smartbookmark-plugin SUBDIR += xist SUBDIR += xombrero SUBDIR += xoops SUBDIR += xpi-adblock SUBDIR += xpi-adblock_plus SUBDIR += xpi-bookmarkdd SUBDIR += xpi-clear_cache_button SUBDIR += xpi-clearfields SUBDIR += xpi-close-all-tabs SUBDIR += xpi-colorfultabs SUBDIR += xpi-conkeror SUBDIR += xpi-cookiesafe SUBDIR += xpi-cssviewer SUBDIR += xpi-customizegoogle SUBDIR += xpi-cutemenus-crystalsvg SUBDIR += xpi-deepestsender SUBDIR += xpi-default_full_zoom_level SUBDIR += xpi-delicious SUBDIR += xpi-downthemall SUBDIR += xpi-errorzilla SUBDIR += xpi-fasterfox SUBDIR += xpi-firebug SUBDIR += xpi-firefox-showcase SUBDIR += xpi-firemobilesimulator SUBDIR += xpi-fission SUBDIR += xpi-flashblock SUBDIR += xpi-flashgot SUBDIR += xpi-flatbmark SUBDIR += xpi-forecastfox SUBDIR += xpi-formfox SUBDIR += xpi-foxmarks SUBDIR += xpi-foxyproxy SUBDIR += xpi-gbrain SUBDIR += xpi-gdata_provider SUBDIR += xpi-gmail-manager SUBDIR += xpi-google-notebook SUBDIR += xpi-google_shortcuts SUBDIR += xpi-grab_and_drag SUBDIR += xpi-greasemonkey SUBDIR += xpi-gwt-dev-plugin SUBDIR += xpi-httpfox SUBDIR += xpi-imagezoom SUBDIR += xpi-imdbpreview SUBDIR += xpi-imglikeopera SUBDIR += xpi-infolister SUBDIR += xpi-informenter SUBDIR += xpi-inline-google-definitions SUBDIR += xpi-it_s_all_text SUBDIR += xpi-jslib SUBDIR += xpi-jsview SUBDIR += xpi-jv SUBDIR += xpi-leechblock SUBDIR += xpi-linkification SUBDIR += xpi-live_http_headers SUBDIR += xpi-live_pagerank SUBDIR += xpi-locale-switcher SUBDIR += xpi-menueditor SUBDIR += xpi-mldonkey SUBDIR += xpi-modify_headers SUBDIR += xpi-mrtech-local-install SUBDIR += xpi-neo-diggler SUBDIR += xpi-no-referrer SUBDIR += xpi-noscript SUBDIR += xpi-passwordmaker SUBDIR += xpi-pdf_download SUBDIR += xpi-pencil SUBDIR += xpi-pentadactyl SUBDIR += xpi-permatabs SUBDIR += xpi-prism SUBDIR += xpi-quick-locale-switcher SUBDIR += xpi-quickproxy SUBDIR += xpi-resurrectpages SUBDIR += xpi-sameplace SUBDIR += xpi-scrapbook SUBDIR += xpi-searchstatus SUBDIR += xpi-server_spy SUBDIR += xpi-server_switcher SUBDIR += xpi-sessionmanager SUBDIR += xpi-showip SUBDIR += xpi-speed-dial SUBDIR += xpi-splash SUBDIR += xpi-stumbleupon SUBDIR += xpi-stylish SUBDIR += xpi-table2clipboard SUBDIR += xpi-tabletools SUBDIR += xpi-tabmixplus SUBDIR += xpi-tagzilla SUBDIR += xpi-togglewordwrap SUBDIR += xpi-torbutton SUBDIR += xpi-twitterfox SUBDIR += xpi-unplug SUBDIR += xpi-urllink SUBDIR += xpi-user_agent_switcher SUBDIR += xpi-vimperator SUBDIR += xpi-web_developer SUBDIR += xpi-wmlbrowser SUBDIR += xpi-xhtml-ruby-support SUBDIR += xpi-xmpp4moz SUBDIR += xpi-yslow SUBDIR += xshttpd SUBDIR += xshttpd-devel SUBDIR += xsp SUBDIR += yabb SUBDIR += yahoo-ui SUBDIR += yanopaste SUBDIR += yaws SUBDIR += yii SUBDIR += yourls SUBDIR += youtube_dl SUBDIR += yuicompressor SUBDIR += zen-cart SUBDIR += zend-framework SUBDIR += zenphoto SUBDIR += zerowait-httpd SUBDIR += zope213 .include diff --git a/www/gecko-mediaplayer/Makefile b/www/gecko-mediaplayer/Makefile index d33d108f21c1..bfc665827e10 100644 --- a/www/gecko-mediaplayer/Makefile +++ b/www/gecko-mediaplayer/Makefile @@ -1,61 +1,61 @@ # New ports collection makefile for: gecko-mediaplayer # Date created: 14 March 2009 # Whom: Alexander Logvinov # # $FreeBSD$ # PORTNAME= gecko-mediaplayer PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www multimedia gnome MASTER_SITES= GOOGLE_CODE MAINTAINER= avl@FreeBSD.org COMMENT= Multimedia browser plugin for Gecko based browsers LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib RUN_DEPENDS= gnome-mplayer:${PORTSDIR}/multimedia/gnome-mplayer OPTIONS= GCONF "Use Gconf to store preferences" off \ NOCACHE "Disable caching of remote media to local storage" off GNU_CONFIGURE= yes USE_GETTEXT= yes USE_GNOME= glib20 pkgconfig -USE_GECKO= libxul +USE_GECKO= libxul19 USE_WEBPLUGINS= native WEBPLUGINS_FILES= ${PORTNAME}-dvx.so ${PORTNAME}-qt.so ${PORTNAME}-rm.so \ ${PORTNAME}-wmp.so ${PORTNAME}.so CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS+=--with-plugin_dir="${WEBPLUGINS_DIR}" PORTDOCS= README COPYING AUTHORS ChangeLog INSTALL NEWS javascript.txt .include .if defined(WITH_GCONF) USE_GNOME+= gconf2 CONFIGURE_ARGS+= --with-gconf GCONF_SCHEMAS= ${PORTNAME}.schemas .else CONFIGURE_ARGS+= --without-gconf --disable-schemas-install .endif .if defined(WITH_NOCACHE) CONFIGURE_ARGS+= --disable-caching .endif post-patch: @${REINPLACE_CMD} -e 's|-ldl||' \ ${WRKSRC}/configure \ ${WRKSRC}/src/Makefile.in .if defined(NOPORTDOCS) @${REINPLACE_CMD} -e \ 's|install-gecko_mediaplayerdocDATA install-schemaDATA|install-schemaDATA|' \ ${WRKSRC}/Makefile.in .endif .include "${PORTSDIR}/www/firefox/Makefile.webplugins" .include diff --git a/www/gecko-sharp20/Makefile b/www/gecko-sharp20/Makefile index 0cfc28b539f3..9fcba6e3e59e 100644 --- a/www/gecko-sharp20/Makefile +++ b/www/gecko-sharp20/Makefile @@ -1,30 +1,30 @@ # New ports collection makefile for: gecko-sharp # Date created: 20040825 # Whom: Tom McLaughlin # # $FreeBSD$ # $Id: Makefile,v 1.19 2007/02/07 15:49:20 killfill Exp $ # PORTNAME= gecko-sharp PORTVERSION= 0.13 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www MASTER_SITES= ftp://ftp.novell.com/pub/mono/sources/${PORTNAME}2/ DISTNAME= ${PORTNAME}-2.0-${PORTVERSION} MAINTAINER= mono@FreeBSD.org COMMENT= Mono bindings to embed Mozilla -USE_GECKO= libxul +USE_GECKO= libxul19 USE_GNOME= gtksharp20 LATEST_LINK= gecko-sharp20 GNU_CONFIGURE= yes USE_GMAKE= yes USE_BZIP2= yes post-patch: @${REINPLACE_CMD} -e 's|[(]prefix[)]/lib/pkgconfig|(prefix)/libdata/pkgconfig|g' ${WRKSRC}/Makefile.in .include "${.CURDIR}/../../lang/mono/bsd.mono.mk" .include diff --git a/www/helixplugin/Makefile b/www/helixplugin/Makefile index 7fb6c96c7b59..a8dce0e69245 100644 --- a/www/helixplugin/Makefile +++ b/www/helixplugin/Makefile @@ -1,37 +1,37 @@ # New ports collection makefile for: helixplugin # Date created: October 22, 2006 # Whom: Mikhail T # # $FreeBSD$ # PORTNAME= hxplugin PORTVERSION= 20080318 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www multimedia MASTER_SITES= http://virtual-estates.net/~mi/port-stuff/ MAINTAINER= mi@aldan.algebra.com COMMENT= Browser plugin for Real or Helix Players USE_BZIP2 = yes USE_DOS2UNIX = yes MAKEFILE = ${FILESDIR}/BSDmakefile -USE_GECKO = libxul -MAKE_ENV += TOP="${WRKSRC}" GECKO=${GECKO} +USE_GECKO = libxul19 +MAKE_ENV += TOP="${WRKSRC}" GECKO=${GECKO:S/19//} MAKE_JOBS_UNSAFE = yes USE_WEBPLUGINS= native WEBPLUGINS_FILES=helix.so nphelix.xpt PDIR= ${WEBPLUGINS_DIR:S,${PREFIX}/,,} PLIST_FILES= ${PDIR}/helix.so ${PDIR}/nphelix.xpt PLIST_DIRS= ${PDIR} do-install: ${MKDIR} ${WEBPLUGINS_DIR} ${INSTALL_DATA} ${WEBPLUGINS_FILES:S|^|${WRKSRC}/|} ${WEBPLUGINS_DIR}/ .include .include "${PORTSDIR}/www/firefox/Makefile.webplugins" .include diff --git a/www/libxul/Makefile b/www/libxul/Makefile index 5996f7fc619a..27adaa856207 100644 --- a/www/libxul/Makefile +++ b/www/libxul/Makefile @@ -1,97 +1,92 @@ # New ports collection makefile for: xulrunner # Date created: 2006-02-20 # Whom: Michael Johnson # # $FreeBSD$ # PORTNAME= libxul -DISTVERSION= 1.9.2.28 -PORTREVISION= 1 +DISTVERSION= 10.0.7 CATEGORIES?= www devel MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= firefox/releases/3.6.28/source -DISTNAME= firefox-3.6.28.source +MASTER_SITE_SUBDIR= firefox/releases/${DISTVERSION}esr/source +DISTNAME= firefox-${DISTVERSION}esr.source MAINTAINER?= gecko@FreeBSD.org COMMENT?= Mozilla runtime package that can be used to bootstrap XUL+XPCOM apps -WRKSRC= ${WRKDIR}/mozilla-1.9.2 -CONFLICTS= mozilla-[0-9]* libxul-[0-9][0-9].* -GECKO_PLIST_PRE_DIRS= lib/${MOZILLA}/bin lib/${MOZILLA}/idl \ - lib/${MOZILLA}/include lib/${MOZILLA}/lib +BUILD_DEPENDS= nspr>=4.8.8:${PORTSDIR}/devel/nspr \ + nss>=3.13.1:${PORTSDIR}/security/nss \ + sqlite3>=3.7.7.1:${PORTSDIR}/databases/sqlite3 \ + cairo>=1.10.2_1,1:${PORTSDIR}/graphics/cairo \ + unzip:${PORTSDIR}/archivers/unzip + +WRKSRC= ${WRKDIR}/mozilla-esr10 +CONFLICTS= mozilla-[0-9]* libxul-1.9.* USE_AUTOTOOLS= autoconf213:env WANT_GNOME= yes +USE_QT4= # empty +QT_NONSTANDARD= yes WANT_PERL= yes ALL_TARGET= default GNU_CONFIGURE= yes USE_BZIP2= yes USE_GMAKE= yes +USE_GL= gl MAKE_JOBS_SAFE= yes MAKE_ENV= SKIP_GRE_REGISTRATION=1 mozappdir=${PREFIX}/lib/${MOZILLA} LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} USE_LDCONFIG= ${PREFIX}/lib/${MOZILLA} -MOZ_OPTIONS?= --enable-application=xulrunner \ - --disable-ipc +MOZ_OPTIONS?= --enable-application=xulrunner MOZ_EXTENSIONS= default,cookie,permissions USE_GECKO= gecko MOZILLA_EXEC_NAME=xulrunner -USE_MOZILLA= -event -ffi -vpx -MOZ_CHROME= jar +USE_MOZILLA= # empty MOZILLA_PLIST_DIRS= bin include lib share/idl PLIST_DIRSTRY= share/idl -MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-gtkmozembed-embedding \ - mozilla-gtkmozembed mozilla-js mozilla-plugin - -OPTIONS_DEFINE= JAVA -JAVA_DESC?= JAVA xpcom +MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-js \ + mozilla-plugin .include "${.CURDIR}/../../www/firefox/Makefile.options" - -OPTIONS_DEFINE:=${OPTIONS_DEFINE:NLIBPROXY} -OPTIONS_SINGLE:=${OPTIONS_SINGLE:NTOOLKIT} - .include .if ${USE_MOZILLA:M-nss} MOZ_PKGCONFIG_FILES+= mozilla-nss .endif .if ${ARCH} == amd64 CONFIGURE_TARGET=x86_64-portbld-freebsd${OSREL} .elif ${ARCH} == powerpc64 .if ${OSVERSION} < 900033 BROKEN= Needs binutils 2.17.50 to build .else MOZ_EXPORT+= UNAME_m="powerpc64" CFLAGS+= -mminimal-toc .endif .endif -.if ${PORT_OPTIONS:MJAVA} -USE_JAVA= yes -JAVA_VERSION+= 1.5+ -JAVA_OS+= native -MOZ_EXPORT+= JAVA_HOME="${JAVA_HOME}" -MOZ_OPTIONS+= --enable-javaxpcom -.else -MOZ_OPTIONS+= --disable-javaxpcom +.if ${ARCH} == amd64 || ${ARCH} == i386 +BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm +.endif + +.if !empty(CXX:M*clang++*) +CXXFLAGS+= -Wno-return-type-c-linkage .endif post-patch: - ${REINPLACE_CMD} -e 's|/usr/local/include|${LOCALBASE}/include|' \ - ${WRKSRC}/js/src/config/mkdepend/Makefile.in + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + ${WRKSRC}/xulrunner/stub/nsXULStub.cpp pre-configure: (cd ${WRKSRC} && ${AUTOCONF}) (cd ${WRKSRC}/js/src/ && ${AUTOCONF}) post-build: @${REINPLACE_CMD} -e "s|\(Libs:.*\)\($$\)|\1 -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH}\2| ; \ - s|%sdkdir%|%sdkdir%/sdk|g ; \ + s|%sdkdir%|%sdkdir%/sdk|g ; \ s|%%MOZ_LIBDIR%%|${PREFIX}/lib/${MOZILLA}|g" \ - ${WRKSRC}/xulrunner/installer/*.pc.in || ${TRUE} + ${WRKSRC}/xulrunner/installer/*.pc.in || ${TRUE} .include diff --git a/www/libxul/distinfo b/www/libxul/distinfo index 83cfbc26e75c..4302c68e47ba 100644 --- a/www/libxul/distinfo +++ b/www/libxul/distinfo @@ -1,2 +1,2 @@ -SHA256 (firefox-3.6.28.source.tar.bz2) = a6c4bc52095194428cf3b17341b68ac473b7654984000c45d1be3eae55d78260 -SIZE (firefox-3.6.28.source.tar.bz2) = 51698958 +SHA256 (firefox-10.0.7esr.source.tar.bz2) = 91b0dab3168d75a4f157dabfdf6a95367cd3a8767298d88fb43be251f37f4423 +SIZE (firefox-10.0.7esr.source.tar.bz2) = 75624327 diff --git a/www/libxul/files/patch-alsapulse b/www/libxul/files/patch-alsapulse index f3e0ffb31f6d..175b41680977 100644 --- a/www/libxul/files/patch-alsapulse +++ b/www/libxul/files/patch-alsapulse @@ -1,122 +1,119 @@ --- config/autoconf.mk.in~ +++ config/autoconf.mk.in -@@ -555,6 +555,14 @@ MOZ_LIBNOTIFY_CFLAGS = @MOZ_LIBNOTIFY_CF +@@ -568,7 +568,13 @@ MOZ_LIBNOTIFY_CFLAGS = @MOZ_LIBNOTIFY_CF MOZ_LIBNOTIFY_LIBS = @MOZ_LIBNOTIFY_LIBS@ MOZ_ENABLE_LIBNOTIFY = @MOZ_ENABLE_LIBNOTIFY@ +MOZ_ALSA = @MOZ_ALSA@ -+MOZ_ALSA_LIBS = @MOZ_ALSA_LIBS@ + MOZ_ALSA_LIBS = @MOZ_ALSA_LIBS@ +MOZ_ALSA_CFLAGS = @MOZ_ALSA_CFLAGS@ + +MOZ_PULSEAUDIO = @MOZ_PULSEAUDIO@ +MOZ_PULSEAUDIO_LIBS = @MOZ_PULSEAUDIO_LIBS@ +MOZ_PULSEAUDIO_CFLAGS = @MOZ_PULSEAUDIO_CFLAGS@ -+ + GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ - GLIB_GMODULE_LIBS = @GLIB_GMODULE_LIBS@ --- configure.in~ +++ configure.in -@@ -5660,15 +5660,49 @@ dnl ==================================== +@@ -5758,17 +5775,48 @@ dnl ==================================== + dnl = Check alsa availability on Linux if using sydneyaudio + dnl ======================================================== - dnl If using sydneyaudio with Linux, ensure that the alsa library is available - if test "$COMPILE_ENVIRONMENT"; then --if test -n "$MOZ_SYDNEYAUDIO"; then +MOZ_ARG_ENABLE_BOOL(alsa, +[ --enable-alsa Enable Alsa support], +MOZ_ALSA=1, +MOZ_ALSA= MOZ_ALSA_FORCE=$enableval) + + dnl If using sydneyaudio with Linux, ensure that the alsa library is available +-if test -n "$MOZ_SYDNEYAUDIO"; then +if test -n "$MOZ_SYDNEYAUDIO" -a "$MOZ_ALSA_FORCE" != "no"; then case "$target_os" in linux*) -- AC_CHECK_LIB(asound, snd_pcm_open,,AC_MSG_ERROR([Ogg support on Linux requires the alsa library])) + MOZ_ALSA=1 - ;; - esac - fi ++ ;; ++ esac ++fi + +if test -n "$MOZ_ALSA"; then -+ PKG_CHECK_MODULES(MOZ_ALSA, alsa, , -+ [echo "$MOZ_ALSA_PKG_ERRORS" -+ AC_MSG_ERROR([Need alsa for Ogg, Wave or WebM decoding on Linux. Disable with --disable-ogg --disable-wave --disable-webm. (On Ubuntu, you might try installing the package libasound2-dev.)])]) -+fi + PKG_CHECK_MODULES(MOZ_ALSA, alsa, , + [echo "$MOZ_ALSA_PKG_ERRORS" + AC_MSG_ERROR([Need alsa for Ogg, Wave or WebM decoding on Linux. Disable with --disable-ogg --disable-wave --disable-webm. (On Ubuntu, you might try installing the package libasound2-dev.)])]) +- ;; +- esac fi +AC_SUBST(MOZ_ALSA_CFLAGS) -+AC_SUBST(MOZ_ALSA_LIBS) +AC_SUBST(MOZ_ALSA) + +dnl ======================================================== +dnl = Enable PulseAudio +dnl ======================================================== + +MOZ_ARG_ENABLE_BOOL(pulseaudio, +[ --enable-pulseaudio Enable PulseAudio support], +MOZ_PULSEAUDIO=1, +MOZ_PULSEAUDIO=) + +if test -n "$MOZ_PULSEAUDIO"; then + PKG_CHECK_MODULES(MOZ_PULSEAUDIO, libpulse, , + [echo "$MOZ_PULSEAUDIO_PKG_ERRORS" + AC_MSG_ERROR([pulseaudio audio backend requires libpulse package])]) +fi + +AC_SUBST(MOZ_PULSEAUDIO_CFLAGS) +AC_SUBST(MOZ_PULSEAUDIO_LIBS) +AC_SUBST(MOZ_PULSEAUDIO) + dnl ======================================================== - dnl Splashscreen + dnl Permissions System dnl ======================================================== --- media/libsydneyaudio/src/Makefile.in~ +++ media/libsydneyaudio/src/Makefile.in -@@ -45,12 +45,6 @@ MODULE = sydneyaudio - LIBRARY_NAME = sydneyaudio - FORCE_STATIC_LIB= 1 - --ifeq ($(OS_ARCH),Linux) +@@ -30,10 +30,6 @@ else ifeq ($(MOZ_WIDGET_TOOLKIT),android) + CSRCS = \ + sydney_audio_android.c \ + $(NULL) +-else ifeq ($(OS_ARCH),Linux) -CSRCS = \ - sydney_audio_alsa.c \ - $(NULL) --endif -- - ifneq (,$(filter WINNT WINCE,$(OS_ARCH))) - CSRCS = \ - sydney_audio_waveapi.c \ -@@ -83,6 +83,18 @@ CSRCS = \ - $(NULL) + endif + + ifeq ($(OS_ARCH),WINNT) +@@ -68,6 +64,18 @@ CSRCS = \ + $(NULL) endif +ifdef MOZ_ALSA +CSRCS = \ + sydney_audio_alsa.c \ + $(NULL) +endif + +ifdef MOZ_PULSEAUDIO +CSRCS = \ + sydney_audio_pulseaudio.c \ + $(NULL) +endif + ifeq ($(OS_ARCH),WINNT) OS_LIBS += winmm.lib endif --- toolkit/library/libxul-config.mk~ +++ toolkit/library/libxul-config.mk -@@ -90,6 +90,14 @@ endif - LOCAL_INCLUDES += -I$(topsrcdir)/widget/src/os2 +@@ -348,10 +348,12 @@ ifdef MOZ_NATIVE_LIBVPX + EXTRA_DSO_LDOPTS += $(MOZ_LIBVPX_LIBS) endif +-ifdef MOZ_SYDNEYAUDIO +-ifeq ($(OS_ARCH),Linux) +ifdef MOZ_ALSA -+EXTRA_DSO_LDOPTS += $(MOZ_ALSA_LIBS) -+endif + EXTRA_DSO_LDOPTS += $(MOZ_ALSA_LIBS) + endif + +ifdef MOZ_PULSEAUDIO +EXTRA_DSO_LDOPTS += $(MOZ_PULSEAUDIO_LIBS) -+endif -+ - # dependent libraries - ifdef MOZ_IPC - STATIC_LIBS += \ + endif + + ifdef HAVE_CLOCK_MONOTONIC diff --git a/www/libxul/files/patch-bug543241 b/www/libxul/files/patch-bug543241 new file mode 100644 index 000000000000..73db2c3a785e --- /dev/null +++ b/www/libxul/files/patch-bug543241 @@ -0,0 +1,14 @@ +--- ./xpcom/threads/nsThreadManager.cpp.orig 2011-08-25 02:37:45.000000000 +0200 ++++ ./xpcom/threads/nsThreadManager.cpp 2011-08-28 17:14:14.000000000 +0200 +@@ -89,6 +89,11 @@ + nsresult + nsThreadManager::Init() + { ++#if defined(NS_TLS) && (__FreeBSD_version < 802513 \ ++ || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900045)) ++ if (!gTLSThreadID) ++ gTLSThreadID = mozilla::threads::Generic; ++#endif + if (!mThreadsByPRThread.Init()) + return NS_ERROR_OUT_OF_MEMORY; + diff --git a/www/libxul/files/patch-bug653551 b/www/libxul/files/patch-bug653551 index 733da79a9fd8..f9316f0f725b 100644 --- a/www/libxul/files/patch-bug653551 +++ b/www/libxul/files/patch-bug653551 @@ -1,24 +1,29 @@ commit 47ea30f Author: Landry Breuil Date: Thu Feb 2 15:31:56 2012 +0900 Bug 653551 - Jaegermonkey Sparc back-end broken on sparc64. r=leon.sha --- js/src/configure.in | 2 ++ 1 file changed, 2 insertions(+) diff --git js/src/configure.in js/src/configure.in index 84390cf..d663c46 100644 --- js/src/configure.in +++ js/src/configure.in -@@ -2471,8 +2471,10 @@ arm*-*) - NANOJIT_ARCH=ARM +@@ -2806,13 +2806,15 @@ arm*-*) + AC_DEFINE(JS_NUNBOX32) ;; sparc*-*) + if test ! "$HAVE_64BIT_OS" ; then - ENABLE_JIT=1 NANOJIT_ARCH=Sparc + ENABLE_METHODJIT=1 + ENABLE_MONOIC=1 + ENABLE_POLYIC=1 + ENABLE_METHODJIT_TYPED_ARRAY=1 + AC_DEFINE(JS_CPU_SPARC) + AC_DEFINE(JS_NUNBOX32) + fi ;; - esac - + mips*-*) + ENABLE_METHODJIT=1 diff --git a/www/libxul/files/patch-bug685258 b/www/libxul/files/patch-bug685258 index 598a6ea5f3d5..ead2d3858209 100644 --- a/www/libxul/files/patch-bug685258 +++ b/www/libxul/files/patch-bug685258 @@ -1,17 +1,17 @@ # HG changeset patch # User Oleg Romashin # Parent a2291c212856ad27622416e83c8311b6a33b52f1 Bug 685258 - Pulse audio backend does not check provided playback and crashes r=derf diff --git a/content/media/nsAudioStream.cpp b/content/media/nsAudioStream.cpp --- content/media/nsAudioStream.cpp +++ content/media/nsAudioStream.cpp -@@ -83,7 +83,7 @@ void nsAudioStream::Init(PRInt32 aNumCha - mChannels = aNumChannels; +@@ -429,7 +429,7 @@ nsresult nsNativeAudioStream::Init(PRInt32 aNumChannels, PRInt32 aRate, SampleFo mFormat = aFormat; + if (sa_stream_create_pcm(reinterpret_cast(&mAudioHandle), -- NULL, +- NULL, + "Mozilla", - SA_MODE_WRONLY, + SA_MODE_WRONLY, SA_PCM_FORMAT_S16_NE, aRate, diff --git a/www/libxul/files/patch-bug691898 b/www/libxul/files/patch-bug691898 new file mode 100644 index 000000000000..977cae2b5bff --- /dev/null +++ b/www/libxul/files/patch-bug691898 @@ -0,0 +1,285 @@ +From: Mike Hommey +Date: Sat, 24 Dec 2011 09:56:58 +0100 +Subject: Bug 691898 - Use YARR interpreter instead of PCRE on platforms where + YARR JIT is not supported + +--- + js/src/Makefile.in | 21 +++++++++++++-------- + js/src/vm/RegExpObject-inl.h | 28 ++++++---------------------- + js/src/vm/RegExpObject.cpp | 36 ------------------------------------ + js/src/vm/RegExpObject.h | 27 ++++++--------------------- + js/src/yarr/wtfbridge.h | 2 -- + 5 files changed, 25 insertions(+), 89 deletions(-) + +diff --git a/js/src/Makefile.in b/js/src/Makefile.in +index fc48cbd..49f0bdc 100644 +--- js/src/Makefile.in ++++ js/src/Makefile.in +@@ -416,15 +416,20 @@ CPPSRCS += checks.cc \ + + ifeq (,$(filter arm% sparc %86 x86_64,$(TARGET_CPU))) + +-VPATH += $(srcdir)/yarr/pcre \ ++VPATH += $(srcdir)/assembler \ ++ $(srcdir)/assembler/wtf \ ++ $(srcdir)/yarr \ + $(NULL) + + CPPSRCS += \ +- pcre_compile.cpp \ +- pcre_exec.cpp \ +- pcre_tables.cpp \ +- pcre_xclass.cpp \ +- pcre_ucp_searchfuncs.cpp \ ++ Assertions.cpp \ ++ OSAllocatorOS2.cpp \ ++ OSAllocatorPosix.cpp \ ++ OSAllocatorWin.cpp \ ++ PageBlock.cpp \ ++ YarrInterpreter.cpp \ ++ YarrPattern.cpp \ ++ YarrSyntaxChecker.cpp \ + $(NULL) + else + +@@ -1015,10 +1020,10 @@ endif + # Needed to "configure" it correctly. Unfortunately these + # flags wind up being applied to all code in js/src, not just + # the code in js/src/assembler. +-CXXFLAGS += -DUSE_SYSTEM_MALLOC=1 -DENABLE_ASSEMBLER=1 ++CXXFLAGS += -DUSE_SYSTEM_MALLOC=1 + + ifneq (,$(ENABLE_YARR_JIT)$(ENABLE_TRACEJIT)$(ENABLE_METHODJIT)) +-CXXFLAGS += -DENABLE_JIT=1 ++CXXFLAGS += -DENABLE_JIT=1 -DENABLE_ASSEMBLER=1 + endif + + INCLUDES += -I$(srcdir)/assembler -I$(srcdir)/yarr +diff --git a/js/src/vm/RegExpObject-inl.h b/js/src/vm/RegExpObject-inl.h +index 5f7817d..91108a7 100644 +--- js/src/vm/RegExpObject-inl.h ++++ js/src/vm/RegExpObject-inl.h +@@ -327,6 +327,7 @@ RegExpPrivate::create(JSContext *cx, JSString *source, RegExpFlag flags, TokenSt + return RetType(self); + } + ++#if ENABLE_YARR_JIT + /* This function should be deleted once bad Android platforms phase out. See bug 604774. */ + inline bool + RegExpPrivateCode::isJITRuntimeEnabled(JSContext *cx) +@@ -337,12 +338,12 @@ RegExpPrivateCode::isJITRuntimeEnabled(JSContext *cx) + return true; + #endif + } ++#endif + + inline bool + RegExpPrivateCode::compile(JSContext *cx, JSLinearString &pattern, TokenStream *ts, + uintN *parenCount, RegExpFlag flags) + { +-#if ENABLE_YARR_JIT + /* Parse the pattern. */ + ErrorCode yarrError; + YarrPattern yarrPattern(pattern, bool(flags & IgnoreCaseFlag), bool(flags & MultilineFlag), +@@ -359,7 +360,7 @@ RegExpPrivateCode::compile(JSContext *cx, JSLinearString &pattern, TokenStream * + * case we have to bytecode compile it. + */ + +-#ifdef JS_METHODJIT ++#if ENABLE_YARR_JIT && defined(JS_METHODJIT) + if (isJITRuntimeEnabled(cx) && !yarrPattern.m_containsBackreferences) { + if (!cx->compartment->ensureJaegerCompartmentExists(cx)) + return false; +@@ -371,21 +372,11 @@ RegExpPrivateCode::compile(JSContext *cx, JSLinearString &pattern, TokenStream * + } + #endif + ++#if ENABLE_YARR_JIT + codeBlock.setFallBack(true); ++#endif + byteCode = byteCompile(yarrPattern, cx->compartment->regExpAllocator).get(); + return true; +-#else /* !defined(ENABLE_YARR_JIT) */ +- int error = 0; +- compiled = jsRegExpCompile(pattern.chars(), pattern.length(), +- ignoreCase() ? JSRegExpIgnoreCase : JSRegExpDoNotIgnoreCase, +- multiline() ? JSRegExpMultiline : JSRegExpSingleLine, +- parenCount, &error); +- if (error) { +- reportPCREError(cx, error); +- return false; +- } +- return true; +-#endif + } + + inline bool +@@ -431,19 +422,12 @@ RegExpPrivateCode::execute(JSContext *cx, const jschar *chars, size_t start, siz + else + result = JSC::Yarr::execute(codeBlock, chars, start, length, output); + #else +- result = jsRegExpExecute(cx, compiled, chars, length, start, output, outputCount); ++ result = JSC::Yarr::interpret(byteCode, chars, start, length, output); + #endif + + if (result == -1) + return Success_NotFound; + +-#if !ENABLE_YARR_JIT +- if (result < 0) { +- reportPCREError(cx, result); +- return Error; +- } +-#endif +- + JS_ASSERT(result >= 0); + return Success; + } +diff --git a/js/src/vm/RegExpObject.cpp b/js/src/vm/RegExpObject.cpp +index f75c6a5..7631dd5 100644 +--- js/src/vm/RegExpObject.cpp ++++ js/src/vm/RegExpObject.cpp +@@ -251,7 +251,6 @@ Class js::RegExpClass = { + NULL /* trace */ + }; + +-#if ENABLE_YARR_JIT + void + RegExpPrivateCode::reportYarrError(JSContext *cx, TokenStream *ts, ErrorCode error) + { +@@ -283,41 +282,6 @@ RegExpPrivateCode::reportYarrError(JSContext *cx, TokenStream *ts, ErrorCode err + } + } + +-#else /* !ENABLE_YARR_JIT */ +- +-void +-RegExpPrivateCode::reportPCREError(JSContext *cx, int error) +-{ +-#define REPORT(msg_) \ +- JS_ReportErrorFlagsAndNumberUC(cx, JSREPORT_ERROR, js_GetErrorMessage, NULL, msg_); \ +- return +- switch (error) { +- case -2: REPORT(JSMSG_REGEXP_TOO_COMPLEX); +- case 0: JS_NOT_REACHED("Precondition violation: an error must have occurred."); +- case 1: REPORT(JSMSG_TRAILING_SLASH); +- case 2: REPORT(JSMSG_TRAILING_SLASH); +- case 3: REPORT(JSMSG_REGEXP_TOO_COMPLEX); +- case 4: REPORT(JSMSG_BAD_QUANTIFIER); +- case 5: REPORT(JSMSG_BAD_QUANTIFIER); +- case 6: REPORT(JSMSG_BAD_CLASS_RANGE); +- case 7: REPORT(JSMSG_REGEXP_TOO_COMPLEX); +- case 8: REPORT(JSMSG_BAD_CLASS_RANGE); +- case 9: REPORT(JSMSG_BAD_QUANTIFIER); +- case 10: REPORT(JSMSG_UNMATCHED_RIGHT_PAREN); +- case 11: REPORT(JSMSG_REGEXP_TOO_COMPLEX); +- case 12: REPORT(JSMSG_UNMATCHED_RIGHT_PAREN); +- case 13: REPORT(JSMSG_REGEXP_TOO_COMPLEX); +- case 14: REPORT(JSMSG_MISSING_PAREN); +- case 15: REPORT(JSMSG_BAD_BACKREF); +- case 16: REPORT(JSMSG_REGEXP_TOO_COMPLEX); +- case 17: REPORT(JSMSG_REGEXP_TOO_COMPLEX); +- default: +- JS_NOT_REACHED("Precondition violation: unknown PCRE error code."); +- } +-#undef REPORT +-} +-#endif /* ENABLE_YARR_JIT */ +- + bool + js::ParseRegExpFlags(JSContext *cx, JSString *flagStr, RegExpFlag *flagsOut) + { +diff --git a/js/src/vm/RegExpObject.h b/js/src/vm/RegExpObject.h +index 1449d56..279f3c0 100644 +--- js/src/vm/RegExpObject.h ++++ js/src/vm/RegExpObject.h +@@ -49,8 +49,6 @@ + #include "yarr/Yarr.h" + #if ENABLE_YARR_JIT + #include "yarr/YarrJIT.h" +-#else +-#include "yarr/pcre/pcre.h" + #endif + + namespace js { +@@ -153,48 +151,39 @@ ResetRegExpObject(JSContext *cx, AlreadyIncRefed rep); + /* Abstracts away the gross |RegExpPrivate| backend details. */ + class RegExpPrivateCode + { +-#if ENABLE_YARR_JIT + typedef JSC::Yarr::BytecodePattern BytecodePattern; + typedef JSC::Yarr::ErrorCode ErrorCode; ++ typedef JSC::Yarr::YarrPattern YarrPattern; ++#if ENABLE_YARR_JIT + typedef JSC::Yarr::JSGlobalData JSGlobalData; + typedef JSC::Yarr::YarrCodeBlock YarrCodeBlock; +- typedef JSC::Yarr::YarrPattern YarrPattern; + + /* Note: Native code is valid only if |codeBlock.isFallBack() == false|. */ + YarrCodeBlock codeBlock; +- BytecodePattern *byteCode; +-#else +- JSRegExp *compiled; + #endif ++ BytecodePattern *byteCode; + + public: + RegExpPrivateCode() + : + #if ENABLE_YARR_JIT + codeBlock(), +- byteCode(NULL) +-#else +- compiled(NULL) + #endif ++ byteCode(NULL) + { } + + ~RegExpPrivateCode() { + #if ENABLE_YARR_JIT + codeBlock.release(); ++#endif + if (byteCode) + Foreground::delete_(byteCode); +-#else +- if (compiled) +- jsRegExpFree(compiled); +-#endif + } + + #if ENABLE_YARR_JIT + static inline bool isJITRuntimeEnabled(JSContext *cx); +- void reportYarrError(JSContext *cx, TokenStream *ts, JSC::Yarr::ErrorCode error); +-#else +- void reportPCREError(JSContext *cx, int error); + #endif ++ void reportYarrError(JSContext *cx, TokenStream *ts, JSC::Yarr::ErrorCode error); + + inline bool compile(JSContext *cx, JSLinearString &pattern, TokenStream *ts, uintN *parenCount, + RegExpFlag flags); +@@ -205,11 +194,7 @@ class RegExpPrivateCode + int *output, size_t outputCount); + + static size_t getOutputSize(size_t pairCount) { +-#if ENABLE_YARR_JIT + return pairCount * 2; +-#else +- return pairCount * 3; /* Should be x2, but PCRE has... needs. */ +-#endif + } + }; + +diff --git a/js/src/yarr/wtfbridge.h b/js/src/yarr/wtfbridge.h +index ac41d08..fb8eb86 100644 +--- js/src/yarr/wtfbridge.h ++++ js/src/yarr/wtfbridge.h +@@ -49,9 +49,7 @@ + #include "jsprvtd.h" + #include "vm/String.h" + #include "assembler/wtf/Platform.h" +-#if ENABLE_YARR_JIT + #include "assembler/jit/ExecutableAllocator.h" +-#endif + + namespace JSC { namespace Yarr { + diff --git a/www/libxul/files/patch-bug714312 b/www/libxul/files/patch-bug714312 new file mode 100644 index 000000000000..114144d18388 --- /dev/null +++ b/www/libxul/files/patch-bug714312 @@ -0,0 +1,73 @@ +commit c104d9b +Author: Landry Breuil +Date: Mon Jan 9 17:32:00 2012 -0600 + + Bug 714312 - Use to get endianess on BSD systems, fixing the BSD build. r=ted + + --HG-- + extra : rebase_source : 8b418bdb2d713093d138ffed20bf1630c05f396b +--- + js/src/configure.in | 5 +++++ + js/src/js-config.h.in | 4 ++++ + js/src/jscpucfg.h | 17 +++++++++++++++++ + 3 files changed, 26 insertions(+) + +diff --git js/src/configure.in js/src/configure.in +index 164c896..361b29e 100644 +--- js/src/configure.in ++++ js/src/configure.in +@@ -2934,6 +2934,11 @@ if test "$ac_cv_header_endian_h" = yes; + AC_DEFINE(JS_HAVE_ENDIAN_H) + fi + ++AC_CHECK_HEADERS(machine/endian.h) ++if test "$ac_cv_header_machine_endian_h" = yes; then ++ AC_DEFINE(JS_HAVE_MACHINE_ENDIAN_H) ++fi ++ + AC_CHECK_HEADERS(sys/isa_defs.h) + if test "$ac_cv_header_sys_isa_defs_h" = yes; then + AC_DEFINE(JS_HAVE_SYS_ISA_DEFS_H) +diff --git js/src/js-config.h.in js/src/js-config.h.in +index fb009fa..402262e 100644 +--- js/src/js-config.h.in ++++ js/src/js-config.h.in +@@ -59,6 +59,10 @@ + useable. See jscpucfg.h. */ + #undef JS_HAVE_ENDIAN_H + ++/* Define to 1 if the header is present and ++ useable. See jscpucfg.h. */ ++#undef JS_HAVE_MACHINE_ENDIAN_H ++ + /* Define to 1 if the header is present and + useable. See jscpucfg.h. */ + #undef JS_HAVE_SYS_ISA_DEFS_H +diff --git js/src/jscpucfg.h js/src/jscpucfg.h +index dd32bce..5fd8415 100644 +--- js/src/jscpucfg.h ++++ js/src/jscpucfg.h +@@ -92,6 +92,23 @@ + # error "endian.h does not define __BYTE_ORDER. Cannot determine endianness." + # endif + ++/* BSDs */ ++#elif defined(JS_HAVE_MACHINE_ENDIAN_H) ++# include ++# include ++ ++# if defined(_BYTE_ORDER) ++# if _BYTE_ORDER == _LITTLE_ENDIAN ++# define IS_LITTLE_ENDIAN 1 ++# undef IS_BIG_ENDIAN ++# elif _BYTE_ORDER == _BIG_ENDIAN ++# undef IS_LITTLE_ENDIAN ++# define IS_BIG_ENDIAN 1 ++# endif ++# else /* !defined(_BYTE_ORDER) */ ++# error "machine/endian.h does not define _BYTE_ORDER. Cannot determine endianness." ++# endif ++ + #elif defined(JS_HAVE_SYS_ISA_DEFS_H) + # include + diff --git a/www/libxul/files/patch-bug725655 b/www/libxul/files/patch-bug725655 new file mode 100644 index 000000000000..ec331a5ccb73 --- /dev/null +++ b/www/libxul/files/patch-bug725655 @@ -0,0 +1,53 @@ +commit 18b9c9d +Author: Martin Stránský +Date: Fri Feb 10 16:07:41 2012 +0100 + + Bug 725655 - gcc 4.7 build failures (missing headers). r=benjamin +--- + ipc/chromium/src/base/file_util_linux.cc | 3 +++ + ipc/chromium/src/base/message_pump_libevent.cc | 3 +++ + ipc/chromium/src/base/time_posix.cc | 3 +++ + 3 files changed, 9 insertions(+) + +diff --git ipc/chromium/src/base/file_util_linux.cc ipc/chromium/src/base/file_util_linux.cc +index cca706f..171e44f 100644 +--- ipc/chromium/src/base/file_util_linux.cc ++++ ipc/chromium/src/base/file_util_linux.cc +@@ -5,6 +5,9 @@ + #include "base/file_util.h" + + #include ++#if defined(ANDROID) || defined(OS_POSIX) ++#include ++#endif + + #include + #include +diff --git ipc/chromium/src/base/message_pump_libevent.cc ipc/chromium/src/base/message_pump_libevent.cc +index 6194f79..9f31dbb 100644 +--- ipc/chromium/src/base/message_pump_libevent.cc ++++ ipc/chromium/src/base/message_pump_libevent.cc +@@ -6,6 +6,9 @@ + + #include + #include ++#if defined(ANDROID) || defined(OS_POSIX) ++#include ++#endif + + #include "eintr_wrapper.h" + #include "base/logging.h" +diff --git ipc/chromium/src/base/time_posix.cc ipc/chromium/src/base/time_posix.cc +index 8d1a1d5..abf2a56 100644 +--- ipc/chromium/src/base/time_posix.cc ++++ ipc/chromium/src/base/time_posix.cc +@@ -13,6 +13,9 @@ + #else + #include + #endif ++#if defined(ANDROID) || defined(OS_POSIX) ++#include ++#endif + + #include + diff --git a/www/libxul/files/patch-bug728968 b/www/libxul/files/patch-bug728968 new file mode 100644 index 000000000000..01638e8fd119 --- /dev/null +++ b/www/libxul/files/patch-bug728968 @@ -0,0 +1,50 @@ +commit 4075972 +Author: Mike Hommey +Date: Thu Feb 23 11:00:46 2012 +0100 + + Bug 728968 - Detect clock_gettime when it's not in -lrt. r=khuey +--- + configure.in | 29 ++++++++++++++++------------- + 1 file changed, 16 insertions(+), 13 deletions(-) + +diff --git configure.in configure.in +index 3ba7e2f..3d0614c 100644 +--- configure.in ++++ configure.in +@@ -3728,20 +3728,23 @@ AC_CHECK_FUNCS(random strerror lchown fchmod snprintf statvfs memmove rint stat6 + AC_CHECK_FUNCS(flockfile getpagesize) + AC_CHECK_FUNCS(localtime_r strtok_r) + +-dnl check for clock_gettime(), the CLOCK_MONOTONIC clock, and -lrt +-_SAVE_LDFLAGS=$LDFLAGS +-LDFLAGS="$LDFLAGS -lrt" +-AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC) and -lrt, +- ac_cv_have_clock_monotonic, +- [AC_TRY_LINK([#include ], +- [ struct timespec ts; +- clock_gettime(CLOCK_MONOTONIC, &ts); ], +- ac_cv_have_clock_monotonic=yes, +- ac_cv_have_clock_monotonic=no)]) +-LDFLAGS=$_SAVE_LDFLAGS +-if test "$ac_cv_have_clock_monotonic" = "yes"; then ++dnl check for clock_gettime(), the CLOCK_MONOTONIC clock ++AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC), ++ ac_cv_clock_monotonic, ++ [for libs in "" -lrt; do ++ _SAVE_LDFLAGS="$LDFLAGS" ++ LDFLAGS="$LDFLAGS $libs" ++ AC_TRY_LINK([#include ], ++ [ struct timespec ts; ++ clock_gettime(CLOCK_MONOTONIC, &ts); ], ++ ac_cv_clock_monotonic=$libs ++ break, ++ ac_cv_clock_monotonic=no) ++ LDFLAGS="$_SAVE_LDFLAGS" ++ done]) ++if test "$ac_cv_clock_monotonic" != "no"; then + HAVE_CLOCK_MONOTONIC=1 +- REALTIME_LIBS=-lrt ++ REALTIME_LIBS=$ac_cv_clock_monotonic + AC_DEFINE(HAVE_CLOCK_MONOTONIC) + AC_SUBST(HAVE_CLOCK_MONOTONIC) + AC_SUBST(REALTIME_LIBS) diff --git a/www/libxul/files/patch-bug729155 b/www/libxul/files/patch-bug729155 new file mode 100644 index 000000000000..a8f2a6623493 --- /dev/null +++ b/www/libxul/files/patch-bug729155 @@ -0,0 +1,18 @@ +--- dom/plugins/ipc/PluginMessageUtils.cpp ++++ dom/plugins/ipc/PluginMessageUtils.cpp +@@ -114,6 +114,7 @@ MediateRace(const RPCChannel::Message& parent, + } + } + ++#if defined(OS_LINUX) + static string + ReplaceAll(const string& haystack, const string& needle, const string& with) + { +@@ -127,6 +128,7 @@ ReplaceAll(const string& haystack, const string& needle, const string& with) + + return munged; + } ++#endif + + string + MungePluginDsoPath(const string& path) diff --git a/www/libxul/files/patch-bug741737 b/www/libxul/files/patch-bug741737 new file mode 100644 index 000000000000..b00aef3d1382 --- /dev/null +++ b/www/libxul/files/patch-bug741737 @@ -0,0 +1,90 @@ +changeset: 91900:eee73897136b +user: Martin Stransky +date: Tue Apr 17 19:57:40 2012 -0400 +summary: Bug 741737 - Configure libvpx with pkgconfig. r=khuey, a=npotb + +diff --git a/configure.in b/configure.in +--- configure.in ++++ configure.in +@@ -5588,12 +5588,10 @@ MOZ_ARG_DISABLE_BOOL(webm, + + dnl system libvpx Support + dnl ======================================================== +-MOZ_ARG_WITH_STRING(system-libvpx, +-[ --with-system-libvpx=[PFX] +- Use system libvpx [installed at prefix PFX]], +- LIBVPX_DIR=$withval) ++MOZ_ARG_WITH_BOOL(system-libvpx, ++[ --with-system-libvpx Use system libvpx (located with pkgconfig)], ++ MOZ_NATIVE_LIBVPX=1) + +-MOZ_NATIVE_LIBVPX= + MOZ_LIBVPX_INCLUDES= + MOZ_LIBVPX_LIBS= + +@@ -5606,53 +5604,18 @@ if test -n "$MOZ_WEBM"; then + AC_DEFINE(MOZ_VP8_ENCODER) + fi + +- if test -n "$LIBVPX_DIR" -a "$LIBVPX_DIR" != no; then +- _SAVE_CFLAGS=$CFLAGS +- _SAVE_LDFLAGS=$LDFLAGS +- _SAVE_LIBS=$LIBS +- if test "${LIBVPX_DIR}" = "yes"; then +- LIBVPX_DIR=/usr +- fi +- CFLAGS="-I${LIBVPX_DIR}/include $CFLAGS" +- LDFLAGS="-L${LIBVPX_DIR}/lib $LDFLAGS" +- MOZ_NATIVE_LIBVPX_DEC_TEST= +- MOZ_CHECK_HEADER(vpx/vpx_decoder.h, +- [if test ! -f "${LIBVPX_DIR}/include/vpx/vpx_decoder.h"; then +- AC_MSG_ERROR([vpx/vpx_decoder.h found, but is not in ${LIBVPX_DIR}/include]) +- fi], +- AC_MSG_ERROR([--with-system-libvpx requested but vpx/vpx_decoder.h not found])) +- AC_CHECK_LIB(vpx, vpx_codec_dec_init_ver, +- [MOZ_NATIVE_LIBVPX_DEC_TEST=1], +- ([--with-system-libvpx requested but symbol vpx_codec_dec_init_ver not found])) +- if test -n "$MOZ_NATIVE_LIBVPX_DEC_TEST" ; then +- AC_MSG_CHECKING([for libvpx version >= v0.9.7]) +- dnl We need at least v0.9.7 to fix several crash bugs (for which we +- dnl had local patches prior to v0.9.7). +- dnl +- dnl This is a terrible test for the library version, but we don't +- dnl have a good one. There is no version number in a public header, +- dnl and testing the headers still doesn't guarantee we link against +- dnl the right version. While we could call vpx_codec_version() at +- dnl run-time, that would break cross-compiling. There are no +- dnl additional exported symbols between the v0.9.7 release and the +- dnl v0.9.6 one to check for. +- AC_TRY_COMPILE([ +- #include +- #if !defined(VPX_CODEC_USE_INPUT_PARTITION) +- #error "test failed." +- #endif +- ], +- [return 0;], +- [AC_MSG_RESULT([yes]) +- MOZ_NATIVE_LIBVPX=1 +- MOZ_LIBVPX_INCLUDES="-I${LIBVPX_DIR}/include" +- MOZ_LIBVPX_LIBS="-L${LIBVPX_DIR}/lib -lvpx"], +- [AC_MSG_RESULT([no]) +- AC_MSG_ERROR([--with-system-libvpx requested but it is not v0.9.7 or later])]) +- fi +- CFLAGS=$_SAVE_CFLAGS +- LDFLAGS=$_SAVE_LDFLAGS +- LIBS=$_SAVE_LIBS ++ if test -n "$MOZ_NATIVE_LIBVPX"; then ++ dnl ============================ ++ dnl === libvpx Version check === ++ dnl ============================ ++ dnl Check to see if we have a system libvpx package. ++ PKG_CHECK_MODULES(LIBVPX, vpx >= 0.9.7) ++ ++ MOZ_CHECK_HEADER([vpx/vpx_decoder.h], [], ++ [AC_MSG_ERROR([Couldn't find vpx/vpx_decoder.h which is required for build with system libvpx. Use --without-system-libvpx to build with in-tree libvpx.])]) ++ ++ AC_CHECK_LIB(vpx, vpx_codec_dec_init_ver, [], ++ [AC_MSG_ERROR([--with-system-libvpx requested but symbol vpx_codec_dec_init_ver not found])]) + fi + fi + diff --git a/www/libxul/files/patch-bug753046 b/www/libxul/files/patch-bug753046 new file mode 100644 index 000000000000..48c16e5db2e1 --- /dev/null +++ b/www/libxul/files/patch-bug753046 @@ -0,0 +1,1201 @@ +# Bug 753046 - Add support for DragonFly/NetBSD + +$NetBSD: patch-dom_plugins_ipc_PluginModuleChild.cpp,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- dom/plugins/ipc/PluginModuleChild.cpp.orig 2011-12-20 23:28:14.000000000 +0000 ++++ dom/plugins/ipc/PluginModuleChild.cpp +@@ -5,6 +5,7 @@ + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + + #ifdef MOZ_WIDGET_QT ++#include // for _exit() + #include + #include "nsQAppInstance.h" + #include "NestedLoopTimer.h" +@@ -228,7 +228,7 @@ PluginModuleChild::Init(const std::strin + + // TODO: use PluginPRLibrary here + +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + mShutdownFunc = + (NP_PLUGINSHUTDOWN) PR_FindFunctionSymbol(mLibrary, "NP_Shutdown"); + +@@ -1790,7 +1790,7 @@ PluginModuleChild::AnswerNP_GetEntryPoin + PLUGIN_LOG_DEBUG_METHOD; + AssertPluginThread(); + +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + return true; + #elif defined(OS_WIN) || defined(OS_MACOSX) + *_retval = mGetEntryPointsFunc(&mFunctions); +@@ -1823,7 +1823,7 @@ PluginModuleChild::AnswerNP_Initialize(N + SendBackUpXResources(FileDescriptor(xSocketFd, false/*don't close*/)); + #endif + +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + *_retval = mInitializeFunc(&sBrowserFuncs, &mFunctions); + return true; + #elif defined(OS_WIN) || defined(OS_MACOSX) +$NetBSD: patch-dom_plugins_ipc_PluginModuleChild.h,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- dom/plugins/ipc/PluginModuleChild.h.orig 2011-12-20 23:28:14.000000000 +0000 ++++ dom/plugins/ipc/PluginModuleChild.h +@@ -340,7 +340,7 @@ private: + + // we get this from the plugin + NP_PLUGINSHUTDOWN mShutdownFunc; +-#ifdef OS_LINUX ++#if defined(OS_LINUX) || defined(OS_BSD) + NP_PLUGINUNIXINIT mInitializeFunc; + #elif defined(OS_WIN) || defined(OS_MACOSX) + NP_PLUGININIT mInitializeFunc; +$NetBSD: patch-ipc_chromium_Makefile.in,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/Makefile.in.orig 2012-02-16 06:40:33.000000000 +0000 ++++ ipc/chromium/Makefile.in +@@ -278,6 +278,34 @@ endif + + endif # } OS_LINUX + ++ifdef OS_BSD # { ++ ++CPPSRCS += \ ++ atomicops_internals_x86_gcc.cc \ ++ file_util_linux.cc \ ++ process_util_bsd.cc \ ++ time_posix.cc \ ++ $(NULL) ++ ++ifdef MOZ_ENABLE_GTK2 ++CPPSRCS += \ ++ message_pump_glib.cc \ ++ $(NULL) ++endif ++ ++ifdef MOZ_ENABLE_QT ++MOCSRCS = \ ++ moc_message_pump_qt.cc \ ++ $(NULL) ++ ++CPPSRCS += \ ++ $(MOCSRCS) \ ++ message_pump_qt.cc \ ++ $(NULL) ++endif ++ ++endif # } OS_BSD ++ + # libevent + + ifndef MOZ_NATIVE_LIBEVENT # { +$NetBSD: patch-ipc_chromium_chromium-config.mk,v 1.2 2012/03/15 08:30:06 ryoon Exp $ + +--- ipc/chromium/chromium-config.mk.orig 2012-02-16 07:40:33.000000000 +0100 ++++ ipc/chromium/chromium-config.mk 2012-03-11 11:05:40.397182000 +0100 +@@ -56,17 +56,6 @@ + -I$(DEPTH)/ipc/ipdl/_ipdlheaders \ + $(NULL) + +-ifeq ($(OS_ARCH),Darwin) # { +- +-OS_MACOSX = 1 +-OS_POSIX = 1 +- +-DEFINES += \ +- -DOS_MACOSX=1 \ +- -DOS_POSIX=1 \ +- $(NULL) +- +-else # } { + ifeq ($(OS_ARCH),WINNT) # { + OS_LIBS += $(call EXPAND_LIBNAME,psapi shell32 dbghelp) + +@@ -93,13 +82,65 @@ + endif + + else # } { +- +-OS_LINUX = 1 + OS_POSIX = 1 ++DEFINES += -DOS_POSIX=1 ++ ++ifeq ($(OS_ARCH),Darwin) # { ++ ++OS_MACOSX = 1 ++DEFINES += \ ++ -DOS_MACOSX=1 \ ++ $(NULL) ++ ++else # } { ++ifeq ($(OS_ARCH),DragonFly) # { ++ ++OS_DRAGONFLY = 1 ++OS_BSD = 1 ++OS_LIBS += $(call EXPAND_LIBNAME,kvm) ++DEFINES += \ ++ -DOS_DRAGONFLY=1 \ ++ -DOS_BSD=1 \ ++ $(NULL) ++ ++else # } { ++ifeq ($(OS_ARCH),FreeBSD) # { ++ ++OS_FREEBSD = 1 ++OS_BSD = 1 ++OS_LIBS += $(call EXPAND_LIBNAME,kvm) ++DEFINES += \ ++ -DOS_FREEBSD=1 \ ++ -DOS_BSD=1 \ ++ $(NULL) + ++else # } { ++ifeq ($(OS_ARCH),NetBSD) # { ++ ++OS_NETBSD = 1 ++OS_BSD = 1 ++OS_LIBS += $(call EXPAND_LIBNAME,kvm) ++DEFINES += \ ++ -DOS_NETBSD=1 \ ++ -DOS_BSD=1 \ ++ $(NULL) ++ ++else # } { ++ifeq ($(OS_ARCH),OpenBSD) # { ++ ++OS_OPENBSD = 1 ++OS_BSD = 1 ++OS_LIBS += $(call EXPAND_LIBNAME,kvm) ++DEFINES += \ ++ -DOS_OPENBSD=1 \ ++ -DOS_BSD=1 \ ++ $(NULL) ++ ++else # } { ++ ++OS_LINUX = 1 + DEFINES += \ + -DOS_LINUX=1 \ +- -DOS_POSIX=1 \ + $(NULL) + + # NB: to stop gcc warnings about exporting template instantiation +@@ -107,4 +147,8 @@ + + endif # } + endif # } ++endif # } ++endif # } ++endif # } ++endif # } + +$NetBSD: patch-ipc_chromium_src_base_base__paths.h,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/base_paths.h.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/base/base_paths.h +@@ -13,7 +13,7 @@ + #include "base/base_paths_win.h" + #elif defined(OS_MACOSX) + #include "base/base_paths_mac.h" +-#elif defined(OS_LINUX) ++#elif defined(OS_LINUX) || defined(OS_BSD) + #include "base/base_paths_linux.h" + #endif + #include "base/path_service.h" +$NetBSD: patch-ipc_chromium_src_base_debug__util__posic.cc,v 1.3 2012/04/01 15:18:45 ryoon Exp $ + +--- ipc/chromium/src/base/debug_util_posix.cc.orig 2012-03-13 01:36:53.000000000 +0000 ++++ ipc/chromium/src/base/debug_util_posix.cc +@@ -5,7 +5,7 @@ + #include "build/build_config.h" + #include "base/debug_util.h" + +-#define MOZ_HAVE_EXECINFO_H (!defined(ANDROID) && !defined(__OpenBSD__)) ++#define MOZ_HAVE_EXECINFO_H (defined(OS_LINUX) && !defined(ANDROID)) + + #include + #include +@@ -17,9 +17,16 @@ + #include + #if MOZ_HAVE_EXECINFO_H + #include ++#endif ++ ++#if defined(OS_MACOSX) || defined(OS_BSD) + #include + #endif + ++#if defined(OS_DRAGONFLY) || defined(OS_FREEBSD) ++#include ++#endif ++ + #include "base/basictypes.h" + #include "base/eintr_wrapper.h" + #include "base/logging.h" +@@ -32,7 +37,7 @@ bool DebugUtil::SpawnDebuggerOnProcess(u + return false; + } + +-#if defined(OS_MACOSX) ++#if defined(OS_MACOSX) || defined(OS_BSD) + + // Based on Apple's recommended method as described in + // http://developer.apple.com/qa/qa2004/qa1361.html +@@ -71,7 +76,15 @@ bool DebugUtil::BeingDebugged() { + + // This process is being debugged if the P_TRACED flag is set. + is_set = true; ++#if defined(OS_DRAGONFLY) ++ being_debugged = (info.kp_flags & P_TRACED) != 0; ++#elif defined(OS_FREEBSD) ++ being_debugged = (info.ki_flag & P_TRACED) != 0; ++#elif defined(OS_OPENBSD) ++ being_debugged = (info.p_flag & P_TRACED) != 0; ++#else + being_debugged = (info.kp_proc.p_flag & P_TRACED) != 0; ++#endif + return being_debugged; + } + +diff --git ipc/chromium/src/base/dir_reader_bsd.h ipc/chromium/src/base/dir_reader_bsd.h +new file mode 100644 +index 0000000..3fc1a87 +--- /dev/null ++++ ipc/chromium/src/base/dir_reader_bsd.h +@@ -0,0 +1,112 @@ ++// Copyright (c) 2010 The Chromium Authors. All rights reserved. ++// Use of this source code is governed by a BSD-style license that can be ++// found in the LICENSE file. ++ ++// derived from dir_reader_linux.h ++ ++#ifndef BASE_DIR_READER_BSD_H_ ++#define BASE_DIR_READER_BSD_H_ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include "base/logging.h" ++#include "base/eintr_wrapper.h" ++ ++// See the comments in dir_reader_posix.h about this. ++ ++namespace base { ++ ++class DirReaderBSD { ++ public: ++ explicit DirReaderBSD(const char* directory_path) ++#ifdef O_DIRECTORY ++ : fd_(open(directory_path, O_RDONLY | O_DIRECTORY)), ++#else ++ : fd_(open(directory_path, O_RDONLY)), ++#endif ++ offset_(0), ++ size_(0) { ++ memset(buf_, 0, sizeof(buf_)); ++ } ++ ++ ~DirReaderBSD() { ++ if (fd_ >= 0) { ++ if (HANDLE_EINTR(close(fd_))) ++ DLOG(ERROR) << "Failed to close directory handle"; ++ } ++ } ++ ++ bool IsValid() const { ++ return fd_ >= 0; ++ } ++ ++ // Move to the next entry returning false if the iteration is complete. ++ bool Next() { ++ if (size_) { ++ struct dirent* dirent = reinterpret_cast(&buf_[offset_]); ++#ifdef OS_DRAGONFLY ++ offset_ += _DIRENT_DIRSIZ(dirent); ++#else ++ offset_ += dirent->d_reclen; ++#endif ++ } ++ ++ if (offset_ != size_) ++ return true; ++ ++#ifdef OS_OPENBSD ++ const int r = getdirentries(fd_, buf_, sizeof(buf_), basep_); ++#else ++ const int r = getdents(fd_, buf_, sizeof(buf_)); ++#endif ++ if (r == 0) ++ return false; ++ if (r == -1) { ++#ifdef OS_OPENBSD ++ DLOG(ERROR) << "getdirentries returned an error: " << errno; ++#else ++ DLOG(ERROR) << "getdents returned an error: " << errno; ++#endif ++ return false; ++ } ++ size_ = r; ++ offset_ = 0; ++ return true; ++ } ++ ++ const char* name() const { ++ if (!size_) ++ return NULL; ++ ++ const struct dirent* dirent = ++ reinterpret_cast(&buf_[offset_]); ++ return dirent->d_name; ++ } ++ ++ int fd() const { ++ return fd_; ++ } ++ ++ static bool IsFallback() { ++ return false; ++ } ++ ++ private: ++ const int fd_; ++ char buf_[512]; ++#ifdef OS_OPENBSD ++ off_t *basep_; ++#endif ++ size_t offset_, size_; ++ ++ DISALLOW_COPY_AND_ASSIGN(DirReaderBSD); ++}; ++ ++} // namespace base ++ ++#endif // BASE_DIR_READER_BSD_H_ +diff --git ipc/chromium/src/base/dir_reader_posix.h ipc/chromium/src/base/dir_reader_posix.h +index 9a34492..62b280c 100644 +--- ipc/chromium/src/base/dir_reader_posix.h ++++ ipc/chromium/src/base/dir_reader_posix.h +@@ -18,6 +18,8 @@ + + #if defined(OS_LINUX) + #include "base/dir_reader_linux.h" ++#elif defined(OS_BSD) ++#include "base/dir_reader_bsd.h" + #else + #include "base/dir_reader_fallback.h" + #endif +@@ -26,6 +28,8 @@ + + #if defined(OS_LINUX) + typedef DirReaderLinux DirReaderPosix; ++#elif defined(OS_BSD) ++typedef DirReaderBSD DirReaderPosix; + #else + typedef DirReaderFallback DirReaderPosix; + #endif +diff --git ipc/chromium/src/base/file_util_linux.cc ipc/chromium/src/base/file_util_linux.cc +index 171e44f..0c6dfcc 100644 +--- ipc/chromium/src/base/file_util_linux.cc ++++ ipc/chromium/src/base/file_util_linux.cc +@@ -28,7 +28,7 @@ bool GetTempDir(FilePath* path) { + } + + bool GetShmemTempDir(FilePath* path) { +-#ifdef ANDROID ++#if defined(ANDROID) || defined(OS_BSD) + return GetTempDir(path); + #else + *path = FilePath("/dev/shm"); +$NetBSD: patch-ipc_chromium_src_base_file__util__posix.cc,v 1.2 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/file_util_posix.cc.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/base/file_util_posix.cc +@@ -31,7 +31,7 @@ + #include "base/time.h" + + // FreeBSD/OpenBSD lacks stat64, but its stat handles files >2GB just fine +-#if defined(OS_FREEBSD) || defined(OS_OPENBSD) ++#ifndef HAVE_STAT64 + #define stat64 stat + #endif + +$NetBSD: patch-ipc_chromium_src_base_message__loop.cc,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/message_loop.cc.orig 2012-02-16 07:40:33.000000000 +0100 ++++ ipc/chromium/src/base/message_loop.cc 2012-02-21 21:24:41.000000000 +0100 +@@ -19,7 +19,7 @@ + #if defined(OS_POSIX) + #include "base/message_pump_libevent.h" + #endif +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + #ifdef MOZ_WIDGET_GTK2 + #include "base/message_pump_glib.h" + #endif +@@ -119,7 +119,7 @@ + if (type_ == TYPE_UI) { + #if defined(OS_MACOSX) + pump_ = base::MessagePumpMac::Create(); +-#elif defined(OS_LINUX) ++#elif defined(OS_LINUX) || defined(OS_BSD) + pump_ = new base::MessagePumpForUI(); + #endif // OS_LINUX + } else if (type_ == TYPE_IO) { +$NetBSD: patch-ipc_chromium_src_base_platform__thread.h,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/base/platform_thread.h +@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE + #elif defined(OS_POSIX) + #include + typedef pthread_t PlatformThreadHandle; +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_OPENBSD) + #include + typedef pid_t PlatformThreadId; ++#elif defined(OS_BSD) ++typedef lwpid_t PlatformThreadId; + #elif defined(OS_MACOSX) + #include + typedef mach_port_t PlatformThreadId; +$NetBSD: patch-ipc_chromium_src_base_platform__thread__posix.cc,v 1.4 2012/04/01 15:18:45 ryoon Exp $ + +--- ipc/chromium/src/base/platform_thread_posix.cc.orig 2012-03-13 01:36:53.000000000 +0000 ++++ ipc/chromium/src/base/platform_thread_posix.cc +@@ -9,9 +9,23 @@ + + #if defined(OS_MACOSX) + #include ++#elif defined(OS_NETBSD) ++#include + #elif defined(OS_LINUX) + #include + #include ++#elif defined(OS_DRAGONFLY) ++#include ++#elif defined(OS_FREEBSD) ++#include ++#if __FreeBSD_version > 802500 ++#include ++#else ++_Pragma("GCC visibility push(default)") ++extern "C" int thr_self(long *); ++_Pragma("GCC visibility pop") ++#endif ++#include + #endif + + #if defined(OS_MACOSX) +@@ -38,9 +45,20 @@ + // into the kernel. + #if defined(OS_MACOSX) + return mach_thread_self(); +-#elif defined (__OpenBSD__) ++#elif defined(OS_NETBSD) ++ return _lwp_self(); ++#elif defined(OS_DRAGONFLY) ++ return lwp_gettid(); ++#elif defined(OS_FREEBSD) ++# if __FreeBSD_version > 900030 ++ return pthread_getthreadid_np(); ++# else ++ long lwpid; ++ thr_self(&lwpid); ++ return lwpid; ++# endif ++#elif defined(OS_OPENBSD) +- // TODO(BSD): find a better thread ID +- return (intptr_t)(pthread_self()); ++ return (intptr_t) (pthread_self()); + #elif defined(OS_LINUX) + return syscall(__NR_gettid); + #endif +$NetBSD: patch-ipc_chromium_src_base_process__util.h,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/process_util.h.orig 2011-12-21 00:28:19.000000000 +0100 ++++ ipc/chromium/src/base/process_util.h 2012-01-31 13:14:54.000000000 +0100 +@@ -280,6 +280,7 @@ class NamedProcessIterator { + const ProcessEntry* NextProcessEntry(); + + private: ++#if !defined(OS_BSD) + // Determines whether there's another process (regardless of executable) + // left in the list of all processes. Returns true and sets entry_ to + // that process's info if there is one, false otherwise. +@@ -292,18 +292,24 @@ + void InitProcessEntry(ProcessEntry* entry); + + std::wstring executable_name_; ++#endif + + #if defined(OS_WIN) + HANDLE snapshot_; + bool started_iteration_; + #elif defined(OS_LINUX) + DIR *procfs_dir_; ++#elif defined(OS_BSD) ++ std::vector content; ++ size_t nextEntry; + #elif defined(OS_MACOSX) + std::vector kinfo_procs_; + size_t index_of_kinfo_proc_; + #endif ++#if !defined(OS_BSD) + ProcessEntry entry_; + const ProcessFilter* filter_; ++#endif + + DISALLOW_EVIL_CONSTRUCTORS(NamedProcessIterator); + }; +$NetBSD: patch-ipc_chromium_src_base_process__util__bsd.cc,v 1.4 2012/04/01 15:18:45 ryoon Exp $ + +--- ipc/chromium/src/base/process_util_bsd.cc.orig 2012-04-01 00:04:28.000000000 +0000 ++++ ipc/chromium/src/base/process_util_bsd.cc +@@ -0,0 +1,318 @@ ++// Copyright (c) 2008 The Chromium Authors. All rights reserved. ++// Use of this source code is governed by a BSD-style license that can be ++// found in the LICENSE file. ++ ++// derived from process_util_linux.cc and process_util_mac.cc ++ ++#include "base/process_util.h" ++ ++#include ++#include ++#include ++#if defined(OS_DRAGONFLY) || defined(OS_FREEBSD) ++#include ++#endif ++ ++#include ++#include ++#include ++#include ++ ++#include ++ ++#include "base/debug_util.h" ++#include "base/eintr_wrapper.h" ++#include "base/file_util.h" ++#include "base/logging.h" ++#include "base/string_tokenizer.h" ++#include "base/string_util.h" ++ ++#if (defined(_POSIX_SPAWN) && _POSIX_SPAWN > 0) \ ++ || (defined(OS_NETBSD) && __NetBSD_Version__ >= 599006500) ++#define HAVE_POSIX_SPAWN 1 ++#endif ++ ++#ifndef __dso_public ++# ifdef __exported ++# define __dso_public __exported ++# else ++# define __dso_public __attribute__((__visibility__("default"))) ++# endif ++#endif ++ ++#ifdef HAVE_POSIX_SPAWN ++#include ++extern "C" char **environ __dso_public; ++#endif ++ ++namespace { ++ ++enum ParsingState { ++ KEY_NAME, ++ KEY_VALUE ++}; ++ ++static mozilla::EnvironmentLog gProcessLog("MOZ_PROCESS_LOG"); ++ ++} // namespace ++ ++namespace base { ++ ++#ifdef HAVE_POSIX_SPAWN ++ ++void FreeEnvVarsArray(char* array[], int length) ++{ ++ for (int i = 0; i < length; i++) { ++ free(array[i]); ++ } ++ delete[] array; ++} ++ ++bool LaunchApp(const std::vector& argv, ++ const file_handle_mapping_vector& fds_to_remap, ++ bool wait, ProcessHandle* process_handle) { ++ return LaunchApp(argv, fds_to_remap, environment_map(), ++ wait, process_handle); ++} ++ ++bool LaunchApp(const std::vector& argv, ++ const file_handle_mapping_vector& fds_to_remap, ++ const environment_map& env_vars_to_set, ++ bool wait, ProcessHandle* process_handle, ++ ProcessArchitecture arch) { ++ bool retval = true; ++ ++ char* argv_copy[argv.size() + 1]; ++ for (size_t i = 0; i < argv.size(); i++) { ++ argv_copy[i] = const_cast(argv[i].c_str()); ++ } ++ argv_copy[argv.size()] = NULL; ++ ++ // Make sure we don't leak any FDs to the child process by marking all FDs ++ // as close-on-exec. ++ SetAllFDsToCloseOnExec(); ++ ++ // Copy environment to a new char array and add the variables ++ // in env_vars_to_set. ++ // Existing variables are overwritten by env_vars_to_set. ++ int pos = 0; ++ environment_map combined_env_vars = env_vars_to_set; ++ while(environ[pos] != NULL) { ++ std::string varString = environ[pos]; ++ std::string varName = varString.substr(0, varString.find_first_of('=')); ++ std::string varValue = varString.substr(varString.find_first_of('=') + 1); ++ if (combined_env_vars.find(varName) == combined_env_vars.end()) { ++ combined_env_vars[varName] = varValue; ++ } ++ pos++; ++ } ++ int varsLen = combined_env_vars.size() + 1; ++ ++ char** vars = new char*[varsLen]; ++ int i = 0; ++ for (environment_map::const_iterator it = combined_env_vars.begin(); ++ it != combined_env_vars.end(); ++it) { ++ std::string entry(it->first); ++ entry += "="; ++ entry += it->second; ++ vars[i] = strdup(entry.c_str()); ++ i++; ++ } ++ vars[i] = NULL; ++ ++ posix_spawn_file_actions_t file_actions; ++ if (posix_spawn_file_actions_init(&file_actions) != 0) { ++ FreeEnvVarsArray(vars, varsLen); ++ return false; ++ } ++ ++ // Turn fds_to_remap array into a set of dup2 calls. ++ for (file_handle_mapping_vector::const_iterator it = fds_to_remap.begin(); ++ it != fds_to_remap.end(); ++ ++it) { ++ int src_fd = it->first; ++ int dest_fd = it->second; ++ ++ if (src_fd == dest_fd) { ++ int flags = fcntl(src_fd, F_GETFD); ++ if (flags != -1) { ++ fcntl(src_fd, F_SETFD, flags & ~FD_CLOEXEC); ++ } ++ } else { ++ if (posix_spawn_file_actions_adddup2(&file_actions, src_fd, dest_fd) != 0) { ++ posix_spawn_file_actions_destroy(&file_actions); ++ FreeEnvVarsArray(vars, varsLen); ++ return false; ++ } ++ } ++ } ++ ++ pid_t pid = 0; ++ int spawn_succeeded = (posix_spawnp(&pid, ++ argv_copy[0], ++ &file_actions, ++ NULL, ++ argv_copy, ++ vars) == 0); ++ ++ FreeEnvVarsArray(vars, varsLen); ++ ++ posix_spawn_file_actions_destroy(&file_actions); ++ ++ bool process_handle_valid = pid > 0; ++ if (!spawn_succeeded || !process_handle_valid) { ++ retval = false; ++ } else { ++ if (wait) ++ HANDLE_EINTR(waitpid(pid, 0, 0)); ++ ++ if (process_handle) ++ *process_handle = pid; ++ } ++ ++ return retval; ++} ++ ++bool LaunchApp(const CommandLine& cl, ++ bool wait, bool start_hidden, ProcessHandle* process_handle) { ++ // TODO(playmobil): Do we need to respect the start_hidden flag? ++ file_handle_mapping_vector no_files; ++ return LaunchApp(cl.argv(), no_files, wait, process_handle); ++} ++ ++#else // no posix_spawn, use fork/exec ++ ++bool LaunchApp(const std::vector& argv, ++ const file_handle_mapping_vector& fds_to_remap, ++ bool wait, ProcessHandle* process_handle) { ++ return LaunchApp(argv, fds_to_remap, environment_map(), ++ wait, process_handle); ++} ++ ++bool LaunchApp(const std::vector& argv, ++ const file_handle_mapping_vector& fds_to_remap, ++ const environment_map& env_vars_to_set, ++ bool wait, ProcessHandle* process_handle, ++ ProcessArchitecture arch) { ++ scoped_array argv_cstr(new char*[argv.size() + 1]); ++ // Illegal to allocate memory after fork and before execvp ++ InjectiveMultimap fd_shuffle1, fd_shuffle2; ++ fd_shuffle1.reserve(fds_to_remap.size()); ++ fd_shuffle2.reserve(fds_to_remap.size()); ++ ++ pid_t pid = fork(); ++ if (pid < 0) ++ return false; ++ ++ if (pid == 0) { ++ for (file_handle_mapping_vector::const_iterator ++ it = fds_to_remap.begin(); it != fds_to_remap.end(); ++it) { ++ fd_shuffle1.push_back(InjectionArc(it->first, it->second, false)); ++ fd_shuffle2.push_back(InjectionArc(it->first, it->second, false)); ++ } ++ ++ if (!ShuffleFileDescriptors(&fd_shuffle1)) ++ _exit(127); ++ ++ CloseSuperfluousFds(fd_shuffle2); ++ ++ for (environment_map::const_iterator it = env_vars_to_set.begin(); ++ it != env_vars_to_set.end(); ++it) { ++ if (setenv(it->first.c_str(), it->second.c_str(), 1/*overwrite*/)) ++ _exit(127); ++ } ++ ++ for (size_t i = 0; i < argv.size(); i++) ++ argv_cstr[i] = const_cast(argv[i].c_str()); ++ argv_cstr[argv.size()] = NULL; ++ execvp(argv_cstr[0], argv_cstr.get()); ++ // if we get here, we're in serious trouble and should complain loudly ++ DLOG(ERROR) << "FAILED TO exec() CHILD PROCESS, path: " << argv_cstr[0]; ++ exit(127); ++ } else { ++ gProcessLog.print("==> process %d launched child process %d\n", ++ GetCurrentProcId(), pid); ++ if (wait) ++ HANDLE_EINTR(waitpid(pid, 0, 0)); ++ ++ if (process_handle) ++ *process_handle = pid; ++ } ++ ++ return true; ++} ++ ++bool LaunchApp(const CommandLine& cl, ++ bool wait, bool start_hidden, ++ ProcessHandle* process_handle) { ++ file_handle_mapping_vector no_files; ++ return LaunchApp(cl.argv(), no_files, wait, process_handle); ++} ++ ++#endif ++ ++NamedProcessIterator::NamedProcessIterator(const std::wstring& executable_name, ++ const ProcessFilter* filter) ++{ ++ int numEntries; ++ kvm_t *kvm; ++ std::string exe(WideToASCII(executable_name)); ++ ++#if defined(OS_DRAGONFLY) || defined(OS_FREEBSD) ++ kvm = kvm_open(NULL, NULL, NULL, O_RDONLY, NULL); ++ struct kinfo_proc* procs = kvm_getprocs(kvm, KERN_PROC_UID, getuid(), &numEntries); ++ if (procs != NULL && numEntries > 0) { ++ for (int i = 0; i < numEntries; i++) { ++# if defined(OS_DRAGONFLY) ++ if (exe != procs[i].kp_comm) continue; ++ if (filter && !filter->Includes(procs[i].kp_pid, procs[i].kp_ppid)) continue; ++ ProcessEntry e; ++ e.pid = procs[i].kp_pid; ++ e.ppid = procs[i].kp_ppid; ++ strlcpy(e.szExeFile, procs[i].kp_comm, sizeof e.szExeFile); ++ content.push_back(e); ++# elif defined(OS_FREEBSD) ++ if (exe != procs[i].ki_comm) continue; ++ if (filter && !filter->Includes(procs[i].ki_pid, procs[i].ki_ppid)) continue; ++ ProcessEntry e; ++ e.pid = procs[i].ki_pid; ++ e.ppid = procs[i].ki_ppid; ++ strlcpy(e.szExeFile, procs[i].ki_comm, sizeof e.szExeFile); ++ content.push_back(e); ++# endif ++#else ++ kvm = kvm_open(NULL, NULL, NULL, KVM_NO_FILES, NULL); ++#if defined(OS_OPENBSD) ++ struct kinfo_proc* procs = kvm_getprocs(kvm, KERN_PROC_UID, getuid(), sizeof(struct kinfo_proc), &numEntries); ++#else ++ struct kinfo_proc2* procs = kvm_getproc2(kvm, KERN_PROC_UID, getuid(), sizeof(struct kinfo_proc2), &numEntries); ++#endif ++ if (procs != NULL && numEntries > 0) { ++ for (int i = 0; i < numEntries; i++) { ++ if (exe != procs[i].p_comm) continue; ++ if (filter && !filter->Includes(procs[i].p_pid, procs[i].p_ppid)) continue; ++ ProcessEntry e; ++ e.pid = procs[i].p_pid; ++ e.ppid = procs[i].p_ppid; ++ strlcpy(e.szExeFile, procs[i].p_comm, sizeof e.szExeFile); ++ content.push_back(e); ++#endif ++ } ++ } ++ nextEntry = 0; ++ kvm_close(kvm); ++} ++ ++NamedProcessIterator::~NamedProcessIterator() { ++} ++ ++const ProcessEntry* NamedProcessIterator::NextProcessEntry() { ++ if (nextEntry >= content.size()) return NULL; ++ return &content[nextEntry++]; ++} ++ ++bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) const { ++ return false; ++} ++ ++} // namespace base +$NetBSD: patch-ipc_chromium_src_base_process__util__posix.cc,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/process_util_posix.cc.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/base/process_util_posix.cc +@@ -116,6 +116,11 @@ void CloseSuperfluousFds(const base::Inj + #elif defined(OS_MACOSX) + static const rlim_t kSystemDefaultMaxFds = 256; + static const char kFDDir[] = "/dev/fd"; ++#elif defined(OS_BSD) ++ // the getrlimit below should never fail, so whatever .. ++ static const rlim_t kSystemDefaultMaxFds = 1024; ++ // at least /dev/fd will exist ++ static const char kFDDir[] = "/dev/fd"; + #endif + + // Get the maximum number of FDs possible. +@@ -199,7 +204,7 @@ void CloseSuperfluousFds(const base::Inj + void SetAllFDsToCloseOnExec() { + #if defined(OS_LINUX) + const char fd_dir[] = "/proc/self/fd"; +-#elif defined(OS_MACOSX) ++#elif defined(OS_MACOSX) || defined(OS_BSD) + const char fd_dir[] = "/dev/fd"; + #endif + ScopedDIR dir_closer(opendir(fd_dir)); +$NetBSD: patch-ipc_chromium_src_base_sys__info__posix.cc,v 1.2 2011/11/27 13:09:00 tnn Exp $ + +--- ipc/chromium/src/base/sys_info_posix.cc.orig 2011-11-04 21:34:00.000000000 +0000 ++++ ipc/chromium/src/base/sys_info_posix.cc +@@ -18,6 +18,11 @@ + #include + #endif + ++#if defined(OS_NETBSD) ++#include ++#include ++#endif ++ + #include "base/logging.h" + #include "base/string_util.h" + +@@ -26,7 +31,11 @@ namespace base { + int SysInfo::NumberOfProcessors() { + // It seems that sysconf returns the number of "logical" processors on both + // mac and linux. So we get the number of "online logical" processors. ++#ifdef _SC_NPROCESSORS_ONLN + static long res = sysconf(_SC_NPROCESSORS_ONLN); ++#else ++ static long res = 1; ++#endif + if (res == -1) { + NOTREACHED(); + return 1; +@@ -52,6 +61,20 @@ int64 SysInfo::AmountOfPhysicalMemory() + } + + return static_cast(hostinfo.max_mem); ++#elif defined(OS_NETBSD) ++ int mib[2]; ++ int rc; ++ int64_t memSize; ++ size_t len = sizeof(memSize); ++ ++ mib[0] = CTL_HW; ++ mib[1] = HW_PHYSMEM64; ++ rc = sysctl( mib, 2, &memSize, &len, NULL, 0 ); ++ if (-1 != rc) { ++ return memSize; ++ } ++ return 0; ++ + #else + long pages = sysconf(_SC_PHYS_PAGES); + long page_size = sysconf(_SC_PAGE_SIZE); +$NetBSD: patch-ipc_chromium_src_base_third__party_nspr_prcpucfg.h,v 1.2 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/third_party/nspr/prcpucfg.h.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/base/third_party/nspr/prcpucfg.h +@@ -34,7 +34,7 @@ + #include "base/third_party/nspr/prcpucfg_win.h" + #elif defined(__APPLE__) + #include "base/third_party/nspr/prcpucfg_mac.h" +-#elif defined(__linux__) || defined(ANDROID) ++#elif defined(__linux__) || defined(ANDROID) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) + #include "base/third_party/nspr/prcpucfg_linux.h" + #elif defined(__OpenBSD__) + #include "base/third_party/nspr/prcpucfg_openbsd.h" +$NetBSD: patch-ipc_chromium_src_base_third__party_nspr_prtime.cc,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/base/third_party/nspr/prtime.cc.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/base/third_party/nspr/prtime.cc +@@ -212,7 +212,7 @@ PR_ImplodeTime(const PRExplodedTime *exp + LL_ADD(retVal, retVal, temp); + + return retVal; +-#elif defined(OS_LINUX) ++#elif defined(OS_LINUX) || defined(OS_DRAGONFLY) + struct tm exp_tm = {0}; + exp_tm.tm_sec = exploded->tm_sec; + exp_tm.tm_min = exploded->tm_min; +@@ -245,6 +245,24 @@ PR_ImplodeTime(const PRExplodedTime *exp + result *= kSecondsToMicroseconds; + result += exploded->tm_usec; + return result; ++#elif defined(OS_FREEBSD) || defined(OS_NETBSD) ++ struct tm exp_tm = {0}; ++ exp_tm.tm_sec = exploded->tm_sec; ++ exp_tm.tm_min = exploded->tm_min; ++ exp_tm.tm_hour = exploded->tm_hour; ++ exp_tm.tm_mday = exploded->tm_mday; ++ exp_tm.tm_mon = exploded->tm_month; ++ exp_tm.tm_year = exploded->tm_year - 1900; ++ ++ // time_t is 64bit ++ time_t absolute_time = timegm(&exp_tm); ++ ++ PRTime result = static_cast(absolute_time); ++ result -= exploded->tm_params.tp_gmt_offset + ++ exploded->tm_params.tp_dst_offset; ++ result *= kSecondsToMicroseconds; ++ result += exploded->tm_usec; ++ return result; + #else + #error No PR_ImplodeTime implemented on your platform. + #endif +diff --git ipc/chromium/src/base/time_posix.cc ipc/chromium/src/base/time_posix.cc +index abf2a56..48791f6 100644 +--- ipc/chromium/src/base/time_posix.cc ++++ ipc/chromium/src/base/time_posix.cc +@@ -167,7 +167,7 @@ TimeTicks TimeTicks::Now() { + // With numer and denom = 1 (the expected case), the 64-bit absolute time + // reported in nanoseconds is enough to last nearly 585 years. + +-#elif defined(__OpenBSD__) || defined(OS_POSIX) && \ ++#elif defined(OS_OPENBSD) || defined(OS_POSIX) && \ + defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0 + + struct timespec ts; +$NetBSD: patch-ipc_chromium_src_build_build__config.h,v 1.4 2012/04/01 15:18:45 ryoon Exp $ + +--- ipc/chromium/src/build/build_config.h.orig 2012-03-13 01:36:53.000000000 +0000 ++++ ipc/chromium/src/build/build_config.h +@@ -19,6 +19,12 @@ + #define OS_MACOSX 1 + #elif defined(__linux__) || defined(ANDROID) + #define OS_LINUX 1 ++#elif defined(__DragonFly__) ++#define OS_DRAGONFLY 1 ++#elif defined(__FreeBSD__) ++#define OS_FREEBSD 1 ++#elif defined(__NetBSD__) ++#define OS_NETBSD 1 + #elif defined(__OpenBSD__) + #define OS_OPENBSD 1 + #elif defined(_WIN32) +@@ -27,9 +33,16 @@ + #error Please add support for your platform in build/build_config.h + #endif + ++// For access to standard BSD features, use OS_BSD instead of a ++// more specific macro. ++#if defined(OS_DRAGONFLY) || defined(OS_FREEBSD) \ ++ || defined(OS_NETBSD) || defined(OS_OPENBSD) ++#define OS_BSD 1 ++#endif ++ + // For access to standard POSIX features, use OS_POSIX instead of a more + // specific macro. +-#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_OPENBSD) ++#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_BSD) + #define OS_POSIX 1 + #endif + +diff --git ipc/chromium/src/chrome/common/ipc_channel_posix.cc ipc/chromium/src/chrome/common/ipc_channel_posix.cc +index bd866ee..2ea5b19 100644 +--- ipc/chromium/src/chrome/common/ipc_channel_posix.cc ++++ ipc/chromium/src/chrome/common/ipc_channel_posix.cc +@@ -7,6 +7,7 @@ + #include + #include + #include ++#include + #include + #include + #include +$NetBSD: patch-ipc_chromium_src_chrome_common_ipc__channel__posix.h,v 1.1 2011/07/11 12:46:14 tnn Exp $ + +--- ipc/chromium/src/chrome/common/ipc_channel_posix.h.orig 2011-06-15 21:57:27.000000000 +0000 ++++ ipc/chromium/src/chrome/common/ipc_channel_posix.h +@@ -92,7 +92,7 @@ class Channel::ChannelImpl : public Mess + }; + + // This is a control message buffer large enough to hold kMaxReadFDs +-#if defined(OS_MACOSX) ++#if defined(OS_MACOSX) || defined(OS_NETBSD) + // TODO(agl): OSX appears to have non-constant CMSG macros! + char input_cmsg_buf_[1024]; + #else +$NetBSD: patch-ipc_chromium_src_chrome_common_ipc__message__utils.h,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/chrome/common/ipc_message_utils.h.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/chrome/common/ipc_message_utils.h +@@ -195,7 +195,7 @@ + }; + #endif + +-#if !(defined(OS_MACOSX) || defined(OS_OPENBSD) || defined(OS_WIN) || (defined(OS_LINUX) && defined(ARCH_CPU_64_BITS)) || defined(ARCH_CPU_S390)) ++#if !(defined(OS_MACOSX) || defined(OS_OPENBSD) || defined(OS_WIN) || ((defined(OS_BSD) || defined(OS_LINUX)) && defined(ARCH_CPU_64_BITS)) || defined(ARCH_CPU_S390)) + // There size_t is a synonym for |unsigned long| ... + template <> + struct ParamTraits { +@@ -248,7 +248,7 @@ + }; + #endif // defined(OS_MACOSX) + +-#if !(defined(OS_LINUX) && defined(ARCH_CPU_64_BITS)) ++#if !((defined(OS_BSD) || defined(OS_LINUX)) && defined(ARCH_CPU_64_BITS)) + // int64 is |long int| on 64-bit systems, uint64 is |unsigned long| + template <> + struct ParamTraits { +$NetBSD: patch-ipc_chromium_src_chrome_common_transport__dib.h,v 1.1 2012/03/06 12:34:09 ryoon Exp $ + +--- ipc/chromium/src/chrome/common/transport_dib.h.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/chromium/src/chrome/common/transport_dib.h +@@ -7,7 +7,7 @@ + + #include "base/basictypes.h" + +-#if defined(OS_WIN) || defined(OS_MACOSX) ++#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_BSD) + #include "base/shared_memory.h" + #endif + +@@ -66,7 +66,7 @@ class TransportDIB { + uint32 sequence_num; + }; + typedef HandleAndSequenceNum Id; +-#elif defined(OS_MACOSX) ++#elif defined(OS_MACOSX) || defined(OS_BSD) + typedef base::SharedMemoryHandle Handle; + // On Mac, the inode number of the backing file is used as an id. + typedef base::SharedMemoryId Id; +@@ -108,7 +108,7 @@ class TransportDIB { + + private: + TransportDIB(); +-#if defined(OS_WIN) || defined(OS_MACOSX) ++#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_BSD) + explicit TransportDIB(base::SharedMemoryHandle dib); + base::SharedMemory shared_memory_; + uint32 sequence_num_; +$NetBSD: patch-ipc_glue_GeckoChildProcessHost.cpp,v 1.2 2012/03/15 08:30:06 ryoon Exp $ + +--- ipc/glue/GeckoChildProcessHost.cpp.orig 2011-12-20 23:28:19.000000000 +0000 ++++ ipc/glue/GeckoChildProcessHost.cpp +@@ -430,7 +430,7 @@ + // and passing wstrings from one config to the other is unsafe. So + // we split the logic here. + +-#if defined(OS_LINUX) || defined(OS_MACOSX) ++#if defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD) + base::environment_map newEnvVars; + // XPCOM may not be initialized in some subprocesses. We don't want + // to initialize XPCOM just for the directory service, especially +@@ -445,8 +445,8 @@ + if (NS_SUCCEEDED(rv)) { + nsCString path; + greDir->GetNativePath(path); +-# ifdef OS_LINUX +-# ifdef ANDROID ++# if defined(OS_LINUX) || defined(OS_BSD) ++# if defined(ANDROID) || defined(OS_BSD) + path += "/lib"; + # endif // ANDROID + const char *ld_library_path = PR_GetEnv("LD_LIBRARY_PATH"); +@@ -557,7 +557,7 @@ + childArgv.push_back(pidstring); + + #if defined(MOZ_CRASHREPORTER) +-# if defined(OS_LINUX) ++# if defined(OS_LINUX) || defined(OS_BSD) + int childCrashFd, childCrashRemapFd; + if (!CrashReporter::CreateNotificationPipeForChild( + &childCrashFd, &childCrashRemapFd)) +@@ -594,7 +594,7 @@ + #endif + + base::LaunchApp(childArgv, mFileMap, +-#if defined(OS_LINUX) || defined(OS_MACOSX) ++#if defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD) + newEnvVars, + #endif + false, &process, arch); +diff --git ipc/glue/SharedMemorySysV.h ipc/glue/SharedMemorySysV.h +index f37998d..b05dc7b 100644 +--- ipc/glue/SharedMemorySysV.h ++++ ipc/glue/SharedMemorySysV.h +@@ -8,7 +8,7 @@ + #ifndef mozilla_ipc_SharedMemorySysV_h + #define mozilla_ipc_SharedMemorySysV_h + +-#if defined(OS_LINUX) && !defined(ANDROID) ++#if (defined(OS_LINUX) && !defined(ANDROID)) || defined(OS_BSD) + + // SysV shared memory isn't available on Windows, but we define the + // following macro so that #ifdefs are clearer (compared to #ifdef +$NetBSD: patch-mm,v 1.13 2012/06/05 18:09:21 ryoon Exp $ + +--- toolkit/library/Makefile.in.orig 2012-05-23 18:57:09.000000000 +0000 ++++ toolkit/library/Makefile.in +@@ -534,6 +538,12 @@ EXTRA_DSO_LDOPTS += -lelf -ldemangle + endif + endif + ++ifneq (,$(filter DragonFly FreeBSD NetBSD OpenBSD,$(OS_ARCH))) ++OS_LIBS += $(call EXPAND_LIBNAME,kvm) ++# keep `environ' unresolved, see bug 14426 for binutils ++EXTRA_DSO_LDOPTS += -Wl,--warn-unresolved-symbols ++endif ++ + ifeq ($(OS_ARCH),WINNT) + OS_LIBS += $(call EXPAND_LIBNAME,shell32 ole32 version winspool comdlg32 imm32 msimg32 shlwapi psapi ws2_32 dbghelp rasapi32 rasdlg iphlpapi uxtheme setupapi secur32 sensorsapi portabledeviceguids windowscodecs wininet) + ifdef ACCESSIBILITY diff --git a/www/libxul/files/patch-bug761077 b/www/libxul/files/patch-bug761077 index fb12c5b15021..922fa55131e8 100644 --- a/www/libxul/files/patch-bug761077 +++ b/www/libxul/files/patch-bug761077 @@ -1,110 +1,88 @@ diff --git xpcom/reflect/xptcall/public/genstubs.pl xpcom/reflect/xptcall/public/genstubs.pl index b8a87a5..918c4cf 100644 --- xpcom/reflect/xptcall/public/genstubs.pl +++ xpcom/reflect/xptcall/public/genstubs.pl @@ -44,7 +44,7 @@ print OUTFILE "* 0 is QueryInterface\n"; print OUTFILE "* 1 is AddRef\n"; print OUTFILE "* 2 is Release\n"; print OUTFILE "*/\n"; -print OUTFILE "#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__))\n"; +print OUTFILE "#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__) && !defined(__FreeBSD__))\n"; for($i = 0; $i < $entry_count; $i++) { print OUTFILE "NS_IMETHOD Stub",$i+3,"();\n"; } diff --git xpcom/reflect/xptcall/public/xptcstubsdecl.inc xpcom/reflect/xptcall/public/xptcstubsdecl.inc index eb66761..807db26 100644 --- xpcom/reflect/xptcall/public/xptcstubsdecl.inc +++ xpcom/reflect/xptcall/public/xptcstubsdecl.inc @@ -8,7 +8,7 @@ * 1 is AddRef * 2 is Release */ -#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) +#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__) && !defined(__FreeBSD__)) NS_IMETHOD Stub3(); NS_IMETHOD Stub4(); NS_IMETHOD Stub5(); diff --git xpcom/reflect/xptcall/src/md/unix/Makefile.in xpcom/reflect/xptcall/src/md/unix/Makefile.in index ae6ed66..2783957 100644 --- xpcom/reflect/xptcall/src/md/unix/Makefile.in +++ xpcom/reflect/xptcall/src/md/unix/Makefile.in -@@ -85,7 +85,7 @@ - # New code for Linux, et. al., with gcc - # Migrate other platforms here after testing - # --ifneq (,$(filter Linux GNU_%,$(OS_ARCH))) -+ifneq (,$(filter Linux FreeBSD GNU_%,$(OS_ARCH))) - # Linux/x86-64 - ifeq (x86_64,$(OS_TEST)) - CPPSRCS := xptcinvoke_x86_64_unix.cpp xptcstubs_x86_64_linux.cpp @@ -70,7 +70,7 @@ endif endif endif # IA64 Linux -ifneq (,$(filter Linux,$(OS_ARCH))) +ifneq (,$(filter Linux FreeBSD,$(OS_ARCH))) ifneq (,$(findstring ia64,$(OS_TEST))) CPPSRCS := xptcinvoke_ipf64.cpp xptcstubs_ipf64.cpp ASFILES := xptcstubs_asm_ipf64.s xptcinvoke_asm_ipf64.s -@@ -109,12 +109,6 @@ ifeq ($(OS_ARCH)$(OS_TEST),OpenBSDx86_64 - CPPSRCS := xptcinvoke_amd64_openbsd.cpp xptcstubs_amd64_openbsd.cpp - endif - # --# FreeBSD/amd64 --# --ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDx86_64) --CPPSRCS := xptcinvoke_amd64_linux.cpp xptcstubs_amd64_linux.cpp --endif --# - # BeOS/Intel (uses the same unixish_x86 code) - # - ifeq ($(OS_ARCH)$(OS_TEST),BeOSBePC) -@@ -341,7 +356,7 @@ +@@ -269,7 +269,7 @@ endif # # Linux/PPC # -ifeq ($(OS_ARCH)$(OS_TEST),Linuxpowerpc) +ifneq (,$(filter Linuxpowerpc FreeBSDpowerpc,$(OS_ARCH)$(OS_TEST))) CPPSRCS := xptcinvoke_ppc_linux.cpp xptcstubs_ppc_linux.cpp ASFILES := xptcinvoke_asm_ppc_linux.s xptcstubs_asm_ppc_linux.s AS := $(CC) -c -x assembler-with-cpp -@@ -350,7 +365,7 @@ +@@ -278,7 +278,7 @@ endif # # Linux/PPC64 # -ifeq ($(OS_ARCH)$(OS_TEST),Linuxpowerpc64) +ifneq (,$(filter Linuxpowerpc64 FreeBSDpowerpc64,$(OS_ARCH)$(OS_TEST))) CPPSRCS := xptcinvoke_ppc64_linux.cpp xptcstubs_ppc64_linux.cpp ASFILES := xptcinvoke_asm_ppc64_linux.s xptcstubs_asm_ppc64_linux.s AS := $(CC) -c -x assembler-with-cpp @@ -350,7 +350,7 @@ endif # # OpenBSD/SPARC64 # -ifeq ($(OS_ARCH)$(OS_TEST),OpenBSDsparc64) +ifneq (,$(filter OpenBSDsparc64 FreeBSDsparc64,$(OS_ARCH)$(OS_TEST))) CPPSRCS := xptcinvoke_sparc64_openbsd.cpp xptcstubs_sparc64_openbsd.cpp ASFILES := xptcinvoke_asm_sparc64_openbsd.s xptcstubs_asm_sparc64_openbsd.s endif diff --git xpcom/reflect/xptcall/src/xptcprivate.h xpcom/reflect/xptcall/src/xptcprivate.h index d903ced..e4ec832 100644 --- xpcom/reflect/xptcall/src/xptcprivate.h +++ xpcom/reflect/xptcall/src/xptcprivate.h @@ -14,7 +14,7 @@ class xptiInterfaceEntry; -#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) +#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__) && !defined(__FreeBSD__)) #define STUB_ENTRY(n) NS_IMETHOD Stub##n() = 0; #else #define STUB_ENTRY(n) NS_IMETHOD Stub##n(PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64) = 0; @@ -31,7 +31,7 @@ public: #undef STUB_ENTRY #undef SENTINEL_ENTRY -#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__)) +#if !defined(__ia64) || (!defined(__hpux) && !defined(__linux__) && !defined(__FreeBSD__)) #define STUB_ENTRY(n) NS_IMETHOD Stub##n(); #else #define STUB_ENTRY(n) NS_IMETHOD Stub##n(PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64,PRUint64); diff --git a/www/libxul/files/patch-bug778056 b/www/libxul/files/patch-bug778056 new file mode 100644 index 000000000000..2730ffbfc594 --- /dev/null +++ b/www/libxul/files/patch-bug778056 @@ -0,0 +1,21 @@ +--- memory/mozalloc/mozalloc.cpp~ ++++ memory/mozalloc/mozalloc.cpp +@@ -52,6 +52,9 @@ + #if defined(XP_UNIX) + # include // for valloc on *BSD + #endif //if defined(XP_UNIX) ++#ifdef __FreeBSD__ ++# include // for malloc_usable_size ++#endif + + #if defined(MOZ_MEMORY) + // jemalloc.h doesn't redeclare symbols if they're provided by the OS +@@ -259,7 +262,7 @@ moz_malloc_usable_size(void *ptr) + + #if defined(XP_MACOSX) + return malloc_size(ptr); +-#elif defined(MOZ_MEMORY) ++#elif defined(MOZ_MEMORY) || defined(__FreeBSD__) + return malloc_usable_size(ptr); + #elif defined(XP_WIN) + return _msize(ptr); diff --git a/www/libxul/files/patch-bug778078 b/www/libxul/files/patch-bug778078 index c3d42c391a98..a68f07ab34ed 100644 --- a/www/libxul/files/patch-bug778078 +++ b/www/libxul/files/patch-bug778078 @@ -1,11 +1,11 @@ --- toolkit/xre/nsAppRunner.cpp~ +++ toolkit/xre/nsAppRunner.cpp -@@ -3046,7 +3046,7 @@ XRE_main(int argc, char* argv[], const n - QApplication app(gArgc, gArgv); +@@ -3133,7 +3133,7 @@ XRE_main(int argc, char* argv[], const n + gQtOnlyArgv[gQtOnlyArgc] = nsnull; #endif #if defined(MOZ_WIDGET_GTK2) -#ifdef MOZ_MEMORY +#if defined(MOZ_MEMORY) || defined(__FreeBSD__) || defined(__NetBSD__) // Disable the slice allocator, since jemalloc already uses similar layout // algorithms, and using a sub-allocator tends to increase fragmentation. // This must be done before g_thread_init() is called. diff --git a/www/libxul/files/patch-bug779847 b/www/libxul/files/patch-bug779847 new file mode 100644 index 000000000000..f431c4a8d3c5 --- /dev/null +++ b/www/libxul/files/patch-bug779847 @@ -0,0 +1,28 @@ +--- gfx/ycbcr/Makefile.in ++++ gfx/ycbcr/Makefile.in +@@ -54,23 +54,13 @@ CPPSRCS += yuv_row_win.cpp \ + $(NULL) + endif + else +-ifeq ($(OS_ARCH),Linux) +-CPPSRCS += yuv_row_posix.cpp \ +- $(NULL) +-else +-ifeq ($(OS_ARCH),SunOS) +-CPPSRCS += yuv_row_posix.cpp \ +- $(NULL) +-else +-ifeq ($(OS_ARCH),Darwin) ++ifneq (,$(filter Linux SunOS Darwin DragonFly FreeBSD NetBSD OpenBSD, $(OS_ARCH))) + CPPSRCS += yuv_row_posix.cpp \ + $(NULL) + else + CPPSRCS += yuv_row_other.cpp \ + $(NULL) +-endif # Darwin +-endif # SunOS +-endif # linux ++endif # posix + endif # windows + + ifeq (arm,$(findstring arm,$(OS_TEST))) diff --git a/www/libxul/files/patch-bug781457 b/www/libxul/files/patch-bug781457 index 8a790ccf84a9..8cf3cfb70c14 100644 --- a/www/libxul/files/patch-bug781457 +++ b/www/libxul/files/patch-bug781457 @@ -1,10 +1,10 @@ ---- xpcom/base/nsStackWalk.cpp.orig 2012-05-29 00:57:31.000000000 +0200 -+++ xpcom/base/nsStackWalk.cpp 2012-06-03 12:33:40.000000000 +0200 +--- xpcom/base/nsStackWalk.cpp.orig 2010-12-15 02:03:41.000000000 +0100 ++++ xpcom/base/nsStackWalk.cpp 2010-12-15 11:28:20.000000000 +0100 @@ -1123,6 +1123,7 @@ NS_StackWalk(NS_WalkStackCallback aCallb #elif defined(HAVE__UNWIND_BACKTRACE) +#define _GNU_SOURCE // libgcc_s.so symbols _Unwind_Backtrace@@GCC_3.3 and _Unwind_GetIP@@GCC_3.0 #include diff --git a/www/libxul/files/patch-bug783463 b/www/libxul/files/patch-bug783463 new file mode 100644 index 000000000000..56ec54b3fcc3 --- /dev/null +++ b/www/libxul/files/patch-bug783463 @@ -0,0 +1,20 @@ +--- widget/src/qt/nsNativeThemeQt.cpp~ ++++ widget/src/qt/nsNativeThemeQt.cpp +@@ -25,7 +25,6 @@ + #include "nsThemeConstants.h" + #include "nsIServiceManager.h" + #include "nsIDOMHTMLInputElement.h" +-#include + + + #include "gfxASurface.h" +--- widget/src/qt/nsSound.cpp~ ++++ widget/src/qt/nsSound.cpp +@@ -40,6 +40,7 @@ + #include + + #include ++#include + + #include "nscore.h" + #include "plstr.h" diff --git a/www/libxul/files/patch-bug784776 b/www/libxul/files/patch-bug784776 new file mode 100644 index 000000000000..2036b3d441e3 --- /dev/null +++ b/www/libxul/files/patch-bug784776 @@ -0,0 +1,22 @@ +--- intl/locale/src/unix/nsDateTimeFormatUnix.cpp~ ++++ intl/locale/src/unix/nsDateTimeFormatUnix.cpp +@@ -100,7 +100,7 @@ void nsDateTimeFormatUnix::LocalePreferr + struct tm *tmc; + int i; + +- tt = time((time_t)NULL); ++ tt = time(NULL); + tmc = localtime(&tt); + + tmc->tm_hour=22; // put the test sample hour to 22:00 which is 10PM +--- xpcom/glue/nsBaseHashtable.h~ ++++ xpcom/glue/nsBaseHashtable.h +@@ -147,7 +147,7 @@ public: + { + EntryType* ent = this->GetEntry(aKey); + if (!ent) +- return NULL; ++ return 0; + + return ent->mData; + } diff --git a/www/libxul/files/patch-bug785638 b/www/libxul/files/patch-bug785638 new file mode 100644 index 000000000000..6e1f63d64971 --- /dev/null +++ b/www/libxul/files/patch-bug785638 @@ -0,0 +1,168 @@ +diff --git configure.in configure.in +index cef992b..3bd39ca 100644 +--- configure.in ++++ configure.in +@@ -5353,22 +5353,6 @@ if test -n "$MOZ_VP8" -a -z "$MOZ_NATIVE_LIBVPX"; then + + dnl See if we have assembly on this platform. + case "$OS_ARCH:$CPU_ARCH" in +- Linux:x86) +- VPX_ASFLAGS="-f elf32 -rnasm -pnasm" +- VPX_X86_ASM=1 +- ;; +- Linux:x86_64) +- VPX_ASFLAGS="-f elf64 -rnasm -pnasm -DPIC" +- VPX_X86_ASM=1 +- ;; +- SunOS:x86) +- VPX_ASFLAGS="-f elf32 -rnasm -pnasm" +- VPX_X86_ASM=1 +- ;; +- SunOS:x86_64) +- VPX_ASFLAGS="-f elf64 -rnasm -pnasm -DPIC" +- VPX_X86_ASM=1 +- ;; + Darwin:x86) + VPX_ASFLAGS="-f macho32 -rnasm -pnasm -DPIC" + VPX_X86_ASM=1 +@@ -5412,6 +5388,19 @@ if test -n "$MOZ_VP8" -a -z "$MOZ_NATIVE_LIBVPX"; then + VPX_ASM_SUFFIX="$ASM_SUFFIX" + VPX_ARM_ASM=1 + fi ++ ;; ++ *:x86) ++ if $CC -E -dM - + #endif + +-//A trick to handle IEEE floating point exceptions on FreeBSD - E.D. +-#ifdef __FreeBSD__ +-#include +-#ifdef __alpha__ +-static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; +-#else +-static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; +-#endif +-static fp_except_t oldmask = fpsetmask(~allmask); +-#endif +- + #include "nsAString.h" + #include "nsIStatefulFrame.h" + #include "nsNodeInfoManager.h" diff --git a/www/libxul/files/patch-bug789436 b/www/libxul/files/patch-bug789436 new file mode 100644 index 000000000000..6d1e7069b858 --- /dev/null +++ b/www/libxul/files/patch-bug789436 @@ -0,0 +1,27 @@ +--- toolkit/xre/nsAppRunner.cpp~ ++++ toolkit/xre/nsAppRunner.cpp +@@ -1388,11 +1388,6 @@ static int MSCRTReportHook( int aReportType, char *aMessage, int *oReturnValue) + + #endif + +-#if defined(FREEBSD) +-// pick up fpsetmask prototype. +-#include +-#endif +- + static inline void + DumpVersion() + { +@@ -4136,12 +4131,5 @@ SetupErrorHandling(const char* progname) + + // Unbuffer stdout, needed for tinderbox tests. + setbuf(stdout, 0); +- +-#if defined(FREEBSD) +- // Disable all SIGFPE's on FreeBSD, as it has non-IEEE-conformant fp +- // trap behavior that trips up on floating-point tests performed by +- // the JS engine. See bugzilla bug 9967 details. +- fpsetmask(0); +-#endif + } + diff --git a/www/libxul/files/patch-build-pgo-profileserver.py b/www/libxul/files/patch-build-pgo-profileserver.py new file mode 100644 index 000000000000..0571eb19903d --- /dev/null +++ b/www/libxul/files/patch-build-pgo-profileserver.py @@ -0,0 +1,18 @@ +--- build/pgo/profileserver.py.orig 2011-02-24 21:49:47.000000000 +0100 ++++ build/pgo/profileserver.py 2011-02-24 21:50:30.000000000 +0100 +@@ -77,13 +77,13 @@ + t.setDaemon(True) # don't hang on exit + t.start() + +- automation.setServerInfo("localhost", PORT) ++ automation.setServerInfo("127.0.0.1", PORT) + automation.initializeProfile(PROFILE_DIRECTORY) + browserEnv = automation.environment() + browserEnv["XPCOM_DEBUG_BREAK"] = "warn" + browserEnv["MOZ_JAR_LOG_DIR"] = MOZ_JAR_LOG_DIR + +- url = "http://localhost:%d/index.html" % PORT ++ url = "http://127.0.0.1:%d/index.html" % PORT + appPath = os.path.join(SCRIPT_DIR, automation.DEFAULT_APP) + status = automation.runApp(url, browserEnv, appPath, PROFILE_DIRECTORY, {}, + debuggerInfo=debuggerInfo, diff --git a/www/libxul/files/patch-build_unix_run-mozilla.sh b/www/libxul/files/patch-build_unix_run-mozilla.sh new file mode 100644 index 000000000000..aae079e55456 --- /dev/null +++ b/www/libxul/files/patch-build_unix_run-mozilla.sh @@ -0,0 +1,12 @@ +--- build/unix/run-mozilla.sh.orig Tue Feb 14 19:56:54 2006 ++++ build/unix/run-mozilla.sh Fri Dec 8 15:49:48 2006 +@@ -443,6 +443,9 @@ + export MOZILLA_FIVE_HOME LD_LIBRARY_PATH + export SHLIB_PATH LIBPATH LIBRARY_PATH ADDON_PATH DYLD_LIBRARY_PATH + ++MOZ_PLUGIN_PATH=%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko19:%%LOCALBASE%%/lib/npapi/symlinks/firefox ++export MOZ_PLUGIN_PATH ++ + if [ $moz_debug -eq 1 ] + then + moz_debug_program ${1+"$@"} diff --git a/www/libxul/files/patch-clang32-libc++-visibility-hack b/www/libxul/files/patch-clang32-libc++-visibility-hack new file mode 100644 index 000000000000..ccada32cbee3 --- /dev/null +++ b/www/libxul/files/patch-clang32-libc++-visibility-hack @@ -0,0 +1,38 @@ +--- configure.in~ ++++ configure.in +@@ -2855,6 +2855,7 @@ EOF + #pragma GCC visibility push(hidden) + #pragma GCC visibility push(default) + #include ++#include + #pragma GCC visibility pop + + __attribute__ ((visibility ("default"))) void Func() { +@@ -2863,7 +2864,7 @@ __attribute__ ((visibility ("default"))) void Func() { + } + EOF + ac_cv_have_visibility_builtin_bug=no +- if ! ${CC-cc} ${CFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c > /dev/null 2>&1 ; then ++ if ! ${CXX-c++} ${CXXFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c > /dev/null 2>&1 ; then + ac_cv_have_visibility_builtin_bug=yes + else + if test `grep -c "@PLT" conftest.S` = 0; then +--- js/src/configure.in~ ++++ js/src/configure.in +@@ -2855,6 +2855,7 @@ EOF + #pragma GCC visibility push(hidden) + #pragma GCC visibility push(default) + #include ++#include + #pragma GCC visibility pop + + __attribute__ ((visibility ("default"))) void Func() { +@@ -2863,7 +2864,7 @@ __attribute__ ((visibility ("default"))) void Func() { + } + EOF + ac_cv_have_visibility_builtin_bug=no +- if ! ${CC-cc} ${CFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c > /dev/null 2>&1 ; then ++ if ! ${CXX-c++} ${CXXFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c > /dev/null 2>&1 ; then + ac_cv_have_visibility_builtin_bug=yes + else + if test `grep -c "@PLT" conftest.S` = 0; then diff --git a/www/libxul/files/patch-config_autoconf.mk.in b/www/libxul/files/patch-config_autoconf.mk.in index b39d9bacf0d7..877c48294fc6 100644 --- a/www/libxul/files/patch-config_autoconf.mk.in +++ b/www/libxul/files/patch-config_autoconf.mk.in @@ -1,21 +1,21 @@ ---- config/autoconf.mk.in.orig 2007-08-28 12:02:43.000000000 -0400 -+++ config/autoconf.mk.in 2007-09-26 14:21:51.000000000 -0400 -@@ -58,14 +58,14 @@ +--- config/autoconf.mk.in.orig 2009-04-24 03:46:37.000000000 +0200 ++++ config/autoconf.mk.in 2009-05-11 15:03:26.000000000 +0200 +@@ -57,14 +57,14 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ -includedir = @includedir@/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +includedir = @includedir@/%%MOZILLA%% libdir = @libdir@ datadir = @datadir@ mandir = @mandir@ -idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +idldir = $(datadir)/idl/%%MOZILLA%% -installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) -sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) +installdir = $(libdir)/%%MOZILLA%% +sdkdir = $(libdir)/%%MOZILLA%% DIST = $(DEPTH)/dist LIBXUL_SDK = @LIBXUL_SDK@ diff --git a/www/libxul/files/patch-dom-ipc-ContentChild.cpp b/www/libxul/files/patch-dom-ipc-ContentChild.cpp new file mode 100644 index 000000000000..5a2826f3a41d --- /dev/null +++ b/www/libxul/files/patch-dom-ipc-ContentChild.cpp @@ -0,0 +1,10 @@ +--- dom/ipc/ContentChild.cpp~ ++++ dom/ipc/ContentChild.cpp +@@ -42,6 +42,7 @@ + #endif + + #ifdef MOZ_WIDGET_QT ++#include + #include "nsQAppInstance.h" + #endif + diff --git a/www/libxul/files/patch-gfx-qcms-qcmstypes.h b/www/libxul/files/patch-gfx-qcms-qcmstypes.h new file mode 100644 index 000000000000..33d9e3356b77 --- /dev/null +++ b/www/libxul/files/patch-gfx-qcms-qcmstypes.h @@ -0,0 +1,11 @@ +--- gfx/qcms/qcmstypes.h.orig 2010-11-22 12:01:36.000000000 +0100 ++++ gfx/qcms/qcmstypes.h 2010-11-22 12:02:42.000000000 +0100 +@@ -25,7 +25,7 @@ + #ifdef __OS2__ + /* OS/2's stdlib typdefs uintptr_t. So we'll just include that so we don't collide */ + #include +-#elif !defined(__intptr_t_defined) && !defined(_UINTPTR_T_DEFINED) ++#elif !defined(__intptr_t_defined) && !defined(_INTPTR_T_DECLARED) + typedef PRUptrdiff uintptr_t; + #endif + #endif diff --git a/www/libxul/files/patch-ipc-chromium-Makefile.in b/www/libxul/files/patch-ipc-chromium-Makefile.in new file mode 100644 index 000000000000..b660c3662bb0 --- /dev/null +++ b/www/libxul/files/patch-ipc-chromium-Makefile.in @@ -0,0 +1,28 @@ +--- ipc/chromium/Makefile.in~ ++++ ipc/chromium/Makefile.in +@@ -43,6 +43,14 @@ include $(DEPTH)/config/autoconf.mk + + OS_CXXFLAGS := $(filter-out -fshort-wchar,$(OS_CXXFLAGS)) + ++# workaround IPC hang with libevent2 ++ifndef MOZ_DEBUG ++ifneq (,$(filter 4.2.%, $(CXX_VERSION))) ++MOZ_OPTIMIZE_FLAGS = -O1 ++OS_CXXFLAGS += $(MOZ_OPTIMIZE_FLAGS) ++endif ++endif ++ + LIBRARY_NAME = chromium_s + FORCE_STATIC_LIB = 1 + LIBXUL_LIBRARY = 1 +@@ -55,9 +60,7 @@ vpath %.c \ + $(srcdir)/src/third_party/libevent \ + $(NULL) + else # } else { +-# message_pump_libevent.cc includes third_party/libevent/event.h, +-# which we put in $(DIST), see export rule below +-LOCAL_INCLUDES += -I$(DIST) ++LOCAL_INCLUDES += $(filter %/compat, $(MOZ_LIBEVENT_CFLAGS)) + endif # } + + vpath %.cc \ diff --git a/www/libxul/files/patch-ipc-chromium-src-base-message_pump_libevent.cc b/www/libxul/files/patch-ipc-chromium-src-base-message_pump_libevent.cc new file mode 100644 index 000000000000..7d4dc959eedf --- /dev/null +++ b/www/libxul/files/patch-ipc-chromium-src-base-message_pump_libevent.cc @@ -0,0 +1,11 @@ +--- ipc/chromium/src/base/message_pump_libevent.cc~ ++++ ipc/chromium/src/base/message_pump_libevent.cc +@@ -15,7 +15,7 @@ + #include "base/scoped_nsautorelease_pool.h" + #include "base/scoped_ptr.h" + #include "base/time.h" +-#include "third_party/libevent/event.h" ++#include "event.h" + + // Lifecycle of struct event + // Libevent uses two main data structures: diff --git a/www/libxul/files/patch-js-src-configure.in b/www/libxul/files/patch-js-src-configure.in new file mode 100644 index 000000000000..fc8e66185a87 --- /dev/null +++ b/www/libxul/files/patch-js-src-configure.in @@ -0,0 +1,10 @@ +--- js/src/configure.in.orig 2012-01-29 11:24:33.000000000 +0100 ++++ js/src/configure.in 2012-01-30 23:30:02.051087215 +0100 +@@ -5946,6 +5946,7 @@ _EGREP_PATTERN="${_EGREP_PATTERN}dummy_n + * C++ implementations should define these macros only when __STDC_LIMIT_MACROS + * is defined before is included. */ + #define __STDC_LIMIT_MACROS ++#define __STDC_CONSTANT_MACROS + + #endif /* _JS_CONFDEFS_H_ */ + diff --git a/www/libxul/files/patch-js-src-methodjit-MethodJIT.cpp b/www/libxul/files/patch-js-src-methodjit-MethodJIT.cpp new file mode 100644 index 000000000000..d29c15ccc05a --- /dev/null +++ b/www/libxul/files/patch-js-src-methodjit-MethodJIT.cpp @@ -0,0 +1,20 @@ +--- js/src/methodjit/MethodJIT.cpp~ ++++ js/src/methodjit/MethodJIT.cpp +@@ -171,7 +171,7 @@ + + JS_STATIC_ASSERT(offsetof(FrameRegs, sp) == 0); + +-#if defined(__linux__) && defined(JS_CPU_X64) ++#if defined(__ELF__) && defined(JS_CPU_X64) + # define SYMBOL_STRING_RELOC(name) #name "@plt" + #else + # define SYMBOL_STRING_RELOC(name) SYMBOL_STRING(name) +@@ -149,7 +149,7 @@ + + #if defined(XP_MACOSX) + # define HIDE_SYMBOL(name) ".private_extern _" #name +-#elif defined(__linux__) ++#elif defined(__ELF__) + # define HIDE_SYMBOL(name) ".hidden" #name + #else + # define HIDE_SYMBOL(name) diff --git a/www/libxul/files/patch-toolkit-xre-nsEmbedFunctions.cpp b/www/libxul/files/patch-toolkit-xre-nsEmbedFunctions.cpp new file mode 100644 index 000000000000..6c493d940fe7 --- /dev/null +++ b/www/libxul/files/patch-toolkit-xre-nsEmbedFunctions.cpp @@ -0,0 +1,10 @@ +--- toolkit/xre/nsEmbedFunctions.cpp~ ++++ toolkit/xre/nsEmbedFunctions.cpp +@@ -36,6 +36,7 @@ + * ***** END LICENSE BLOCK ***** */ + + #if defined(MOZ_WIDGET_QT) ++#include + #include "nsQAppInstance.h" + #endif + diff --git a/www/libxul/files/patch-toolkit_xre_Makefile.in b/www/libxul/files/patch-toolkit_xre_Makefile.in new file mode 100644 index 000000000000..4a9c8533a2f8 --- /dev/null +++ b/www/libxul/files/patch-toolkit_xre_Makefile.in @@ -0,0 +1,8 @@ +--- toolkit/xre/Makefile.in.orig 2007-09-10 10:31:53.000000000 -0400 ++++ toolkit/xre/Makefile.in 2007-09-10 10:35:00.000000000 -0400 +@@ -263,5 +263,3 @@ + libs:: platform.ini + $(INSTALL) $^ $(DIST)/bin + +-install:: +- $(INSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir) diff --git a/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp b/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp new file mode 100644 index 000000000000..83bda6c59b89 --- /dev/null +++ b/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp @@ -0,0 +1,11 @@ +--- xulrunner/stub/nsXULStub.cpp~ ++++ xulrunner/stub/nsXULStub.cpp +@@ -202,6 +202,8 @@ main(int argc, char **argv) + char greDir[MAXPATHLEN]; + bool greFound = false; + ++ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko19:%%LOCALBASE%%/lib/npapi/symlinks/xulrunner", 0); ++ + #if defined(XP_MACOSX) + CFBundleRef appBundle = CFBundleGetMainBundle(); + if (!appBundle) diff --git a/www/libxul/Makefile b/www/libxul19/Makefile similarity index 99% copy from www/libxul/Makefile copy to www/libxul19/Makefile index 5996f7fc619a..5a95502167a0 100644 --- a/www/libxul/Makefile +++ b/www/libxul19/Makefile @@ -1,97 +1,98 @@ # New ports collection makefile for: xulrunner # Date created: 2006-02-20 # Whom: Michael Johnson # # $FreeBSD$ # PORTNAME= libxul DISTVERSION= 1.9.2.28 PORTREVISION= 1 CATEGORIES?= www devel MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= firefox/releases/3.6.28/source DISTNAME= firefox-3.6.28.source MAINTAINER?= gecko@FreeBSD.org COMMENT?= Mozilla runtime package that can be used to bootstrap XUL+XPCOM apps WRKSRC= ${WRKDIR}/mozilla-1.9.2 CONFLICTS= mozilla-[0-9]* libxul-[0-9][0-9].* GECKO_PLIST_PRE_DIRS= lib/${MOZILLA}/bin lib/${MOZILLA}/idl \ lib/${MOZILLA}/include lib/${MOZILLA}/lib +LATEST_LINK= libxul19 USE_AUTOTOOLS= autoconf213:env WANT_GNOME= yes WANT_PERL= yes ALL_TARGET= default GNU_CONFIGURE= yes USE_BZIP2= yes USE_GMAKE= yes MAKE_JOBS_SAFE= yes MAKE_ENV= SKIP_GRE_REGISTRATION=1 mozappdir=${PREFIX}/lib/${MOZILLA} LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} USE_LDCONFIG= ${PREFIX}/lib/${MOZILLA} MOZ_OPTIONS?= --enable-application=xulrunner \ --disable-ipc MOZ_EXTENSIONS= default,cookie,permissions USE_GECKO= gecko MOZILLA_EXEC_NAME=xulrunner USE_MOZILLA= -event -ffi -vpx MOZ_CHROME= jar MOZILLA_PLIST_DIRS= bin include lib share/idl PLIST_DIRSTRY= share/idl MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-gtkmozembed-embedding \ mozilla-gtkmozembed mozilla-js mozilla-plugin OPTIONS_DEFINE= JAVA JAVA_DESC?= JAVA xpcom .include "${.CURDIR}/../../www/firefox/Makefile.options" OPTIONS_DEFINE:=${OPTIONS_DEFINE:NLIBPROXY} OPTIONS_SINGLE:=${OPTIONS_SINGLE:NTOOLKIT} .include .if ${USE_MOZILLA:M-nss} MOZ_PKGCONFIG_FILES+= mozilla-nss .endif .if ${ARCH} == amd64 CONFIGURE_TARGET=x86_64-portbld-freebsd${OSREL} .elif ${ARCH} == powerpc64 .if ${OSVERSION} < 900033 BROKEN= Needs binutils 2.17.50 to build .else MOZ_EXPORT+= UNAME_m="powerpc64" CFLAGS+= -mminimal-toc .endif .endif .if ${PORT_OPTIONS:MJAVA} USE_JAVA= yes JAVA_VERSION+= 1.5+ JAVA_OS+= native MOZ_EXPORT+= JAVA_HOME="${JAVA_HOME}" MOZ_OPTIONS+= --enable-javaxpcom .else MOZ_OPTIONS+= --disable-javaxpcom .endif post-patch: ${REINPLACE_CMD} -e 's|/usr/local/include|${LOCALBASE}/include|' \ ${WRKSRC}/js/src/config/mkdepend/Makefile.in pre-configure: (cd ${WRKSRC} && ${AUTOCONF}) (cd ${WRKSRC}/js/src/ && ${AUTOCONF}) post-build: @${REINPLACE_CMD} -e "s|\(Libs:.*\)\($$\)|\1 -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH}\2| ; \ s|%sdkdir%|%sdkdir%/sdk|g ; \ s|%%MOZ_LIBDIR%%|${PREFIX}/lib/${MOZILLA}|g" \ ${WRKSRC}/xulrunner/installer/*.pc.in || ${TRUE} .include diff --git a/www/libxul/distinfo b/www/libxul19/distinfo similarity index 100% copy from www/libxul/distinfo copy to www/libxul19/distinfo diff --git a/www/libxul/files/patch-alsapulse b/www/libxul19/files/patch-alsapulse similarity index 100% copy from www/libxul/files/patch-alsapulse copy to www/libxul19/files/patch-alsapulse diff --git a/www/libxul/files/patch-bug351181 b/www/libxul19/files/patch-bug351181 similarity index 100% rename from www/libxul/files/patch-bug351181 rename to www/libxul19/files/patch-bug351181 diff --git a/www/libxul/files/patch-bug653551 b/www/libxul19/files/patch-bug653551 similarity index 100% copy from www/libxul/files/patch-bug653551 copy to www/libxul19/files/patch-bug653551 diff --git a/www/libxul/files/patch-bug685258 b/www/libxul19/files/patch-bug685258 similarity index 100% copy from www/libxul/files/patch-bug685258 copy to www/libxul19/files/patch-bug685258 diff --git a/www/libxul/files/patch-bug761077 b/www/libxul19/files/patch-bug761077 similarity index 100% copy from www/libxul/files/patch-bug761077 copy to www/libxul19/files/patch-bug761077 diff --git a/www/libxul/files/patch-bug778078 b/www/libxul19/files/patch-bug778078 similarity index 100% copy from www/libxul/files/patch-bug778078 copy to www/libxul19/files/patch-bug778078 diff --git a/www/libxul/files/patch-bug781457 b/www/libxul19/files/patch-bug781457 similarity index 100% copy from www/libxul/files/patch-bug781457 copy to www/libxul19/files/patch-bug781457 diff --git a/www/libxul/files/patch-config_autoconf.mk.in b/www/libxul19/files/patch-config_autoconf.mk.in similarity index 100% copy from www/libxul/files/patch-config_autoconf.mk.in copy to www/libxul19/files/patch-config_autoconf.mk.in diff --git a/www/libxul/files/patch-content-xslt-public-txDouble.h b/www/libxul19/files/patch-content-xslt-public-txDouble.h similarity index 100% rename from www/libxul/files/patch-content-xslt-public-txDouble.h rename to www/libxul19/files/patch-content-xslt-public-txDouble.h diff --git a/www/libxul/files/patch-embedding_base_nsEmbedAPI.cpp b/www/libxul19/files/patch-embedding_base_nsEmbedAPI.cpp similarity index 100% rename from www/libxul/files/patch-embedding_base_nsEmbedAPI.cpp rename to www/libxul19/files/patch-embedding_base_nsEmbedAPI.cpp diff --git a/www/libxul/files/patch-gfx-ots-src-os2.cc b/www/libxul19/files/patch-gfx-ots-src-os2.cc similarity index 100% rename from www/libxul/files/patch-gfx-ots-src-os2.cc rename to www/libxul19/files/patch-gfx-ots-src-os2.cc diff --git a/www/libxul/files/patch-js-ctypes-libffi-configure b/www/libxul19/files/patch-js-ctypes-libffi-configure similarity index 100% rename from www/libxul/files/patch-js-ctypes-libffi-configure rename to www/libxul19/files/patch-js-ctypes-libffi-configure diff --git a/www/libxul/files/patch-js-src-jslock.cpp b/www/libxul19/files/patch-js-src-jslock.cpp similarity index 100% rename from www/libxul/files/patch-js-src-jslock.cpp rename to www/libxul19/files/patch-js-src-jslock.cpp diff --git a/www/libxul/files/patch-media-liboggz-include-oggz-oggz_off_t_generated.h b/www/libxul19/files/patch-media-liboggz-include-oggz-oggz_off_t_generated.h similarity index 100% rename from www/libxul/files/patch-media-liboggz-include-oggz-oggz_off_t_generated.h rename to www/libxul19/files/patch-media-liboggz-include-oggz-oggz_off_t_generated.h diff --git a/www/libxul/files/patch-media-libsydneyaudio-src-Makefile.in b/www/libxul19/files/patch-media-libsydneyaudio-src-Makefile.in similarity index 100% rename from www/libxul/files/patch-media-libsydneyaudio-src-Makefile.in rename to www/libxul19/files/patch-media-libsydneyaudio-src-Makefile.in diff --git a/www/libxul19/files/patch-media-libsydneyaudio-src-sydney_audio_oss.c b/www/libxul19/files/patch-media-libsydneyaudio-src-sydney_audio_oss.c new file mode 100644 index 000000000000..a7fd5f1ffd09 --- /dev/null +++ b/www/libxul19/files/patch-media-libsydneyaudio-src-sydney_audio_oss.c @@ -0,0 +1,13 @@ +--- media/libsydneyaudio/src/sydney_audio_oss.c~ ++++ media/libsydneyaudio/src/sydney_audio_oss.c +@@ -446,6 +446,10 @@ static void audio_callback(void* data) + printf("!"); /* not enough audio data */ + #endif + bytes = bytes-bytes_to_copy; ++ struct timespec ts = {0, 1000000}; ++ pthread_mutex_unlock(&s->mutex); ++ nanosleep(&ts, NULL); ++ pthread_mutex_lock(&s->mutex); + break; + } + free(s->bl_head); diff --git a/www/libxul/files/patch-modules-libpr0n-encoders-png-nsPNGDecoder.cpp b/www/libxul19/files/patch-modules-libpr0n-encoders-png-nsPNGDecoder.cpp similarity index 100% rename from www/libxul/files/patch-modules-libpr0n-encoders-png-nsPNGDecoder.cpp rename to www/libxul19/files/patch-modules-libpr0n-encoders-png-nsPNGDecoder.cpp diff --git a/www/libxul/files/patch-modules-libpr0n-encoders-png-nsPNGEncoder.cpp b/www/libxul19/files/patch-modules-libpr0n-encoders-png-nsPNGEncoder.cpp similarity index 100% rename from www/libxul/files/patch-modules-libpr0n-encoders-png-nsPNGEncoder.cpp rename to www/libxul19/files/patch-modules-libpr0n-encoders-png-nsPNGEncoder.cpp diff --git a/www/libxul/files/patch-modules-libpref-src-prefapi.cpp b/www/libxul19/files/patch-modules-libpref-src-prefapi.cpp similarity index 100% rename from www/libxul/files/patch-modules-libpref-src-prefapi.cpp rename to www/libxul19/files/patch-modules-libpref-src-prefapi.cpp diff --git a/www/libxul19/files/patch-security_manager_ssl_src_nsNSSComponent.cpp b/www/libxul19/files/patch-security_manager_ssl_src_nsNSSComponent.cpp new file mode 100644 index 000000000000..f30d12229ccd --- /dev/null +++ b/www/libxul19/files/patch-security_manager_ssl_src_nsNSSComponent.cpp @@ -0,0 +1,10 @@ +--- security/manager/ssl/src/nsNSSComponent.cpp.orig Mon May 29 23:10:54 2006 ++++ security/manager/ssl/src/nsNSSComponent.cpp Mon May 29 23:12:22 2006 +@@ -110,6 +110,7 @@ + #include "nss.h" + #include "pk11func.h" + #include "ssl.h" ++#define NSS_ENABLE_ECC 1 + #include "sslproto.h" + #include "secmod.h" + #include "sechash.h" diff --git a/www/libxul/files/patch-toolkit_library_Makefile.in b/www/libxul19/files/patch-toolkit_library_Makefile.in similarity index 100% rename from www/libxul/files/patch-toolkit_library_Makefile.in rename to www/libxul19/files/patch-toolkit_library_Makefile.in diff --git a/www/libxul/files/patch-xpcom_base_nsStackWalk.cpp b/www/libxul19/files/patch-xpcom_base_nsStackWalk.cpp similarity index 100% rename from www/libxul/files/patch-xpcom_base_nsStackWalk.cpp rename to www/libxul19/files/patch-xpcom_base_nsStackWalk.cpp diff --git a/www/libxul19/files/patch-xulrunner_installer_libxul-embedding.pc.in b/www/libxul19/files/patch-xulrunner_installer_libxul-embedding.pc.in new file mode 100644 index 000000000000..e7ffbd5d1a9d --- /dev/null +++ b/www/libxul19/files/patch-xulrunner_installer_libxul-embedding.pc.in @@ -0,0 +1,9 @@ +--- xulrunner/installer/libxul-embedding.pc.in~ ++++ xulrunner/installer/libxul-embedding.pc.in +@@ -6,5 +6,5 @@ idldir=%idldir% + Name: libxul-embedding + Description: Static library for version-independent embedding of the Mozilla runtime + Version: %MOZILLA_VERSION% +-Libs: -L${sdkdir}/lib -lxpcomglue -ldl ++Libs: -L${sdkdir}/lib -L%%MOZ_LIBDIR%% -lxpcomglue + Cflags: -DXPCOM_GLUE -I${includedir} %WCHAR_CFLAGS% diff --git a/www/libxul19/files/patch-xulrunner_installer_libxul.pc.in b/www/libxul19/files/patch-xulrunner_installer_libxul.pc.in new file mode 100644 index 000000000000..279e6cd2f614 --- /dev/null +++ b/www/libxul19/files/patch-xulrunner_installer_libxul.pc.in @@ -0,0 +1,9 @@ +--- xulrunner/installer/libxul.pc.in.orig 2010-01-21 04:31:27.000000000 +0100 ++++ xulrunner/installer/libxul.pc.in 2010-06-21 19:39:57.000000000 +0200 +@@ -7,5 +7,5 @@ + Description: The Mozilla Runtime and Embedding Engine + Version: %MOZILLA_VERSION% + Requires: %NSPR_NAME% >= %NSPR_VERSION% +-Libs: -L${sdkdir}/lib -lxpcomglue_s -lxul -lxpcom ++Libs: -L${sdkdir}/lib -L%%MOZ_LIBDIR%% -lxpcomglue_s -lxul -lxpcom + Cflags: -I${includedir} %WCHAR_CFLAGS% diff --git a/www/libxul19/pkg-descr b/www/libxul19/pkg-descr new file mode 100644 index 000000000000..a4c33d7dfb77 --- /dev/null +++ b/www/libxul19/pkg-descr @@ -0,0 +1,7 @@ +Mozilla runtime package that can be used to bootstrap XUL+XPCOM applications +that are as rich as Firefox and Thunderbird. It will provide mechanisms for +installing, upgrading, and uninstalling these applications. XULRunner will +also provide libxul, a solution which allows the embedding of Mozilla +technologies in other projects and products. + +WWW: http://developer.mozilla.org/en/docs/XULRunner diff --git a/www/moonshine/Makefile b/www/moonshine/Makefile index c7c73d91ee7a..cadc8a202327 100644 --- a/www/moonshine/Makefile +++ b/www/moonshine/Makefile @@ -1,59 +1,59 @@ # New ports collection makefile for: moonshine # Date created: May 14 2009 # Whom: Florent Thoumie # # $FreeBSD$ # PORTNAME= moonshine PORTVERSION= 0.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www multimedia MASTER_SITES= http://romain.blogreen.org/distfiles/ DISTNAME= abock-${PORTNAME}-${GITCOMMIT} MAINTAINER= mono@FreeBSD.org COMMENT= Windows Media playback through Moonlight and Firefox BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash GITCOMMIT= 35085a4 USE_GMAKE= yes -USE_GECKO= libxul +USE_GECKO= libxul19 USE_AUTOTOOLS= libtool libtoolize aclocal autoconf autoheader automake LIBTOOLIZE_ARGS= --force --copy --automake AUTOMAKE_ARGS= --gnu --add-missing --force --copy -Wno-portability ACLOCAL_ARGS= CONFIGURE_ARGS= --with-browser-plugin-dir=${PREFIX}/lib/browser_plugins/${PORTNAME}/ USE_WEBPLUGINS= gecko19 WEBPLUGINS_DIR= ${PREFIX}/lib/browser_plugins/${PORTNAME}/ WEBPLUGINS_FILES= libmoonshine-plugin.so .include .include "${PORTSDIR}/www/firefox/Makefile.webplugins" ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than i386 and amd64" .if defined(WITH_XPI_PLUGIN_ONLY) CONFIGURE_ARGS+=--enable-xpi-build PLIST= ${NONEXISTENT} PLIST_FILES= ${WEBPLUGINS_DIR}/${PKGNAME}-freebsd-${OSREL}.xpi .endif post-patch: ${REINPLACE_CMD} -e 's|#!/bin/bash|#!${LOCALBASE}/bin/bash|' \ ${WRKSRC}/plugin/xpi/dist-build/build-all-arch \ ${WRKSRC}/xulrunner/icon-theme-hicolor/icon-theme-installer ${REINPLACE_CMD} -e 's|sed -r|sed -E|' \ ${WRKSRC}/plugin/Makefile.am \ ${WRKSRC}/plugin/generate-resource .if defined(WITH_XPI_PLUGIN_ONLY) do-install: ${INSTALL_DATA} ${WRKSRC}/plugin/xpi/moonshine.xpi \ ${WEBPLUGINS_DIR}/${PKGNAME}-freebsd-${OSREL}.xpi .endif .include diff --git a/www/openvrml/Makefile b/www/openvrml/Makefile index e378353999eb..16bf7a313763 100644 --- a/www/openvrml/Makefile +++ b/www/openvrml/Makefile @@ -1,107 +1,107 @@ # New ports collection makefile for: OpenVRML # Date created: 8 Jan 2001 # Whom: Marc van Woerkom <3d@freebsd.org> # # $FreeBSD$ # PORTNAME= openvrml PORTVERSION= 0.18.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www graphics MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= VRML97 runtime and browser BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ js.1:${PORTSDIR}/lang/spidermonkey17 \ jpeg.11:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png \ curl.6:${PORTSDIR}/ftp/curl \ gtkglext-x11-1.0:${PORTSDIR}/x11-toolkits/gtkglext USE_GL= yes USE_GNOME= gnomehack libglade2 libgnomeui USE_SDL= sdl USE_JAVA= yes USE_GCC= 4.6+ USE_PKGCONFIG= yes GNU_CONFIGURE= yes LIBTOOLFILES= configure CONFIGURE_ARGS= --enable-gecko-rpath \ --disable-mozilla-plugin CONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" PTHREAD_LIBS="${PTHREAD_LIBS}" \ LIBS="-lm" BOOST_LIB_SUFFIX="" CPPFLAGS+= -I${LOCALBASE}/include -I${JAVA_HOME}/include -I${JAVA_HOME}/include/${OPSYS:L} \ -I${LOCALBASE}/include/libpng15 LDFLAGS+= -L${LOCALBASE}/lib -L${JAVA_HOME}/jre/lib/${ARCH}/client ${PTHREAD_LIBS} USE_GMAKE= yes USE_LDCONFIG= yes -USE_GECKO= libxul +USE_GECKO= libxul19 USE_WEBPLUGINS= native WEBPLUGINS_FILES=openvrml.so MAKE_JOBS_UNSAFE=yes .if !defined(NOPORTDOCS) PORTDOCS= * .endif .include .include "${PORTSDIR}/www/firefox/Makefile.webplugins" .if ${ARCH} == "sparc64" BROKEN= Gets internal gcc error on ${ARCH} .endif LIB_DEPENDS+= boost_regex.4:${PORTSDIR}/devel/boost-libs LIB_DEPENDS+= boost_python.4:${PORTSDIR}/devel/boost-python-libs pre-everything:: @${ECHO_MSG} @${ECHO_MSG} "Warning: building this port eats up to 1.5 GB of RAM (32 bits) or 3 GB (64 bits)" @${ECHO_MSG} "of RAM; do not try to build it on a small configuration!" @${ECHO_MSG} pre-configure: ${REINPLACE_CMD} -e \ 's|JNI_LIBS="|JNI_LIBS="-L${JAVA_HOME}/jre/lib/${ARCH}/client -Wl,-rpath,${JAVA_HOME}/jre/lib/${ARCH}/client |' \ ${WRKSRC}/configure ${REINPLACE_CMD} -e \ 's|-rpath $$(libdir)|-rpath $$(libdir) -rpath ${JAVA_HOME}/jre/lib/${ARCH}/client|' \ ${WRKSRC}/src/Makefile.in ${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -E -e \ 's|-DG[[:alpha:]]*_DISABLE_DEPRECATED||g' .for cfg in ${LIBTOOLFILES} ${REINPLACE_CMD} -e \ "/hardcode_libdir_flag_spec/s|\(=.\)\(.*\)\(\$$libdir\)|& \2${JAVA_HOME}/jre/lib/${ARCH}/client|" \ ${WRKSRC}/${cfg} .endfor ${REINPLACE_CMD} -e 's|$$(libdir)/mozilla/plugins|${WEBPLUGINS_DIR}|' \ ${WRKSRC}/src/Makefile.in .if ${GECKO} != "firefox" - ${REINPLACE_CMD} -e "s|FIREFOX_JS|${GECKO:U}_JS|g;s|firefox-js|${GECKO}-js|" \ + ${REINPLACE_CMD} -e "s|FIREFOX_JS|${GECKO:S/19//:U}_JS|g;s|firefox-js|${GECKO:S/19//}-js|" \ ${WRKSRC}/configure - ${REINPLACE_CMD} -e "s|firefox-plugin|${GECKO}-plugin|g" \ + ${REINPLACE_CMD} -e "s|firefox-plugin|${GECKO:S/19//}-plugin|g" \ ${WRKSRC}/configure - ${REINPLACE_CMD} -e "s|mozilla-plugin|${GECKO}|g" \ + ${REINPLACE_CMD} -e "s|mozilla-plugin|${GECKO:S/19//}|g" \ ${WRKSRC}/configure ${REINPLACE_CMD} -e "s|boost_thread-mt|boost_thread|g" \ ${WRKSRC}/configure .endif post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${CP} -R ${WRKSRC}/doc/manual/ ${DOCSDIR} @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/models/*.wrl ${EXAMPLESDIR} .endif regression-test: (cd ${BUILD_WRKSRC}/tests ; \ ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check-TESTS) .include diff --git a/www/xpi-conkeror/Makefile b/www/xpi-conkeror/Makefile index bac0f1afb243..ee953d8bdd29 100644 --- a/www/xpi-conkeror/Makefile +++ b/www/xpi-conkeror/Makefile @@ -1,56 +1,56 @@ # New ports collection makefile for: conkeror # Date created: 27 April 2006 # Whom: Andrew Pantyukhin # # $FreeBSD$ # PORTNAME= conkeror PORTVERSION= 20090821 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www MASTER_SITES= http://mirror.4bit.ws/ \ ${MASTER_SITE_LOCAL} \ ${MASTER_SITE_FREEBSD} MASTER_SITE_SUBDIR= dhn MAINTAINER= ashish@FreeBSD.org COMMENT= A completely keyboard driven browser based on firefox WRKSRC= ${WRKDIR}/conkeror -USE_GECKO= libxul +USE_GECKO= libxul19 BUILD_ID=echo -n `whoami`@`hostname`_`date +%s` post-patch: cd ${WRKSRC} && \ ${REINPLACE_CMD} -e "s/%%PREFIX%%/${PREFIX:S/\//\\\//g}/g" \ ${WRKSRC}/conkeror && \ ${MV} debian/conkeror.desktop . && \ ${RM} -rf debian tests && \ ${MKDIR} share && \ ${MV} branding chrome components content \ contrib defaults locale modules search-engines help style share do-build: ${MAKE} -C ${WRKSRC} do-install: ${MKDIR} ${PREFIX}/libexec/conkeror ${MKDIR} ${DESKTOPDIR} cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${DATADIR} ${SED} -e "s/BuildID=git/BuildID=$$(${BUILD_ID})/g" \ -e "s/^Version=\(.*\)$$/Version=\1 (FreeBSD-${OSREL})/g" \ <${WRKSRC}/application.ini >${DATADIR}/application.ini ${REINPLACE_CMD} -e "s/\\\$$CONKEROR_VERSION\\$$/`${GREP} \ '^Version=' ${WRKSRC}/application.ini |${SED} \ -e 's/^Version=//'` (FreeBSD-${OSREL})/g" ${DATADIR}/components/application.js ${INSTALL_SCRIPT} ${WRKSRC}/conkeror ${PREFIX}/bin/ ${INSTALL_DATA} ${WRKSRC}/conkeror.desktop ${DESKTOPDIR} ${INSTALL_PROGRAM} ${WRKSRC}/conkeror-spawn-helper ${PREFIX}/libexec/conkeror/ ${LN} -sf ${PREFIX}/libexec/conkeror/conkeror-spawn-helper ${DATADIR}/ post-install: @-update-desktop-database .include diff --git a/www/xpi-gwt-dev-plugin/Makefile b/www/xpi-gwt-dev-plugin/Makefile index fa8ac9d2e0bd..26f4096556f3 100644 --- a/www/xpi-gwt-dev-plugin/Makefile +++ b/www/xpi-gwt-dev-plugin/Makefile @@ -1,57 +1,57 @@ # New ports collection makefile for: xpi-gwt-dev-plugin # Date created: 2010/01/20 # Whom: Jonathan Chen # # $FreeBSD$ # PORTNAME= xpi-gwt-dev-plugin PORTVERSION= 2.0 PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://sites.google.com/site/daemonwizard/ DISTNAME= gwt-dev-plugin-${PORTVERSION}-partial MAINTAINER= ports@FreeBSD.org COMMENT= Google Web Toolkit Developer Plugin for Firefox -BUILD_DEPENDS= ${LOCALBASE}/lib/libxul/xpidl:${PORTSDIR}/www/libxul +BUILD_DEPENDS= ${LOCALBASE}/lib/libxul/xpidl:${PORTSDIR}/www/libxul19 ONLY_FOR_ARCHS= amd64 i386 USE_BZIP2= yes USE_FIREFOX_BUILD= 35 USE_GMAKE= yes WRKSRC= ${WRKDIR}/gwt-dev-plugin BUILD_WRKSRC= ${WRKSRC}/xpcom XPI_ID= gwt-dmp-ff35@gwt.google.com XPI_LIBDIR= ${PREFIX}/lib/xpi XPI_XPIDIR= ${XPI_LIBDIR}/${XPI_ID} XPI_FILESDIR= ${BUILD_WRKSRC}/prebuilt/extension-ff35 FETCH_ARGS= -p -o ${DISTDIR}/${DISTFILES} do-fetch: @if [ ! -f ${DISTDIR}/${DISTFILES} ]; then \ ${FETCH_CMD} ${MASTER_SITES}${DISTFILES}?attredirects=0\&d=1 ; \ fi xpi-post-extract: ${RM} -rf ${XPI_FILESDIR}/.svn ${XPI_FILESDIR}/*/.svn ${XPI_FILESDIR}/platform/* do-install: ${MKDIR} ${XPI_XPIDIR} ${CP} -R ${XPI_FILESDIR}/ ${XPI_XPIDIR} ${LN} -s ${XPI_XPIDIR} ${LOCALBASE}/lib/firefox3/extensions post-install: @${FIND} -s ${XPI_FILESDIR} -not -type d | \ ${SED} -ne 's,^${XPI_FILESDIR}/,${XPI_XPIDIR:S,^${PREFIX}/,,}/,p' >> ${TMPPLIST} @${FIND} -s -d ${XPI_FILESDIR} -type d | \ ${SED} -ne 's,^${XPI_FILESDIR}/,@dirrm ${XPI_XPIDIR:S,^${PREFIX}/,,}/,p' >> ${TMPPLIST} @${ECHO_CMD} "@dirrm ${XPI_XPIDIR:S,^${PREFIX}/,,}" >> ${TMPPLIST} @${ECHO_CMD} "@dirrm ${XPI_LIBDIR:S,^${PREFIX}/,,}" >> ${TMPPLIST} .include diff --git a/x11-toolkits/swt/Makefile b/x11-toolkits/swt/Makefile index 5926f1b6d4fe..4be3767338ef 100644 --- a/x11-toolkits/swt/Makefile +++ b/x11-toolkits/swt/Makefile @@ -1,93 +1,93 @@ # New ports collection makefile for: swt # Date created: 2006-11-16 # Whom: Robert C. Noland III # # $FreeBSD$ # PORTNAME= swt DISTVERSION= 3.5.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits devel java #MASTER_SITES= ${MASTER_SITE_ECLIPSE} MASTER_SITES= http://archive.eclipse.org/eclipse/downloads/drops/${MASTER_SITE_SUBDIR}/ MASTER_SITE_SUBDIR= R-${DISTVERSION}-201002111343 DISTNAME= swt-${DISTVERSION}-${DIST_EXT} MAINTAINER= giffunip@tutopia.com COMMENT= Standard Widget Toolkit for Java LICENSE= EPL ONLY_FOR_ARCHS= i386 amd64 CONFLICTS= swt-3.1* SWT_VERSION= 3557 OUTPUT_JAR= swt.jar USE_ZIP= yes USE_GL= yes USE_GNOME= gtk20 pkgconfig USE_JAVA= yes JAVA_VERSION= 1.5+ JAVA_OS= native USE_ANT= yes MAKE_ARGS+= -Doutput.jar=${OUTPUT_JAR} MAKEFILE= make_freebsd.mak USE_LDCONFIG= yes PLIST_SUB= BUILD=${SWT_VERSION} PLIST_FILES= %%JAVAJARDIR%%/${OUTPUT_JAR} \ lib/libswt-atk-gtk-%%BUILD%%.so \ lib/libswt-awt-gtk-%%BUILD%%.so \ lib/libswt-gtk-%%BUILD%%.so \ lib/libswt-glx-gtk-%%BUILD%%.so \ lib/libswt-pi-gtk-%%BUILD%%.so NO_WRKSUBDIR= yes OPTIONS= CAIRO "Cairo Support" on \ GNOMEVFS "Gnome VFS Support" on \ BROWSER "Gecko Browser Support" on .include .if defined(WITH_CAIRO) LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo PLIST_FILES+= lib/libswt-cairo-gtk-%%BUILD%%.so MAKE_CAIRO= make_cairo .endif .if defined(WITH_GNOMEVFS) USE_GNOME+= gnomevfs2 libgnome libgnomeui PLIST_FILES+= lib/libswt-gnome-gtk-%%BUILD%%.so MAKE_GNOME= make_gnome .endif .if defined(WITH_BROWSER) -USE_GECKO= libxul +USE_GECKO= libxul19 PLIST_FILES+= lib/libswt-xulrunner-gtk-%%BUILD%%.so MAKE_MOZILLA= make_xulrunner .endif MAKE_ENV+= MAKE_CAIRO=${MAKE_CAIRO} \ MAKE_GNOME=${MAKE_GNOME} \ MAKE_MOZILLA=${MAKE_MOZILLA} \ JAVA_HOME=${JAVA_HOME} .if (${ARCH} == "amd64") DIST_EXT= gtk-linux-x86_64 .else DIST_EXT= gtk-linux-x86 .endif post-extract: @(cd ${WRKSRC} && ${UNZIP_CMD} -qo "*.zip") @${RM} -f ${WRKSRC}/*.o ${WRKSRC}/*.so ${WRKSRC}/*.jar do-install: ${MKDIR} ${JAVAJARDIR} ${INSTALL_DATA} ${WRKSRC}/libswt-*.so ${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/${OUTPUT_JAR} ${JAVAJARDIR}/ .include diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile index b3843967b838..6943190aee43 100644 --- a/x11/yelp/Makefile +++ b/x11/yelp/Makefile @@ -1,56 +1,61 @@ # New ports collection makefile for: yelp # Date created: 18 May 2002 # Whom: Maxim Sobolev # # $FreeBSD$ # $MCom: ports/x11/yelp/Makefile,v 1.164 2010/10/18 13:37:34 kwm Exp $ # PORTNAME= yelp PORTVERSION= 2.30.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11 gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= A help browser for the GNOME 2 desktop LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ startup-notification-1.0:${PORTSDIR}/x11/startup-notification \ rarian.0:${PORTSDIR}/textproc/rarian CONFLICTS= yelp-2.31.* -USE_GECKO= libxul +USE_GECKO= libxul19 USE_GETTEXT= yes USE_BZIP2= yes USE_XORG= ice USE_GMAKE= yes USE_GNOME= gnomeprefix gnomehack intlhack gconf2 gnomedocutils GNU_CONFIGURE= yes INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS= --with-gecko=${GECKO} \ - --with-gecko-home=${LOCALBASE}/lib/${GECKO} +CONFIGURE_ARGS= --with-gecko=${GECKO:S/19//} \ + --with-gecko-home=${LOCALBASE}/lib/${GECKO:S/19//} MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias" GCONF_SCHEMAS= yelp.schemas .include # Around the time GCC stack protection (aka Propolice) for userland # was enabled on src/share/mk/bsd.sys.mk # SVN rev 180012 on 2008-06-25 21:33:28Z by ru .if ${OSVERSION} >= 800040 LDFLAGS+= -fstack-protector .endif post-extract: ${RM} -f ${WRKSRC}/data/yelp.schemas +post-patch: + @${REINPLACE_CMD} -e 's,[-/]unstable,,' \ + -e 's/ --define-variable=includetype=unstable//' \ + ${WRKSRC}/configure + post-install: @-update-mime-database ${PREFIX}/share/mime .include