diff options
894 files changed, 0 insertions, 72450 deletions
diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk deleted file mode 100644 index 06aa0e27e..000000000 --- a/Mk/bsd.gecko.mk +++ /dev/null @@ -1,657 +0,0 @@ -#-*- mode: Fundamental; tab-width: 4; -*- -# ex:ts=4 -# -# Date created: 12 Nov 2005 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/Mk/bsd.gecko.mk,v 1.9 2009/03/30 06:38:09 marcus Exp $ -# -# 4 column tabs prevent hair loss and tooth decay! - -# ======================= USERS ================================= -# To specify which gecko-based backend you prefer, use something like: -# -# WITH_GECKO= firefox -# -# The valid backends are: -# firefox flock nvu seamonkey thunderbird xulrunner -# -# 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= gnome@FreeBSD.org -Gecko_Pre_Include= bsd.gecko.mk - -# Users should use the following syntax: -# -# WITH_GECKO= mozilla firefox seamonkey -# Use mozilla whenever a port supports it, falling back on firefox and -# then seamonkey. -# WITH_GECKO= firefox -# Sets your preferred backend. With this example, firefox will always -# be chosen, unless the port doesn't support a firefox 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= mozilla firefox seamonkey -# 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/mozilla will be used -# as a gecko backend unless WITH_GECKO=firefox or WITH_GECKO=seamonkey -# is defined by the user. -# -# USE_GECKO= firefox-devel<->firefox -# This will sed -e 's/firefox/firefox-devel/' on Makefile.in's and configure -# if ${GECKO}=="firefox-devel" -# -# Example: -# USE_GECKO= mozilla firefox seamonkey -# -# post-patch: -# @${REINPALCE_CMD} -e 's|mozilla-|${GECKO}-|' \ -# ${WRKSRC}/configure -# -# If you want your port to check the ${GECKO} variable to see which backend -# has been chosen. -# -# Example: -# USE_GECKO= mozilla firefox seamonkey -# -# post-patch: -# .if ${GECKO}=="seamonkey" -# @${REINPLACE_CMD} -e 's|mozilla-|seamonkey-|' \ -# ${WRKSRC}/configure -# .endif - -_GECKO_ALL= firefox nvu seamonkey thunderbird xulrunner flock mozilla \ - libxul - -thunderbird_PORTSDIR= mail -libxul_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 - -.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, -# jpeg, nspr, nss, png, xft 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_TOOLKIT A variable for the --enable-default-toolkit= in -# CONFIGURE_ARGS. The default is gtk2. -# -# MOZ_EXTENSIONS A list of extensions to build -# -# MOZ_GRAPHICS A list of image decoders 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?= gnome@FreeBSD.org - -MOZILLA?= ${PORTNAME} -MOZILLA_VER?= ${PORTVERSION} -MOZILLA_BIN?= ${PORTNAME}-bin -MOZILLA_EXEC_NAME?=${MOZILLA} -MOZ_RPATH?= ${MOZILLA} -USE_GNOME+= gtk20 libidl desktopfileutils -USE_ICONV= yes -USE_PERL5_BUILD=yes -USE_XORG= printproto sm xt xi xext x11 xinerama \ - ice xproto - -MOZILLA_SUFX?= none -WRKSRC?= ${WRKDIR}/mozilla -FAKEDIR?= ${WRKDIR}/fake -PLIST?= ${WRKDIR}/plist -PLISTD?= ${WRKDIR}/plist_dirs -PLISTF?= ${WRKDIR}/plist_files -MASTER_DIR?= ${.CURDIR}/../../www/mozilla - -KRB5_HOME?= /usr -MOZ_PIS_DIR?= lib/${MOZILLA}/init.d - -ESD_LIB?= libesd.so.2 -FREETYPE_LIB?= libfreetype.so.9 - -GENERIC_MOZCONFIG?= ${.CURDIR}/../../www/mozilla/files/mozconfig-generic.in -PORT_MOZCONFIG?= ${FILESDIR}/mozconfig.in -MOZCONFIG?= ${WRKSRC}/.mozconfig -MOZILLA_PLIST_DIRS?= bin include lib share/idl -GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} -m 1 pthread | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} -PKGINSTALL?= ${WRKDIR}/pkg-install -PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall -MASTER_MOZDIR?= ${PORTSDIR}/www/mozilla -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 - -CFLAGS+= ${PTHREAD_CFLAGS} -LIBS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -liconv - -_USE_GECKO_OPTIONS_ALL= java debug logging optimized_cflags - -.if !defined(USE_GECKO_OPTIONS) -USE_GECKO_OPTIONS= debug logging optimized_cflags -.endif - -debug_OPTION= "Build a debugging image" off -java_OPTION= "Enable JAVA xpcom" off -logging_OPTION= "Enable additional log messages" off -optimized_cflags_OPTION= "Enable some additional optimizations" off - -.for option in ${USE_GECKO_OPTIONS:L} -.if ${_USE_GECKO_OPTIONS_ALL:M${option}}!="" -OPTIONS+= ${option:U} ${${option}_OPTION} -_${option}= ${TRUE} -.endif -.endfor - -# Standard depends -_ALL_DEPENDS= cairo dbm jpeg nspr nss png xft zip - -cairo_LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo -cairo_MOZ_OPTIONS= --enable-system-cairo -cairo_EXTRACT_AFTER_ARGS= --exclude mozilla/gfx/cairo - -dbm_EXTRACT_AFTER_ARGS= --exclude mozilla/dbm - -jpeg_LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg -jpeg_MOZ_OPTIONS= --with-system-jpeg=${LOCALBASE} -jpeg_EXTRACT_AFTER_ARGS= --exclude mozilla/jpeg - -nspr_LIB_DEPENDS= nspr4:${PORTSDIR}/devel/nspr -nspr_MOZ_OPTIONS= --with-system-nspr - -nss_LIB_DEPENDS= nss3:${PORTSDIR}/security/nss -nss_EXTRACT_AFTER_ARGS= --exclude mozilla/security/nss -nss_MOZ_OPTIONS= --with-system-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= png.5:${PORTSDIR}/graphics/png -png_MOZ_OPTIONS= --with-system-png=${LOCALBASE} - -xft_LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/libXft -zip_DEPENDS= zip:${PORTSDIR}/archivers/zip - -.for use in ${USE_MOZILLA} -${use:S/-/_WITHOUT_/}= ${TRUE} -.endfor - -.for dep in ${_ALL_DEPENDS} -.if !defined(_WITHOUT_${dep}) -BUILD_DEPENDS+= ${${dep}_DEPENDS} -LIB_DEPENDS+= ${${dep}_LIB_DEPENDS} -RUN_DEPENDS+= ${${dep}_DEPENDS} -MOZ_OPTIONS+= ${${dep}_MOZ_OPTIONS} -EXTRACT_AFTER_ARGS+= ${${dep}_EXTRACT_AFTER_ARGS} -CPPFLAGS+= ${${dep}_CPPFLAGS} -LDFLAGS+= ${${dep}_LDFLAGS} -.endif -.endfor - -# Standard options from README -MOZ_TOOLKIT?= gtk2 -MOZ_OPTIONS+= --enable-crypto \ - --disable-tests \ - --enable-default-toolkit=${MOZ_TOOLKIT} \ - --enable-xft \ - --with-pthreads -# Configure options for install -MOZ_OPTIONS+= --x-includes=${LOCALBASE}/include \ - --x-libraries=${LOCALBASE}/lib -.if !defined(MOZ_EXTENSIONS) -MOZ_OPTIONS+= --enable-extensions=default -.else -MOZ_OPTIONS+= --enable-extensions=${MOZ_EXTENSIONS} -.endif -.if !defined(MOZ_GRAPHICS) -MOZ_OPTIONS+= --enable-image-decoders=default -.else -MOZ_OPTIONS+= --enable-image-decoders=${MOZ_GRAPHICS} -.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=/usr \ - --with-gssapi=${KRB5_HOME} \ - --disable-auto-deps \ - --enable-chrome-format=jar \ - --disable-cpp-exceptions \ - --disable-cpp-rtti \ - --disable-glibtest \ - --disable-gtktest \ - --disable-freetypetest \ - --enable-double-buffer \ - --enable-mathml \ - --disable-installer \ - --disable-md \ - --disable-pedantic \ - --disable-bidi \ - --disable-xterm-updates \ - --disable-xprint \ - --enable-xinerama -MOZ_MK_OPTIONS+= XP_UNIX=1 \ - PERL=${PERL} - -.if defined(WITH_OPTIMIZED_CFLAGS) -CFLAGS:= ${CFLAGS} -O2 -fno-strict-aliasing ${EXTRA_CFLAGS} -WITH_OPTIMIZE?= -O2 -.else -CFLAGS:= ${CFLAGS} ${EXTRA_CFLAGS} -WITH_OPTIMIZE?= -.endif - -.if defined(WITH_SMB) -USE_GNOME+= gnomevfs2 -MOZ_OPTIONS+= --enable-gnomevfs -.else -MOZ_OPTIONS+= --disable-gnomevfs -.endif - -.if defined(WITH_DEBUG) -MOZ_OPTIONS+= --enable-debug \ - --disable-strip -WITH_LOGGING= yes -.else -MOZ_OPTIONS+= --disable-debug \ - --enable-optimize=${WITH_OPTIMIZE} \ - --enable-strip -.endif - -.if defined(WITH_JAVA) && defined(_WITH_JAVA) -USE_JAVA= yes -JAVA_VERSION+= 1.4+ -JAVA_OS+= native -CONFIGURE_ENV+= JAVA_HOME="${JAVA_HOME}" -MOZ_OPTIONS+= --enable-javaxpcom -.endif - -.if defined(WITH_LOGGING) -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|@KRB5_HOME@|${KRB5_HOME}|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|%%KRB5_HOME%%|${KRB5_HOME}|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 - -.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 exists(${GENERIC_MOZCONFIG}) - @${MOZCONFIG_SED} < ${GENERIC_MOZCONFIG} >> ${MOZCONFIG} -.endif - @if [ -e ${PORT_MOZCONFIG} ] ; then \ - ${MOZCONFIG_SED} < ${PORT_MOZCONFIG} >> ${MOZCONFIG} ; \ - fi -.for arg in ${MOZ_OPTIONS} - @${ECHO_CMD} ac_add_options ${arg} >> ${MOZCONFIG} -.endfor -.for arg in ${MOZ_MK_OPTIONS} - @${ECHO_CMD} mk_add_options ${arg} >> ${MOZCONFIG} -.endfor -.for var in ${MOZ_EXPORT} - @${ECHO_CMD} "export ${var}" >> ${MOZCONFIG} -.endfor -.endif # .if !defined(NOMOZCONFIG) - @${REINPLACE_CMD} -e 's/%{idldir}/%idldir%/g ; \ - s|"%FULL_NSPR_CFLAGS%"|`nspr-config --cflags`|g ; \ - s|"%FULL_NSPR_LIBS%"|`nspr-config --libs`|g' \ - ${WRKSRC}/build/unix/mozilla-config.in - @${REINPLACE_CMD} -e 's|<iconv.h>|\"${LOCALBASE}/include/iconv.h\"|g' \ - ${WRKSRC}/configure \ - ${WRKSRC}/intl/uconv/native/nsNativeUConvService.cpp \ - ${WRKSRC}/xpcom/io/nsNativeCharsetUtils.cpp - @${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ - ${WRKSRC}/config/autoconf.mk.in - @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g ; \ - s|echo aout|echo elf|g ; s|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/security/coreconf/FreeBSD.mk \ - ${WRKSRC}/js/src/Makefile.in - @if [ -d ${WRKSRC}/directory/c-sdk ]; then \ - ${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ - ${WRKSRC}/directory/c-sdk/config/FreeBSD.mk \ - ${WRKSRC}/directory/c-sdk/configure ; \ - fi - @${REINPLACE_CMD} -e 's|-lc_r|${PTHREAD_LIBS}|g ; \ - s|-lpthread|${PTHREAD_LIBS}|g ; \ - s|echo aout|echo elf|g ; \ - s|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/build/unix/run-mozilla.sh - @${REINPLACE_CMD} -E -e 's|libesd\.so\.[0-9]+|libesd.so|g' \ - ${WRKSRC}/widget/src/gtk2/nsSound.cpp - @${REINPLACE_CMD} -E -e 's|libcups\.so\.[0-9]+|libcups.so|g' \ - ${WRKSRC}/*/*/*/nsDeviceContextSpecG.cpp - @${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g ; \ - s|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \ - ${WRKSRC}/xpcom/*/SpecialSystemDirectory.cpp - @if [ -n "`${PKG_INFO} -xI '^bind[0-9]*-base-[0-9]'`" ]; then \ - ${ECHO_CMD} "${PKGNAME}: bind installed with PORT_REPLACES_BASE_BIND causes build problems."; \ - ${FALSE}; \ - fi - -# handles mozilla pis scripts. -gecko-moz-pis-patch: -.for moz in ${MOZ_PIS_SCRIPTS} - @${MOZCONFIG_SED} < ${FILESDIR}/${moz} > ${WRKDIR}/${moz} -.endfor - -post-configure: gecko-post-configure - -gecko-post-configure: - @${ECHO_CMD} "#define JNIIMPORT" >> ${WRKSRC}/mozilla-config.h - -post-build: gecko-post-build - -gecko-post-build: - @${REINPLACE_CMD} -e "s|\(Libs:.*\)\($$\)|\1 -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH}\2|" \ - ${WRKSRC}/build/unix/*.pc || ${TRUE} - -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 ${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:S/${MOZILLA_SUFX}//} ${FAKEDIR}/bin/${MOZILLA} -.if exists(${FAKEDIR}/bin/${MOZILLA:S/${MOZILLA_SUFX}//}-config) - ${MV} ${FAKEDIR}/bin/${MOZILLA: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|' \ - ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME}* -.endif - @${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|g' \ - ${FAKEDIR}/bin/${MOZILLA_EXEC_NAME}* - ${RM} -f ${FAKEDIR}/bin/*.bak -.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 f | \ - ${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} "@dirrmtry share/idl" >> ${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} - ${CHMOD} 755 ${PREFIX}/${dir} -.endif - cd ${FAKEDIR}/${dir} && ${FIND} . | \ - ${CPIO} -pdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/${dir} -.endfor -.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/accessibility/accerciser/Makefile b/accessibility/accerciser/Makefile deleted file mode 100644 index 55ad05763..000000000 --- a/accessibility/accerciser/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: accerciser -# Date created: 2007-09-17 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/accessibility/accerciser/Makefile,v 1.25 2009/02/21 13:48:37 kwm Exp $ -# - -PORTNAME= accerciser -PORTVERSION= 1.6.0 -CATEGORIES= accessibility gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Interactive Python accessibility explorer for GNOME - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= pygnomedesktop atspi intlhack -USE_PYTHON= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -GNU_CONFIGURE= yes -USE_DISPLAY= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= accerciser.schemas -MAN1= accerciser.1 - -.if !defined(DISPLAY) -pre-configure: - @if [ -f ${WRKDIR}/.Xvfb.pid ]; then \ - ${CAT} ${WRKDIR}/.Xvfb.pid | ${XARGS} kill || ${TRUE} ; \ - ${RM} -f ${WRKDIR}/.Xvfb.pid ; \ - fi - @${LOCALBASE}/bin/Xvfb :1001 -screen 0 800x600x24 > /dev/null 2>&1 & ${ECHO} $$! > ${WRKDIR}/.Xvfb.pid - @sleep 5 - -post-configure: - @if [ -f ${WRKDIR}/.Xvfb.pid ]; then \ - ${CAT} ${WRKDIR}/.Xvfb.pid | ${XARGS} kill || ${TRUE} ; \ - ${RM} -f ${WRKDIR}/.Xvfb.pid ; \ - fi -.endif - -.include <bsd.port.mk> diff --git a/accessibility/accerciser/distinfo b/accessibility/accerciser/distinfo deleted file mode 100644 index 667789dd9..000000000 --- a/accessibility/accerciser/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/accerciser-1.6.0.tar.bz2) = 04236a82648a4859811f959cc5576d06 -SHA256 (gnome2/accerciser-1.6.0.tar.bz2) = bcfc077c0bf212dfec550baff1db93229eebceafb8f6c1defa60dcd000e61af3 -SIZE (gnome2/accerciser-1.6.0.tar.bz2) = 1341848 diff --git a/accessibility/accerciser/pkg-descr b/accessibility/accerciser/pkg-descr deleted file mode 100644 index fe0530271..000000000 --- a/accessibility/accerciser/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Accerciser is an interactive Python accessibility explorer for the GNOME -desktop. It uses AT-SPI to inspect and control widgets, allowing you to check -if an application is providing correct information to assistive technologies -and automated test frameworks. Accerciser has a simple plugin framework which -you can use to create custom views of accessibility information. diff --git a/accessibility/accerciser/pkg-plist b/accessibility/accerciser/pkg-plist deleted file mode 100644 index 2d604d060..000000000 --- a/accessibility/accerciser/pkg-plist +++ /dev/null @@ -1,333 +0,0 @@ -bin/accerciser -%%PYTHON_SITELIBDIR%%/accerciser/__init__.py -%%PYTHON_SITELIBDIR%%/accerciser/__init__.pyc -%%PYTHON_SITELIBDIR%%/accerciser/__init__.pyo -%%PYTHON_SITELIBDIR%%/accerciser/about_dialog.py -%%PYTHON_SITELIBDIR%%/accerciser/about_dialog.pyc -%%PYTHON_SITELIBDIR%%/accerciser/about_dialog.pyo -%%PYTHON_SITELIBDIR%%/accerciser/accerciser.py -%%PYTHON_SITELIBDIR%%/accerciser/accerciser.pyc -%%PYTHON_SITELIBDIR%%/accerciser/accerciser.pyo -%%PYTHON_SITELIBDIR%%/accerciser/accessible_treeview.py -%%PYTHON_SITELIBDIR%%/accerciser/accessible_treeview.pyc -%%PYTHON_SITELIBDIR%%/accerciser/accessible_treeview.pyo -%%PYTHON_SITELIBDIR%%/accerciser/bookmarks.py -%%PYTHON_SITELIBDIR%%/accerciser/bookmarks.pyc -%%PYTHON_SITELIBDIR%%/accerciser/bookmarks.pyo -%%PYTHON_SITELIBDIR%%/accerciser/hotkey_manager.py -%%PYTHON_SITELIBDIR%%/accerciser/hotkey_manager.pyc -%%PYTHON_SITELIBDIR%%/accerciser/hotkey_manager.pyo -%%PYTHON_SITELIBDIR%%/accerciser/i18n.py -%%PYTHON_SITELIBDIR%%/accerciser/i18n.pyc -%%PYTHON_SITELIBDIR%%/accerciser/i18n.pyo -%%PYTHON_SITELIBDIR%%/accerciser/icons.py -%%PYTHON_SITELIBDIR%%/accerciser/icons.pyc -%%PYTHON_SITELIBDIR%%/accerciser/icons.pyo -%%PYTHON_SITELIBDIR%%/accerciser/main_window.py -%%PYTHON_SITELIBDIR%%/accerciser/main_window.pyc -%%PYTHON_SITELIBDIR%%/accerciser/main_window.pyo -%%PYTHON_SITELIBDIR%%/accerciser/node.py -%%PYTHON_SITELIBDIR%%/accerciser/node.pyc -%%PYTHON_SITELIBDIR%%/accerciser/node.pyo -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__init__.py -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__init__.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/__init__.pyo -%%PYTHON_SITELIBDIR%%/accerciser/plugin/base_plugin.py -%%PYTHON_SITELIBDIR%%/accerciser/plugin/base_plugin.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/base_plugin.pyo -%%PYTHON_SITELIBDIR%%/accerciser/plugin/message.py -%%PYTHON_SITELIBDIR%%/accerciser/plugin/message.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/message.pyo -%%PYTHON_SITELIBDIR%%/accerciser/plugin/plugin_manager.py -%%PYTHON_SITELIBDIR%%/accerciser/plugin/plugin_manager.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/plugin_manager.pyo -%%PYTHON_SITELIBDIR%%/accerciser/plugin/view.py -%%PYTHON_SITELIBDIR%%/accerciser/plugin/view.pyc -%%PYTHON_SITELIBDIR%%/accerciser/plugin/view.pyo -%%PYTHON_SITELIBDIR%%/accerciser/prefs_dialog.py -%%PYTHON_SITELIBDIR%%/accerciser/prefs_dialog.pyc -%%PYTHON_SITELIBDIR%%/accerciser/prefs_dialog.pyo -%%PYTHON_SITELIBDIR%%/accerciser/script_playback.py -%%PYTHON_SITELIBDIR%%/accerciser/script_playback.pyc -%%PYTHON_SITELIBDIR%%/accerciser/script_playback.pyo -%%PYTHON_SITELIBDIR%%/accerciser/tools.py -%%PYTHON_SITELIBDIR%%/accerciser/tools.pyc -%%PYTHON_SITELIBDIR%%/accerciser/tools.pyo -%%PYTHON_SITELIBDIR%%/accerciser/ui_manager.py -%%PYTHON_SITELIBDIR%%/accerciser/ui_manager.pyc -%%PYTHON_SITELIBDIR%%/accerciser/ui_manager.pyo -%%DATADIR%%/pixmaps/hicolor/22x22/acceleratorlabel.png -%%DATADIR%%/pixmaps/hicolor/22x22/alert.png -%%DATADIR%%/pixmaps/hicolor/22x22/animation.png -%%DATADIR%%/pixmaps/hicolor/22x22/arrow.png -%%DATADIR%%/pixmaps/hicolor/22x22/calendar.png -%%DATADIR%%/pixmaps/hicolor/22x22/canvas.png -%%DATADIR%%/pixmaps/hicolor/22x22/care.png -%%DATADIR%%/pixmaps/hicolor/22x22/character.png -%%DATADIR%%/pixmaps/hicolor/22x22/chart.png -%%DATADIR%%/pixmaps/hicolor/22x22/checkbox.png -%%DATADIR%%/pixmaps/hicolor/22x22/checkmenuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/clock.png -%%DATADIR%%/pixmaps/hicolor/22x22/colorchooser.png -%%DATADIR%%/pixmaps/hicolor/22x22/column.png -%%DATADIR%%/pixmaps/hicolor/22x22/columnheader.png -%%DATADIR%%/pixmaps/hicolor/22x22/combobox.png -%%DATADIR%%/pixmaps/hicolor/22x22/cursor.png -%%DATADIR%%/pixmaps/hicolor/22x22/dateeditor.png -%%DATADIR%%/pixmaps/hicolor/22x22/desktopicon.png -%%DATADIR%%/pixmaps/hicolor/22x22/dial.png -%%DATADIR%%/pixmaps/hicolor/22x22/dialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/directorypane.png -%%DATADIR%%/pixmaps/hicolor/22x22/drawingarea.png -%%DATADIR%%/pixmaps/hicolor/22x22/embedded.png -%%DATADIR%%/pixmaps/hicolor/22x22/endnote.png -%%DATADIR%%/pixmaps/hicolor/22x22/entry.png -%%DATADIR%%/pixmaps/hicolor/22x22/filechooser.png -%%DATADIR%%/pixmaps/hicolor/22x22/filler.png -%%DATADIR%%/pixmaps/hicolor/22x22/focustraversable.png -%%DATADIR%%/pixmaps/hicolor/22x22/fontchooser.png -%%DATADIR%%/pixmaps/hicolor/22x22/form.png -%%DATADIR%%/pixmaps/hicolor/22x22/frame.png -%%DATADIR%%/pixmaps/hicolor/22x22/glasspane.png -%%DATADIR%%/pixmaps/hicolor/22x22/grip.png -%%DATADIR%%/pixmaps/hicolor/22x22/heading.png -%%DATADIR%%/pixmaps/hicolor/22x22/helpballoon.png -%%DATADIR%%/pixmaps/hicolor/22x22/htmlcontainer.png -%%DATADIR%%/pixmaps/hicolor/22x22/icon.png -%%DATADIR%%/pixmaps/hicolor/22x22/image.png -%%DATADIR%%/pixmaps/hicolor/22x22/imagemap.png -%%DATADIR%%/pixmaps/hicolor/22x22/inputmethodwindow.png -%%DATADIR%%/pixmaps/hicolor/22x22/invalid.png -%%DATADIR%%/pixmaps/hicolor/22x22/label.png -%%DATADIR%%/pixmaps/hicolor/22x22/link.png -%%DATADIR%%/pixmaps/hicolor/22x22/list.png -%%DATADIR%%/pixmaps/hicolor/22x22/listitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/menu.png -%%DATADIR%%/pixmaps/hicolor/22x22/menubar.png -%%DATADIR%%/pixmaps/hicolor/22x22/menuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/pagetab.png -%%DATADIR%%/pixmaps/hicolor/22x22/pagetablist.png -%%DATADIR%%/pixmaps/hicolor/22x22/passwordtext.png -%%DATADIR%%/pixmaps/hicolor/22x22/popupmenu.png -%%DATADIR%%/pixmaps/hicolor/22x22/progressbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/pushbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/radiobutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/radiomenuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/row.png -%%DATADIR%%/pixmaps/hicolor/22x22/ruler.png -%%DATADIR%%/pixmaps/hicolor/22x22/scrollbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/scrollpane.png -%%DATADIR%%/pixmaps/hicolor/22x22/section.png -%%DATADIR%%/pixmaps/hicolor/22x22/separator.png -%%DATADIR%%/pixmaps/hicolor/22x22/shape.png -%%DATADIR%%/pixmaps/hicolor/22x22/slider.png -%%DATADIR%%/pixmaps/hicolor/22x22/sound.png -%%DATADIR%%/pixmaps/hicolor/22x22/spinbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/splitpane.png -%%DATADIR%%/pixmaps/hicolor/22x22/statusbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/table.png -%%DATADIR%%/pixmaps/hicolor/22x22/tablecell.png -%%DATADIR%%/pixmaps/hicolor/22x22/tearoffmenuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/terminal.png -%%DATADIR%%/pixmaps/hicolor/22x22/text.png -%%DATADIR%%/pixmaps/hicolor/22x22/togglebutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/toolbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/tooltip.png -%%DATADIR%%/pixmaps/hicolor/22x22/tree.png -%%DATADIR%%/pixmaps/hicolor/22x22/treetable.png -%%DATADIR%%/pixmaps/hicolor/22x22/window.png -%%DATADIR%%/plugindata/validate/basic.py -%%DATADIR%%/plugins/api_view.py -%%DATADIR%%/plugins/console.py -%%DATADIR%%/plugins/event_monitor.glade -%%DATADIR%%/plugins/event_monitor.py -%%DATADIR%%/plugins/interface_view.glade -%%DATADIR%%/plugins/interface_view.py -%%DATADIR%%/plugins/ipython_view.py -%%DATADIR%%/plugins/quick_select.py -%%DATADIR%%/plugins/script_recorder.glade -%%DATADIR%%/plugins/script_recorder.py -%%DATADIR%%/plugins/validate.glade -%%DATADIR%%/plugins/validate.py -share/applications/accerciser.desktop -share/gnome/help/accerciser/C/accerciser.xml -share/gnome/help/accerciser/C/figures/accerciser.png -share/gnome/help/accerciser/C/figures/api_browser.png -share/gnome/help/accerciser/C/figures/event_monitor.png -share/gnome/help/accerciser/C/figures/interface_viewer.png -share/gnome/help/accerciser/C/figures/script_recorder.png -share/gnome/help/accerciser/C/legal.xml -share/gnome/help/accerciser/ca/accerciser.xml -share/gnome/help/accerciser/ca/figures/accerciser.png -share/gnome/help/accerciser/ca/figures/api_browser.png -share/gnome/help/accerciser/ca/figures/event_monitor.png -share/gnome/help/accerciser/ca/figures/interface_viewer.png -share/gnome/help/accerciser/ca/figures/script_recorder.png -share/gnome/help/accerciser/cs/accerciser.xml -share/gnome/help/accerciser/cs/figures/accerciser.png -share/gnome/help/accerciser/cs/figures/api_browser.png -share/gnome/help/accerciser/cs/figures/event_monitor.png -share/gnome/help/accerciser/cs/figures/interface_viewer.png -share/gnome/help/accerciser/cs/figures/script_recorder.png -share/gnome/help/accerciser/de/accerciser.xml -share/gnome/help/accerciser/de/figures/accerciser.png -share/gnome/help/accerciser/de/figures/api_browser.png -share/gnome/help/accerciser/de/figures/event_monitor.png -share/gnome/help/accerciser/de/figures/interface_viewer.png -share/gnome/help/accerciser/de/figures/script_recorder.png -share/gnome/help/accerciser/en_GB/accerciser.xml -share/gnome/help/accerciser/en_GB/figures/accerciser.png -share/gnome/help/accerciser/en_GB/figures/api_browser.png -share/gnome/help/accerciser/en_GB/figures/event_monitor.png -share/gnome/help/accerciser/en_GB/figures/interface_viewer.png -share/gnome/help/accerciser/en_GB/figures/script_recorder.png -share/gnome/help/accerciser/el/accerciser.xml -share/gnome/help/accerciser/el/figures/accerciser.png -share/gnome/help/accerciser/el/figures/api_browser.png -share/gnome/help/accerciser/el/figures/event_monitor.png -share/gnome/help/accerciser/el/figures/interface_viewer.png -share/gnome/help/accerciser/el/figures/script_recorder.png -share/gnome/help/accerciser/es/accerciser.xml -share/gnome/help/accerciser/es/figures/accerciser.png -share/gnome/help/accerciser/es/figures/api_browser.png -share/gnome/help/accerciser/es/figures/event_monitor.png -share/gnome/help/accerciser/es/figures/interface_viewer.png -share/gnome/help/accerciser/es/figures/script_recorder.png -share/gnome/help/accerciser/fr/accerciser.xml -share/gnome/help/accerciser/fr/figures/accerciser.png -share/gnome/help/accerciser/fr/figures/api_browser.png -share/gnome/help/accerciser/fr/figures/event_monitor.png -share/gnome/help/accerciser/fr/figures/interface_viewer.png -share/gnome/help/accerciser/fr/figures/script_recorder.png -share/gnome/help/accerciser/oc/accerciser.xml -share/gnome/help/accerciser/oc/figures/accerciser.png -share/gnome/help/accerciser/oc/figures/api_browser.png -share/gnome/help/accerciser/oc/figures/event_monitor.png -share/gnome/help/accerciser/oc/figures/interface_viewer.png -share/gnome/help/accerciser/oc/figures/script_recorder.png -share/gnome/help/accerciser/pt_BR/accerciser.xml -share/gnome/help/accerciser/pt_BR/figures/accerciser.png -share/gnome/help/accerciser/pt_BR/figures/api_browser.png -share/gnome/help/accerciser/pt_BR/figures/event_monitor.png -share/gnome/help/accerciser/pt_BR/figures/interface_viewer.png -share/gnome/help/accerciser/pt_BR/figures/script_recorder.png -share/gnome/help/accerciser/sv/accerciser.xml -share/gnome/help/accerciser/sv/figures/accerciser.png -share/gnome/help/accerciser/sv/figures/api_browser.png -share/gnome/help/accerciser/sv/figures/event_monitor.png -share/gnome/help/accerciser/sv/figures/interface_viewer.png -share/gnome/help/accerciser/sv/figures/script_recorder.png -share/icons/hicolor/16x16/apps/accerciser.png -share/icons/hicolor/22x22/apps/accerciser.png -share/icons/hicolor/32x32/apps/accerciser.png -share/icons/hicolor/48x48/apps/accerciser.png -share/icons/hicolor/scalable/apps/accerciser.svg -share/locale/ar/LC_MESSAGES/accerciser.mo -share/locale/bg/LC_MESSAGES/accerciser.mo -share/locale/bn/LC_MESSAGES/accerciser.mo -share/locale/bn_IN/LC_MESSAGES/accerciser.mo -share/locale/ca/LC_MESSAGES/accerciser.mo -share/locale/cs/LC_MESSAGES/accerciser.mo -share/locale/da/LC_MESSAGES/accerciser.mo -share/locale/de/LC_MESSAGES/accerciser.mo -share/locale/dz/LC_MESSAGES/accerciser.mo -share/locale/el/LC_MESSAGES/accerciser.mo -share/locale/en_CA/LC_MESSAGES/accerciser.mo -share/locale/en_GB/LC_MESSAGES/accerciser.mo -share/locale/es/LC_MESSAGES/accerciser.mo -share/locale/eu/LC_MESSAGES/accerciser.mo -share/locale/fi/LC_MESSAGES/accerciser.mo -share/locale/fr/LC_MESSAGES/accerciser.mo -share/locale/gl/LC_MESSAGES/accerciser.mo -share/locale/gu/LC_MESSAGES/accerciser.mo -share/locale/he/LC_MESSAGES/accerciser.mo -share/locale/hi/LC_MESSAGES/accerciser.mo -share/locale/hu/LC_MESSAGES/accerciser.mo -share/locale/it/LC_MESSAGES/accerciser.mo -share/locale/ja/LC_MESSAGES/accerciser.mo -share/locale/kn/LC_MESSAGES/accerciser.mo -share/locale/lt/LC_MESSAGES/accerciser.mo -share/locale/lv/LC_MESSAGES/accerciser.mo -share/locale/mk/LC_MESSAGES/accerciser.mo -share/locale/ml/LC_MESSAGES/accerciser.mo -share/locale/mr/LC_MESSAGES/accerciser.mo -share/locale/nb/LC_MESSAGES/accerciser.mo -share/locale/nl/LC_MESSAGES/accerciser.mo -share/locale/oc/LC_MESSAGES/accerciser.mo -share/locale/or/LC_MESSAGES/accerciser.mo -share/locale/pa/LC_MESSAGES/accerciser.mo -share/locale/pl/LC_MESSAGES/accerciser.mo -share/locale/pt/LC_MESSAGES/accerciser.mo -share/locale/pt_BR/LC_MESSAGES/accerciser.mo -share/locale/ru/LC_MESSAGES/accerciser.mo -share/locale/si/LC_MESSAGES/accerciser.mo -share/locale/sl/LC_MESSAGES/accerciser.mo -share/locale/sq/LC_MESSAGES/accerciser.mo -share/locale/sv/LC_MESSAGES/accerciser.mo -share/locale/te/LC_MESSAGES/accerciser.mo -share/locale/th/LC_MESSAGES/accerciser.mo -share/locale/tr/LC_MESSAGES/accerciser.mo -share/locale/uk/LC_MESSAGES/accerciser.mo -share/locale/vi/LC_MESSAGES/accerciser.mo -share/locale/zh_CN/LC_MESSAGES/accerciser.mo -share/locale/zh_HK/LC_MESSAGES/accerciser.mo -share/locale/zh_TW/LC_MESSAGES/accerciser.mo -share/omf/accerciser/accerciser-C.omf -share/omf/accerciser/accerciser-ca.omf -share/omf/accerciser/accerciser-cs.omf -share/omf/accerciser/accerciser-de.omf -share/omf/accerciser/accerciser-en_GB.omf -share/omf/accerciser/accerciser-el.omf -share/omf/accerciser/accerciser-es.omf -share/omf/accerciser/accerciser-fr.omf -share/omf/accerciser/accerciser-oc.omf -share/omf/accerciser/accerciser-pt_BR.omf -share/omf/accerciser/accerciser-sv.omf -@dirrm share/omf/accerciser -@dirrm share/gnome/help/accerciser/sv/figures -@dirrm share/gnome/help/accerciser/sv -@dirrm share/gnome/help/accerciser/pt_BR/figures -@dirrm share/gnome/help/accerciser/pt_BR -@dirrm share/gnome/help/accerciser/oc/figures -@dirrm share/gnome/help/accerciser/oc -@dirrm share/gnome/help/accerciser/fr/figures -@dirrm share/gnome/help/accerciser/fr -@dirrm share/gnome/help/accerciser/es/figures -@dirrm share/gnome/help/accerciser/es -@dirrm share/gnome/help/accerciser/el/figures -@dirrm share/gnome/help/accerciser/el -@dirrm share/gnome/help/accerciser/en_GB/figures -@dirrm share/gnome/help/accerciser/en_GB -@dirrm share/gnome/help/accerciser/de/figures -@dirrm share/gnome/help/accerciser/de -@dirrm share/gnome/help/accerciser/cs/figures -@dirrm share/gnome/help/accerciser/cs -@dirrm share/gnome/help/accerciser/ca/figures -@dirrm share/gnome/help/accerciser/ca -@dirrm share/gnome/help/accerciser/C/figures -@dirrm share/gnome/help/accerciser/C -@dirrm share/gnome/help/accerciser -@dirrmtry share/applications -@dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/plugindata/validate -@dirrm %%DATADIR%%/plugindata -@dirrm %%DATADIR%%/pixmaps/hicolor/22x22 -@dirrm %%DATADIR%%/pixmaps/hicolor -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/accerciser/plugin -@dirrm %%PYTHON_SITELIBDIR%%/accerciser -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/accessibility/at-spi/Makefile b/accessibility/at-spi/Makefile deleted file mode 100644 index cf15bf016..000000000 --- a/accessibility/at-spi/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: at-spi -# Date Created: 12 April 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/accessibility/at-spi/Makefile,v 1.84 2009/03/03 08:04:20 marcus Exp $ -# - -PORTNAME= at-spi -PORTVERSION= 1.26.0 -PORTREVISION?= 0 -CATEGORIES= accessibility x11-toolkits -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= An Assistive Technology Service Provider Interface - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnomehier intlhack gtk20 libbonobo -USE_XORG= x11 xtst -USE_PYTHON= yes -USE_LDCONFIG= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-static -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= at-spi.schemas - -post-extract: - @${RM} -f ${WRKSRC}/registryd/Accessibility_Registry.server - -post-patch: - @${REINPLACE_CMD} -e "/^SUBDIRS =/s/test//" ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e "/^SUBDIRS =/s/docs//" ${WRKSRC}/Makefile.in - -.include <bsd.port.mk> - -.endif diff --git a/accessibility/at-spi/distinfo b/accessibility/at-spi/distinfo deleted file mode 100644 index a30a7568e..000000000 --- a/accessibility/at-spi/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/at-spi-1.26.0.tar.bz2) = 3f2f7d29b45eff08adf56af0d31d3984 -SHA256 (gnome2/at-spi-1.26.0.tar.bz2) = bb8c9473a277fa75f172fa16fb6ada85f4a919219818fd9c792f1a137bb2644d -SIZE (gnome2/at-spi-1.26.0.tar.bz2) = 829621 diff --git a/accessibility/at-spi/pkg-descr b/accessibility/at-spi/pkg-descr deleted file mode 100644 index c832f3ba9..000000000 --- a/accessibility/at-spi/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This is the Gnome Accessibility Project's Assistive Technology -Service Provider Interface. It allows accessibility applications -and assistive technologies to announce their respective existence -to each other. - -WWW: http://developer.gnome.org/projects/gap/ diff --git a/accessibility/at-spi/pkg-plist b/accessibility/at-spi/pkg-plist deleted file mode 100644 index 82d8b9851..000000000 --- a/accessibility/at-spi/pkg-plist +++ /dev/null @@ -1,230 +0,0 @@ -include/at-spi-1.0/cspi/spi-impl.h -include/at-spi-1.0/cspi/spi-listener.h -include/at-spi-1.0/cspi/spi-roletypes.h -include/at-spi-1.0/cspi/spi-statetypes.h -include/at-spi-1.0/cspi/spi.h -include/at-spi-1.0/libspi/Accessibility.h -include/at-spi-1.0/libspi/accessible.h -include/at-spi-1.0/libspi/action.h -include/at-spi-1.0/libspi/application.h -include/at-spi-1.0/libspi/base.h -include/at-spi-1.0/libspi/collection.h -include/at-spi-1.0/libspi/component.h -include/at-spi-1.0/libspi/devicelistener.h -include/at-spi-1.0/libspi/document.h -include/at-spi-1.0/libspi/editabletext.h -include/at-spi-1.0/libspi/eventlistener.h -include/at-spi-1.0/libspi/hyperlink.h -include/at-spi-1.0/libspi/hypertext.h -include/at-spi-1.0/libspi/image.h -include/at-spi-1.0/libspi/keymasks.h -include/at-spi-1.0/libspi/keystrokelistener.h -include/at-spi-1.0/libspi/libspi.h -include/at-spi-1.0/libspi/listener.h -include/at-spi-1.0/libspi/matchrule.h -include/at-spi-1.0/libspi/relation.h -include/at-spi-1.0/libspi/remoteobject.h -include/at-spi-1.0/libspi/selection.h -include/at-spi-1.0/libspi/stateset.h -include/at-spi-1.0/libspi/streamablecontent.h -include/at-spi-1.0/libspi/table.h -include/at-spi-1.0/libspi/text.h -include/at-spi-1.0/libspi/value.h -include/at-spi-1.0/login-helper/Accessibility_LoginHelper.h -include/at-spi-1.0/login-helper/login-helper.h -lib/gtk-2.0/modules/libatk-bridge.a -lib/gtk-2.0/modules/libatk-bridge.la -lib/gtk-2.0/modules/libatk-bridge.so -lib/libcspi.a -lib/libcspi.la -lib/libcspi.so -lib/libcspi.so.10 -lib/libloginhelper.a -lib/libloginhelper.la -lib/libloginhelper.so -lib/libloginhelper.so.0 -lib/libspi.a -lib/libspi.la -lib/libspi.so -lib/libspi.so.10 -lib/orbit-2.0/Accessibility_LoginHelper_module.a -lib/orbit-2.0/Accessibility_LoginHelper_module.la -lib/orbit-2.0/Accessibility_LoginHelper_module.so -lib/orbit-2.0/Accessibility_module.a -lib/orbit-2.0/Accessibility_module.la -lib/orbit-2.0/Accessibility_module.so -%%PYTHON_SITELIBDIR%%/pyatspi/__init__.py -%%PYTHON_SITELIBDIR%%/pyatspi/__init__.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/__init__.pyo -%%PYTHON_SITELIBDIR%%/pyatspi/accessible.py -%%PYTHON_SITELIBDIR%%/pyatspi/accessible.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/accessible.pyo -%%PYTHON_SITELIBDIR%%/pyatspi/constants.py -%%PYTHON_SITELIBDIR%%/pyatspi/constants.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/constants.pyo -%%PYTHON_SITELIBDIR%%/pyatspi/event.py -%%PYTHON_SITELIBDIR%%/pyatspi/event.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/event.pyo -%%PYTHON_SITELIBDIR%%/pyatspi/registry.py -%%PYTHON_SITELIBDIR%%/pyatspi/registry.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/registry.pyo -%%PYTHON_SITELIBDIR%%/pyatspi/utils.py -%%PYTHON_SITELIBDIR%%/pyatspi/utils.pyc -%%PYTHON_SITELIBDIR%%/pyatspi/utils.pyo -libdata/bonobo/servers/Accessibility_Registry.server -libdata/pkgconfig/cspi-1.0.pc -libdata/pkgconfig/libloginhelper-1.0.pc -libdata/pkgconfig/libspi-1.0.pc -libexec/at-spi-registryd -share/idl/at-spi-1.0/Accessibility.idl -share/idl/at-spi-1.0/Accessibility_Accessible.idl -share/idl/at-spi-1.0/Accessibility_Action.idl -share/idl/at-spi-1.0/Accessibility_Application.idl -share/idl/at-spi-1.0/Accessibility_Collection.idl -share/idl/at-spi-1.0/Accessibility_Component.idl -share/idl/at-spi-1.0/Accessibility_Desktop.idl -share/idl/at-spi-1.0/Accessibility_Document.idl -share/idl/at-spi-1.0/Accessibility_EditableText.idl -share/idl/at-spi-1.0/Accessibility_Event.idl -share/idl/at-spi-1.0/Accessibility_Hyperlink.idl -share/idl/at-spi-1.0/Accessibility_Hypertext.idl -share/idl/at-spi-1.0/Accessibility_Image.idl -share/idl/at-spi-1.0/Accessibility_LoginHelper.idl -share/idl/at-spi-1.0/Accessibility_Registry.idl -share/idl/at-spi-1.0/Accessibility_Relation.idl -share/idl/at-spi-1.0/Accessibility_Role.idl -share/idl/at-spi-1.0/Accessibility_Selection.idl -share/idl/at-spi-1.0/Accessibility_Selector.idl -share/idl/at-spi-1.0/Accessibility_State.idl -share/idl/at-spi-1.0/Accessibility_StreamableContent.idl -share/idl/at-spi-1.0/Accessibility_Table.idl -share/idl/at-spi-1.0/Accessibility_Text.idl -share/idl/at-spi-1.0/Accessibility_Value.idl -share/locale/ang/LC_MESSAGES/at-spi.mo -share/locale/ar/LC_MESSAGES/at-spi.mo -share/locale/as/LC_MESSAGES/at-spi.mo -share/locale/ast/LC_MESSAGES/at-spi.mo -share/locale/az/LC_MESSAGES/at-spi.mo -share/locale/be/LC_MESSAGES/at-spi.mo -share/locale/be@latin/LC_MESSAGES/at-spi.mo -share/locale/bg/LC_MESSAGES/at-spi.mo -share/locale/bn/LC_MESSAGES/at-spi.mo -share/locale/bn_IN/LC_MESSAGES/at-spi.mo -share/locale/bs/LC_MESSAGES/at-spi.mo -share/locale/ca/LC_MESSAGES/at-spi.mo -share/locale/crh/LC_MESSAGES/at-spi.mo -share/locale/cs/LC_MESSAGES/at-spi.mo -share/locale/cy/LC_MESSAGES/at-spi.mo -share/locale/da/LC_MESSAGES/at-spi.mo -share/locale/de/LC_MESSAGES/at-spi.mo -share/locale/dz/LC_MESSAGES/at-spi.mo -share/locale/el/LC_MESSAGES/at-spi.mo -share/locale/en_CA/LC_MESSAGES/at-spi.mo -share/locale/en_GB/LC_MESSAGES/at-spi.mo -share/locale/eo/LC_MESSAGES/at-spi.mo -share/locale/es/LC_MESSAGES/at-spi.mo -share/locale/et/LC_MESSAGES/at-spi.mo -share/locale/eu/LC_MESSAGES/at-spi.mo -share/locale/fa/LC_MESSAGES/at-spi.mo -share/locale/fi/LC_MESSAGES/at-spi.mo -share/locale/fr/LC_MESSAGES/at-spi.mo -share/locale/ga/LC_MESSAGES/at-spi.mo -share/locale/gl/LC_MESSAGES/at-spi.mo -share/locale/gu/LC_MESSAGES/at-spi.mo -share/locale/he/LC_MESSAGES/at-spi.mo -share/locale/hi/LC_MESSAGES/at-spi.mo -share/locale/hr/LC_MESSAGES/at-spi.mo -share/locale/hu/LC_MESSAGES/at-spi.mo -share/locale/id/LC_MESSAGES/at-spi.mo -share/locale/is/LC_MESSAGES/at-spi.mo -share/locale/it/LC_MESSAGES/at-spi.mo -share/locale/ja/LC_MESSAGES/at-spi.mo -share/locale/ka/LC_MESSAGES/at-spi.mo -share/locale/ko/LC_MESSAGES/at-spi.mo -share/locale/ku/LC_MESSAGES/at-spi.mo -share/locale/lt/LC_MESSAGES/at-spi.mo -share/locale/lv/LC_MESSAGES/at-spi.mo -share/locale/mk/LC_MESSAGES/at-spi.mo -share/locale/ml/LC_MESSAGES/at-spi.mo -share/locale/mn/LC_MESSAGES/at-spi.mo -share/locale/mr/LC_MESSAGES/at-spi.mo -share/locale/ms/LC_MESSAGES/at-spi.mo -share/locale/nb/LC_MESSAGES/at-spi.mo -share/locale/nds_DE/LC_MESSAGES/at-spi.mo -share/locale/ne/LC_MESSAGES/at-spi.mo -share/locale/nl/LC_MESSAGES/at-spi.mo -share/locale/nn/LC_MESSAGES/at-spi.mo -share/locale/oc/LC_MESSAGES/at-spi.mo -share/locale/or/LC_MESSAGES/at-spi.mo -share/locale/pa/LC_MESSAGES/at-spi.mo -share/locale/pl/LC_MESSAGES/at-spi.mo -share/locale/ps/LC_MESSAGES/at-spi.mo -share/locale/pt/LC_MESSAGES/at-spi.mo -share/locale/pt_BR/LC_MESSAGES/at-spi.mo -share/locale/ro/LC_MESSAGES/at-spi.mo -share/locale/ru/LC_MESSAGES/at-spi.mo -share/locale/rw/LC_MESSAGES/at-spi.mo -share/locale/sk/LC_MESSAGES/at-spi.mo -share/locale/sl/LC_MESSAGES/at-spi.mo -share/locale/sq/LC_MESSAGES/at-spi.mo -share/locale/sr/LC_MESSAGES/at-spi.mo -share/locale/sr@ije/LC_MESSAGES/at-spi.mo -share/locale/sr@latin/LC_MESSAGES/at-spi.mo -share/locale/sv/LC_MESSAGES/at-spi.mo -share/locale/ta/LC_MESSAGES/at-spi.mo -share/locale/te/LC_MESSAGES/at-spi.mo -share/locale/th/LC_MESSAGES/at-spi.mo -share/locale/tr/LC_MESSAGES/at-spi.mo -share/locale/ug/LC_MESSAGES/at-spi.mo -share/locale/uk/LC_MESSAGES/at-spi.mo -share/locale/vi/LC_MESSAGES/at-spi.mo -share/locale/wa/LC_MESSAGES/at-spi.mo -share/locale/xh/LC_MESSAGES/at-spi.mo -share/locale/zh_CN/LC_MESSAGES/at-spi.mo -share/locale/zh_HK/LC_MESSAGES/at-spi.mo -share/locale/zh_TW/LC_MESSAGES/at-spi.mo -@dirrm share/idl/at-spi-1.0 -@dirrm %%PYTHON_SITELIBDIR%%/pyatspi -@dirrm include/at-spi-1.0/login-helper -@dirrm include/at-spi-1.0/libspi -@dirrm include/at-spi-1.0/cspi -@dirrm include/at-spi-1.0 -@dirrmtry lib/orbit-2.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nds_DE/LC_MESSAGES -@dirrmtry share/locale/nds_DE -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang diff --git a/accessibility/atk/Makefile b/accessibility/atk/Makefile deleted file mode 100644 index 738f9bae4..000000000 --- a/accessibility/atk/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: atk -# Date Created: 14 May 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= atk -PORTVERSION= 1.26.0 -PORTREVISION?= 0 -CATEGORIES= accessibility devel -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A GNOME accessibility toolkit (ATK) - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomehack glib20 ltverhack referencehack -CONFIGURE_ARGS= --enable-static \ - --disable-gtk-doc \ - --with-html-dir=${PREFIX}/share/doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - AUTOCONF=${TRUE} AUTOMAKE=${TRUE} - -post-patch: - @${REINPLACE_CMD} -e "/^SUBDIRS =/s/tests//" \ - ${WRKSRC}/Makefile.in - -.include <bsd.port.mk> - -.endif diff --git a/accessibility/atk/distinfo b/accessibility/atk/distinfo deleted file mode 100644 index 73c5f03a5..000000000 --- a/accessibility/atk/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/atk-1.26.0.tar.bz2) = 719229408019c548855673840679f156 -SHA256 (gnome2/atk-1.26.0.tar.bz2) = f7993d26c3606a9b0e32d1eebe716f2294ac37fac014c47744e986fc0ff5e6d1 -SIZE (gnome2/atk-1.26.0.tar.bz2) = 719807 diff --git a/accessibility/atk/pkg-descr b/accessibility/atk/pkg-descr deleted file mode 100644 index ac3b71815..000000000 --- a/accessibility/atk/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -The GNOME Accessibility Toolkit (ATK) contains accessibility widgets, -just like GTK contains GUI element widgets. However, ATK's widgets -are platform-independent, so they can be used with Qt, Motif, etc. - -WWW: http://developer.gnome.org/projects/gap/ diff --git a/accessibility/atk/pkg-plist b/accessibility/atk/pkg-plist deleted file mode 100644 index 28df9d792..000000000 --- a/accessibility/atk/pkg-plist +++ /dev/null @@ -1,161 +0,0 @@ -include/atk-1.0/atk/atk-enum-types.h -include/atk-1.0/atk/atk.h -include/atk-1.0/atk/atkaction.h -include/atk-1.0/atk/atkcomponent.h -include/atk-1.0/atk/atkdocument.h -include/atk-1.0/atk/atkeditabletext.h -include/atk-1.0/atk/atkgobjectaccessible.h -include/atk-1.0/atk/atkhyperlink.h -include/atk-1.0/atk/atkhyperlinkimpl.h -include/atk-1.0/atk/atkhypertext.h -include/atk-1.0/atk/atkimage.h -include/atk-1.0/atk/atkmisc.h -include/atk-1.0/atk/atknoopobject.h -include/atk-1.0/atk/atknoopobjectfactory.h -include/atk-1.0/atk/atkobject.h -include/atk-1.0/atk/atkobjectfactory.h -include/atk-1.0/atk/atkregistry.h -include/atk-1.0/atk/atkrelation.h -include/atk-1.0/atk/atkrelationset.h -include/atk-1.0/atk/atkrelationtype.h -include/atk-1.0/atk/atkselection.h -include/atk-1.0/atk/atkstate.h -include/atk-1.0/atk/atkstateset.h -include/atk-1.0/atk/atkstreamablecontent.h -include/atk-1.0/atk/atktable.h -include/atk-1.0/atk/atktext.h -include/atk-1.0/atk/atkutil.h -include/atk-1.0/atk/atkvalue.h -lib/libatk-1.0.a -lib/libatk-1.0.la -lib/libatk-1.0.so -lib/libatk-1.0.so.0 -libdata/pkgconfig/atk.pc -share/locale/af/LC_MESSAGES/atk10.mo -share/locale/am/LC_MESSAGES/atk10.mo -share/locale/ar/LC_MESSAGES/atk10.mo -share/locale/as/LC_MESSAGES/atk10.mo -share/locale/az/LC_MESSAGES/atk10.mo -share/locale/be/LC_MESSAGES/atk10.mo -share/locale/be@latin/LC_MESSAGES/atk10.mo -share/locale/bg/LC_MESSAGES/atk10.mo -share/locale/bn/LC_MESSAGES/atk10.mo -share/locale/bn_IN/LC_MESSAGES/atk10.mo -share/locale/bs/LC_MESSAGES/atk10.mo -share/locale/ca/LC_MESSAGES/atk10.mo -share/locale/cs/LC_MESSAGES/atk10.mo -share/locale/cy/LC_MESSAGES/atk10.mo -share/locale/da/LC_MESSAGES/atk10.mo -share/locale/de/LC_MESSAGES/atk10.mo -share/locale/dz/LC_MESSAGES/atk10.mo -share/locale/el/LC_MESSAGES/atk10.mo -share/locale/en_CA/LC_MESSAGES/atk10.mo -share/locale/en_GB/LC_MESSAGES/atk10.mo -share/locale/eo/LC_MESSAGES/atk10.mo -share/locale/es/LC_MESSAGES/atk10.mo -share/locale/et/LC_MESSAGES/atk10.mo -share/locale/eu/LC_MESSAGES/atk10.mo -share/locale/fa/LC_MESSAGES/atk10.mo -share/locale/fi/LC_MESSAGES/atk10.mo -share/locale/fr/LC_MESSAGES/atk10.mo -share/locale/ga/LC_MESSAGES/atk10.mo -share/locale/gl/LC_MESSAGES/atk10.mo -share/locale/gu/LC_MESSAGES/atk10.mo -share/locale/he/LC_MESSAGES/atk10.mo -share/locale/hi/LC_MESSAGES/atk10.mo -share/locale/hr/LC_MESSAGES/atk10.mo -share/locale/hu/LC_MESSAGES/atk10.mo -share/locale/id/LC_MESSAGES/atk10.mo -share/locale/is/LC_MESSAGES/atk10.mo -share/locale/it/LC_MESSAGES/atk10.mo -share/locale/ja/LC_MESSAGES/atk10.mo -share/locale/ka/LC_MESSAGES/atk10.mo -share/locale/kn/LC_MESSAGES/atk10.mo -share/locale/ko/LC_MESSAGES/atk10.mo -share/locale/ku/LC_MESSAGES/atk10.mo -share/locale/li/LC_MESSAGES/atk10.mo -share/locale/lt/LC_MESSAGES/atk10.mo -share/locale/lv/LC_MESSAGES/atk10.mo -share/locale/mai/LC_MESSAGES/atk10.mo -share/locale/mk/LC_MESSAGES/atk10.mo -share/locale/ml/LC_MESSAGES/atk10.mo -share/locale/mn/LC_MESSAGES/atk10.mo -share/locale/mr/LC_MESSAGES/atk10.mo -share/locale/ms/LC_MESSAGES/atk10.mo -share/locale/nb/LC_MESSAGES/atk10.mo -share/locale/ne/LC_MESSAGES/atk10.mo -share/locale/nl/LC_MESSAGES/atk10.mo -share/locale/nn/LC_MESSAGES/atk10.mo -share/locale/oc/LC_MESSAGES/atk10.mo -share/locale/or/LC_MESSAGES/atk10.mo -share/locale/pa/LC_MESSAGES/atk10.mo -share/locale/pl/LC_MESSAGES/atk10.mo -share/locale/pt/LC_MESSAGES/atk10.mo -share/locale/pt_BR/LC_MESSAGES/atk10.mo -share/locale/ps/LC_MESSAGES/atk10.mo -share/locale/ro/LC_MESSAGES/atk10.mo -share/locale/ru/LC_MESSAGES/atk10.mo -share/locale/rw/LC_MESSAGES/atk10.mo -share/locale/si/LC_MESSAGES/atk10.mo -share/locale/sk/LC_MESSAGES/atk10.mo -share/locale/sl/LC_MESSAGES/atk10.mo -share/locale/sq/LC_MESSAGES/atk10.mo -share/locale/sr/LC_MESSAGES/atk10.mo -share/locale/sr@latin/LC_MESSAGES/atk10.mo -share/locale/sr@ije/LC_MESSAGES/atk10.mo -share/locale/sv/LC_MESSAGES/atk10.mo -share/locale/ta/LC_MESSAGES/atk10.mo -share/locale/te/LC_MESSAGES/atk10.mo -share/locale/th/LC_MESSAGES/atk10.mo -share/locale/tk/LC_MESSAGES/atk10.mo -share/locale/tr/LC_MESSAGES/atk10.mo -share/locale/tt/LC_MESSAGES/atk10.mo -share/locale/ug/LC_MESSAGES/atk10.mo -share/locale/uk/LC_MESSAGES/atk10.mo -share/locale/vi/LC_MESSAGES/atk10.mo -share/locale/wa/LC_MESSAGES/atk10.mo -share/locale/xh/LC_MESSAGES/atk10.mo -share/locale/yi/LC_MESSAGES/atk10.mo -share/locale/zh_CN/LC_MESSAGES/atk10.mo -share/locale/zh_HK/LC_MESSAGES/atk10.mo -share/locale/zh_TW/LC_MESSAGES/atk10.mo -@dirrm include/atk-1.0/atk -@dirrm include/atk-1.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/accessibility/dasher/Makefile b/accessibility/dasher/Makefile deleted file mode 100644 index af081ae98..000000000 --- a/accessibility/dasher/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# Ports collection Makefile for: dasher -# Date created: 5 July 2003 -# Whom: lewiz <purple@lewiz.net> -# -# $FreeBSD$ -# $MCom: ports/accessibility/dasher/Makefile,v 1.64 2008/06/06 21:38:44 marcus Exp $ -# - -PORTNAME= dasher -PORTVERSION= 4.10.0 -PORTEPOCH= 2 -CATEGORIES= accessibility editors x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= lewiz@compsoc.man.ac.uk -COMMENT= Information efficient text-entry interface - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomehier libgnomeui atspi \ - libwnck gnomedocutils -WANT_GNOME= yes -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -INSTALLS_OMF= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= dasher.schemas -MAN1= dasher.1 - -.include <bsd.port.pre.mk> - -#.if ${HAVE_GNOME:Mgnomespeech}!="" -#USE_GNOME+= gnomespeech -#CONFIGURE_ARGS+=--enable-speech -#.endif -CONFIGURE_ARGS+= --disable-speech - -post-patch: - @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/configure - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|-O2||g' -.if ${OSVERSION} >= 700042 - @${REINPLACE_CMD} -e 's|__gnu_cxx::lldiv|lldiv|' \ - ${WRKSRC}/Src/DasherCore/DasherViewSquare.cpp -.endif - -.include <bsd.port.post.mk> diff --git a/accessibility/dasher/distinfo b/accessibility/dasher/distinfo deleted file mode 100644 index 08bf978af..000000000 --- a/accessibility/dasher/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/dasher-4.10.0.tar.bz2) = d07fa31c3a8ead147f981efa90193c56 -SHA256 (gnome2/dasher-4.10.0.tar.bz2) = 0aa214914417c61ffd9be30e55ae7290a7aa08c403be607535dae1983c190d77 -SIZE (gnome2/dasher-4.10.0.tar.bz2) = 6645541 diff --git a/accessibility/dasher/pkg-descr b/accessibility/dasher/pkg-descr deleted file mode 100644 index 7ef3255f0..000000000 --- a/accessibility/dasher/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -Dasher is an information-efficient text-entry interface, driven by -natural continuous pointing gestures. Dasher is a competitive text-entry -system wherever a full-size keyboard cannot be used - for example, - - * on a palmtop computer; - * on a wearable computer; - * when operating a computer one-handed, by joystick, touchscreen, - * trackball, or mouse; - * when operating a computer with zero hands (i.e., by head-mouse or - * by eyetracker). - -Dasher is fast, efficient, and easy to learn. - -WWW: http://www.inference.phy.cam.ac.uk/dasher/ diff --git a/accessibility/dasher/pkg-plist b/accessibility/dasher/pkg-plist deleted file mode 100644 index 795eee87a..000000000 --- a/accessibility/dasher/pkg-plist +++ /dev/null @@ -1,480 +0,0 @@ -bin/dasher -share/applications/dasher.desktop -%%DATADIR%%/alphabet.AfaanOromo.xml -%%DATADIR%%/alphabet.Armenian.xml -%%DATADIR%%/alphabet.Assamese.xml -%%DATADIR%%/alphabet.Austen.xml -%%DATADIR%%/alphabet.Azerbaijani.xml -%%DATADIR%%/alphabet.Belarusian.xml -%%DATADIR%%/alphabet.Bulgarian.xml -%%DATADIR%%/alphabet.Esperanto.xml -%%DATADIR%%/alphabet.Estonian.xml -%%DATADIR%%/alphabet.Filipino.xml -%%DATADIR%%/alphabet.Greek.xml -%%DATADIR%%/alphabet.Gujarati.xml -%%DATADIR%%/alphabet.Hawaiian.xml -%%DATADIR%%/alphabet.Hebrew.xml -%%DATADIR%%/alphabet.Hindi.xml -%%DATADIR%%/alphabet.Icelandic.xml -%%DATADIR%%/alphabet.Igbo.xml -%%DATADIR%%/alphabet.Indonesian.xml -%%DATADIR%%/alphabet.IrishGaelic.xml -%%DATADIR%%/alphabet.Kannada.xml -%%DATADIR%%/alphabet.Katakana.xml -%%DATADIR%%/alphabet.Malay.xml -%%DATADIR%%/alphabet.Malayalam.xml -%%DATADIR%%/alphabet.Marathi.xml -%%DATADIR%%/alphabet.Moldavian.xml -%%DATADIR%%/alphabet.Ndebele.xml -%%DATADIR%%/alphabet.Oriya.xml -%%DATADIR%%/alphabet.Punjabi.xml -%%DATADIR%%/alphabet.Romanian.xml -%%DATADIR%%/alphabet.Sami.xml -%%DATADIR%%/alphabet.ScotsGaelic.xml -%%DATADIR%%/alphabet.Sepedi.xml -%%DATADIR%%/alphabet.Sesotho.xml -%%DATADIR%%/alphabet.Sinhala.xml -%%DATADIR%%/alphabet.Slovak.xml -%%DATADIR%%/alphabet.Slovenian.xml -%%DATADIR%%/alphabet.Swati.xml -%%DATADIR%%/alphabet.Tajik.xml -%%DATADIR%%/alphabet.Tamil.xml -%%DATADIR%%/alphabet.Telugu.xml -%%DATADIR%%/alphabet.Thai.xml -%%DATADIR%%/alphabet.Thai2.xml -%%DATADIR%%/alphabet.Tsonga.xml -%%DATADIR%%/alphabet.Tswana.xml -%%DATADIR%%/alphabet.Turkish.xml -%%DATADIR%%/alphabet.Urdu.xml -%%DATADIR%%/alphabet.Vietnamese.xml -%%DATADIR%%/alphabet.Xhosa.xml -%%DATADIR%%/alphabet.Yoruba.xml -%%DATADIR%%/alphabet.Zulu.xml -%%DATADIR%%/alphabet.abc.xml -%%DATADIR%%/alphabet.adangbe.xml -%%DATADIR%%/alphabet.afrikaans.xml -%%DATADIR%%/alphabet.akan.xml -%%DATADIR%%/alphabet.albanian.xml -%%DATADIR%%/alphabet.amharic.xml -%%DATADIR%%/alphabet.arabic.xml -%%DATADIR%%/alphabet.basque.xml -%%DATADIR%%/alphabet.bengali.xml -%%DATADIR%%/alphabet.bopomofo.xml -%%DATADIR%%/alphabet.bosnian.xml -%%DATADIR%%/alphabet.breton.xml -%%DATADIR%%/alphabet.catalan.xml -%%DATADIR%%/alphabet.cherokee.xml -%%DATADIR%%/alphabet.chinese.xml -%%DATADIR%%/alphabet.chineseRuby.xml -%%DATADIR%%/alphabet.corsican.xml -%%DATADIR%%/alphabet.croatian.xml -%%DATADIR%%/alphabet.czech.xml -%%DATADIR%%/alphabet.danish.xml -%%DATADIR%%/alphabet.dtd -%%DATADIR%%/alphabet.dutch.xml -%%DATADIR%%/alphabet.english.xml -%%DATADIR%%/alphabet.englishC.xml -%%DATADIR%%/alphabet.ethiopic.xml -%%DATADIR%%/alphabet.ewe.xml -%%DATADIR%%/alphabet.faroese.xml -%%DATADIR%%/alphabet.finnish.xml -%%DATADIR%%/alphabet.finnish2.xml -%%DATADIR%%/alphabet.french.xml -%%DATADIR%%/alphabet.ga.xml -%%DATADIR%%/alphabet.galician.xml -%%DATADIR%%/alphabet.georgian.xml -%%DATADIR%%/alphabet.german.xml -%%DATADIR%%/alphabet.hausa.xml -%%DATADIR%%/alphabet.hiragana.xml -%%DATADIR%%/alphabet.hiragana2.xml -%%DATADIR%%/alphabet.hungarian.xml -%%DATADIR%%/alphabet.ipa.xml -%%DATADIR%%/alphabet.italian.xml -%%DATADIR%%/alphabet.japanese.canna.xml -%%DATADIR%%/alphabet.kazakh.xml -%%DATADIR%%/alphabet.kirghiz.xml -%%DATADIR%%/alphabet.kirundi.xml -%%DATADIR%%/alphabet.klingon.xml -%%DATADIR%%/alphabet.korean.xml -%%DATADIR%%/alphabet.koreanNested.xml -%%DATADIR%%/alphabet.kurdish.xml -%%DATADIR%%/alphabet.lao.xml -%%DATADIR%%/alphabet.latex.xml -%%DATADIR%%/alphabet.latin.xml -%%DATADIR%%/alphabet.latvian.xml -%%DATADIR%%/alphabet.lithuanian.xml -%%DATADIR%%/alphabet.luxembourgish.xml -%%DATADIR%%/alphabet.macedonian.xml -%%DATADIR%%/alphabet.maltese.xml -%%DATADIR%%/alphabet.mongolian.xml -%%DATADIR%%/alphabet.myanmar.xml -%%DATADIR%%/alphabet.nepali.xml -%%DATADIR%%/alphabet.norwegian.xml -%%DATADIR%%/alphabet.occitan.xml -%%DATADIR%%/alphabet.ogham.xml -%%DATADIR%%/alphabet.pashto.xml -%%DATADIR%%/alphabet.perl.xml -%%DATADIR%%/alphabet.persian.xml -%%DATADIR%%/alphabet.pinyin.xml -%%DATADIR%%/alphabet.pinyin2.xml -%%DATADIR%%/alphabet.polish.xml -%%DATADIR%%/alphabet.portuguese.xml -%%DATADIR%%/alphabet.romansch.xml -%%DATADIR%%/alphabet.runic.xml -%%DATADIR%%/alphabet.russian.xml -%%DATADIR%%/alphabet.sanskrit.xml -%%DATADIR%%/alphabet.serbian.xml -%%DATADIR%%/alphabet.somali.xml -%%DATADIR%%/alphabet.spanish.xml -%%DATADIR%%/alphabet.swahili.xml -%%DATADIR%%/alphabet.swedish.xml -%%DATADIR%%/alphabet.thaana.xml -%%DATADIR%%/alphabet.tigrinya.xml -%%DATADIR%%/alphabet.turkmen.xml -%%DATADIR%%/alphabet.ukrainian.xml -%%DATADIR%%/alphabet.uzbek.xml -%%DATADIR%%/alphabet.venda.xml -%%DATADIR%%/alphabet.welsh.xml -%%DATADIR%%/alphabet.xsl -%%DATADIR%%/colour.blue.xml -%%DATADIR%%/colour.dtd -%%DATADIR%%/colour.euroasian.xml -%%DATADIR%%/colour.euroasian2.xml -%%DATADIR%%/colour.euroasian3.xml -%%DATADIR%%/colour.jamie.xml -%%DATADIR%%/colour.rainbow.xml -%%DATADIR%%/colour.thai.xml -%%DATADIR%%/colour.vowels.xml -%%DATADIR%%/colour.vowels2.xml -%%DATADIR%%/colour.xml -%%DATADIR%%/controllabels.dtd -%%DATADIR%%/controllabels.xml -%%DATADIR%%/dasher.compose.glade -%%DATADIR%%/dasher.direct.glade -%%DATADIR%%/dasher.fullscreen.glade -%%DATADIR%%/dasher.gameWIP.glade -%%DATADIR%%/dasher.traditional.glade -%%DATADIR%%/dasher.preferences.glade -%%DATADIR%%/dashermaemo.glade -%%DATADIR%%/dashermaemo.preferences.glade -%%DATADIR%%/dashermaemofullscreen.glade -%%DATADIR%%/training_albanian_SQ.txt -%%DATADIR%%/training_basque_EU.txt -%%DATADIR%%/training_bengali_BD.txt -%%DATADIR%%/training_bengali_bn.txt -%%DATADIR%%/training_canna_JP.txt -%%DATADIR%%/training_czech_CS.txt -%%DATADIR%%/training_danish_DK.txt -%%DATADIR%%/training_dutch_NL.txt -%%DATADIR%%/training_english_GB.txt -%%DATADIR%%/training_finnish_FI.txt -%%DATADIR%%/training_french_FR.txt -%%DATADIR%%/training_german_DE.txt -%%DATADIR%%/training_greek_GR.txt -%%DATADIR%%/training_hebrew_IL.txt -%%DATADIR%%/training_hiragana60_JP.txt -%%DATADIR%%/training_hiragana83_JP.txt -%%DATADIR%%/training_hungarian_HU.txt -%%DATADIR%%/training_italian_IT.txt -%%DATADIR%%/training_mongolian_MN.txt -%%DATADIR%%/training_persian_IR.txt -%%DATADIR%%/training_polish_PL.txt -%%DATADIR%%/training_portuguese_BR.txt -%%DATADIR%%/training_russian_RU.txt -%%DATADIR%%/training_spanish_ES.txt -%%DATADIR%%/training_swahili_KE.txt -%%DATADIR%%/training_swedish_SE.txt -%%DATADIR%%/training_turkish_TR.txt -%%DATADIR%%/training_welsh_GB.txt -share/gnome/help/dasher/C/dasher.xml -share/gnome/help/dasher/C/figures/a-z.gif -share/gnome/help/dasher/C/figures/aa-az.gif -share/gnome/help/dasher/C/figures/ala-alz.gif -share/gnome/help/dasher/C/figures/exampleHad2.png -share/gnome/help/dasher/C/figures/exampleHad2a.png -share/gnome/help/dasher/C/figures/exampleHad3a.png -share/gnome/help/dasher/C/figures/exampleHad4.png -share/gnome/help/dasher/C/figures/figure2.png -share/gnome/help/dasher/C/figures/main.png -share/gnome/help/dasher/C/figures/object.gif -share/gnome/help/dasher/C/figures/prefs1.png -share/gnome/help/dasher/C/figures/prefs2.png -share/gnome/help/dasher/C/figures/prefs3.png -share/gnome/help/dasher/C/figures/prefs4.png -share/gnome/help/dasher/C/figures/prefs5.png -share/gnome/help/dasher/de/dasher.xml -share/gnome/help/dasher/de/figures/a-z.gif -share/gnome/help/dasher/de/figures/aa-az.gif -share/gnome/help/dasher/de/figures/ala-alz.gif -share/gnome/help/dasher/de/figures/exampleHad2.png -share/gnome/help/dasher/de/figures/exampleHad2a.png -share/gnome/help/dasher/de/figures/exampleHad3a.png -share/gnome/help/dasher/de/figures/exampleHad4.png -share/gnome/help/dasher/de/figures/figure2.png -share/gnome/help/dasher/de/figures/main.png -share/gnome/help/dasher/de/figures/object.gif -share/gnome/help/dasher/de/figures/prefs1.png -share/gnome/help/dasher/de/figures/prefs2.png -share/gnome/help/dasher/de/figures/prefs3.png -share/gnome/help/dasher/de/figures/prefs4.png -share/gnome/help/dasher/de/figures/prefs5.png -share/gnome/help/dasher/en_GB/dasher.xml -share/gnome/help/dasher/en_GB/figures/a-z.gif -share/gnome/help/dasher/en_GB/figures/aa-az.gif -share/gnome/help/dasher/en_GB/figures/ala-alz.gif -share/gnome/help/dasher/en_GB/figures/exampleHad2.png -share/gnome/help/dasher/en_GB/figures/exampleHad2a.png -share/gnome/help/dasher/en_GB/figures/exampleHad3a.png -share/gnome/help/dasher/en_GB/figures/exampleHad4.png -share/gnome/help/dasher/en_GB/figures/figure2.png -share/gnome/help/dasher/en_GB/figures/main.png -share/gnome/help/dasher/en_GB/figures/object.gif -share/gnome/help/dasher/en_GB/figures/prefs1.png -share/gnome/help/dasher/en_GB/figures/prefs2.png -share/gnome/help/dasher/en_GB/figures/prefs3.png -share/gnome/help/dasher/en_GB/figures/prefs4.png -share/gnome/help/dasher/en_GB/figures/prefs5.png -share/gnome/help/dasher/es/dasher.xml -share/gnome/help/dasher/es/figures/a-z.gif -share/gnome/help/dasher/es/figures/aa-az.gif -share/gnome/help/dasher/es/figures/ala-alz.gif -share/gnome/help/dasher/es/figures/exampleHad2.png -share/gnome/help/dasher/es/figures/exampleHad2a.png -share/gnome/help/dasher/es/figures/exampleHad3a.png -share/gnome/help/dasher/es/figures/exampleHad4.png -share/gnome/help/dasher/es/figures/figure2.png -share/gnome/help/dasher/es/figures/main.png -share/gnome/help/dasher/es/figures/object.gif -share/gnome/help/dasher/es/figures/prefs1.png -share/gnome/help/dasher/es/figures/prefs2.png -share/gnome/help/dasher/es/figures/prefs3.png -share/gnome/help/dasher/es/figures/prefs4.png -share/gnome/help/dasher/es/figures/prefs5.png -share/gnome/help/dasher/eu/dasher.xml -share/gnome/help/dasher/eu/figures/a-z.gif -share/gnome/help/dasher/eu/figures/aa-az.gif -share/gnome/help/dasher/eu/figures/ala-alz.gif -share/gnome/help/dasher/eu/figures/exampleHad2.png -share/gnome/help/dasher/eu/figures/exampleHad2a.png -share/gnome/help/dasher/eu/figures/exampleHad3a.png -share/gnome/help/dasher/eu/figures/exampleHad4.png -share/gnome/help/dasher/eu/figures/figure2.png -share/gnome/help/dasher/eu/figures/main.png -share/gnome/help/dasher/eu/figures/object.gif -share/gnome/help/dasher/eu/figures/prefs1.png -share/gnome/help/dasher/eu/figures/prefs2.png -share/gnome/help/dasher/eu/figures/prefs3.png -share/gnome/help/dasher/eu/figures/prefs4.png -share/gnome/help/dasher/eu/figures/prefs5.png -share/gnome/help/dasher/fr/dasher.xml -share/gnome/help/dasher/fr/figures/a-z.gif -share/gnome/help/dasher/fr/figures/aa-az.gif -share/gnome/help/dasher/fr/figures/ala-alz.gif -share/gnome/help/dasher/fr/figures/exampleHad2.png -share/gnome/help/dasher/fr/figures/exampleHad2a.png -share/gnome/help/dasher/fr/figures/exampleHad3a.png -share/gnome/help/dasher/fr/figures/exampleHad4.png -share/gnome/help/dasher/fr/figures/figure2.png -share/gnome/help/dasher/fr/figures/main.png -share/gnome/help/dasher/fr/figures/object.gif -share/gnome/help/dasher/fr/figures/prefs1.png -share/gnome/help/dasher/fr/figures/prefs2.png -share/gnome/help/dasher/fr/figures/prefs3.png -share/gnome/help/dasher/fr/figures/prefs4.png -share/gnome/help/dasher/fr/figures/prefs5.png -share/gnome/help/dasher/oc/dasher.xml -share/gnome/help/dasher/oc/figures/a-z.gif -share/gnome/help/dasher/oc/figures/aa-az.gif -share/gnome/help/dasher/oc/figures/ala-alz.gif -share/gnome/help/dasher/oc/figures/exampleHad2.png -share/gnome/help/dasher/oc/figures/exampleHad2a.png -share/gnome/help/dasher/oc/figures/exampleHad3a.png -share/gnome/help/dasher/oc/figures/exampleHad4.png -share/gnome/help/dasher/oc/figures/figure2.png -share/gnome/help/dasher/oc/figures/main.png -share/gnome/help/dasher/oc/figures/object.gif -share/gnome/help/dasher/oc/figures/prefs1.png -share/gnome/help/dasher/oc/figures/prefs2.png -share/gnome/help/dasher/oc/figures/prefs3.png -share/gnome/help/dasher/oc/figures/prefs4.png -share/gnome/help/dasher/oc/figures/prefs5.png -share/gnome/help/dasher/ru/dasher.xml -share/gnome/help/dasher/ru/figures/a-z.gif -share/gnome/help/dasher/ru/figures/aa-az.gif -share/gnome/help/dasher/ru/figures/ala-alz.gif -share/gnome/help/dasher/ru/figures/exampleHad2.png -share/gnome/help/dasher/ru/figures/exampleHad2a.png -share/gnome/help/dasher/ru/figures/exampleHad3a.png -share/gnome/help/dasher/ru/figures/exampleHad4.png -share/gnome/help/dasher/ru/figures/figure2.png -share/gnome/help/dasher/ru/figures/main.png -share/gnome/help/dasher/ru/figures/object.gif -share/gnome/help/dasher/ru/figures/prefs1.png -share/gnome/help/dasher/ru/figures/prefs2.png -share/gnome/help/dasher/ru/figures/prefs3.png -share/gnome/help/dasher/ru/figures/prefs4.png -share/gnome/help/dasher/ru/figures/prefs5.png -share/gnome/help/dasher/sv/dasher.xml -share/gnome/help/dasher/sv/figures/a-z.gif -share/gnome/help/dasher/sv/figures/aa-az.gif -share/gnome/help/dasher/sv/figures/ala-alz.gif -share/gnome/help/dasher/sv/figures/exampleHad2.png -share/gnome/help/dasher/sv/figures/exampleHad2a.png -share/gnome/help/dasher/sv/figures/exampleHad3a.png -share/gnome/help/dasher/sv/figures/exampleHad4.png -share/gnome/help/dasher/sv/figures/figure2.png -share/gnome/help/dasher/sv/figures/main.png -share/gnome/help/dasher/sv/figures/object.gif -share/gnome/help/dasher/sv/figures/prefs1.png -share/gnome/help/dasher/sv/figures/prefs2.png -share/gnome/help/dasher/sv/figures/prefs3.png -share/gnome/help/dasher/sv/figures/prefs4.png -share/gnome/help/dasher/sv/figures/prefs5.png -share/icons/hicolor/48x48/apps/dasher.png -share/icons/hicolor/scalable/apps/dasher.svg -share/locale/af/LC_MESSAGES/dasher.mo -share/locale/ar/LC_MESSAGES/dasher.mo -share/locale/as/LC_MESSAGES/dasher.mo -share/locale/az/LC_MESSAGES/dasher.mo -share/locale/be/LC_MESSAGES/dasher.mo -share/locale/be@latin/LC_MESSAGES/dasher.mo -share/locale/bg/LC_MESSAGES/dasher.mo -share/locale/bn/LC_MESSAGES/dasher.mo -share/locale/bn_IN/LC_MESSAGES/dasher.mo -share/locale/bs/LC_MESSAGES/dasher.mo -share/locale/ca/LC_MESSAGES/dasher.mo -share/locale/cs/LC_MESSAGES/dasher.mo -share/locale/cy/LC_MESSAGES/dasher.mo -share/locale/da/LC_MESSAGES/dasher.mo -share/locale/de/LC_MESSAGES/dasher.mo -share/locale/dz/LC_MESSAGES/dasher.mo -share/locale/el/LC_MESSAGES/dasher.mo -share/locale/en_CA/LC_MESSAGES/dasher.mo -share/locale/en_GB/LC_MESSAGES/dasher.mo -share/locale/es/LC_MESSAGES/dasher.mo -share/locale/et/LC_MESSAGES/dasher.mo -share/locale/eu/LC_MESSAGES/dasher.mo -share/locale/fa/LC_MESSAGES/dasher.mo -share/locale/fi/LC_MESSAGES/dasher.mo -share/locale/fr/LC_MESSAGES/dasher.mo -share/locale/ga/LC_MESSAGES/dasher.mo -share/locale/gl/LC_MESSAGES/dasher.mo -share/locale/gu/LC_MESSAGES/dasher.mo -share/locale/he/LC_MESSAGES/dasher.mo -share/locale/hi/LC_MESSAGES/dasher.mo -share/locale/hr/LC_MESSAGES/dasher.mo -share/locale/hu/LC_MESSAGES/dasher.mo -share/locale/id/LC_MESSAGES/dasher.mo -share/locale/it/LC_MESSAGES/dasher.mo -share/locale/ja/LC_MESSAGES/dasher.mo -share/locale/ka/LC_MESSAGES/dasher.mo -share/locale/kn/LC_MESSAGES/dasher.mo -share/locale/ko/LC_MESSAGES/dasher.mo -share/locale/ku/LC_MESSAGES/dasher.mo -share/locale/ky/LC_MESSAGES/dasher.mo -share/locale/lt/LC_MESSAGES/dasher.mo -share/locale/lv/LC_MESSAGES/dasher.mo -share/locale/mg/LC_MESSAGES/dasher.mo -share/locale/mk/LC_MESSAGES/dasher.mo -share/locale/ml/LC_MESSAGES/dasher.mo -share/locale/mn/LC_MESSAGES/dasher.mo -share/locale/mr/LC_MESSAGES/dasher.mo -share/locale/ms/LC_MESSAGES/dasher.mo -share/locale/nb/LC_MESSAGES/dasher.mo -share/locale/ne/LC_MESSAGES/dasher.mo -share/locale/nl/LC_MESSAGES/dasher.mo -share/locale/nn/LC_MESSAGES/dasher.mo -share/locale/oc/LC_MESSAGES/dasher.mo -share/locale/or/LC_MESSAGES/dasher.mo -share/locale/pa/LC_MESSAGES/dasher.mo -share/locale/pl/LC_MESSAGES/dasher.mo -share/locale/ps/LC_MESSAGES/dasher.mo -share/locale/pt/LC_MESSAGES/dasher.mo -share/locale/pt_BR/LC_MESSAGES/dasher.mo -share/locale/ro/LC_MESSAGES/dasher.mo -share/locale/ru/LC_MESSAGES/dasher.mo -share/locale/rw/LC_MESSAGES/dasher.mo -share/locale/si/LC_MESSAGES/dasher.mo -share/locale/sk/LC_MESSAGES/dasher.mo -share/locale/sl/LC_MESSAGES/dasher.mo -share/locale/sq/LC_MESSAGES/dasher.mo -share/locale/sr/LC_MESSAGES/dasher.mo -share/locale/sr@latin/LC_MESSAGES/dasher.mo -share/locale/sv/LC_MESSAGES/dasher.mo -share/locale/ta/LC_MESSAGES/dasher.mo -share/locale/te/LC_MESSAGES/dasher.mo -share/locale/th/LC_MESSAGES/dasher.mo -share/locale/tk/LC_MESSAGES/dasher.mo -share/locale/tr/LC_MESSAGES/dasher.mo -share/locale/ug/LC_MESSAGES/dasher.mo -share/locale/uk/LC_MESSAGES/dasher.mo -share/locale/uz@cyrillic/LC_MESSAGES/dasher.mo -share/locale/vi/LC_MESSAGES/dasher.mo -share/locale/zh_CN/LC_MESSAGES/dasher.mo -share/locale/zh_HK/LC_MESSAGES/dasher.mo -share/locale/zh_TW/LC_MESSAGES/dasher.mo -share/omf/dasher/dasher-C.omf -share/omf/dasher/dasher-de.omf -share/omf/dasher/dasher-en_GB.omf -share/omf/dasher/dasher-es.omf -share/omf/dasher/dasher-eu.omf -share/omf/dasher/dasher-fr.omf -share/omf/dasher/dasher-oc.omf -share/omf/dasher/dasher-ru.omf -share/omf/dasher/dasher-sv.omf -@dirrm share/omf/dasher -@dirrm share/gnome/help/dasher/sv/figures -@dirrm share/gnome/help/dasher/sv -@dirrm share/gnome/help/dasher/ru/figures -@dirrm share/gnome/help/dasher/ru -@dirrm share/gnome/help/dasher/oc/figures -@dirrm share/gnome/help/dasher/oc -@dirrm share/gnome/help/dasher/fr/figures -@dirrm share/gnome/help/dasher/fr -@dirrm share/gnome/help/dasher/eu/figures -@dirrm share/gnome/help/dasher/eu -@dirrm share/gnome/help/dasher/es/figures -@dirrm share/gnome/help/dasher/es -@dirrm share/gnome/help/dasher/en_GB/figures -@dirrm share/gnome/help/dasher/en_GB -@dirrm share/gnome/help/dasher/de/figures -@dirrm share/gnome/help/dasher/de -@dirrm share/gnome/help/dasher/C/figures -@dirrm share/gnome/help/dasher/C -@dirrm share/gnome/help/dasher -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/accessibility/gok/Makefile b/accessibility/gok/Makefile deleted file mode 100644 index 660e9ec36..000000000 --- a/accessibility/gok/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: gok -# Date created: 12 April 2003 -# Whom: Adam Weinberger <adamw@freebsd.org> -# -# $FreeBSD$ -# $MCom: ports/accessibility/gok/Makefile,v 1.91 2009/02/22 15:20:20 kwm Exp $ -# - -PORTNAME= gok -PORTVERSION= 2.26.0 -PORTEPOCH= 1 -CATEGORIES= accessibility sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME On-Screen Keyboard (GOK) - -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -USE_GNOME= gnomehack gnomeprefix intlhack libgnomeui atspi libwnck \ - gnomespeech -USE_GMAKE= yes -INSTALLS_ICONS= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gok.schemas - -post-patch: - @${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|' \ - ${WRKSRC}/gok/word-complete.c - -.include <bsd.port.mk> diff --git a/accessibility/gok/distinfo b/accessibility/gok/distinfo deleted file mode 100644 index 92a89a378..000000000 --- a/accessibility/gok/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gok-2.26.0.tar.bz2) = 8cc28ad6010a977c9ccbe8d5b690f636 -SHA256 (gnome2/gok-2.26.0.tar.bz2) = 787b24c7fe81bc22a3f425bc632a6712e27c616e5d4b8a1cfba9d0fbf721674a -SIZE (gnome2/gok-2.26.0.tar.bz2) = 1341889 diff --git a/accessibility/gok/pkg-descr b/accessibility/gok/pkg-descr deleted file mode 100644 index 1ef635d80..000000000 --- a/accessibility/gok/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -The GNOME On-Screen Keyboard (GOK) is an accessibility interface -that gives you control of your system without needing a keyboard. -The GOK makes available a hierarchical button system that enables -keyboardless entry of common accelerators, and contains a -clickable keyboard that sports suggested autocompletion of many -common words, and even some commands. The GOK will provide an -alternative interface to common commands and functions within -applications that utilize the AT SPI. - -The GOK is is designed to be usable by many alternative input -methods, i.e. not a common keyboard and mouse combination. - -WWW: http://www.gok.ca diff --git a/accessibility/gok/pkg-plist b/accessibility/gok/pkg-plist deleted file mode 100644 index e0f421756..000000000 --- a/accessibility/gok/pkg-plist +++ /dev/null @@ -1,1046 +0,0 @@ -bin/create-branching-keyboard -bin/gok -libdata/bonobo/servers/GNOME_Gok.server -libdata/pkgconfig/gok-1.0.pc -share/applications/gok.desktop -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/ch03.html -%%DOCSDIR%%/ch04.html -%%DOCSDIR%%/gok-arraylist.html -%%DOCSDIR%%/gok-callbacks.html -%%DOCSDIR%%/gok-command-common.html -%%DOCSDIR%%/gok-command-edge-data.html -%%DOCSDIR%%/gok-command-edge.html -%%DOCSDIR%%/gok-command-graph.html -%%DOCSDIR%%/gok-command-predictor.html -%%DOCSDIR%%/gok-command-vertex-data.html -%%DOCSDIR%%/gok-command-vertex.html -%%DOCSDIR%%/gok-global.html -%%DOCSDIR%%/gok-gok-action.html -%%DOCSDIR%%/gok-gok-branchback-stack.html -%%DOCSDIR%%/gok-gok-chunker.html -%%DOCSDIR%%/gok-gok-control.html -%%DOCSDIR%%/gok-gok-data.html -%%DOCSDIR%%/gok-gok-editor.html -%%DOCSDIR%%/gok-gok-feedback.html -%%DOCSDIR%%/gok-gok-gconf.html -%%DOCSDIR%%/gok-gok-key.html -%%DOCSDIR%%/gok-gok-keyboard.html -%%DOCSDIR%%/gok-gok-keyslotter.html -%%DOCSDIR%%/gok-gok-log-priv.html -%%DOCSDIR%%/gok-gok-log-reader.html -%%DOCSDIR%%/gok-gok-log.html -%%DOCSDIR%%/gok-gok-modifier.html -%%DOCSDIR%%/gok-gok-output.html -%%DOCSDIR%%/gok-gok-page-accessmethod.html -%%DOCSDIR%%/gok-gok-page-actions.html -%%DOCSDIR%%/gok-gok-page-feedbacks.html -%%DOCSDIR%%/gok-gok-page-keysizespace.html -%%DOCSDIR%%/gok-gok-page-wordcomplete.html -%%DOCSDIR%%/gok-gok-predictor.html -%%DOCSDIR%%/gok-gok-scanner.html -%%DOCSDIR%%/gok-gok-settings-dialog.html -%%DOCSDIR%%/gok-gok-sound.html -%%DOCSDIR%%/gok-gok-spy-priv.html -%%DOCSDIR%%/gok-gok-spy.html -%%DOCSDIR%%/gok-gok-word-complete.html -%%DOCSDIR%%/gok-gok.html -%%DOCSDIR%%/gok-gtkjoyswitch.html -%%DOCSDIR%%/gok-interface.html -%%DOCSDIR%%/gok-main.html -%%DOCSDIR%%/gok-support.html -%%DOCSDIR%%/gok-switchapi.html -%%DOCSDIR%%/gok-word-complete.html -%%DOCSDIR%%/gok.devhelp -%%DOCSDIR%%/gok.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/gnome/help/gok/C/gok.xml -share/gnome/help/gok/C/legal.xml -%%DATADIR%%/C/gok-controls.kbd -%%DATADIR%%/C/hide.kbd -%%DATADIR%%/C/launcher.kbd -%%DATADIR%%/C/main.kbd -%%DATADIR%%/C/mouse.kbd -%%DATADIR%%/C/move-resize.kbd -%%DATADIR%%/C/numberpad.kbd -%%DATADIR%%/C/quit.kbd -%%DATADIR%%/C/text-operations.kbd -%%DATADIR%%/C/valuator.kbd -%%DATADIR%%/East.png -%%DATADIR%%/Keyboard.kbd -%%DATADIR%%/NE.png -%%DATADIR%%/NW.png -%%DATADIR%%/North.png -%%DATADIR%%/SE.png -%%DATADIR%%/SW.png -%%DATADIR%%/South.png -%%DATADIR%%/West.png -%%DATADIR%%/am/gok-controls.kbd -%%DATADIR%%/am/hide.kbd -%%DATADIR%%/am/launcher.kbd -%%DATADIR%%/am/main.kbd -%%DATADIR%%/am/mouse.kbd -%%DATADIR%%/am/move-resize.kbd -%%DATADIR%%/am/numberpad.kbd -%%DATADIR%%/am/quit.kbd -%%DATADIR%%/am/text-operations.kbd -%%DATADIR%%/am/valuator.kbd -%%DATADIR%%/ang/gok-controls.kbd -%%DATADIR%%/ang/hide.kbd -%%DATADIR%%/ang/launcher.kbd -%%DATADIR%%/ang/main.kbd -%%DATADIR%%/ang/mouse.kbd -%%DATADIR%%/ang/move-resize.kbd -%%DATADIR%%/ang/numberpad.kbd -%%DATADIR%%/ang/quit.kbd -%%DATADIR%%/ang/text-operations.kbd -%%DATADIR%%/ang/valuator.kbd -%%DATADIR%%/ar/gok-controls.kbd -%%DATADIR%%/ar/hide.kbd -%%DATADIR%%/ar/launcher.kbd -%%DATADIR%%/ar/main.kbd -%%DATADIR%%/ar/mouse.kbd -%%DATADIR%%/ar/move-resize.kbd -%%DATADIR%%/ar/numberpad.kbd -%%DATADIR%%/ar/quit.kbd -%%DATADIR%%/ar/text-operations.kbd -%%DATADIR%%/ar/valuator.kbd -%%DATADIR%%/as/gok-controls.kbd -%%DATADIR%%/as/hide.kbd -%%DATADIR%%/as/launcher.kbd -%%DATADIR%%/as/main.kbd -%%DATADIR%%/as/mouse.kbd -%%DATADIR%%/as/move-resize.kbd -%%DATADIR%%/as/numberpad.kbd -%%DATADIR%%/as/quit.kbd -%%DATADIR%%/as/text-operations.kbd -%%DATADIR%%/as/valuator.kbd -%%DATADIR%%/automatic-scanning.xam -%%DATADIR%%/az/gok-controls.kbd -%%DATADIR%%/az/hide.kbd -%%DATADIR%%/az/launcher.kbd -%%DATADIR%%/az/main.kbd -%%DATADIR%%/az/mouse.kbd -%%DATADIR%%/az/move-resize.kbd -%%DATADIR%%/az/numberpad.kbd -%%DATADIR%%/az/quit.kbd -%%DATADIR%%/az/text-operations.kbd -%%DATADIR%%/az/valuator.kbd -%%DATADIR%%/be/gok-controls.kbd -%%DATADIR%%/be/hide.kbd -%%DATADIR%%/be/launcher.kbd -%%DATADIR%%/be/main.kbd -%%DATADIR%%/be/mouse.kbd -%%DATADIR%%/be/move-resize.kbd -%%DATADIR%%/be/numberpad.kbd -%%DATADIR%%/be/quit.kbd -%%DATADIR%%/be/text-operations.kbd -%%DATADIR%%/be/valuator.kbd -%%DATADIR%%/bg/gok-controls.kbd -%%DATADIR%%/bg/hide.kbd -%%DATADIR%%/bg/launcher.kbd -%%DATADIR%%/bg/main.kbd -%%DATADIR%%/bg/mouse.kbd -%%DATADIR%%/bg/move-resize.kbd -%%DATADIR%%/bg/numberpad.kbd -%%DATADIR%%/bg/quit.kbd -%%DATADIR%%/bg/text-operations.kbd -%%DATADIR%%/bg/valuator.kbd -%%DATADIR%%/bn/gok-controls.kbd -%%DATADIR%%/bn/hide.kbd -%%DATADIR%%/bn/launcher.kbd -%%DATADIR%%/bn/main.kbd -%%DATADIR%%/bn/mouse.kbd -%%DATADIR%%/bn/move-resize.kbd -%%DATADIR%%/bn/numberpad.kbd -%%DATADIR%%/bn/quit.kbd -%%DATADIR%%/bn/text-operations.kbd -%%DATADIR%%/bn/valuator.kbd -%%DATADIR%%/bn_IN/gok-controls.kbd -%%DATADIR%%/bn_IN/hide.kbd -%%DATADIR%%/bn_IN/launcher.kbd -%%DATADIR%%/bn_IN/main.kbd -%%DATADIR%%/bn_IN/mouse.kbd -%%DATADIR%%/bn_IN/move-resize.kbd -%%DATADIR%%/bn_IN/numberpad.kbd -%%DATADIR%%/bn_IN/quit.kbd -%%DATADIR%%/bn_IN/text-operations.kbd -%%DATADIR%%/bn_IN/valuator.kbd -%%DATADIR%%/ca/gok-controls.kbd -%%DATADIR%%/ca/hide.kbd -%%DATADIR%%/ca/launcher.kbd -%%DATADIR%%/ca/main.kbd -%%DATADIR%%/ca/mouse.kbd -%%DATADIR%%/ca/move-resize.kbd -%%DATADIR%%/ca/numberpad.kbd -%%DATADIR%%/ca/quit.kbd -%%DATADIR%%/ca/text-operations.kbd -%%DATADIR%%/ca/valuator.kbd -%%DATADIR%%/cs/gok-controls.kbd -%%DATADIR%%/cs/hide.kbd -%%DATADIR%%/cs/launcher.kbd -%%DATADIR%%/cs/main.kbd -%%DATADIR%%/cs/mouse.kbd -%%DATADIR%%/cs/move-resize.kbd -%%DATADIR%%/cs/numberpad.kbd -%%DATADIR%%/cs/quit.kbd -%%DATADIR%%/cs/text-operations.kbd -%%DATADIR%%/cs/valuator.kbd -%%DATADIR%%/cy/gok-controls.kbd -%%DATADIR%%/cy/hide.kbd -%%DATADIR%%/cy/launcher.kbd -%%DATADIR%%/cy/main.kbd -%%DATADIR%%/cy/mouse.kbd -%%DATADIR%%/cy/move-resize.kbd -%%DATADIR%%/cy/numberpad.kbd -%%DATADIR%%/cy/quit.kbd -%%DATADIR%%/cy/text-operations.kbd -%%DATADIR%%/cy/valuator.kbd -%%DATADIR%%/da/gok-controls.kbd -%%DATADIR%%/da/hide.kbd -%%DATADIR%%/da/launcher.kbd -%%DATADIR%%/da/main.kbd -%%DATADIR%%/da/mouse.kbd -%%DATADIR%%/da/move-resize.kbd -%%DATADIR%%/da/numberpad.kbd -%%DATADIR%%/da/quit.kbd -%%DATADIR%%/da/text-operations.kbd -%%DATADIR%%/da/valuator.kbd -%%DATADIR%%/de/gok-controls.kbd -%%DATADIR%%/de/hide.kbd -%%DATADIR%%/de/launcher.kbd -%%DATADIR%%/de/main.kbd -%%DATADIR%%/de/mouse.kbd -%%DATADIR%%/de/move-resize.kbd -%%DATADIR%%/de/numberpad.kbd -%%DATADIR%%/de/quit.kbd -%%DATADIR%%/de/text-operations.kbd -%%DATADIR%%/de/valuator.kbd -%%DATADIR%%/dictionary.txt -%%DATADIR%%/direct-selection.xam -%%DATADIR%%/directed.xam -%%DATADIR%%/dwell-selection.xam -%%DATADIR%%/dz/gok-controls.kbd -%%DATADIR%%/dz/hide.kbd -%%DATADIR%%/dz/launcher.kbd -%%DATADIR%%/dz/main.kbd -%%DATADIR%%/dz/mouse.kbd -%%DATADIR%%/dz/move-resize.kbd -%%DATADIR%%/dz/numberpad.kbd -%%DATADIR%%/dz/quit.kbd -%%DATADIR%%/dz/text-operations.kbd -%%DATADIR%%/dz/valuator.kbd -%%DATADIR%%/el/gok-controls.kbd -%%DATADIR%%/el/hide.kbd -%%DATADIR%%/el/launcher.kbd -%%DATADIR%%/el/main.kbd -%%DATADIR%%/el/mouse.kbd -%%DATADIR%%/el/move-resize.kbd -%%DATADIR%%/el/numberpad.kbd -%%DATADIR%%/el/quit.kbd -%%DATADIR%%/el/text-operations.kbd -%%DATADIR%%/el/valuator.kbd -%%DATADIR%%/empty.png -%%DATADIR%%/en_CA/gok-controls.kbd -%%DATADIR%%/en_CA/hide.kbd -%%DATADIR%%/en_CA/launcher.kbd -%%DATADIR%%/en_CA/main.kbd -%%DATADIR%%/en_CA/mouse.kbd -%%DATADIR%%/en_CA/move-resize.kbd -%%DATADIR%%/en_CA/numberpad.kbd -%%DATADIR%%/en_CA/quit.kbd -%%DATADIR%%/en_CA/text-operations.kbd -%%DATADIR%%/en_CA/valuator.kbd -%%DATADIR%%/en_GB/gok-controls.kbd -%%DATADIR%%/en_GB/hide.kbd -%%DATADIR%%/en_GB/launcher.kbd -%%DATADIR%%/en_GB/main.kbd -%%DATADIR%%/en_GB/mouse.kbd -%%DATADIR%%/en_GB/move-resize.kbd -%%DATADIR%%/en_GB/numberpad.kbd -%%DATADIR%%/en_GB/quit.kbd -%%DATADIR%%/en_GB/text-operations.kbd -%%DATADIR%%/en_GB/valuator.kbd -%%DATADIR%%/es/gok-controls.kbd -%%DATADIR%%/es/hide.kbd -%%DATADIR%%/es/launcher.kbd -%%DATADIR%%/es/main.kbd -%%DATADIR%%/es/mouse.kbd -%%DATADIR%%/es/move-resize.kbd -%%DATADIR%%/es/numberpad.kbd -%%DATADIR%%/es/quit.kbd -%%DATADIR%%/es/text-operations.kbd -%%DATADIR%%/es/valuator.kbd -%%DATADIR%%/et/gok-controls.kbd -%%DATADIR%%/et/hide.kbd -%%DATADIR%%/et/launcher.kbd -%%DATADIR%%/et/main.kbd -%%DATADIR%%/et/mouse.kbd -%%DATADIR%%/et/move-resize.kbd -%%DATADIR%%/et/numberpad.kbd -%%DATADIR%%/et/quit.kbd -%%DATADIR%%/et/text-operations.kbd -%%DATADIR%%/et/valuator.kbd -%%DATADIR%%/eu/gok-controls.kbd -%%DATADIR%%/eu/hide.kbd -%%DATADIR%%/eu/launcher.kbd -%%DATADIR%%/eu/main.kbd -%%DATADIR%%/eu/mouse.kbd -%%DATADIR%%/eu/move-resize.kbd -%%DATADIR%%/eu/numberpad.kbd -%%DATADIR%%/eu/quit.kbd -%%DATADIR%%/eu/text-operations.kbd -%%DATADIR%%/eu/valuator.kbd -%%DATADIR%%/fa/gok-controls.kbd -%%DATADIR%%/fa/hide.kbd -%%DATADIR%%/fa/launcher.kbd -%%DATADIR%%/fa/main.kbd -%%DATADIR%%/fa/mouse.kbd -%%DATADIR%%/fa/move-resize.kbd -%%DATADIR%%/fa/numberpad.kbd -%%DATADIR%%/fa/quit.kbd -%%DATADIR%%/fa/text-operations.kbd -%%DATADIR%%/fa/valuator.kbd -%%DATADIR%%/fi/gok-controls.kbd -%%DATADIR%%/fi/hide.kbd -%%DATADIR%%/fi/launcher.kbd -%%DATADIR%%/fi/main.kbd -%%DATADIR%%/fi/mouse.kbd -%%DATADIR%%/fi/move-resize.kbd -%%DATADIR%%/fi/numberpad.kbd -%%DATADIR%%/fi/quit.kbd -%%DATADIR%%/fi/text-operations.kbd -%%DATADIR%%/fi/valuator.kbd -%%DATADIR%%/fr/gok-controls.kbd -%%DATADIR%%/fr/hide.kbd -%%DATADIR%%/fr/launcher.kbd -%%DATADIR%%/fr/main.kbd -%%DATADIR%%/fr/mouse.kbd -%%DATADIR%%/fr/move-resize.kbd -%%DATADIR%%/fr/numberpad.kbd -%%DATADIR%%/fr/quit.kbd -%%DATADIR%%/fr/text-operations.kbd -%%DATADIR%%/fr/valuator.kbd -%%DATADIR%%/ga/gok-controls.kbd -%%DATADIR%%/ga/hide.kbd -%%DATADIR%%/ga/launcher.kbd -%%DATADIR%%/ga/main.kbd -%%DATADIR%%/ga/mouse.kbd -%%DATADIR%%/ga/move-resize.kbd -%%DATADIR%%/ga/numberpad.kbd -%%DATADIR%%/ga/quit.kbd -%%DATADIR%%/ga/text-operations.kbd -%%DATADIR%%/ga/valuator.kbd -%%DATADIR%%/gl/gok-controls.kbd -%%DATADIR%%/gl/hide.kbd -%%DATADIR%%/gl/launcher.kbd -%%DATADIR%%/gl/main.kbd -%%DATADIR%%/gl/mouse.kbd -%%DATADIR%%/gl/move-resize.kbd -%%DATADIR%%/gl/numberpad.kbd -%%DATADIR%%/gl/quit.kbd -%%DATADIR%%/gl/text-operations.kbd -%%DATADIR%%/gl/valuator.kbd -%%DATADIR%%/glade/gok.glade2 -%%DATADIR%%/gok.rc -%%DATADIR%%/goklogo.png -%%DATADIR%%/goksound1.wav -%%DATADIR%%/goksound2.wav -%%DATADIR%%/gu/gok-controls.kbd -%%DATADIR%%/gu/hide.kbd -%%DATADIR%%/gu/launcher.kbd -%%DATADIR%%/gu/main.kbd -%%DATADIR%%/gu/mouse.kbd -%%DATADIR%%/gu/move-resize.kbd -%%DATADIR%%/gu/numberpad.kbd -%%DATADIR%%/gu/quit.kbd -%%DATADIR%%/gu/text-operations.kbd -%%DATADIR%%/gu/valuator.kbd -%%DATADIR%%/he/gok-controls.kbd -%%DATADIR%%/he/hide.kbd -%%DATADIR%%/he/launcher.kbd -%%DATADIR%%/he/main.kbd -%%DATADIR%%/he/mouse.kbd -%%DATADIR%%/he/move-resize.kbd -%%DATADIR%%/he/numberpad.kbd -%%DATADIR%%/he/quit.kbd -%%DATADIR%%/he/text-operations.kbd -%%DATADIR%%/he/valuator.kbd -%%DATADIR%%/hi/gok-controls.kbd -%%DATADIR%%/hi/hide.kbd -%%DATADIR%%/hi/launcher.kbd -%%DATADIR%%/hi/main.kbd -%%DATADIR%%/hi/mouse.kbd -%%DATADIR%%/hi/move-resize.kbd -%%DATADIR%%/hi/numberpad.kbd -%%DATADIR%%/hi/quit.kbd -%%DATADIR%%/hi/text-operations.kbd -%%DATADIR%%/hi/valuator.kbd -%%DATADIR%%/hr/gok-controls.kbd -%%DATADIR%%/hr/hide.kbd -%%DATADIR%%/hr/launcher.kbd -%%DATADIR%%/hr/main.kbd -%%DATADIR%%/hr/mouse.kbd -%%DATADIR%%/hr/move-resize.kbd -%%DATADIR%%/hr/numberpad.kbd -%%DATADIR%%/hr/quit.kbd -%%DATADIR%%/hr/text-operations.kbd -%%DATADIR%%/hr/valuator.kbd -%%DATADIR%%/hu/gok-controls.kbd -%%DATADIR%%/hu/hide.kbd -%%DATADIR%%/hu/launcher.kbd -%%DATADIR%%/hu/main.kbd -%%DATADIR%%/hu/mouse.kbd -%%DATADIR%%/hu/move-resize.kbd -%%DATADIR%%/hu/numberpad.kbd -%%DATADIR%%/hu/quit.kbd -%%DATADIR%%/hu/text-operations.kbd -%%DATADIR%%/hu/valuator.kbd -%%DATADIR%%/id/gok-controls.kbd -%%DATADIR%%/id/hide.kbd -%%DATADIR%%/id/launcher.kbd -%%DATADIR%%/id/main.kbd -%%DATADIR%%/id/mouse.kbd -%%DATADIR%%/id/move-resize.kbd -%%DATADIR%%/id/numberpad.kbd -%%DATADIR%%/id/quit.kbd -%%DATADIR%%/id/text-operations.kbd -%%DATADIR%%/id/valuator.kbd -%%DATADIR%%/inverse-scanning.xam -%%DATADIR%%/it/gok-controls.kbd -%%DATADIR%%/it/hide.kbd -%%DATADIR%%/it/launcher.kbd -%%DATADIR%%/it/main.kbd -%%DATADIR%%/it/mouse.kbd -%%DATADIR%%/it/move-resize.kbd -%%DATADIR%%/it/numberpad.kbd -%%DATADIR%%/it/quit.kbd -%%DATADIR%%/it/text-operations.kbd -%%DATADIR%%/it/valuator.kbd -%%DATADIR%%/ja/gok-controls.kbd -%%DATADIR%%/ja/hide.kbd -%%DATADIR%%/ja/launcher.kbd -%%DATADIR%%/ja/main.kbd -%%DATADIR%%/ja/mouse.kbd -%%DATADIR%%/ja/move-resize.kbd -%%DATADIR%%/ja/numberpad.kbd -%%DATADIR%%/ja/quit.kbd -%%DATADIR%%/ja/text-operations.kbd -%%DATADIR%%/ja/valuator.kbd -%%DATADIR%%/ka/gok-controls.kbd -%%DATADIR%%/ka/hide.kbd -%%DATADIR%%/ka/launcher.kbd -%%DATADIR%%/ka/main.kbd -%%DATADIR%%/ka/mouse.kbd -%%DATADIR%%/ka/move-resize.kbd -%%DATADIR%%/ka/numberpad.kbd -%%DATADIR%%/ka/quit.kbd -%%DATADIR%%/ka/text-operations.kbd -%%DATADIR%%/ka/valuator.kbd -%%DATADIR%%/kn/gok-controls.kbd -%%DATADIR%%/kn/hide.kbd -%%DATADIR%%/kn/launcher.kbd -%%DATADIR%%/kn/main.kbd -%%DATADIR%%/kn/mouse.kbd -%%DATADIR%%/kn/move-resize.kbd -%%DATADIR%%/kn/numberpad.kbd -%%DATADIR%%/kn/quit.kbd -%%DATADIR%%/kn/text-operations.kbd -%%DATADIR%%/kn/valuator.kbd -%%DATADIR%%/ko/gok-controls.kbd -%%DATADIR%%/ko/hide.kbd -%%DATADIR%%/ko/launcher.kbd -%%DATADIR%%/ko/main.kbd -%%DATADIR%%/ko/mouse.kbd -%%DATADIR%%/ko/move-resize.kbd -%%DATADIR%%/ko/numberpad.kbd -%%DATADIR%%/ko/quit.kbd -%%DATADIR%%/ko/text-operations.kbd -%%DATADIR%%/ko/valuator.kbd -%%DATADIR%%/ku/gok-controls.kbd -%%DATADIR%%/ku/hide.kbd -%%DATADIR%%/ku/launcher.kbd -%%DATADIR%%/ku/main.kbd -%%DATADIR%%/ku/mouse.kbd -%%DATADIR%%/ku/move-resize.kbd -%%DATADIR%%/ku/numberpad.kbd -%%DATADIR%%/ku/quit.kbd -%%DATADIR%%/ku/text-operations.kbd -%%DATADIR%%/ku/valuator.kbd -%%DATADIR%%/latched.png -%%DATADIR%%/locked.png -%%DATADIR%%/lt/gok-controls.kbd -%%DATADIR%%/lt/hide.kbd -%%DATADIR%%/lt/launcher.kbd -%%DATADIR%%/lt/main.kbd -%%DATADIR%%/lt/mouse.kbd -%%DATADIR%%/lt/move-resize.kbd -%%DATADIR%%/lt/numberpad.kbd -%%DATADIR%%/lt/quit.kbd -%%DATADIR%%/lt/text-operations.kbd -%%DATADIR%%/lt/valuator.kbd -%%DATADIR%%/lv/gok-controls.kbd -%%DATADIR%%/lv/hide.kbd -%%DATADIR%%/lv/launcher.kbd -%%DATADIR%%/lv/main.kbd -%%DATADIR%%/lv/mouse.kbd -%%DATADIR%%/lv/move-resize.kbd -%%DATADIR%%/lv/numberpad.kbd -%%DATADIR%%/lv/quit.kbd -%%DATADIR%%/lv/text-operations.kbd -%%DATADIR%%/lv/valuator.kbd -%%DATADIR%%/mai/gok-controls.kbd -%%DATADIR%%/mai/hide.kbd -%%DATADIR%%/mai/launcher.kbd -%%DATADIR%%/mai/main.kbd -%%DATADIR%%/mai/mouse.kbd -%%DATADIR%%/mai/move-resize.kbd -%%DATADIR%%/mai/numberpad.kbd -%%DATADIR%%/mai/quit.kbd -%%DATADIR%%/mai/text-operations.kbd -%%DATADIR%%/mai/valuator.kbd -%%DATADIR%%/manage.kbd -%%DATADIR%%/mk/gok-controls.kbd -%%DATADIR%%/mk/hide.kbd -%%DATADIR%%/mk/launcher.kbd -%%DATADIR%%/mk/main.kbd -%%DATADIR%%/mk/mouse.kbd -%%DATADIR%%/mk/move-resize.kbd -%%DATADIR%%/mk/numberpad.kbd -%%DATADIR%%/mk/quit.kbd -%%DATADIR%%/mk/text-operations.kbd -%%DATADIR%%/mk/valuator.kbd -%%DATADIR%%/ml/gok-controls.kbd -%%DATADIR%%/ml/hide.kbd -%%DATADIR%%/ml/launcher.kbd -%%DATADIR%%/ml/main.kbd -%%DATADIR%%/ml/mouse.kbd -%%DATADIR%%/ml/move-resize.kbd -%%DATADIR%%/ml/numberpad.kbd -%%DATADIR%%/ml/quit.kbd -%%DATADIR%%/ml/text-operations.kbd -%%DATADIR%%/ml/valuator.kbd -%%DATADIR%%/mn/gok-controls.kbd -%%DATADIR%%/mn/hide.kbd -%%DATADIR%%/mn/launcher.kbd -%%DATADIR%%/mn/main.kbd -%%DATADIR%%/mn/mouse.kbd -%%DATADIR%%/mn/move-resize.kbd -%%DATADIR%%/mn/numberpad.kbd -%%DATADIR%%/mn/quit.kbd -%%DATADIR%%/mn/text-operations.kbd -%%DATADIR%%/mn/valuator.kbd -%%DATADIR%%/mr/gok-controls.kbd -%%DATADIR%%/mr/hide.kbd -%%DATADIR%%/mr/launcher.kbd -%%DATADIR%%/mr/main.kbd -%%DATADIR%%/mr/mouse.kbd -%%DATADIR%%/mr/move-resize.kbd -%%DATADIR%%/mr/numberpad.kbd -%%DATADIR%%/mr/quit.kbd -%%DATADIR%%/mr/text-operations.kbd -%%DATADIR%%/mr/valuator.kbd -%%DATADIR%%/ms/gok-controls.kbd -%%DATADIR%%/ms/hide.kbd -%%DATADIR%%/ms/launcher.kbd -%%DATADIR%%/ms/main.kbd -%%DATADIR%%/ms/mouse.kbd -%%DATADIR%%/ms/move-resize.kbd -%%DATADIR%%/ms/numberpad.kbd -%%DATADIR%%/ms/quit.kbd -%%DATADIR%%/ms/text-operations.kbd -%%DATADIR%%/ms/valuator.kbd -%%DATADIR%%/nb/gok-controls.kbd -%%DATADIR%%/nb/hide.kbd -%%DATADIR%%/nb/launcher.kbd -%%DATADIR%%/nb/main.kbd -%%DATADIR%%/nb/mouse.kbd -%%DATADIR%%/nb/move-resize.kbd -%%DATADIR%%/nb/numberpad.kbd -%%DATADIR%%/nb/quit.kbd -%%DATADIR%%/nb/text-operations.kbd -%%DATADIR%%/nb/valuator.kbd -%%DATADIR%%/ne/gok-controls.kbd -%%DATADIR%%/ne/hide.kbd -%%DATADIR%%/ne/launcher.kbd -%%DATADIR%%/ne/main.kbd -%%DATADIR%%/ne/mouse.kbd -%%DATADIR%%/ne/move-resize.kbd -%%DATADIR%%/ne/numberpad.kbd -%%DATADIR%%/ne/quit.kbd -%%DATADIR%%/ne/text-operations.kbd -%%DATADIR%%/ne/valuator.kbd -%%DATADIR%%/nl/gok-controls.kbd -%%DATADIR%%/nl/hide.kbd -%%DATADIR%%/nl/launcher.kbd -%%DATADIR%%/nl/main.kbd -%%DATADIR%%/nl/mouse.kbd -%%DATADIR%%/nl/move-resize.kbd -%%DATADIR%%/nl/numberpad.kbd -%%DATADIR%%/nl/quit.kbd -%%DATADIR%%/nl/text-operations.kbd -%%DATADIR%%/nl/valuator.kbd -%%DATADIR%%/nn/gok-controls.kbd -%%DATADIR%%/nn/hide.kbd -%%DATADIR%%/nn/launcher.kbd -%%DATADIR%%/nn/main.kbd -%%DATADIR%%/nn/mouse.kbd -%%DATADIR%%/nn/move-resize.kbd -%%DATADIR%%/nn/numberpad.kbd -%%DATADIR%%/nn/quit.kbd -%%DATADIR%%/nn/text-operations.kbd -%%DATADIR%%/nn/valuator.kbd -%%DATADIR%%/oc/gok-controls.kbd -%%DATADIR%%/oc/hide.kbd -%%DATADIR%%/oc/launcher.kbd -%%DATADIR%%/oc/main.kbd -%%DATADIR%%/oc/mouse.kbd -%%DATADIR%%/oc/move-resize.kbd -%%DATADIR%%/oc/numberpad.kbd -%%DATADIR%%/oc/quit.kbd -%%DATADIR%%/oc/text-operations.kbd -%%DATADIR%%/oc/valuator.kbd -%%DATADIR%%/or/gok-controls.kbd -%%DATADIR%%/or/hide.kbd -%%DATADIR%%/or/launcher.kbd -%%DATADIR%%/or/main.kbd -%%DATADIR%%/or/mouse.kbd -%%DATADIR%%/or/move-resize.kbd -%%DATADIR%%/or/numberpad.kbd -%%DATADIR%%/or/quit.kbd -%%DATADIR%%/or/text-operations.kbd -%%DATADIR%%/or/valuator.kbd -%%DATADIR%%/pa/gok-controls.kbd -%%DATADIR%%/pa/hide.kbd -%%DATADIR%%/pa/launcher.kbd -%%DATADIR%%/pa/main.kbd -%%DATADIR%%/pa/mouse.kbd -%%DATADIR%%/pa/move-resize.kbd -%%DATADIR%%/pa/numberpad.kbd -%%DATADIR%%/pa/quit.kbd -%%DATADIR%%/pa/text-operations.kbd -%%DATADIR%%/pa/valuator.kbd -%%DATADIR%%/pl/gok-controls.kbd -%%DATADIR%%/pl/hide.kbd -%%DATADIR%%/pl/launcher.kbd -%%DATADIR%%/pl/main.kbd -%%DATADIR%%/pl/mouse.kbd -%%DATADIR%%/pl/move-resize.kbd -%%DATADIR%%/pl/numberpad.kbd -%%DATADIR%%/pl/quit.kbd -%%DATADIR%%/pl/text-operations.kbd -%%DATADIR%%/pl/valuator.kbd -%%DATADIR%%/pt/gok-controls.kbd -%%DATADIR%%/pt/hide.kbd -%%DATADIR%%/pt/launcher.kbd -%%DATADIR%%/pt/main.kbd -%%DATADIR%%/pt/mouse.kbd -%%DATADIR%%/pt/move-resize.kbd -%%DATADIR%%/pt/numberpad.kbd -%%DATADIR%%/pt/quit.kbd -%%DATADIR%%/pt/text-operations.kbd -%%DATADIR%%/pt/valuator.kbd -%%DATADIR%%/pt_BR/gok-controls.kbd -%%DATADIR%%/pt_BR/hide.kbd -%%DATADIR%%/pt_BR/launcher.kbd -%%DATADIR%%/pt_BR/main.kbd -%%DATADIR%%/pt_BR/mouse.kbd -%%DATADIR%%/pt_BR/move-resize.kbd -%%DATADIR%%/pt_BR/numberpad.kbd -%%DATADIR%%/pt_BR/quit.kbd -%%DATADIR%%/pt_BR/text-operations.kbd -%%DATADIR%%/pt_BR/valuator.kbd -%%DATADIR%%/qwerty.kbd -%%DATADIR%%/ro/gok-controls.kbd -%%DATADIR%%/ro/hide.kbd -%%DATADIR%%/ro/launcher.kbd -%%DATADIR%%/ro/main.kbd -%%DATADIR%%/ro/mouse.kbd -%%DATADIR%%/ro/move-resize.kbd -%%DATADIR%%/ro/numberpad.kbd -%%DATADIR%%/ro/quit.kbd -%%DATADIR%%/ro/text-operations.kbd -%%DATADIR%%/ro/valuator.kbd -%%DATADIR%%/ru/gok-controls.kbd -%%DATADIR%%/ru/hide.kbd -%%DATADIR%%/ru/launcher.kbd -%%DATADIR%%/ru/main.kbd -%%DATADIR%%/ru/mouse.kbd -%%DATADIR%%/ru/move-resize.kbd -%%DATADIR%%/ru/numberpad.kbd -%%DATADIR%%/ru/quit.kbd -%%DATADIR%%/ru/text-operations.kbd -%%DATADIR%%/ru/valuator.kbd -%%DATADIR%%/rw/gok-controls.kbd -%%DATADIR%%/rw/hide.kbd -%%DATADIR%%/rw/launcher.kbd -%%DATADIR%%/rw/main.kbd -%%DATADIR%%/rw/mouse.kbd -%%DATADIR%%/rw/move-resize.kbd -%%DATADIR%%/rw/numberpad.kbd -%%DATADIR%%/rw/quit.kbd -%%DATADIR%%/rw/text-operations.kbd -%%DATADIR%%/rw/valuator.kbd -%%DATADIR%%/si/gok-controls.kbd -%%DATADIR%%/si/hide.kbd -%%DATADIR%%/si/launcher.kbd -%%DATADIR%%/si/main.kbd -%%DATADIR%%/si/mouse.kbd -%%DATADIR%%/si/move-resize.kbd -%%DATADIR%%/si/numberpad.kbd -%%DATADIR%%/si/quit.kbd -%%DATADIR%%/si/text-operations.kbd -%%DATADIR%%/si/valuator.kbd -%%DATADIR%%/singlekey-automatic-scanning.xam -%%DATADIR%%/singlekey-inverse-scanning.xam -%%DATADIR%%/sk/gok-controls.kbd -%%DATADIR%%/sk/hide.kbd -%%DATADIR%%/sk/launcher.kbd -%%DATADIR%%/sk/main.kbd -%%DATADIR%%/sk/mouse.kbd -%%DATADIR%%/sk/move-resize.kbd -%%DATADIR%%/sk/numberpad.kbd -%%DATADIR%%/sk/quit.kbd -%%DATADIR%%/sk/text-operations.kbd -%%DATADIR%%/sk/valuator.kbd -%%DATADIR%%/sl/gok-controls.kbd -%%DATADIR%%/sl/hide.kbd -%%DATADIR%%/sl/launcher.kbd -%%DATADIR%%/sl/main.kbd -%%DATADIR%%/sl/mouse.kbd -%%DATADIR%%/sl/move-resize.kbd -%%DATADIR%%/sl/numberpad.kbd -%%DATADIR%%/sl/quit.kbd -%%DATADIR%%/sl/text-operations.kbd -%%DATADIR%%/sl/valuator.kbd -%%DATADIR%%/small-empty.png -%%DATADIR%%/sq/gok-controls.kbd -%%DATADIR%%/sq/hide.kbd -%%DATADIR%%/sq/launcher.kbd -%%DATADIR%%/sq/main.kbd -%%DATADIR%%/sq/mouse.kbd -%%DATADIR%%/sq/move-resize.kbd -%%DATADIR%%/sq/numberpad.kbd -%%DATADIR%%/sq/quit.kbd -%%DATADIR%%/sq/text-operations.kbd -%%DATADIR%%/sq/valuator.kbd -%%DATADIR%%/sr/gok-controls.kbd -%%DATADIR%%/sr/hide.kbd -%%DATADIR%%/sr/launcher.kbd -%%DATADIR%%/sr/main.kbd -%%DATADIR%%/sr/mouse.kbd -%%DATADIR%%/sr/move-resize.kbd -%%DATADIR%%/sr/numberpad.kbd -%%DATADIR%%/sr/quit.kbd -%%DATADIR%%/sr/text-operations.kbd -%%DATADIR%%/sr/valuator.kbd -%%DATADIR%%/sr@latin/gok-controls.kbd -%%DATADIR%%/sr@latin/hide.kbd -%%DATADIR%%/sr@latin/launcher.kbd -%%DATADIR%%/sr@latin/main.kbd -%%DATADIR%%/sr@latin/mouse.kbd -%%DATADIR%%/sr@latin/move-resize.kbd -%%DATADIR%%/sr@latin/numberpad.kbd -%%DATADIR%%/sr@latin/quit.kbd -%%DATADIR%%/sr@latin/text-operations.kbd -%%DATADIR%%/sr@latin/valuator.kbd -%%DATADIR%%/sv/gok-controls.kbd -%%DATADIR%%/sv/hide.kbd -%%DATADIR%%/sv/launcher.kbd -%%DATADIR%%/sv/main.kbd -%%DATADIR%%/sv/mouse.kbd -%%DATADIR%%/sv/move-resize.kbd -%%DATADIR%%/sv/numberpad.kbd -%%DATADIR%%/sv/quit.kbd -%%DATADIR%%/sv/text-operations.kbd -%%DATADIR%%/sv/valuator.kbd -%%DATADIR%%/ta/gok-controls.kbd -%%DATADIR%%/ta/hide.kbd -%%DATADIR%%/ta/launcher.kbd -%%DATADIR%%/ta/main.kbd -%%DATADIR%%/ta/mouse.kbd -%%DATADIR%%/ta/move-resize.kbd -%%DATADIR%%/ta/numberpad.kbd -%%DATADIR%%/ta/quit.kbd -%%DATADIR%%/ta/text-operations.kbd -%%DATADIR%%/ta/valuator.kbd -%%DATADIR%%/te/gok-controls.kbd -%%DATADIR%%/te/hide.kbd -%%DATADIR%%/te/launcher.kbd -%%DATADIR%%/te/main.kbd -%%DATADIR%%/te/mouse.kbd -%%DATADIR%%/te/move-resize.kbd -%%DATADIR%%/te/numberpad.kbd -%%DATADIR%%/te/quit.kbd -%%DATADIR%%/te/text-operations.kbd -%%DATADIR%%/te/valuator.kbd -%%DATADIR%%/th/gok-controls.kbd -%%DATADIR%%/th/hide.kbd -%%DATADIR%%/th/launcher.kbd -%%DATADIR%%/th/main.kbd -%%DATADIR%%/th/mouse.kbd -%%DATADIR%%/th/move-resize.kbd -%%DATADIR%%/th/numberpad.kbd -%%DATADIR%%/th/quit.kbd -%%DATADIR%%/th/text-operations.kbd -%%DATADIR%%/th/valuator.kbd -%%DATADIR%%/tr/gok-controls.kbd -%%DATADIR%%/tr/hide.kbd -%%DATADIR%%/tr/launcher.kbd -%%DATADIR%%/tr/main.kbd -%%DATADIR%%/tr/mouse.kbd -%%DATADIR%%/tr/move-resize.kbd -%%DATADIR%%/tr/numberpad.kbd -%%DATADIR%%/tr/quit.kbd -%%DATADIR%%/tr/text-operations.kbd -%%DATADIR%%/tr/valuator.kbd -%%DATADIR%%/uk/gok-controls.kbd -%%DATADIR%%/uk/hide.kbd -%%DATADIR%%/uk/launcher.kbd -%%DATADIR%%/uk/main.kbd -%%DATADIR%%/uk/mouse.kbd -%%DATADIR%%/uk/move-resize.kbd -%%DATADIR%%/uk/numberpad.kbd -%%DATADIR%%/uk/quit.kbd -%%DATADIR%%/uk/text-operations.kbd -%%DATADIR%%/uk/valuator.kbd -%%DATADIR%%/value-fast-less.png -%%DATADIR%%/value-fast-more.png -%%DATADIR%%/value-less.png -%%DATADIR%%/value-max.png -%%DATADIR%%/value-min.png -%%DATADIR%%/value-more.png -%%DATADIR%%/vi/gok-controls.kbd -%%DATADIR%%/vi/hide.kbd -%%DATADIR%%/vi/launcher.kbd -%%DATADIR%%/vi/main.kbd -%%DATADIR%%/vi/mouse.kbd -%%DATADIR%%/vi/move-resize.kbd -%%DATADIR%%/vi/numberpad.kbd -%%DATADIR%%/vi/quit.kbd -%%DATADIR%%/vi/text-operations.kbd -%%DATADIR%%/vi/valuator.kbd -%%DATADIR%%/zh_CN/gok-controls.kbd -%%DATADIR%%/zh_CN/hide.kbd -%%DATADIR%%/zh_CN/launcher.kbd -%%DATADIR%%/zh_CN/main.kbd -%%DATADIR%%/zh_CN/mouse.kbd -%%DATADIR%%/zh_CN/move-resize.kbd -%%DATADIR%%/zh_CN/numberpad.kbd -%%DATADIR%%/zh_CN/quit.kbd -%%DATADIR%%/zh_CN/text-operations.kbd -%%DATADIR%%/zh_CN/valuator.kbd -%%DATADIR%%/zh_HK/gok-controls.kbd -%%DATADIR%%/zh_HK/hide.kbd -%%DATADIR%%/zh_HK/launcher.kbd -%%DATADIR%%/zh_HK/main.kbd -%%DATADIR%%/zh_HK/mouse.kbd -%%DATADIR%%/zh_HK/move-resize.kbd -%%DATADIR%%/zh_HK/numberpad.kbd -%%DATADIR%%/zh_HK/quit.kbd -%%DATADIR%%/zh_HK/text-operations.kbd -%%DATADIR%%/zh_HK/valuator.kbd -%%DATADIR%%/zh_TW/gok-controls.kbd -%%DATADIR%%/zh_TW/hide.kbd -%%DATADIR%%/zh_TW/launcher.kbd -%%DATADIR%%/zh_TW/main.kbd -%%DATADIR%%/zh_TW/mouse.kbd -%%DATADIR%%/zh_TW/move-resize.kbd -%%DATADIR%%/zh_TW/numberpad.kbd -%%DATADIR%%/zh_TW/quit.kbd -%%DATADIR%%/zh_TW/text-operations.kbd -%%DATADIR%%/zh_TW/valuator.kbd -share/icons/hicolor/48x48/apps/gok.png -share/locale/am/LC_MESSAGES/gok.mo -share/locale/ang/LC_MESSAGES/gok.mo -share/locale/ar/LC_MESSAGES/gok.mo -share/locale/as/LC_MESSAGES/gok.mo -share/locale/az/LC_MESSAGES/gok.mo -share/locale/be/LC_MESSAGES/gok.mo -share/locale/bg/LC_MESSAGES/gok.mo -share/locale/bn/LC_MESSAGES/gok.mo -share/locale/bn_IN/LC_MESSAGES/gok.mo -share/locale/ca/LC_MESSAGES/gok.mo -share/locale/cs/LC_MESSAGES/gok.mo -share/locale/cy/LC_MESSAGES/gok.mo -share/locale/da/LC_MESSAGES/gok.mo -share/locale/de/LC_MESSAGES/gok.mo -share/locale/dz/LC_MESSAGES/gok.mo -share/locale/el/LC_MESSAGES/gok.mo -share/locale/en_CA/LC_MESSAGES/gok.mo -share/locale/en_GB/LC_MESSAGES/gok.mo -share/locale/es/LC_MESSAGES/gok.mo -share/locale/et/LC_MESSAGES/gok.mo -share/locale/eu/LC_MESSAGES/gok.mo -share/locale/fa/LC_MESSAGES/gok.mo -share/locale/fi/LC_MESSAGES/gok.mo -share/locale/fr/LC_MESSAGES/gok.mo -share/locale/ga/LC_MESSAGES/gok.mo -share/locale/gl/LC_MESSAGES/gok.mo -share/locale/gu/LC_MESSAGES/gok.mo -share/locale/he/LC_MESSAGES/gok.mo -share/locale/hi/LC_MESSAGES/gok.mo -share/locale/hr/LC_MESSAGES/gok.mo -share/locale/hu/LC_MESSAGES/gok.mo -share/locale/id/LC_MESSAGES/gok.mo -share/locale/it/LC_MESSAGES/gok.mo -share/locale/ja/LC_MESSAGES/gok.mo -share/locale/ka/LC_MESSAGES/gok.mo -share/locale/kn/LC_MESSAGES/gok.mo -share/locale/ko/LC_MESSAGES/gok.mo -share/locale/ku/LC_MESSAGES/gok.mo -share/locale/lt/LC_MESSAGES/gok.mo -share/locale/lv/LC_MESSAGES/gok.mo -share/locale/mai/LC_MESSAGES/gok.mo -share/locale/mk/LC_MESSAGES/gok.mo -share/locale/ml/LC_MESSAGES/gok.mo -share/locale/mn/LC_MESSAGES/gok.mo -share/locale/mr/LC_MESSAGES/gok.mo -share/locale/ms/LC_MESSAGES/gok.mo -share/locale/nb/LC_MESSAGES/gok.mo -share/locale/ne/LC_MESSAGES/gok.mo -share/locale/nl/LC_MESSAGES/gok.mo -share/locale/nn/LC_MESSAGES/gok.mo -share/locale/oc/LC_MESSAGES/gok.mo -share/locale/or/LC_MESSAGES/gok.mo -share/locale/pa/LC_MESSAGES/gok.mo -share/locale/pl/LC_MESSAGES/gok.mo -share/locale/pt/LC_MESSAGES/gok.mo -share/locale/pt_BR/LC_MESSAGES/gok.mo -share/locale/ro/LC_MESSAGES/gok.mo -share/locale/ru/LC_MESSAGES/gok.mo -share/locale/rw/LC_MESSAGES/gok.mo -share/locale/si/LC_MESSAGES/gok.mo -share/locale/sk/LC_MESSAGES/gok.mo -share/locale/sl/LC_MESSAGES/gok.mo -share/locale/sq/LC_MESSAGES/gok.mo -share/locale/sr/LC_MESSAGES/gok.mo -share/locale/sr@latin/LC_MESSAGES/gok.mo -share/locale/sv/LC_MESSAGES/gok.mo -share/locale/ta/LC_MESSAGES/gok.mo -share/locale/te/LC_MESSAGES/gok.mo -share/locale/th/LC_MESSAGES/gok.mo -share/locale/tr/LC_MESSAGES/gok.mo -share/locale/uk/LC_MESSAGES/gok.mo -share/locale/vi/LC_MESSAGES/gok.mo -share/locale/zh_CN/LC_MESSAGES/gok.mo -share/locale/zh_HK/LC_MESSAGES/gok.mo -share/locale/zh_TW/LC_MESSAGES/gok.mo -share/omf/gok/gok-C.omf -share/pixmaps/gok.png -@dirrm share/omf/gok -@dirrm %%DATADIR%%/zh_TW -@dirrm %%DATADIR%%/zh_HK -@dirrm %%DATADIR%%/zh_CN -@dirrm %%DATADIR%%/vi -@dirrm %%DATADIR%%/uk -@dirrm %%DATADIR%%/tr -@dirrm %%DATADIR%%/th -@dirrm %%DATADIR%%/te -@dirrm %%DATADIR%%/ta -@dirrm %%DATADIR%%/sv -@dirrm %%DATADIR%%/sr@latin -@dirrm %%DATADIR%%/sr -@dirrm %%DATADIR%%/sq -@dirrm %%DATADIR%%/sl -@dirrm %%DATADIR%%/sk -@dirrm %%DATADIR%%/si -@dirrm %%DATADIR%%/rw -@dirrm %%DATADIR%%/ru -@dirrm %%DATADIR%%/ro -@dirrm %%DATADIR%%/pt_BR -@dirrm %%DATADIR%%/pt -@dirrm %%DATADIR%%/pl -@dirrm %%DATADIR%%/pa -@dirrm %%DATADIR%%/or -@dirrm %%DATADIR%%/oc -@dirrm %%DATADIR%%/nn -@dirrm %%DATADIR%%/nl -@dirrm %%DATADIR%%/ne -@dirrm %%DATADIR%%/nb -@dirrm %%DATADIR%%/ms -@dirrm %%DATADIR%%/mr -@dirrm %%DATADIR%%/mn -@dirrm %%DATADIR%%/ml -@dirrm %%DATADIR%%/mk -@dirrm %%DATADIR%%/mai -@dirrm %%DATADIR%%/lv -@dirrm %%DATADIR%%/lt -@dirrm %%DATADIR%%/ku -@dirrm %%DATADIR%%/ko -@dirrm %%DATADIR%%/kn -@dirrm %%DATADIR%%/ka -@dirrm %%DATADIR%%/ja -@dirrm %%DATADIR%%/it -@dirrm %%DATADIR%%/id -@dirrm %%DATADIR%%/hu -@dirrm %%DATADIR%%/hr -@dirrm %%DATADIR%%/hi -@dirrm %%DATADIR%%/he -@dirrm %%DATADIR%%/gu -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%%/gl -@dirrm %%DATADIR%%/ga -@dirrm %%DATADIR%%/fr -@dirrm %%DATADIR%%/fi -@dirrm %%DATADIR%%/fa -@dirrm %%DATADIR%%/eu -@dirrm %%DATADIR%%/et -@dirrm %%DATADIR%%/es -@dirrm %%DATADIR%%/en_GB -@dirrm %%DATADIR%%/en_CA -@dirrm %%DATADIR%%/el -@dirrm %%DATADIR%%/dz -@dirrm %%DATADIR%%/de -@dirrm %%DATADIR%%/da -@dirrm %%DATADIR%%/cy -@dirrm %%DATADIR%%/cs -@dirrm %%DATADIR%%/ca -@dirrm %%DATADIR%%/bn_IN -@dirrm %%DATADIR%%/bn -@dirrm %%DATADIR%%/bg -@dirrm %%DATADIR%%/be -@dirrm %%DATADIR%%/az -@dirrm %%DATADIR%%/as -@dirrm %%DATADIR%%/ar -@dirrm %%DATADIR%%/ang -@dirrm %%DATADIR%%/am -@dirrm %%DATADIR%%/C -@dirrm %%DATADIR%% -@dirrm share/gnome/help/gok/C -@dirrm share/gnome/help/gok -@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang diff --git a/accessibility/mousetweaks/Makefile b/accessibility/mousetweaks/Makefile deleted file mode 100644 index 86e40ca06..000000000 --- a/accessibility/mousetweaks/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# Ports collection makefile for: mousetweaks -# Date created: 2008 01 10 -# Whom: Koop Mast <kwm@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/accessibility/mousetweaks/Makefile,v 1.25 2009/03/03 19:20:40 marcus Exp $ -# - -PORTNAME= mousetweaks -PORTVERSION= 2.26.0 -CATEGORIES= accessibility -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Mouse accessibility enhancements for the GNOME desktop - -USE_XORG= xfixes -USE_BZIP2= yes -USE_GNOME= gnomehack gnomeprefix gnomepanel intlhack atspi -USE_GMAKE= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= mousetweaks.schemas pointer-capture-applet.schemas -MAN1= dwell-click-applet.1 mousetweaks.1 pointer-capture-applet.1 - -.include <bsd.port.mk> diff --git a/accessibility/mousetweaks/distinfo b/accessibility/mousetweaks/distinfo deleted file mode 100644 index 3707c47c9..000000000 --- a/accessibility/mousetweaks/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/mousetweaks-2.26.0.tar.bz2) = f63556d0db84287118b34e4a1e7421f1 -SHA256 (gnome2/mousetweaks-2.26.0.tar.bz2) = c823e2703bd6aae225dd6abc6704048251e1b1f9d794cec696dab2ced9b968af -SIZE (gnome2/mousetweaks-2.26.0.tar.bz2) = 1161072 diff --git a/accessibility/mousetweaks/pkg-descr b/accessibility/mousetweaks/pkg-descr deleted file mode 100644 index 9290a7414..000000000 --- a/accessibility/mousetweaks/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -The Mousetweaks package provides mouse accessibility enhancements for the -GNOME desktop. - -These enhancements are: - -1. It offers a way to perform the various clicks without using any -hardware button. - -2. It allows users to perform a right click by doing a click&hold of the -left mouse button. (For a left-handed mouse user, the terms left and right -have to be inverted.) - -3. It provides an applet that the user can install on a panel. This applet -creates an area on the panel into which the pointer can be captured until -the user releases it with a predefined button and modifier combination. - -WWW: https://launchpad.net/mousetweaks/ diff --git a/accessibility/mousetweaks/pkg-plist b/accessibility/mousetweaks/pkg-plist deleted file mode 100644 index 20217b8f2..000000000 --- a/accessibility/mousetweaks/pkg-plist +++ /dev/null @@ -1,206 +0,0 @@ -bin/dwell-click-applet -bin/mousetweaks -bin/pointer-capture-applet -libdata/bonobo/servers/DwellClick_Factory.server -libdata/bonobo/servers/PointerCapture_Factory.server -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-checkbox.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-click-type-applet.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-click-type-window.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-ctw-checkbox.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-delay-slider.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-gesture-mapping.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-mode-choice.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-dwell-motion-treshold.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-pointer-capture-context-menu.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-pointer-capture-locked.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-pointer-capture-preferences.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-ssc-checkbox.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-ssc-delay-slider.png -share/gnome/help/mousetweaks/C/figures/mouse-a11y-tab.png -share/gnome/help/mousetweaks/C/legal.xml -share/gnome/help/mousetweaks/C/mousetweaks.xml -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-checkbox.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-click-type-applet.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-click-type-window.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-ctw-checkbox.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-delay-slider.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-gesture-mapping.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-mode-choice.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-dwell-motion-treshold.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-pointer-capture-context-menu.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-pointer-capture-locked.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-pointer-capture-preferences.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-ssc-checkbox.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-ssc-delay-slider.png -share/gnome/help/mousetweaks/de/figures/mouse-a11y-tab.png -share/gnome/help/mousetweaks/de/mousetweaks.xml -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-checkbox.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-click-type-applet.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-click-type-window.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-ctw-checkbox.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-delay-slider.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-gesture-mapping.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-mode-choice.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-dwell-motion-treshold.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-pointer-capture-context-menu.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-pointer-capture-locked.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-pointer-capture-preferences.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-ssc-checkbox.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-ssc-delay-slider.png -share/gnome/help/mousetweaks/el/figures/mouse-a11y-tab.png -share/gnome/help/mousetweaks/el/mousetweaks.xml -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-checkbox.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-click-type-applet.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-click-type-window.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-ctw-checkbox.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-delay-slider.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-gesture-mapping.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-mode-choice.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-dwell-motion-treshold.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-pointer-capture-context-menu.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-pointer-capture-locked.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-pointer-capture-preferences.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-ssc-checkbox.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-ssc-delay-slider.png -share/gnome/help/mousetweaks/es/figures/mouse-a11y-tab.png -share/gnome/help/mousetweaks/es/mousetweaks.xml -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-checkbox.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-click-type-applet.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-click-type-window.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-ctw-checkbox.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-delay-slider.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-gesture-mapping.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-mode-choice.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-dwell-motion-treshold.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-pointer-capture-context-menu.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-pointer-capture-locked.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-pointer-capture-preferences.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-ssc-checkbox.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-ssc-delay-slider.png -share/gnome/help/mousetweaks/it/figures/mouse-a11y-tab.png -share/gnome/help/mousetweaks/it/mousetweaks.xml -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-checkbox.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-click-type-applet.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-click-type-window.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-ctw-checkbox.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-delay-slider.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-gesture-mapping.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-mode-choice.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-dwell-motion-treshold.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-pointer-capture-context-menu.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-pointer-capture-locked.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-pointer-capture-preferences.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-ssc-checkbox.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-ssc-delay-slider.png -share/gnome/help/mousetweaks/oc/figures/mouse-a11y-tab.png -share/gnome/help/mousetweaks/oc/mousetweaks.xml -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-checkbox.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-click-type-applet.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-click-type-window.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-ctw-checkbox.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-delay-slider.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-gesture-mapping.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-mode-choice.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-dwell-motion-treshold.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-pointer-capture-context-menu.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-pointer-capture-locked.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-pointer-capture-preferences.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-ssc-checkbox.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-ssc-delay-slider.png -share/gnome/help/mousetweaks/sv/figures/mouse-a11y-tab.png -share/gnome/help/mousetweaks/sv/mousetweaks.xml -share/locale/ar/LC_MESSAGES/mousetweaks.mo -share/locale/as/LC_MESSAGES/mousetweaks.mo -share/locale/bg/LC_MESSAGES/mousetweaks.mo -share/locale/bn_IN/LC_MESSAGES/mousetweaks.mo -share/locale/ca/LC_MESSAGES/mousetweaks.mo -share/locale/cs/LC_MESSAGES/mousetweaks.mo -share/locale/da/LC_MESSAGES/mousetweaks.mo -share/locale/de/LC_MESSAGES/mousetweaks.mo -share/locale/el/LC_MESSAGES/mousetweaks.mo -share/locale/en_GB/LC_MESSAGES/mousetweaks.mo -share/locale/es/LC_MESSAGES/mousetweaks.mo -share/locale/et/LC_MESSAGES/mousetweaks.mo -share/locale/eu/LC_MESSAGES/mousetweaks.mo -share/locale/fi/LC_MESSAGES/mousetweaks.mo -share/locale/fr/LC_MESSAGES/mousetweaks.mo -share/locale/gl/LC_MESSAGES/mousetweaks.mo -share/locale/gu/LC_MESSAGES/mousetweaks.mo -share/locale/he/LC_MESSAGES/mousetweaks.mo -share/locale/hi/LC_MESSAGES/mousetweaks.mo -share/locale/hu/LC_MESSAGES/mousetweaks.mo -share/locale/it/LC_MESSAGES/mousetweaks.mo -share/locale/ja/LC_MESSAGES/mousetweaks.mo -share/locale/ko/LC_MESSAGES/mousetweaks.mo -share/locale/lt/LC_MESSAGES/mousetweaks.mo -share/locale/mk/LC_MESSAGES/mousetweaks.mo -share/locale/ml/LC_MESSAGES/mousetweaks.mo -share/locale/mr/LC_MESSAGES/mousetweaks.mo -share/locale/nb/LC_MESSAGES/mousetweaks.mo -share/locale/nl/LC_MESSAGES/mousetweaks.mo -share/locale/nn/LC_MESSAGES/mousetweaks.mo -share/locale/oc/LC_MESSAGES/mousetweaks.mo -share/locale/or/LC_MESSAGES/mousetweaks.mo -share/locale/pa/LC_MESSAGES/mousetweaks.mo -share/locale/pl/LC_MESSAGES/mousetweaks.mo -share/locale/pt/LC_MESSAGES/mousetweaks.mo -share/locale/pt_BR/LC_MESSAGES/mousetweaks.mo -share/locale/ro/LC_MESSAGES/mousetweaks.mo -share/locale/ru/LC_MESSAGES/mousetweaks.mo -share/locale/sl/LC_MESSAGES/mousetweaks.mo -share/locale/sq/LC_MESSAGES/mousetweaks.mo -share/locale/sv/LC_MESSAGES/mousetweaks.mo -share/locale/ta/LC_MESSAGES/mousetweaks.mo -share/locale/te/LC_MESSAGES/mousetweaks.mo -share/locale/th/LC_MESSAGES/mousetweaks.mo -share/locale/tr/LC_MESSAGES/mousetweaks.mo -share/locale/uk/LC_MESSAGES/mousetweaks.mo -share/locale/vi/LC_MESSAGES/mousetweaks.mo -share/locale/zh_CN/LC_MESSAGES/mousetweaks.mo -share/locale/zh_HK/LC_MESSAGES/mousetweaks.mo -share/locale/zh_TW/LC_MESSAGES/mousetweaks.mo -%%DATADIR%%/DwellClick.xml -%%DATADIR%%/PointerCapture.xml -%%DATADIR%%/double-click.png -%%DATADIR%%/drag-click.png -%%DATADIR%%/dwell-click-applet.ui -%%DATADIR%%/mousetweaks.ui -%%DATADIR%%/pointer-capture-applet.ui -%%DATADIR%%/right-click.png -%%DATADIR%%/single-click.png -share/omf/mousetweaks/mousetweaks-C.omf -share/omf/mousetweaks/mousetweaks-de.omf -share/omf/mousetweaks/mousetweaks-el.omf -share/omf/mousetweaks/mousetweaks-es.omf -share/omf/mousetweaks/mousetweaks-it.omf -share/omf/mousetweaks/mousetweaks-oc.omf -share/omf/mousetweaks/mousetweaks-sv.omf -@dirrm share/omf/mousetweaks -@dirrm %%DATADIR%% -@dirrm share/gnome/help/mousetweaks/sv/figures -@dirrm share/gnome/help/mousetweaks/sv -@dirrm share/gnome/help/mousetweaks/oc/figures -@dirrm share/gnome/help/mousetweaks/oc -@dirrm share/gnome/help/mousetweaks/it/figures -@dirrm share/gnome/help/mousetweaks/it -@dirrm share/gnome/help/mousetweaks/es/figures -@dirrm share/gnome/help/mousetweaks/es -@dirrm share/gnome/help/mousetweaks/el/figures -@dirrm share/gnome/help/mousetweaks/el -@dirrm share/gnome/help/mousetweaks/de/figures -@dirrm share/gnome/help/mousetweaks/de -@dirrm share/gnome/help/mousetweaks/C/figures -@dirrm share/gnome/help/mousetweaks/C -@dirrm share/gnome/help/mousetweaks -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/accessibility/orca/Makefile b/accessibility/orca/Makefile deleted file mode 100644 index d063d64cd..000000000 --- a/accessibility/orca/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: orca -# Date created: 25 Jul 2006 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/accessibility/orca/Makefile,v 1.61 2009/03/03 05:19:37 marcus Exp $ -# - -PORTNAME= orca -PORTVERSION= 2.26.0 -CATEGORIES= accessibility gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Scriptable screen reader - -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:${PORTSDIR}/devel/py-dbus -LIB_DEPENDS= gnome-mag.2:${PORTSDIR}/accessibility/gnome-mag -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:${PORTSDIR}/devel/py-dbus - -LATEST_LINK= gnome-orca - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_PYTHON= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack libgnomeui atspi gnomespeech pygnome2 \ - pygnomedesktop -INSTALLS_ICONS= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= orca.1 - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/src/orca/orca.in - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/src/orca/orca_i18n.py - -.include <bsd.port.mk> diff --git a/accessibility/orca/distinfo b/accessibility/orca/distinfo deleted file mode 100644 index 94d4092ea..000000000 --- a/accessibility/orca/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/orca-2.26.0.tar.bz2) = d097f28747943a32d50e3b91eab5c518 -SHA256 (gnome2/orca-2.26.0.tar.bz2) = 4c53b0643341977d6cd706461f80473cae3236678905aab898e773e473e2809d -SIZE (gnome2/orca-2.26.0.tar.bz2) = 2234371 diff --git a/accessibility/orca/files/patch-src_orca_orca.in b/accessibility/orca/files/patch-src_orca_orca.in deleted file mode 100644 index aa41825f9..000000000 --- a/accessibility/orca/files/patch-src_orca_orca.in +++ /dev/null @@ -1,44 +0,0 @@ ---- src/orca/orca.in.orig 2009-01-23 22:39:27.000000000 +0100 -+++ src/orca/orca.in 2009-02-21 22:50:38.000000000 +0100 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/bin/sh - # - # Orca - # -@@ -30,7 +30,7 @@ - - # Set the user's $PATH for this script. - # --export PATH="${PATH}:/usr/ccs/bin:/usr/bin:/usr/sbin:/bin:/usr/sfw/bin:/usr/openwin/bin:/usr/X11R6/bin" -+export PATH="${PATH}:/usr/bin:/usr/sbin:/bin:/usr/local/bin" - - # Save the arguments away. - # -@@ -83,7 +83,7 @@ - cleanup() - { - USERID=`id | cut -f2 -d= | cut -f1 -d\(` -- PIDS=`ps -eo pid,ruid,args | grep $USERID | \ -+ PIDS=`ps -exo pid,ruid,args | grep $USERID | \ - egrep "orca[.]orca|OAFIID[:]GNOME_Speech|OAFIID[:]GNOME_Magnifier|festival [-][-]server"|\ - grep -v grep | awk '{ print $1 }'` - IFS=' -@@ -137,7 +137,7 @@ - fi - fi - --if [ `grep -c "\-q" <<< $ARGS` -gt 0 ] ; then -+if [ `echo $ARGS | grep -c "\-q"` -gt 0 ] ; then - # If the user has done -q or --quit, that means to tell any - # existing orca process to quit. So, we just do a cleanup. - # -@@ -154,7 +154,7 @@ - if [ "x$ARGS" = "x" ] ; then - CLEANUP=1 - else -- CLEANUP=`egrep -c "\-s|\-t|\-n|\-u|\-e|\-d" <<< $ARGS` -+ CLEANUP=`echo $ARGS | egrep -c "\-s|\-t|\-n|\-u|\-e|\-d"` - fi - - # Clean up before running orca to get anything that might diff --git a/accessibility/orca/pkg-descr b/accessibility/orca/pkg-descr deleted file mode 100644 index 30cfd432c..000000000 --- a/accessibility/orca/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Orca a scriptable screen reader that is currently under development. -As such it is highly unstable and undergoes frequent changes. To -read more about Orca, please refer to the Orca documentation series -available in the ./docs/doc-set directory and also the Orca WIKI at -http://live.gnome.org/Orca. - -WWW: http://live.gnome.org/Orca diff --git a/accessibility/orca/pkg-plist b/accessibility/orca/pkg-plist deleted file mode 100644 index 8c351e7f1..000000000 --- a/accessibility/orca/pkg-plist +++ /dev/null @@ -1,491 +0,0 @@ -bin/orca -%%PYTHON_SITELIBDIR%%/orca/__init__.py -%%PYTHON_SITELIBDIR%%/orca/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/acss.py -%%PYTHON_SITELIBDIR%%/orca/acss.pyc -%%PYTHON_SITELIBDIR%%/orca/acss.pyo -%%PYTHON_SITELIBDIR%%/orca/app_gui_prefs.py -%%PYTHON_SITELIBDIR%%/orca/app_gui_prefs.pyc -%%PYTHON_SITELIBDIR%%/orca/app_gui_prefs.pyo -%%PYTHON_SITELIBDIR%%/orca/app_prefs.py -%%PYTHON_SITELIBDIR%%/orca/app_prefs.pyc -%%PYTHON_SITELIBDIR%%/orca/app_prefs.pyo -%%PYTHON_SITELIBDIR%%/orca/bookmarks.py -%%PYTHON_SITELIBDIR%%/orca/bookmarks.pyc -%%PYTHON_SITELIBDIR%%/orca/bookmarks.pyo -%%PYTHON_SITELIBDIR%%/orca/braille.py -%%PYTHON_SITELIBDIR%%/orca/braille.pyc -%%PYTHON_SITELIBDIR%%/orca/braille.pyo -%%PYTHON_SITELIBDIR%%/orca/braillegenerator.py -%%PYTHON_SITELIBDIR%%/orca/braillegenerator.pyc -%%PYTHON_SITELIBDIR%%/orca/braillegenerator.pyo -%%PYTHON_SITELIBDIR%%/orca/brlmodule.la -%%PYTHON_SITELIBDIR%%/orca/brlmodule.so -%%PYTHON_SITELIBDIR%%/orca/brlmon.py -%%PYTHON_SITELIBDIR%%/orca/brlmon.pyc -%%PYTHON_SITELIBDIR%%/orca/brlmon.pyo -%%PYTHON_SITELIBDIR%%/orca/chnames.py -%%PYTHON_SITELIBDIR%%/orca/chnames.pyc -%%PYTHON_SITELIBDIR%%/orca/chnames.pyo -%%PYTHON_SITELIBDIR%%/orca/dbusserver.py -%%PYTHON_SITELIBDIR%%/orca/dbusserver.pyc -%%PYTHON_SITELIBDIR%%/orca/dbusserver.pyo -%%PYTHON_SITELIBDIR%%/orca/debug.py -%%PYTHON_SITELIBDIR%%/orca/debug.pyc -%%PYTHON_SITELIBDIR%%/orca/debug.pyo -%%PYTHON_SITELIBDIR%%/orca/dectalk.py -%%PYTHON_SITELIBDIR%%/orca/dectalk.pyc -%%PYTHON_SITELIBDIR%%/orca/dectalk.pyo -%%PYTHON_SITELIBDIR%%/orca/default.py -%%PYTHON_SITELIBDIR%%/orca/default.pyc -%%PYTHON_SITELIBDIR%%/orca/default.pyo -%%PYTHON_SITELIBDIR%%/orca/espeechfactory.py -%%PYTHON_SITELIBDIR%%/orca/espeechfactory.pyc -%%PYTHON_SITELIBDIR%%/orca/espeechfactory.pyo -%%PYTHON_SITELIBDIR%%/orca/eventsynthesizer.py -%%PYTHON_SITELIBDIR%%/orca/eventsynthesizer.pyc -%%PYTHON_SITELIBDIR%%/orca/eventsynthesizer.pyo -%%PYTHON_SITELIBDIR%%/orca/find.py -%%PYTHON_SITELIBDIR%%/orca/find.pyc -%%PYTHON_SITELIBDIR%%/orca/find.pyo -%%PYTHON_SITELIBDIR%%/orca/flat_review.py -%%PYTHON_SITELIBDIR%%/orca/flat_review.pyc -%%PYTHON_SITELIBDIR%%/orca/flat_review.pyo -%%PYTHON_SITELIBDIR%%/orca/focus_tracking_presenter.py -%%PYTHON_SITELIBDIR%%/orca/focus_tracking_presenter.pyc -%%PYTHON_SITELIBDIR%%/orca/focus_tracking_presenter.pyo -%%PYTHON_SITELIBDIR%%/orca/gnomespeechfactory.py -%%PYTHON_SITELIBDIR%%/orca/gnomespeechfactory.pyc -%%PYTHON_SITELIBDIR%%/orca/gnomespeechfactory.pyo -%%PYTHON_SITELIBDIR%%/orca/httpserver.py -%%PYTHON_SITELIBDIR%%/orca/httpserver.pyc -%%PYTHON_SITELIBDIR%%/orca/httpserver.pyo -%%PYTHON_SITELIBDIR%%/orca/input_event.py -%%PYTHON_SITELIBDIR%%/orca/input_event.pyc -%%PYTHON_SITELIBDIR%%/orca/input_event.pyo -%%PYTHON_SITELIBDIR%%/orca/keybindings.py -%%PYTHON_SITELIBDIR%%/orca/keybindings.pyc -%%PYTHON_SITELIBDIR%%/orca/keybindings.pyo -%%PYTHON_SITELIBDIR%%/orca/keynames.py -%%PYTHON_SITELIBDIR%%/orca/keynames.pyc -%%PYTHON_SITELIBDIR%%/orca/keynames.pyo -%%PYTHON_SITELIBDIR%%/orca/liveregions.py -%%PYTHON_SITELIBDIR%%/orca/liveregions.pyc -%%PYTHON_SITELIBDIR%%/orca/liveregions.pyo -%%PYTHON_SITELIBDIR%%/orca/mag.py -%%PYTHON_SITELIBDIR%%/orca/mag.pyc -%%PYTHON_SITELIBDIR%%/orca/mag.pyo -%%PYTHON_SITELIBDIR%%/orca/mouse_review.py -%%PYTHON_SITELIBDIR%%/orca/mouse_review.pyc -%%PYTHON_SITELIBDIR%%/orca/mouse_review.pyo -%%PYTHON_SITELIBDIR%%/orca/orca.py -%%PYTHON_SITELIBDIR%%/orca/orca.pyc -%%PYTHON_SITELIBDIR%%/orca/orca.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_console_prefs.py -%%PYTHON_SITELIBDIR%%/orca/orca_console_prefs.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_console_prefs.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_glade.py -%%PYTHON_SITELIBDIR%%/orca/orca_glade.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_glade.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_gui_find.py -%%PYTHON_SITELIBDIR%%/orca/orca_gui_find.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_gui_find.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_gui_main.py -%%PYTHON_SITELIBDIR%%/orca/orca_gui_main.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_gui_main.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_gui_prefs.py -%%PYTHON_SITELIBDIR%%/orca/orca_gui_prefs.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_gui_prefs.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_i18n.py -%%PYTHON_SITELIBDIR%%/orca/orca_i18n.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_i18n.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_prefs.py -%%PYTHON_SITELIBDIR%%/orca/orca_prefs.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_prefs.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_quit.py -%%PYTHON_SITELIBDIR%%/orca/orca_quit.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_quit.pyo -%%PYTHON_SITELIBDIR%%/orca/orca_state.py -%%PYTHON_SITELIBDIR%%/orca/orca_state.pyc -%%PYTHON_SITELIBDIR%%/orca/orca_state.pyo -%%PYTHON_SITELIBDIR%%/orca/outline.py -%%PYTHON_SITELIBDIR%%/orca/outline.pyc -%%PYTHON_SITELIBDIR%%/orca/outline.pyo -%%PYTHON_SITELIBDIR%%/orca/outloud.py -%%PYTHON_SITELIBDIR%%/orca/outloud.pyc -%%PYTHON_SITELIBDIR%%/orca/outloud.pyo -%%PYTHON_SITELIBDIR%%/orca/phonnames.py -%%PYTHON_SITELIBDIR%%/orca/phonnames.pyc -%%PYTHON_SITELIBDIR%%/orca/phonnames.pyo -%%PYTHON_SITELIBDIR%%/orca/platform.py -%%PYTHON_SITELIBDIR%%/orca/platform.pyc -%%PYTHON_SITELIBDIR%%/orca/platform.pyo -%%PYTHON_SITELIBDIR%%/orca/presentation_manager.py -%%PYTHON_SITELIBDIR%%/orca/presentation_manager.pyc -%%PYTHON_SITELIBDIR%%/orca/presentation_manager.pyo -%%PYTHON_SITELIBDIR%%/orca/pronunciation_dict.py -%%PYTHON_SITELIBDIR%%/orca/pronunciation_dict.pyc -%%PYTHON_SITELIBDIR%%/orca/pronunciation_dict.pyo -%%PYTHON_SITELIBDIR%%/orca/punctuation_settings.py -%%PYTHON_SITELIBDIR%%/orca/punctuation_settings.pyc -%%PYTHON_SITELIBDIR%%/orca/punctuation_settings.pyo -%%PYTHON_SITELIBDIR%%/orca/rolenames.py -%%PYTHON_SITELIBDIR%%/orca/rolenames.pyc -%%PYTHON_SITELIBDIR%%/orca/rolenames.pyo -%%PYTHON_SITELIBDIR%%/orca/script.py -%%PYTHON_SITELIBDIR%%/orca/script.pyc -%%PYTHON_SITELIBDIR%%/orca/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Mozilla.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/script_settings.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/script_settings.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/script_settings.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/acroread.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/acroread.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/acroread.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/where_am_i.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/where_am_i.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution/where_am_i.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/where_am_i.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/where_am_i.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool/where_am_i.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gdmlogin.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-keyring-ask.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-mud.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-panel.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-screensaver-dialog.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-search-tool.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-system-monitor.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-system-monitor.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-system-monitor.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-terminal.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome_segv2.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome_segv2.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome_segv2.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/liferea.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/metacity.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/nautilus.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/nautilus.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/nautilus.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notification-daemon.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/notify-osd.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script_settings.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script_settings.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/script_settings.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/where_am_i.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/where_am_i.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin/where_am_i.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/braille_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/braille_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/braille_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/braille_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/braille_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/braille_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/braille_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/braille_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/braille_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script_settings.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script_settings.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/script_settings.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/where_am_i.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/where_am_i.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice/where_am_i.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/yelp.py -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/yelp.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/apps/yelp.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/self_voicing.py -%%PYTHON_SITELIBDIR%%/orca/scripts/self_voicing.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/self_voicing.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/GAIL.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/bookmarks.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/bookmarks.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/bookmarks.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/braille_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/braille_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/braille_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script_settings.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script_settings.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/script_settings.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/speech_generator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/speech_generator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/speech_generator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/structural_navigation.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/structural_navigation.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/structural_navigation.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/where_am_i.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/where_am_i.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko/where_am_i.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/braillegenerator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/braillegenerator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/braillegenerator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/script.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/script.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/script.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/speechgenerator.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/speechgenerator.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/speechgenerator.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/where_am_I.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/where_am_I.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge/where_am_I.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/VCL.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/VCL.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/VCL.pyo -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__init__.py -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__init__.pyc -%%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/__init__.pyo -%%PYTHON_SITELIBDIR%%/orca/settings.py -%%PYTHON_SITELIBDIR%%/orca/settings.pyc -%%PYTHON_SITELIBDIR%%/orca/settings.pyo -%%PYTHON_SITELIBDIR%%/orca/speech.py -%%PYTHON_SITELIBDIR%%/orca/speech.pyc -%%PYTHON_SITELIBDIR%%/orca/speech.pyo -%%PYTHON_SITELIBDIR%%/orca/speechdispatcherfactory.py -%%PYTHON_SITELIBDIR%%/orca/speechdispatcherfactory.pyc -%%PYTHON_SITELIBDIR%%/orca/speechdispatcherfactory.pyo -%%PYTHON_SITELIBDIR%%/orca/speechgenerator.py -%%PYTHON_SITELIBDIR%%/orca/speechgenerator.pyc -%%PYTHON_SITELIBDIR%%/orca/speechgenerator.pyo -%%PYTHON_SITELIBDIR%%/orca/speechserver.py -%%PYTHON_SITELIBDIR%%/orca/speechserver.pyc -%%PYTHON_SITELIBDIR%%/orca/speechserver.pyo -%%PYTHON_SITELIBDIR%%/orca/structural_navigation.py -%%PYTHON_SITELIBDIR%%/orca/structural_navigation.pyc -%%PYTHON_SITELIBDIR%%/orca/structural_navigation.pyo -%%PYTHON_SITELIBDIR%%/orca/text_attribute_names.py -%%PYTHON_SITELIBDIR%%/orca/text_attribute_names.pyc -%%PYTHON_SITELIBDIR%%/orca/text_attribute_names.pyo -%%PYTHON_SITELIBDIR%%/orca/tutorialgenerator.py -%%PYTHON_SITELIBDIR%%/orca/tutorialgenerator.pyc -%%PYTHON_SITELIBDIR%%/orca/tutorialgenerator.pyo -%%PYTHON_SITELIBDIR%%/orca/where_am_I.py -%%PYTHON_SITELIBDIR%%/orca/where_am_I.pyc -%%PYTHON_SITELIBDIR%%/orca/where_am_I.pyo -share/applications/orca.desktop -share/icons/hicolor/16x16/apps/orca.png -share/icons/hicolor/22x22/apps/orca.png -share/icons/hicolor/24x24/apps/orca.png -share/icons/hicolor/32x32/apps/orca.png -share/icons/hicolor/48x48/apps/orca.png -share/icons/hicolor/scalable/apps/orca.svg -share/locale/ar/LC_MESSAGES/orca.mo -share/locale/bg/LC_MESSAGES/orca.mo -share/locale/bn/LC_MESSAGES/orca.mo -share/locale/bn_IN/LC_MESSAGES/orca.mo -share/locale/ca/LC_MESSAGES/orca.mo -share/locale/cs/LC_MESSAGES/orca.mo -share/locale/cy/LC_MESSAGES/orca.mo -share/locale/da/LC_MESSAGES/orca.mo -share/locale/de/LC_MESSAGES/orca.mo -share/locale/dz/LC_MESSAGES/orca.mo -share/locale/el/LC_MESSAGES/orca.mo -share/locale/en_CA/LC_MESSAGES/orca.mo -share/locale/en_GB/LC_MESSAGES/orca.mo -share/locale/es/LC_MESSAGES/orca.mo -share/locale/et/LC_MESSAGES/orca.mo -share/locale/eu/LC_MESSAGES/orca.mo -share/locale/fi/LC_MESSAGES/orca.mo -share/locale/fr/LC_MESSAGES/orca.mo -share/locale/gl/LC_MESSAGES/orca.mo -share/locale/gu/LC_MESSAGES/orca.mo -share/locale/he/LC_MESSAGES/orca.mo -share/locale/hi/LC_MESSAGES/orca.mo -share/locale/hu/LC_MESSAGES/orca.mo -share/locale/it/LC_MESSAGES/orca.mo -share/locale/ja/LC_MESSAGES/orca.mo -share/locale/kn/LC_MESSAGES/orca.mo -share/locale/ko/LC_MESSAGES/orca.mo -share/locale/lt/LC_MESSAGES/orca.mo -share/locale/lv/LC_MESSAGES/orca.mo -share/locale/mai/LC_MESSAGES/orca.mo -share/locale/mk/LC_MESSAGES/orca.mo -share/locale/ml/LC_MESSAGES/orca.mo -share/locale/mr/LC_MESSAGES/orca.mo -share/locale/nb/LC_MESSAGES/orca.mo -share/locale/ne/LC_MESSAGES/orca.mo -share/locale/nl/LC_MESSAGES/orca.mo -share/locale/nn/LC_MESSAGES/orca.mo -share/locale/oc/LC_MESSAGES/orca.mo -share/locale/or/LC_MESSAGES/orca.mo -share/locale/pa/LC_MESSAGES/orca.mo -share/locale/pl/LC_MESSAGES/orca.mo -share/locale/pt/LC_MESSAGES/orca.mo -share/locale/pt_BR/LC_MESSAGES/orca.mo -share/locale/ro/LC_MESSAGES/orca.mo -share/locale/ru/LC_MESSAGES/orca.mo -share/locale/rw/LC_MESSAGES/orca.mo -share/locale/si/LC_MESSAGES/orca.mo -share/locale/sl/LC_MESSAGES/orca.mo -share/locale/sq/LC_MESSAGES/orca.mo -share/locale/sr/LC_MESSAGES/orca.mo -share/locale/sr@latin/LC_MESSAGES/orca.mo -share/locale/sv/LC_MESSAGES/orca.mo -share/locale/ta/LC_MESSAGES/orca.mo -share/locale/te/LC_MESSAGES/orca.mo -share/locale/th/LC_MESSAGES/orca.mo -share/locale/tr/LC_MESSAGES/orca.mo -share/locale/uk/LC_MESSAGES/orca.mo -share/locale/vi/LC_MESSAGES/orca.mo -share/locale/zh_CN/LC_MESSAGES/orca.mo -share/locale/zh_HK/LC_MESSAGES/orca.mo -share/locale/zh_TW/LC_MESSAGES/orca.mo -%%DATADIR%%/glade/orca-find.glade -%%DATADIR%%/glade/orca-mainwin.glade -%%DATADIR%%/glade/orca-quit.glade -%%DATADIR%%/glade/orca-setup.glade -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/J2SE-access-bridge -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits/Gecko -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/toolkits -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/soffice -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/rhythmbox -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/planner -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/pidgin -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gnome-window-properties -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gedit -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/gcalctool -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/evolution -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps/Thunderbird -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts/apps -@dirrm %%PYTHON_SITELIBDIR%%/orca/scripts -@dirrm %%PYTHON_SITELIBDIR%%/orca -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/archivers/file-roller/Makefile b/archivers/file-roller/Makefile deleted file mode 100644 index 00d3df723..000000000 --- a/archivers/file-roller/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# New ports collection makefile for: fileroller -# Date created: 18 May 2002 -# Whom: Anders Nordby <anders@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/archivers/file-roller/Makefile,v 1.154 2009/03/14 17:21:04 marcus Exp $ -# - -PORTNAME= file-roller -PORTVERSION= 2.26.0 -PORTEPOCH= 1 -CATEGORIES= archivers gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= An archive manager for zip files, tar, etc - -RUN_DEPENDS= ${LOCALBASE}/bin/gtar:${PORTSDIR}/archivers/gtar - -USE_LDCONFIG= yes -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix intlhack gnomehack desktopfileutils nautilus2 \ - gnomedocutils -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= file-roller.schemas - -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/src/fr-command-tar.c - @${FIND} ${WRKSRC} -name "fr-command-*.c" | ${XARGS} ${REINPLACE_CMD} \ - -e 's|atoll|fr_atoll|g' - -post-install: - @-update-desktop-database -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in AUTHORS NEWS README TODO - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/archivers/file-roller/distinfo b/archivers/file-roller/distinfo deleted file mode 100644 index c6e88ae56..000000000 --- a/archivers/file-roller/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/file-roller-2.26.0.tar.bz2) = 795c6b0a2b3b02c5f407b1d9f9b643ef -SHA256 (gnome2/file-roller-2.26.0.tar.bz2) = 75b523ad80f315731aeb2c87e4d95716c1d20704b2d598eaad8aae3406cb9408 -SIZE (gnome2/file-roller-2.26.0.tar.bz2) = 1509272 diff --git a/archivers/file-roller/files/patch-src_fr-command-tar.c b/archivers/file-roller/files/patch-src_fr-command-tar.c deleted file mode 100644 index 78843a28c..000000000 --- a/archivers/file-roller/files/patch-src_fr-command-tar.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/fr-command-tar.c.orig Sun Oct 15 12:33:56 2006 -+++ src/fr-command-tar.c Mon Oct 16 19:18:03 2006 -@@ -231,6 +231,9 @@ - #if defined (__SVR4) && defined (__sun) - if (g_file_test ("/usr/sfw/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) - command = g_strdup ("/usr/sfw/bin/gtar"); -+#elif defined(__FreeBSD__) -+ if (g_file_test ("%%LOCALBASE%%/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) -+ command = g_strdup ("%%LOCALBASE%%/bin/gtar"); - #endif - if (command != NULL) - fr_process_begin_command (comm->process, command); diff --git a/archivers/file-roller/pkg-descr b/archivers/file-roller/pkg-descr deleted file mode 100644 index 703a89829..000000000 --- a/archivers/file-roller/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -File Roller is an archive manager for the GNOME environment. It is only a -front-end (a graphical interface) to archiving programs like tar and zip. -The supported file types are: - -* Tar archives uncompressed (.tar) or compressed with gzip (.tar.gz , .tgz), - bzip (.tar.bz , .tbz), bzip2 (.tar.bz2 , .tbz2), compress (.tar.Z , .taz), - lzop (.tar.lzo , .tzo) -* Zip archives (.zip) -* Jar archives (.jar , .ear , .war) -* Lha archives (.lzh) -* Rar archives (.rar) -* Single files compressed with gzip, bzip, bzip2, compress, lzop - -File Roller also has a document viewer based on bonobo that lets you view files -of any type for which you have a viewer. - -Former WinZip users may find this program useful. It serves the same purpose. - -WWW: http://fileroller.sourceforge.net/ - -- Anders Nordby <anders@FreeBSD.org> diff --git a/archivers/file-roller/pkg-plist b/archivers/file-roller/pkg-plist deleted file mode 100644 index 3e38d045f..000000000 --- a/archivers/file-roller/pkg-plist +++ /dev/null @@ -1,313 +0,0 @@ -bin/file-roller -lib/nautilus/extensions-2.0/libnautilus-fileroller.la -lib/nautilus/extensions-2.0/libnautilus-fileroller.so -libexec/file-roller/isoinfo.sh -share/applications/file-roller.desktop -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%DATADIR%%/icons/hicolor/16x16/actions/add-files-to-archive.png -%%DATADIR%%/icons/hicolor/16x16/actions/add-folder-to-archive.png -%%DATADIR%%/icons/hicolor/16x16/actions/extract-archive.png -%%DATADIR%%/icons/hicolor/24x24/actions/add-files-to-archive.png -%%DATADIR%%/icons/hicolor/24x24/actions/add-folder-to-archive.png -%%DATADIR%%/icons/hicolor/24x24/actions/extract-archive.png -%%DATADIR%%/ui/add-options.ui -%%DATADIR%%/ui/batch-add-files.ui -%%DATADIR%%/ui/batch-password.ui -%%DATADIR%%/ui/delete.ui -%%DATADIR%%/ui/new.ui -%%DATADIR%%/ui/open-with.ui -%%DATADIR%%/ui/password.ui -%%DATADIR%%/ui/properties.ui -%%DATADIR%%/ui/update.ui -share/gnome/help/file-roller/C/figures/file-roller_home.png -share/gnome/help/file-roller/C/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/C/figures/file-roller_main_window.png -share/gnome/help/file-roller/C/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/C/figures/file-roller_uparrow.png -share/gnome/help/file-roller/C/file-roller.xml -share/gnome/help/file-roller/C/legal.xml -share/gnome/help/file-roller/bg/figures/file-roller_home.png -share/gnome/help/file-roller/bg/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/bg/figures/file-roller_main_window.png -share/gnome/help/file-roller/bg/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/bg/figures/file-roller_uparrow.png -share/gnome/help/file-roller/bg/file-roller.xml -share/gnome/help/file-roller/ca/figures/file-roller_home.png -share/gnome/help/file-roller/ca/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/ca/figures/file-roller_main_window.png -share/gnome/help/file-roller/ca/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/ca/figures/file-roller_uparrow.png -share/gnome/help/file-roller/ca/file-roller.xml -share/gnome/help/file-roller/de/figures/file-roller_home.png -share/gnome/help/file-roller/de/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/de/figures/file-roller_main_window.png -share/gnome/help/file-roller/de/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/de/figures/file-roller_uparrow.png -share/gnome/help/file-roller/de/file-roller.xml -share/gnome/help/file-roller/en_GB/figures/file-roller_home.png -share/gnome/help/file-roller/en_GB/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/en_GB/figures/file-roller_main_window.png -share/gnome/help/file-roller/en_GB/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/en_GB/figures/file-roller_uparrow.png -share/gnome/help/file-roller/en_GB/file-roller.xml -share/gnome/help/file-roller/es/figures/file-roller_home.png -share/gnome/help/file-roller/es/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/es/figures/file-roller_main_window.png -share/gnome/help/file-roller/es/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/es/figures/file-roller_uparrow.png -share/gnome/help/file-roller/es/file-roller.xml -share/gnome/help/file-roller/fi/figures/file-roller_home.png -share/gnome/help/file-roller/fi/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/fi/figures/file-roller_main_window.png -share/gnome/help/file-roller/fi/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/fi/figures/file-roller_uparrow.png -share/gnome/help/file-roller/fi/file-roller.xml -share/gnome/help/file-roller/fr/figures/file-roller_home.png -share/gnome/help/file-roller/fr/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/fr/figures/file-roller_main_window.png -share/gnome/help/file-roller/fr/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/fr/figures/file-roller_uparrow.png -share/gnome/help/file-roller/fr/file-roller.xml -share/gnome/help/file-roller/it/figures/file-roller_home.png -share/gnome/help/file-roller/it/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/it/figures/file-roller_main_window.png -share/gnome/help/file-roller/it/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/it/figures/file-roller_uparrow.png -share/gnome/help/file-roller/it/file-roller.xml -share/gnome/help/file-roller/nl/figures/file-roller_home.png -share/gnome/help/file-roller/nl/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/nl/figures/file-roller_main_window.png -share/gnome/help/file-roller/nl/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/nl/figures/file-roller_uparrow.png -share/gnome/help/file-roller/nl/file-roller.xml -share/gnome/help/file-roller/oc/figures/file-roller_home.png -share/gnome/help/file-roller/oc/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/oc/figures/file-roller_main_window.png -share/gnome/help/file-roller/oc/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/oc/figures/file-roller_uparrow.png -share/gnome/help/file-roller/oc/file-roller.xml -share/gnome/help/file-roller/ru/figures/file-roller_home.png -share/gnome/help/file-roller/ru/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/ru/figures/file-roller_main_window.png -share/gnome/help/file-roller/ru/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/ru/figures/file-roller_uparrow.png -share/gnome/help/file-roller/ru/file-roller.xml -share/gnome/help/file-roller/sv/figures/file-roller_home.png -share/gnome/help/file-roller/sv/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/sv/figures/file-roller_main_window.png -share/gnome/help/file-roller/sv/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/sv/figures/file-roller_uparrow.png -share/gnome/help/file-roller/sv/file-roller.xml -share/gnome/help/file-roller/uk/figures/file-roller_home.png -share/gnome/help/file-roller/uk/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/uk/figures/file-roller_main_window.png -share/gnome/help/file-roller/uk/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/uk/figures/file-roller_uparrow.png -share/gnome/help/file-roller/uk/file-roller.xml -share/gnome/help/file-roller/vi/figures/file-roller_home.png -share/gnome/help/file-roller/vi/figures/file-roller_leftarrow.png -share/gnome/help/file-roller/vi/figures/file-roller_main_window.png -share/gnome/help/file-roller/vi/figures/file-roller_rightarrow.png -share/gnome/help/file-roller/vi/figures/file-roller_uparrow.png -share/gnome/help/file-roller/vi/file-roller.xml -share/icons/hicolor/16x16/apps/file-roller.png -share/icons/hicolor/22x22/apps/file-roller.png -share/icons/hicolor/24x24/apps/file-roller.png -share/icons/hicolor/32x32/apps/file-roller.png -share/icons/hicolor/scalable/apps/file-roller.svg -share/locale/af/LC_MESSAGES/file-roller.mo -share/locale/am/LC_MESSAGES/file-roller.mo -share/locale/ar/LC_MESSAGES/file-roller.mo -share/locale/as/LC_MESSAGES/file-roller.mo -share/locale/ast/LC_MESSAGES/file-roller.mo -share/locale/az/LC_MESSAGES/file-roller.mo -share/locale/be/LC_MESSAGES/file-roller.mo -share/locale/be@latin/LC_MESSAGES/file-roller.mo -share/locale/bg/LC_MESSAGES/file-roller.mo -share/locale/bn/LC_MESSAGES/file-roller.mo -share/locale/bn_IN/LC_MESSAGES/file-roller.mo -share/locale/br/LC_MESSAGES/file-roller.mo -share/locale/bs/LC_MESSAGES/file-roller.mo -share/locale/ca/LC_MESSAGES/file-roller.mo -share/locale/cs/LC_MESSAGES/file-roller.mo -share/locale/cy/LC_MESSAGES/file-roller.mo -share/locale/da/LC_MESSAGES/file-roller.mo -share/locale/de/LC_MESSAGES/file-roller.mo -share/locale/dz/LC_MESSAGES/file-roller.mo -share/locale/el/LC_MESSAGES/file-roller.mo -share/locale/en_CA/LC_MESSAGES/file-roller.mo -share/locale/en_GB/LC_MESSAGES/file-roller.mo -share/locale/es/LC_MESSAGES/file-roller.mo -share/locale/et/LC_MESSAGES/file-roller.mo -share/locale/eu/LC_MESSAGES/file-roller.mo -share/locale/fa/LC_MESSAGES/file-roller.mo -share/locale/fi/LC_MESSAGES/file-roller.mo -share/locale/fr/LC_MESSAGES/file-roller.mo -share/locale/fur/LC_MESSAGES/file-roller.mo -share/locale/ga/LC_MESSAGES/file-roller.mo -share/locale/gl/LC_MESSAGES/file-roller.mo -share/locale/gu/LC_MESSAGES/file-roller.mo -share/locale/he/LC_MESSAGES/file-roller.mo -share/locale/hi/LC_MESSAGES/file-roller.mo -share/locale/hr/LC_MESSAGES/file-roller.mo -share/locale/hu/LC_MESSAGES/file-roller.mo -share/locale/hy/LC_MESSAGES/file-roller.mo -share/locale/id/LC_MESSAGES/file-roller.mo -share/locale/is/LC_MESSAGES/file-roller.mo -share/locale/it/LC_MESSAGES/file-roller.mo -share/locale/ja/LC_MESSAGES/file-roller.mo -share/locale/ka/LC_MESSAGES/file-roller.mo -share/locale/kn/LC_MESSAGES/file-roller.mo -share/locale/ko/LC_MESSAGES/file-roller.mo -share/locale/ku/LC_MESSAGES/file-roller.mo -share/locale/lt/LC_MESSAGES/file-roller.mo -share/locale/lv/LC_MESSAGES/file-roller.mo -share/locale/mai/LC_MESSAGES/file-roller.mo -share/locale/mg/LC_MESSAGES/file-roller.mo -share/locale/mk/LC_MESSAGES/file-roller.mo -share/locale/ml/LC_MESSAGES/file-roller.mo -share/locale/mn/LC_MESSAGES/file-roller.mo -share/locale/mr/LC_MESSAGES/file-roller.mo -share/locale/ms/LC_MESSAGES/file-roller.mo -share/locale/nb/LC_MESSAGES/file-roller.mo -share/locale/ne/LC_MESSAGES/file-roller.mo -share/locale/nl/LC_MESSAGES/file-roller.mo -share/locale/nn/LC_MESSAGES/file-roller.mo -share/locale/oc/LC_MESSAGES/file-roller.mo -share/locale/or/LC_MESSAGES/file-roller.mo -share/locale/pa/LC_MESSAGES/file-roller.mo -share/locale/pl/LC_MESSAGES/file-roller.mo -share/locale/ps/LC_MESSAGES/file-roller.mo -share/locale/pt/LC_MESSAGES/file-roller.mo -share/locale/pt_BR/LC_MESSAGES/file-roller.mo -share/locale/ro/LC_MESSAGES/file-roller.mo -share/locale/ru/LC_MESSAGES/file-roller.mo -share/locale/rw/LC_MESSAGES/file-roller.mo -share/locale/si/LC_MESSAGES/file-roller.mo -share/locale/sk/LC_MESSAGES/file-roller.mo -share/locale/sl/LC_MESSAGES/file-roller.mo -share/locale/sq/LC_MESSAGES/file-roller.mo -share/locale/sr/LC_MESSAGES/file-roller.mo -share/locale/sr@latin/LC_MESSAGES/file-roller.mo -share/locale/sr@ije/LC_MESSAGES/file-roller.mo -share/locale/sv/LC_MESSAGES/file-roller.mo -share/locale/ta/LC_MESSAGES/file-roller.mo -share/locale/te/LC_MESSAGES/file-roller.mo -share/locale/th/LC_MESSAGES/file-roller.mo -share/locale/tk/LC_MESSAGES/file-roller.mo -share/locale/tr/LC_MESSAGES/file-roller.mo -share/locale/uk/LC_MESSAGES/file-roller.mo -share/locale/ur/LC_MESSAGES/file-roller.mo -share/locale/ur_PK/LC_MESSAGES/file-roller.mo -share/locale/vi/LC_MESSAGES/file-roller.mo -share/locale/xh/LC_MESSAGES/file-roller.mo -share/locale/zh_CN/LC_MESSAGES/file-roller.mo -share/locale/zh_HK/LC_MESSAGES/file-roller.mo -share/locale/zh_TW/LC_MESSAGES/file-roller.mo -share/omf/file-roller/file-roller-C.omf -share/omf/file-roller/file-roller-ca.omf -share/omf/file-roller/file-roller-bg.omf -share/omf/file-roller/file-roller-de.omf -share/omf/file-roller/file-roller-en_GB.omf -share/omf/file-roller/file-roller-es.omf -share/omf/file-roller/file-roller-fi.omf -share/omf/file-roller/file-roller-fr.omf -share/omf/file-roller/file-roller-it.omf -share/omf/file-roller/file-roller-nl.omf -share/omf/file-roller/file-roller-oc.omf -share/omf/file-roller/file-roller-ru.omf -share/omf/file-roller/file-roller-sv.omf -share/omf/file-roller/file-roller-uk.omf -share/omf/file-roller/file-roller-vi.omf -@dirrm share/omf/file-roller -@dirrm share/gnome/help/file-roller/vi/figures -@dirrm share/gnome/help/file-roller/vi -@dirrm share/gnome/help/file-roller/uk/figures -@dirrm share/gnome/help/file-roller/uk -@dirrm share/gnome/help/file-roller/sv/figures -@dirrm share/gnome/help/file-roller/sv -@dirrm share/gnome/help/file-roller/ru/figures -@dirrm share/gnome/help/file-roller/ru -@dirrm share/gnome/help/file-roller/oc/figures -@dirrm share/gnome/help/file-roller/oc -@dirrm share/gnome/help/file-roller/nl/figures -@dirrm share/gnome/help/file-roller/nl -@dirrm share/gnome/help/file-roller/it/figures -@dirrm share/gnome/help/file-roller/it -@dirrm share/gnome/help/file-roller/fr/figures -@dirrm share/gnome/help/file-roller/fr -@dirrm share/gnome/help/file-roller/fi/figures -@dirrm share/gnome/help/file-roller/fi -@dirrm share/gnome/help/file-roller/es/figures -@dirrm share/gnome/help/file-roller/es -@dirrm share/gnome/help/file-roller/en_GB/figures -@dirrm share/gnome/help/file-roller/en_GB -@dirrm share/gnome/help/file-roller/de/figures -@dirrm share/gnome/help/file-roller/de -@dirrm share/gnome/help/file-roller/ca/figures -@dirrm share/gnome/help/file-roller/ca -@dirrm share/gnome/help/file-roller/bg/figures -@dirrm share/gnome/help/file-roller/bg -@dirrm share/gnome/help/file-roller/C/figures -@dirrm share/gnome/help/file-roller/C -@dirrm share/gnome/help/file-roller -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@dirrm libexec/file-roller -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ur_PK/LC_MESSAGES -@dirrmtry share/locale/ur_PK -@dirrmtry share/locale/ur/LC_MESSAGES -@dirrmtry share/locale/ur -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/astro/glunarclock/Makefile b/astro/glunarclock/Makefile deleted file mode 100644 index 167036f05..000000000 --- a/astro/glunarclock/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: glunarclock -# Date created: 9 December 2003 -# Whom: Vincent Tantardini <vinc@freebsd-fr.org> -# -# $FreeBSD$ -# $MCom: ports/astro/glunarclock/Makefile,v 1.10 2008/08/23 18:22:58 mezz Exp $ -# - -PORTNAME= glunarclock -PORTVERSION= 0.32.4 -PORTREVISION= 7 -CATEGORIES= astro gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org -COMMENT= GNOME applet that displays the current phase of the Moon - -LIB_DEPENDS= xklavier.12:${PORTSDIR}/x11/libxklavier - -USE_GNOME= gnomehack gnomepanel gnomeprefix intlhack -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" -INSTALLS_OMF= yes - -PLIST_SUB= VERSION="${PORTVERSION:R}" - -GCONF_SCHEMAS= glunarclock.schemas - -post-patch: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|-DGNOME_DISABLE_DEPRECATED||g' - -.include <bsd.port.mk> diff --git a/astro/glunarclock/distinfo b/astro/glunarclock/distinfo deleted file mode 100644 index 16ed950b3..000000000 --- a/astro/glunarclock/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (glunarclock-0.32.4.tar.gz) = 63e1d989581e6bf95cec82ff1bbc56ef -SHA256 (glunarclock-0.32.4.tar.gz) = 2025028be6c2cbadf8f32edfe24ed4652e51aa430889d3977d70a3fc87abd824 -SIZE (glunarclock-0.32.4.tar.gz) = 536136 diff --git a/astro/glunarclock/pkg-descr b/astro/glunarclock/pkg-descr deleted file mode 100644 index aed705d7c..000000000 --- a/astro/glunarclock/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -GNOME Lunar Clock displays the current phase of the Moon as an applet for -the Gnome panel. - -WWW: http://glunarclock.sourceforge.net/ diff --git a/astro/glunarclock/pkg-plist b/astro/glunarclock/pkg-plist deleted file mode 100644 index 62be31a9b..000000000 --- a/astro/glunarclock/pkg-plist +++ /dev/null @@ -1,44 +0,0 @@ -libdata/bonobo/servers/GNOME_GLunarclockApplet_Factory.server -libexec/glunarclock-applet-2 -share/glunarclock/glunarclock.glade -share/gnome-2.0/ui/GNOME_GLunarclockApplet.xml -share/gnome/help/glunarclock-applet-2/C/figures/glunarclock_applet.png -share/gnome/help/glunarclock-applet-2/C/glunarclock-applet-2.xml -share/gnome/help/glunarclock-applet-2/C/legal.xml -share/omf/glunarclock/glunarclock-applet-2-C.omf -share/pixmaps/glunarclock-logo.png -share/pixmaps/glunarclock/cartoonmoon_12frames.png -share/pixmaps/glunarclock/moon_56frames.png -share/locale/ast_ES/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/az/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/br/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/da/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/de/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/es/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/fi/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/fr/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/ga/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/gl/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/hu/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/ja/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/ms/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/nl/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/no/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/ro/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/ru/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/rw/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/sk/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/sr/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/sv/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/vi/LC_MESSAGES/glunarclock-%%VERSION%%.mo -share/locale/wa/LC_MESSAGES/glunarclock-%%VERSION%%.mo -@dirrm share/pixmaps/glunarclock -@dirrm share/omf/glunarclock -@dirrm share/gnome/help/glunarclock-applet-2/C/figures -@dirrm share/gnome/help/glunarclock-applet-2/C -@dirrm share/gnome/help/glunarclock-applet-2 -@dirrm share/glunarclock -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ast_ES/LC_MESSAGES -@dirrmtry share/locale/ast_ES diff --git a/audio/gnome-media/Makefile b/audio/gnome-media/Makefile deleted file mode 100644 index 777e7b407..000000000 --- a/audio/gnome-media/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: gnomemedia2 -# Date created: 06 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/audio/gnome-media/Makefile,v 1.129 2009/03/08 18:57:29 mezz Exp $ -# - -PORTNAME= gnome-media -PORTVERSION= 2.26.0 -CATEGORIES= audio gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Multimedia applications for the GNOME 2 desktop - -LIB_DEPENDS= pulse.0:${PORTSDIR}/audio/pulseaudio \ - canberra-gtk.0:${PORTSDIR}/audio/libcanberra \ - unique-1.0.2:${PORTSDIR}/x11-toolkits/unique - -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -GNOME_DESKTOP_VERSION=2 -USE_GNOME= gnomeprefix gnomehack intlhack gnomedesktop -USE_GSTREAMER= cdparanoia esound gconf good -CONFIGURE_ARGS= --enable-ipv6 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gnome-audio-profiles.schemas \ - gnome-sound-recorder.schemas - -post-patch: - @${REINPLACE_CMD} -e 's|[$$][(]CDROM_HOST[)]|freebsd|g' \ - ${WRKSRC}/gnome-cd/Makefile.in - @${REINPLACE_CMD} -e 's|acd0c|acd0|g ; s|== "xyes|= "xyes|g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/audio/gnome-media/distinfo b/audio/gnome-media/distinfo deleted file mode 100644 index d98b22331..000000000 --- a/audio/gnome-media/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-media-2.26.0.tar.bz2) = 3d519bc7d812aed8f6e4288b6d3cdf26 -SHA256 (gnome2/gnome-media-2.26.0.tar.bz2) = 39e7646d0790e05a010da1eb2d7552dcb5311abd72f001477c9c465d7146b9f7 -SIZE (gnome2/gnome-media-2.26.0.tar.bz2) = 2662523 diff --git a/audio/gnome-media/pkg-descr b/audio/gnome-media/pkg-descr deleted file mode 100644 index 7b2258499..000000000 --- a/audio/gnome-media/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Multimedia applications for the GNOME 2.0 desktop. Includes gnome-cd, a CDDB -aware CD player; gnome-volume-control, for controlling the sound card's mixer; -and VU-Meter, to slow down your desktop... diff --git a/audio/gnome-media/pkg-plist b/audio/gnome-media/pkg-plist deleted file mode 100644 index 8905eac3f..000000000 --- a/audio/gnome-media/pkg-plist +++ /dev/null @@ -1,320 +0,0 @@ -bin/gnome-audio-profiles-properties -bin/gnome-sound-recorder -bin/gnome-volume-control -bin/gnome-volume-control-applet -bin/gstreamer-properties -etc/xdg/autostart/gnome-volume-control-applet.desktop -include/gnome-media/profiles/audio-profile-choose.h -include/gnome-media/profiles/audio-profile-edit.h -include/gnome-media/profiles/audio-profile.h -include/gnome-media/profiles/audio-profiles-edit.h -include/gnome-media/profiles/gnome-media-profiles.h -lib/libglade/2.0/libgnome-media-profiles.a -lib/libglade/2.0/libgnome-media-profiles.la -lib/libglade/2.0/libgnome-media-profiles.so -lib/libgnome-media-profiles.a -lib/libgnome-media-profiles.la -lib/libgnome-media-profiles.so -lib/libgnome-media-profiles.so.0 -libdata/pkgconfig/gnome-media-profiles.pc -share/applications/gnome-sound-recorder.desktop -share/applications/gnome-volume-control.desktop -share/applications/gstreamer-properties.desktop -%%DATADIR%%/glade/gnome-audio-profiles.glade2 -%%DATADIR%%/icons/hicolor/16x16/status/audio-input-microphone-high.png -%%DATADIR%%/icons/hicolor/16x16/status/audio-input-microphone-low.png -%%DATADIR%%/icons/hicolor/16x16/status/audio-input-microphone-medium.png -%%DATADIR%%/icons/hicolor/16x16/status/audio-input-microphone-muted.png -%%DATADIR%%/icons/hicolor/22x22/status/audio-input-microphone-high.png -%%DATADIR%%/icons/hicolor/22x22/status/audio-input-microphone-low.png -%%DATADIR%%/icons/hicolor/22x22/status/audio-input-microphone-medium.png -%%DATADIR%%/icons/hicolor/22x22/status/audio-input-microphone-muted.png -%%DATADIR%%/icons/hicolor/24x24/status/audio-input-microphone-high.png -%%DATADIR%%/icons/hicolor/24x24/status/audio-input-microphone-low.png -%%DATADIR%%/icons/hicolor/24x24/status/audio-input-microphone-medium.png -%%DATADIR%%/icons/hicolor/24x24/status/audio-input-microphone-muted.png -%%DATADIR%%/icons/hicolor/32x32/status/audio-input-microphone-high.png -%%DATADIR%%/icons/hicolor/32x32/status/audio-input-microphone-low.png -%%DATADIR%%/icons/hicolor/32x32/status/audio-input-microphone-medium.png -%%DATADIR%%/icons/hicolor/32x32/status/audio-input-microphone-muted.png -%%DATADIR%%/icons/hicolor/scalable/status/audio-input-microphone-high.svg -%%DATADIR%%/icons/hicolor/scalable/status/audio-input-microphone-low.svg -%%DATADIR%%/icons/hicolor/scalable/status/audio-input-microphone-medium.svg -%%DATADIR%%/icons/hicolor/scalable/status/audio-input-microphone-muted.svg -%%DATADIR%%/sounds/gnome-sounds-default.xml -share/gnome-sound-recorder/ui/ui.xml -share/gnome/help/gnome-sound-recorder/C/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/C/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/C/legal.xml -share/gnome/help/gnome-sound-recorder/ca/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/ca/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/de/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/de/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/en_GB/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/en_GB/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/es/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/es/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/fr/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/fr/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/it/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/it/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/oc/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/oc/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/ru/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/ru/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/sv/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/sv/gnome-sound-recorder.xml -share/gnome/help/gnome-sound-recorder/uk/figures/grecord_window.png -share/gnome/help/gnome-sound-recorder/uk/gnome-sound-recorder.xml -share/gnome/help/gstreamer-properties/C/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/C/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/C/legal.xml -share/gnome/help/gstreamer-properties/ca/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/ca/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/de/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/de/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/en_GB/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/en_GB/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/es/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/es/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/fr/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/fr/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/it/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/it/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/oc/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/oc/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/ru/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/ru/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/sv/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/sv/gstreamer-properties.xml -share/gnome/help/gstreamer-properties/th/figures/gstreamer_properties_window.png -share/gnome/help/gstreamer-properties/th/gstreamer-properties.xml -share/gstreamer-properties/glade/gstreamer-properties.glade -share/gstreamer-properties/icons/gstreamer-properties.png -share/icons/hicolor/16x16/apps/gnome-sound-recorder.png -share/icons/hicolor/16x16/apps/gnome-volume-control.png -share/icons/hicolor/16x16/apps/gnome-volume-control.svg -share/icons/hicolor/22x22/apps/gnome-sound-recorder.png -share/icons/hicolor/22x22/apps/gnome-volume-control.png -share/icons/hicolor/22x22/apps/gnome-volume-control.svg -share/icons/hicolor/24x24/apps/gnome-sound-recorder.png -share/icons/hicolor/24x24/apps/gnome-volume-control.png -share/icons/hicolor/32x32/apps/gnome-sound-recorder.png -share/icons/hicolor/32x32/apps/gnome-volume-control.png -share/icons/hicolor/32x32/apps/gnome-volume-control.svg -share/icons/hicolor/48x48/apps/gnome-sound-recorder.png -share/icons/hicolor/48x48/apps/gnome-volume-control.png -share/icons/hicolor/48x48/apps/gstreamer-properties.png -share/icons/hicolor/scalable/apps/gnome-sound-recorder.svg -share/icons/hicolor/scalable/apps/gnome-volume-control.svg -share/locale/am/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-media-2.0.mo -share/locale/as/LC_MESSAGES/gnome-media-2.0.mo -share/locale/az/LC_MESSAGES/gnome-media-2.0.mo -share/locale/be/LC_MESSAGES/gnome-media-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-media-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-media-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-media-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-media-2.0.mo -share/locale/br/LC_MESSAGES/gnome-media-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-media-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-media-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-media-2.0.mo -share/locale/da/LC_MESSAGES/gnome-media-2.0.mo -share/locale/de/LC_MESSAGES/gnome-media-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-media-2.0.mo -share/locale/el/LC_MESSAGES/gnome-media-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-media-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-media-2.0.mo -share/locale/es/LC_MESSAGES/gnome-media-2.0.mo -share/locale/et/LC_MESSAGES/gnome-media-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-media-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-media-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-media-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-media-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-media-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-media-2.0.mo -share/locale/he/LC_MESSAGES/gnome-media-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-media-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-media-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-media-2.0.mo -share/locale/id/LC_MESSAGES/gnome-media-2.0.mo -share/locale/it/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-media-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-media-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-media-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-media-2.0.mo -share/locale/mai/LC_MESSAGES/gnome-media-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-media-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-media-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-media-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-media-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-media-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-media-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-media-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-media-2.0.mo -share/locale/or/LC_MESSAGES/gnome-media-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-media-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-media-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-media-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-media-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-media-2.0.mo -share/locale/si/LC_MESSAGES/gnome-media-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-media-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-media-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-media-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-media-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gnome-media-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-media-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-media-2.0.mo -share/locale/te/LC_MESSAGES/gnome-media-2.0.mo -share/locale/th/LC_MESSAGES/gnome-media-2.0.mo -share/locale/tk/LC_MESSAGES/gnome-media-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-media-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-media-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-media-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-media-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-media-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-media-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-media-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-media-2.0.mo -share/omf/gnome-sound-recorder/gnome-sound-recorder-C.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-ca.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-de.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-en_GB.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-es.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-fr.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-it.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-oc.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-ru.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-sv.omf -share/omf/gnome-sound-recorder/gnome-sound-recorder-uk.omf -share/omf/gstreamer-properties/gstreamer-properties-C.omf -share/omf/gstreamer-properties/gstreamer-properties-ca.omf -share/omf/gstreamer-properties/gstreamer-properties-de.omf -share/omf/gstreamer-properties/gstreamer-properties-en_GB.omf -share/omf/gstreamer-properties/gstreamer-properties-es.omf -share/omf/gstreamer-properties/gstreamer-properties-fr.omf -share/omf/gstreamer-properties/gstreamer-properties-it.omf -share/omf/gstreamer-properties/gstreamer-properties-oc.omf -share/omf/gstreamer-properties/gstreamer-properties-ru.omf -share/omf/gstreamer-properties/gstreamer-properties-sv.omf -share/omf/gstreamer-properties/gstreamer-properties-th.omf -share/sounds/gnome/default/alerts/bark.ogg -share/sounds/gnome/default/alerts/drip.ogg -share/sounds/gnome/default/alerts/glass.ogg -share/sounds/gnome/default/alerts/sonar.ogg -@dirrm share/sounds/gnome/default/alerts -@dirrm share/sounds/gnome/default -@dirrm share/sounds/gnome -@dirrm share/omf/gstreamer-properties -@dirrm share/omf/gnome-sound-recorder -@dirrm share/gstreamer-properties/icons -@dirrm share/gstreamer-properties/glade -@dirrm share/gstreamer-properties -@dirrm share/gnome/help/gstreamer-properties/th/figures -@dirrm share/gnome/help/gstreamer-properties/th -@dirrm share/gnome/help/gstreamer-properties/sv/figures -@dirrm share/gnome/help/gstreamer-properties/sv -@dirrm share/gnome/help/gstreamer-properties/ru/figures -@dirrm share/gnome/help/gstreamer-properties/ru -@dirrm share/gnome/help/gstreamer-properties/oc/figures -@dirrm share/gnome/help/gstreamer-properties/oc -@dirrm share/gnome/help/gstreamer-properties/it/figures -@dirrm share/gnome/help/gstreamer-properties/it -@dirrm share/gnome/help/gstreamer-properties/fr/figures -@dirrm share/gnome/help/gstreamer-properties/fr -@dirrm share/gnome/help/gstreamer-properties/es/figures -@dirrm share/gnome/help/gstreamer-properties/es -@dirrm share/gnome/help/gstreamer-properties/en_GB/figures -@dirrm share/gnome/help/gstreamer-properties/en_GB -@dirrm share/gnome/help/gstreamer-properties/de/figures -@dirrm share/gnome/help/gstreamer-properties/de -@dirrm share/gnome/help/gstreamer-properties/ca/figures -@dirrm share/gnome/help/gstreamer-properties/ca -@dirrm share/gnome/help/gstreamer-properties/C/figures -@dirrm share/gnome/help/gstreamer-properties/C -@dirrm share/gnome/help/gstreamer-properties -@dirrm share/gnome/help/gnome-sound-recorder/uk/figures -@dirrm share/gnome/help/gnome-sound-recorder/uk -@dirrm share/gnome/help/gnome-sound-recorder/sv/figures -@dirrm share/gnome/help/gnome-sound-recorder/sv -@dirrm share/gnome/help/gnome-sound-recorder/ru/figures -@dirrm share/gnome/help/gnome-sound-recorder/ru -@dirrm share/gnome/help/gnome-sound-recorder/oc/figures -@dirrm share/gnome/help/gnome-sound-recorder/oc -@dirrm share/gnome/help/gnome-sound-recorder/it/figures -@dirrm share/gnome/help/gnome-sound-recorder/it -@dirrm share/gnome/help/gnome-sound-recorder/fr/figures -@dirrm share/gnome/help/gnome-sound-recorder/fr -@dirrm share/gnome/help/gnome-sound-recorder/es/figures -@dirrm share/gnome/help/gnome-sound-recorder/es -@dirrm share/gnome/help/gnome-sound-recorder/en_GB/figures -@dirrm share/gnome/help/gnome-sound-recorder/en_GB -@dirrm share/gnome/help/gnome-sound-recorder/de/figures -@dirrm share/gnome/help/gnome-sound-recorder/de -@dirrm share/gnome/help/gnome-sound-recorder/ca/figures -@dirrm share/gnome/help/gnome-sound-recorder/ca -@dirrm share/gnome/help/gnome-sound-recorder/C/figures -@dirrm share/gnome/help/gnome-sound-recorder/C -@dirrm share/gnome/help/gnome-sound-recorder -@dirrm share/gnome-sound-recorder/ui -@dirrm share/gnome-sound-recorder -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/icons/hicolor/scalable/status -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/32x32/status -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/status -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/status -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm include/gnome-media/profiles -@dirrm include/gnome-media -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/audio/pulseaudio/Makefile b/audio/pulseaudio/Makefile deleted file mode 100644 index 1196538a1..000000000 --- a/audio/pulseaudio/Makefile +++ /dev/null @@ -1,111 +0,0 @@ -# New ports collection makefile for: polypaudio -# Date created: 29 October 2004 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/audio/pulseaudio/Makefile,v 1.15 2009/04/09 03:12:51 mezz Exp $ -# - -PORTNAME= pulseaudio -PORTVERSION= 0.9.14 -PORTREVISION= 2 -CATEGORIES= audio -MASTER_SITES= http://0pointer.de/lennart/projects/${PORTNAME}/ - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Sound server for UNIX - -LIB_DEPENDS= samplerate.1:${PORTSDIR}/audio/libsamplerate \ - oil-0.3.0:${PORTSDIR}/devel/liboil \ - speexdsp.1:${PORTSDIR}/audio/speex \ - dbus-1.3:${PORTSDIR}/devel/dbus \ - gdbm.3:${PORTSDIR}/databases/gdbm - -USE_GNOME= gnometarget gnomehack glib20 intltool ltverhack -USE_XORG= x11 sm -USE_LDCONFIG= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -USE_AUTOTOOLS= libltdl:15 libtool:15 -USE_GMAKE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" \ - LIBS="-lm -lintl" - -CONFIGURE_ARGS= --localstatedir=/var \ - --disable-lirc # untested - -OPTIONS= JACK "JACK audio support" Off \ - AVAHI "Enable Avahi mDNS support" On \ - HAL "Enable HAL support" On \ - GCONF "Enable GConf support" On - -PULSE_VERSION= ${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -PLIST_SUB= PULSE_VERSION=${PULSE_VERSION} - -MAN1= esdcompat.1 pabrowse.1 pacat.1 pacmd.1 pactl.1 padsp.1 \ - paplay.1 pasuspender.1 pax11publish.1 pulseaudio.1 -MAN5= default.pa.5 pulse-client.conf.5 pulse-daemon.conf.5 - -.include <bsd.port.pre.mk> - -#.if ${ARCH} == "sparc64" -#BROKEN= Does not compile on sparc64 -#.endif - -.if defined(WITH_JACK) -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack -PLIST_SUB+= JACK="" -.else -PLIST_SUB+= JACK="@comment " -CONFIGURE_ARGS+=--disable-jack -.endif - -.if !defined(WITHOUT_AVAHI) -LIB_DEPENDS+= avahi-client.3:${PORTSDIR}/net/avahi-app -PLIST_SUB+= AVAHI="" -.else -CONFIGURE_ARGS+=--disable-avahi -PLIST_SUB+= AVAHI="@comment " -.endif - -.if !defined(WITHOUT_HAL) -LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal -PLIST_SUB+= HAL="" -.else -CONFIGURE_ARGS+=--disable-hal \ - --disable-polkit -PLIST_SUB+= HAL="@comment " -.endif - -.if !defined(WITHOUT_GCONF) -USE_GNOME+= gconf2 -PLIST_SUB+= GCONF="" -.else -CONFIGURE_ARGS+=--disable-gconf -PLIST_SUB+= GCONF="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/src/daemon/default.pa.in -.if ${OSVERSION} < 700042 - @${REINPLACE_CMD} -e 's|-Wl,-no-undefined||' \ - ${WRKSRC}/src/Makefile.in -.endif - @${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \ - ${WRKSRC}/configure - -post-install: -.for ii in default.pa daemon.conf client.conf system.pa - ${INSTALL_DATA} ${WRKSRC}/src/${ii} \ - ${PREFIX}/etc/pulse/${ii}-dist -.endfor -.if !defined(PACKAGE_BUILDING) - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/audio/pulseaudio/distinfo b/audio/pulseaudio/distinfo deleted file mode 100644 index 5594f9d76..000000000 --- a/audio/pulseaudio/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pulseaudio-0.9.14.tar.gz) = 0ed1115222d1d8c64cc14961cccb2eb0 -SHA256 (pulseaudio-0.9.14.tar.gz) = e6129f9239235981d329de40eeffa55041e6815a93aaa994d1eae242ea7446b5 -SIZE (pulseaudio-0.9.14.tar.gz) = 1303077 diff --git a/audio/pulseaudio/files/patch-configure b/audio/pulseaudio/files/patch-configure deleted file mode 100644 index 513081005..000000000 --- a/audio/pulseaudio/files/patch-configure +++ /dev/null @@ -1,36 +0,0 @@ ---- configure.orig 2008-07-26 15:15:12.000000000 -0400 -+++ configure 2008-07-26 15:15:35.000000000 -0400 -@@ -25321,6 +25321,7 @@ $as_echo_n "checking whether to check fo - check_inconsistencies=yes - case "${host_cpu}-${host_os}" in - *-darwin*) check_inconsistencies=no ;; -+ *-freebsd*) check_inconsistencies=no ;; - esac - if test x"$GCC" != xyes -o "x$check_inconsistencies" != xyes ; then - { $as_echo "$as_me:$LINENO: result: no" >&5 -@@ -32654,9 +32655,9 @@ _ACEOF - - else - -- { { $as_echo "$as_me:$LINENO: error: *** libatomic-ops headers not found" >&5 --$as_echo "$as_me: error: *** libatomic-ops headers not found" >&2;} -- { (exit 1); exit 1; }; } -+# { { $as_echo "$as_me:$LINENO: error: *** libatomic-ops headers not found" >&5 -+#$as_echo "$as_me: error: *** libatomic-ops headers not found" >&2;} -+# { (exit 1); exit 1; }; } - - fi - -@@ -32664,9 +32665,9 @@ done - - - # Win32 does not need the lib and breaks horribly if we try to include it -- if test "x$os_is_win32" != "x1" ; then -- LIBS="$LIBS -latomic_ops" -- fi -+# if test "x$os_is_win32" != "x1" ; then -+# LIBS="$LIBS -latomic_ops" -+# fi - else - { $as_echo "$as_me:$LINENO: result: no" >&5 - $as_echo "no" >&6; } diff --git a/audio/pulseaudio/files/patch-src_daemon_default.pa.in b/audio/pulseaudio/files/patch-src_daemon_default.pa.in deleted file mode 100644 index 77ba7306a..000000000 --- a/audio/pulseaudio/files/patch-src_daemon_default.pa.in +++ /dev/null @@ -1,17 +0,0 @@ ---- src/daemon/default.pa.in.orig 2008-08-19 17:25:03.000000000 -0400 -+++ src/daemon/default.pa.in 2008-09-28 19:48:14.000000000 -0400 -@@ -22,10 +22,10 @@ - .nofail - - ### Load something into the sample cache --#load-sample-lazy x11-bell /usr/share/sounds/gtk-events/activate.wav --#load-sample-lazy pulse-hotplug /usr/share/sounds/startup3.wav --#load-sample-lazy pulse-coldplug /usr/share/sounds/startup3.wav --#load-sample-lazy pulse-access /usr/share/sounds/generic.wav -+#load-sample-lazy x11-bell %%LOCALBASE%%/sounds/gtk-events/activate.wav -+#load-sample-lazy pulse-hotplug %%LOCALBASE%%/sounds/startup3.wav -+#load-sample-lazy pulse-coldplug %%LOCALBASE%%/sounds/startup3.wav -+#load-sample-lazy pulse-access %%LOCALBASE%%/sounds/generic.wav - - .fail - diff --git a/audio/pulseaudio/files/patch-src_daemon_main.c b/audio/pulseaudio/files/patch-src_daemon_main.c deleted file mode 100644 index 27b2c4f1a..000000000 --- a/audio/pulseaudio/files/patch-src_daemon_main.c +++ /dev/null @@ -1,28 +0,0 @@ ---- src/daemon/main.c.orig 2009-01-12 18:11:38.000000000 -0500 -+++ src/daemon/main.c 2009-03-07 19:56:16.000000000 -0500 -@@ -37,6 +37,7 @@ - #include <unistd.h> - #include <locale.h> - #include <sys/types.h> -+#include <sys/stat.h> - - #include <liboil/liboil.h> - -@@ -689,7 +690,7 @@ int main(int argc, char *argv[]) { - * first take the autospawn lock to make things - * synchronous. */ - -- if ((autospawn_fd = pa_autospawn_lock_init()) < 0) { -+ /*if ((autospawn_fd = pa_autospawn_lock_init()) < 0) { - pa_log("Failed to initialize autospawn lock"); - goto finish; - } -@@ -699,7 +700,7 @@ int main(int argc, char *argv[]) { - goto finish; - } - -- autospawn_locked = TRUE; -+ autospawn_locked = TRUE;*/ - } - - if (conf->daemonize) { diff --git a/audio/pulseaudio/files/patch-src_daemon_start-pulseaudio-x11.in b/audio/pulseaudio/files/patch-src_daemon_start-pulseaudio-x11.in deleted file mode 100644 index 65001b572..000000000 --- a/audio/pulseaudio/files/patch-src_daemon_start-pulseaudio-x11.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/daemon/start-pulseaudio-x11.in.orig 2009-03-07 19:48:47.000000000 -0500 -+++ src/daemon/start-pulseaudio-x11.in 2009-03-07 19:48:56.000000000 -0500 -@@ -19,7 +19,7 @@ - - set -e - --@PA_BINARY@ --start "$@" -+@PA_BINARY@ -D "$@" - - if [ x"$DISPLAY" != x ] ; then - diff --git a/audio/pulseaudio/files/patch-src_modules_oss-util.c b/audio/pulseaudio/files/patch-src_modules_oss-util.c deleted file mode 100644 index bf44d4fdd..000000000 --- a/audio/pulseaudio/files/patch-src_modules_oss-util.c +++ /dev/null @@ -1,37 +0,0 @@ ---- src/modules/oss-util.c.orig 2007-11-08 21:45:25.000000000 -0500 -+++ src/modules/oss-util.c 2008-01-09 17:00:45.000000000 -0500 -@@ -44,6 +44,22 @@ - - #include "oss-util.h" - -+#ifndef DSP_CAP_COPROC -+#define DSP_CAP_COPROC 0x00000800 -+#endif -+#ifndef DSP_CAP_TRIGGER -+#define DSP_CAP_TRIGGER 0x00001000 -+#endif -+#ifndef DSP_CAP_MMAP -+#define DSP_CAP_MMAP 0x00002000 -+#endif -+#ifndef DSP_CAP_MULTI -+#define DSP_CAP_MULTI 0x00004000 -+#endif -+#ifndef DSP_CAP_BIND -+#define DSP_CAP_BIND 0x00008000 -+#endif -+ - int pa_oss_open(const char *device, int *mode, int* pcaps) { - int fd = -1; - int caps; -@@ -300,7 +316,11 @@ static int get_device_number(const char - int r; - - if (!(p = rp = pa_readlink(dev))) { -+#ifdef ENOLINK - if (errno != EINVAL && errno != ENOLINK) { -+#else -+ if (errno != EINVAL) { -+#endif - r = -1; - goto finish; - } diff --git a/audio/pulseaudio/files/patch-src_pulse_context.c b/audio/pulseaudio/files/patch-src_pulse_context.c deleted file mode 100644 index fda93a2a6..000000000 --- a/audio/pulseaudio/files/patch-src_pulse_context.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/pulse/context.c.orig 2009-03-08 14:33:36.000000000 -0400 -+++ src/pulse/context.c 2009-03-08 14:33:42.000000000 -0400 -@@ -664,7 +664,7 @@ static int context_autospawn(pa_context - n = 0; - - argv[n++] = c->conf->daemon_binary; -- argv[n++] = "--start"; -+ argv[n++] = "-D"; - - while (n < MAX_ARGS) { - char *a; diff --git a/audio/pulseaudio/files/patch-src_pulse_introspect.c b/audio/pulseaudio/files/patch-src_pulse_introspect.c deleted file mode 100644 index 6681f70ca..000000000 --- a/audio/pulseaudio/files/patch-src_pulse_introspect.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/pulse/introspect.c.orig 2008-01-03 20:01:31.000000000 -0500 -+++ src/pulse/introspect.c 2008-01-03 20:01:39.000000000 -0500 -@@ -26,6 +26,8 @@ - #include <config.h> - #endif - -+#include <string.h> -+ - #include <pulse/context.h> - - #include <pulsecore/gccmacro.h> diff --git a/audio/pulseaudio/files/patch-src_pulse_thread-mainloop.c b/audio/pulseaudio/files/patch-src_pulse_thread-mainloop.c deleted file mode 100644 index 72a0965dd..000000000 --- a/audio/pulseaudio/files/patch-src_pulse_thread-mainloop.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/pulse/thread-mainloop.c.orig 2008-01-01 17:23:28.000000000 -0500 -+++ src/pulse/thread-mainloop.c 2008-01-01 17:25:00.000000000 -0500 -@@ -27,6 +27,9 @@ - #endif - - #include <signal.h> -+#ifndef OS_IS_WIN32 -+#include <pthread.h> -+#endif - #include <stdio.h> - - #ifdef HAVE_POLL_H diff --git a/audio/pulseaudio/files/patch-src_pulse_util.c b/audio/pulseaudio/files/patch-src_pulse_util.c deleted file mode 100644 index 2fa4de0bc..000000000 --- a/audio/pulseaudio/files/patch-src_pulse_util.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/pulse/util.c.orig 2008-01-01 17:29:31.000000000 -0500 -+++ src/pulse/util.c 2008-01-01 17:29:00.000000000 -0500 -@@ -184,6 +184,17 @@ char *pa_get_binary_name(char *s, size_t - } - - #endif -+#ifdef __FreeBSD__ -+ { -+ char *rp; -+ -+ if ((rp = pa_readlink("/proc/curproc/file"))) { -+ pa_strlcpy(s, pa_path_get_filename(rp), l); -+ pa_xfree(rp); -+ return s; -+ } -+ } -+#endif - - #if defined(HAVE_SYS_PRCTL_H) && defined(PR_GET_NAME) - { diff --git a/audio/pulseaudio/files/patch-src_pulsecore_atomic.h b/audio/pulseaudio/files/patch-src_pulsecore_atomic.h deleted file mode 100644 index 06515b9f9..000000000 --- a/audio/pulseaudio/files/patch-src_pulsecore_atomic.h +++ /dev/null @@ -1,116 +0,0 @@ ---- src/pulsecore/atomic.h.orig 2008-01-23 19:44:20.000000000 -0500 -+++ src/pulsecore/atomic.h 2008-03-15 14:48:41.000000000 -0400 -@@ -106,6 +106,113 @@ static inline int pa_atomic_ptr_cmpxchg( - return __sync_bool_compare_and_swap(&a->value, (long) old_p, (long) new_p); - } - -+#elif defined(__FreeBSD__) -+ -+#include <sys/cdefs.h> -+#include <sys/types.h> -+#include <sys/param.h> -+#include <machine/atomic.h> -+ -+#if __FreeBSD_version < 600000 -+#if defined(__i386__) || defined(__amd64__) -+#if defined(__amd64__) -+#define atomic_load_acq_64 atomic_load_acq_long -+#endif -+static inline u_int -+atomic_fetchadd_int(volatile u_int *p, u_int v) -+{ -+ __asm __volatile( -+ " " __XSTRING(MPLOCKED) " " -+ " xaddl %0, %1 ; " -+ "# atomic_fetchadd_int" -+ : "+r" (v), -+ "=m" (*p) -+ : "m" (*p)); -+ -+ return (v); -+} -+#elif defined(__sparc64__) -+#define atomic_load_acq_64 atomic_load_acq_long -+#define atomic_fetchadd_int atomic_add_int -+#elif defined(__ia64__) -+#define atomic_load_acq_64 atomic_load_acq_long -+static inline uint32_t -+atomic_fetchadd_int(volatile uint32_t *p, uint32_t v) -+{ -+ uint32_t value; -+ -+ do { -+ value = *p; -+ } while (!atomic_cmpset_32(p, value, value + v)); -+ return (value); -+} -+#endif -+#endif -+ -+typedef struct pa_atomic { -+ volatile unsigned long value; -+} pa_atomic_t; -+ -+#define PA_ATOMIC_INIT(v) { .value = (v) } -+ -+static inline int pa_atomic_load(const pa_atomic_t *a) { -+ return (int) atomic_load_acq_int((unsigned int *) &a->value); -+} -+ -+static inline void pa_atomic_store(pa_atomic_t *a, int i) { -+ atomic_store_rel_int((unsigned int *) &a->value, i); -+} -+ -+static inline int pa_atomic_add(pa_atomic_t *a, int i) { -+ return atomic_fetchadd_int((unsigned int *) &a->value, i); -+} -+ -+static inline int pa_atomic_sub(pa_atomic_t *a, int i) { -+ return atomic_fetchadd_int((unsigned int *) &a->value, -(i)); -+} -+ -+static inline int pa_atomic_inc(pa_atomic_t *a) { -+ return atomic_fetchadd_int((unsigned int *) &a->value, 1); -+} -+ -+static inline int pa_atomic_dec(pa_atomic_t *a) { -+ return atomic_fetchadd_int((unsigned int *) &a->value, -1); -+} -+ -+static inline int pa_atomic_cmpxchg(pa_atomic_t *a, int old_i, int new_i) { -+ return atomic_cmpset_int((unsigned int *) &a->value, old_i, new_i); -+} -+ -+typedef struct pa_atomic_ptr { -+ volatile unsigned long value; -+} pa_atomic_ptr_t; -+ -+#define PA_ATOMIC_PTR_INIT(v) { .value = (unsigned long) (v) } -+ -+static inline void* pa_atomic_ptr_load(const pa_atomic_ptr_t *a) { -+#ifdef atomic_load_acq_64 -+ return (void*) atomic_load_acq_ptr((unsigned long *) &a->value); -+#else -+ return (void*) atomic_load_acq_ptr((unsigned int *) &a->value); -+#endif -+} -+ -+static inline void pa_atomic_ptr_store(pa_atomic_ptr_t *a, void *p) { -+#ifdef atomic_load_acq_64 -+ atomic_store_rel_ptr(&a->value, (unsigned long) p); -+#else -+ atomic_store_rel_ptr((unsigned int *) &a->value, (unsigned int) p); -+#endif -+} -+ -+static inline int pa_atomic_ptr_cmpxchg(pa_atomic_ptr_t *a, void *old_p, void* new_p) { -+#ifdef atomic_load_acq_64 -+ return atomic_cmpset_ptr(&a->value, (unsigned long) old_p, (unsigned long) new_p); -+#else -+ return atomic_cmpset_ptr((unsigned int *) &a->value, (unsigned int) old_p, (unsigned int) new_p); -+#endif -+} -+ - #elif defined(__GNUC__) && (defined(__amd64__) || defined(__x86_64__)) - - #error "The native atomic operations implementation for AMD64 has not been tested. libatomic_ops is known to not work properly on AMD64 and your gcc version is too old for the gcc-builtin atomic ops support. You have three options now: make the native atomic operations implementation for AMD64 work, fix libatomic_ops, or upgrade your GCC." diff --git a/audio/pulseaudio/files/patch-src_pulsecore_core-util.c b/audio/pulseaudio/files/patch-src_pulsecore_core-util.c deleted file mode 100644 index 91f369249..000000000 --- a/audio/pulseaudio/files/patch-src_pulsecore_core-util.c +++ /dev/null @@ -1,49 +0,0 @@ ---- src/pulsecore/core-util.c.orig 2008-09-08 19:33:30.000000000 -0400 -+++ src/pulsecore/core-util.c 2008-09-28 19:50:24.000000000 -0400 -@@ -37,6 +37,7 @@ - #include <time.h> - #include <ctype.h> - #include <sys/types.h> -+#include <sys/socket.h> - #include <sys/stat.h> - #include <sys/time.h> - #include <dirent.h> -@@ -567,6 +568,7 @@ int pa_make_realtime(int rtprio) { - errno = ENOTSUP; - return -1; - #endif -+ ; - } - - /* This is merely used for giving the user a hint. This is not correct -@@ -1131,22 +1133,22 @@ int pa_check_in_group(gid_t g) { - (advisory on UNIX, mandatory on Windows) */ - int pa_lock_fd(int fd, int b) { - #ifdef F_SETLKW -- struct flock flock; -+ struct flock pa_flock; - - /* Try a R/W lock first */ - -- flock.l_type = (short) (b ? F_WRLCK : F_UNLCK); -- flock.l_whence = SEEK_SET; -- flock.l_start = 0; -- flock.l_len = 0; -+ pa_flock.l_type = (short) (b ? F_WRLCK : F_UNLCK); -+ pa_flock.l_whence = SEEK_SET; -+ pa_flock.l_start = 0; -+ pa_flock.l_len = 0; - -- if (fcntl(fd, F_SETLKW, &flock) >= 0) -+ if (fcntl(fd, F_SETLKW, &pa_flock) >= 0) - return 0; - - /* Perhaps the file descriptor qas opened for read only, than try again with a read lock. */ - if (b && errno == EBADF) { -- flock.l_type = F_RDLCK; -- if (fcntl(fd, F_SETLKW, &flock) >= 0) -+ pa_flock.l_type = F_RDLCK; -+ if (fcntl(fd, F_SETLKW, &pa_flock) >= 0) - return 0; - } - diff --git a/audio/pulseaudio/files/patch-src_pulsecore_pstream.c b/audio/pulseaudio/files/patch-src_pulsecore_pstream.c deleted file mode 100644 index b242e2e41..000000000 --- a/audio/pulseaudio/files/patch-src_pulsecore_pstream.c +++ /dev/null @@ -1,23 +0,0 @@ ---- src/pulsecore/pstream.c.orig 2007-10-28 15:13:53.000000000 -0400 -+++ src/pulsecore/pstream.c 2008-01-01 16:14:18.000000000 -0500 -@@ -183,14 +183,17 @@ static void do_something(pa_pstream *p) - p->mainloop->defer_enable(p->defer_event, 0); - - if (!p->dead && pa_iochannel_is_readable(p->io)) { -- if (do_read(p) < 0) -+ if (do_read(p) < 0) { - goto fail; -- } else if (!p->dead && pa_iochannel_is_hungup(p->io)) -+ } -+ } else if (!p->dead && pa_iochannel_is_hungup(p->io)) { - goto fail; -+ } - - if (!p->dead && pa_iochannel_is_writable(p->io)) { -- if (do_write(p) < 0) -+ if (do_write(p) < 0) { - goto fail; -+ } - } - - pa_pstream_unref(p); diff --git a/audio/pulseaudio/files/patch-src_pulsecore_shm.c b/audio/pulseaudio/files/patch-src_pulsecore_shm.c deleted file mode 100644 index 549091ccc..000000000 --- a/audio/pulseaudio/files/patch-src_pulsecore_shm.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/pulsecore/shm.c.orig 2007-10-28 15:13:53.000000000 -0400 -+++ src/pulsecore/shm.c 2008-01-01 16:19:19.000000000 -0500 -@@ -80,7 +80,7 @@ struct shm_marker { - }; - - static char *segment_name(char *fn, size_t l, unsigned id) { -- pa_snprintf(fn, l, "/pulse-shm-%u", id); -+ pa_snprintf(fn, l, "/tmp/pulse-shm-%u", id); - return fn; - } - diff --git a/audio/pulseaudio/files/patch-src_tests_rtpoll-test.c b/audio/pulseaudio/files/patch-src_tests_rtpoll-test.c deleted file mode 100644 index 365ca8d2b..000000000 --- a/audio/pulseaudio/files/patch-src_tests_rtpoll-test.c +++ /dev/null @@ -1,18 +0,0 @@ ---- src/tests/rtpoll-test.c.orig 2008-01-03 20:03:03.000000000 -0500 -+++ src/tests/rtpoll-test.c 2008-01-03 20:03:25.000000000 -0500 -@@ -45,6 +45,7 @@ static int worker(pa_rtpoll_item *w) { - } - - int main(int argc, char *argv[]) { -+#ifdef SIGRTMIN - pa_rtpoll *p; - pa_rtpoll_item *i, *w; - struct pollfd *pollfd; -@@ -86,6 +87,7 @@ int main(int argc, char *argv[]) { - pa_rtpoll_item_free(w); - - pa_rtpoll_free(p); -+#endif - - return 0; - } diff --git a/audio/pulseaudio/files/patch-src_tests_rtstutter.c b/audio/pulseaudio/files/patch-src_tests_rtstutter.c deleted file mode 100644 index c8d657481..000000000 --- a/audio/pulseaudio/files/patch-src_tests_rtstutter.c +++ /dev/null @@ -1,18 +0,0 @@ ---- src/tests/rtstutter.c.orig 2008-07-26 17:10:17.000000000 -0400 -+++ src/tests/rtstutter.c 2008-07-26 17:12:26.000000000 -0400 -@@ -42,6 +42,7 @@ static int msec_lower, msec_upper; - static void* work(void *p) PA_GCC_NORETURN; - - static void* work(void *p) { -+#ifndef __FreeBSD__ - cpu_set_t mask; - struct sched_param param; - -@@ -83,6 +84,7 @@ static void* work(void *p) { - } while (now.tv_sec < end.tv_sec || - (now.tv_sec == end.tv_sec && now.tv_nsec < end.tv_nsec)); - } -+#endif - } - - int main(int argc, char*argv[]) { diff --git a/audio/pulseaudio/pkg-descr b/audio/pulseaudio/pkg-descr deleted file mode 100644 index 45634a1f7..000000000 --- a/audio/pulseaudio/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -PulseAudio, previously known as Polypaudio, is a sound server for POSIX and -Win32 systems. A sound server is basically a proxy for your sound applications. -It allows you to do advanced operations on your sound data as it passes between -your application and your hardware. Things like transferring the audio to a -different machine, changing the sample format or channel count and mixing -several sounds into one are easily achieved using a sound server. - -WWW: http://pulseaudio.org/ diff --git a/audio/pulseaudio/pkg-install b/audio/pulseaudio/pkg-install deleted file mode 100644 index 118fd3ef2..000000000 --- a/audio/pulseaudio/pkg-install +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh - -case $2 in -POST-INSTALL) - RGROUP=pulse-rt - SUSER=pulse - SGROUP=${SUSER} - AGROUP=pulse-access - SUID=563 - RGID=557 - SGID=${SUID} - AGID=564 - PW=/usr/sbin/pw - - if ${PW} group show "${RGROUP}" 2>/dev/null; then - echo "You already have a group \"${RGROUP}\", so I will use it." - else - if ${PW} groupadd ${RGROUP} -g ${RGID}; then - echo "Added group \"${RGROUP}\"." - else - echo "Adding group \"${RGROUP}\" failed..." - exit 1 - fi - fi - - if ${PW} group show "${SGROUP}" 2>/dev/null; then - echo "You already have a group \"${SGROUP}\", so I will use it." - else - if ${PW} groupadd ${SGROUP} -g ${SGID}; then - echo "Added group \"${SGROUP}\"." - else - echo "Adding group \"${SGROUP}\" failed..." - exit 1 - fi - fi - - if ${PW} group show "${AGROUP}" 2>/dev/null; then - echo "You already have a group \"${AGROUP}\", so I will use it." - else - if ${PW} groupadd ${AGROUP} -g ${AGID}; then - echo "Added group \"${AGROUP}\"." - else - echo "Adding group \"${AGROUP}\" failed..." - exit 1 - fi - fi - - if ${PW} user show "${SUSER}" 2>/dev/null; then - echo "You already have a user \"${SUSER}\", so I will use it." - else - if ${PW} useradd ${SUSER} -u ${SUID} -g ${SGROUP} -h - \ - -d "/nonexistent" -s /sbin/nologin -c "PulseAudio System User" - then - echo "Added user \"${SUSER}\"." - else - echo "Adding user \"${SUSER}\" failed..." - exit 1 - fi - fi - echo "" - exit 0 - ;; -esac diff --git a/audio/pulseaudio/pkg-message b/audio/pulseaudio/pkg-message deleted file mode 100644 index 83439b120..000000000 --- a/audio/pulseaudio/pkg-message +++ /dev/null @@ -1,6 +0,0 @@ -===> -Pulseaudio is designed to run in realtime, to achieve this pulseaudio is -marked SUID root by default. To take advantage of pulseaudio's realtime -functionality you must be a member of the 'pulse-rt' group. - -ie: 'pw mod group pulse-rt -m [USERNAME]' diff --git a/audio/pulseaudio/pkg-plist b/audio/pulseaudio/pkg-plist deleted file mode 100644 index 719377892..000000000 --- a/audio/pulseaudio/pkg-plist +++ /dev/null @@ -1,159 +0,0 @@ -bin/esdcompat -%%AVAHI%%bin/pabrowse -bin/pacat -bin/pacmd -bin/pactl -bin/padsp -bin/paplay -bin/parec -bin/pasuspender -bin/pax11publish -bin/pulseaudio -bin/start-pulseaudio-x11 -@unexec if cmp -s %D/etc/pulse/client.conf %D/etc/pulse/client.conf-dist; then rm -f %D/etc/pulse/client.conf; fi -etc/pulse/client.conf-dist -@unexec if cmp -s %D/etc/pulse/daemon.conf %D/etc/pulse/daemon.conf-dist; then rm -f %D/etc/pulse/daemon.conf; fi -etc/pulse/daemon.conf-dist -@unexec if cmp -s %D/etc/pulse/default.pa %D/etc/pulse/default.pa-dist; then rm -f %D/etc/pulse/default.pa; fi -etc/pulse/default.pa-dist -@unexec if cmp -s %D/etc/pulse/system.pa %D/etc/pulse/system.pa-dist; then rm -f %D/etc/pulse/system.pa; fi -etc/pulse/system.pa-dist -etc/xdg/autostart/pulseaudio.desktop -%%AVAHI%%include/pulse/browser.h -include/pulse/cdecl.h -include/pulse/channelmap.h -include/pulse/context.h -include/pulse/def.h -include/pulse/error.h -include/pulse/ext-stream-restore.h -include/pulse/gccmacro.h -include/pulse/glib-mainloop.h -include/pulse/introspect.h -include/pulse/mainloop-api.h -include/pulse/mainloop-signal.h -include/pulse/mainloop.h -include/pulse/operation.h -include/pulse/proplist.h -include/pulse/pulseaudio.h -include/pulse/sample.h -include/pulse/scache.h -include/pulse/simple.h -include/pulse/stream.h -include/pulse/subscribe.h -include/pulse/thread-mainloop.h -include/pulse/timeval.h -include/pulse/utf8.h -include/pulse/util.h -include/pulse/version.h -include/pulse/volume.h -include/pulse/xmalloc.h -%%AVAHI%%lib/libpulse-browse.a -%%AVAHI%%lib/libpulse-browse.la -%%AVAHI%%lib/libpulse-browse.so -%%AVAHI%%lib/libpulse-browse.so.0 -lib/libpulse-mainloop-glib.a -lib/libpulse-mainloop-glib.la -lib/libpulse-mainloop-glib.so -lib/libpulse-mainloop-glib.so.0 -lib/libpulse-simple.a -lib/libpulse-simple.la -lib/libpulse-simple.so -lib/libpulse-simple.so.0 -lib/libpulse.a -lib/libpulse.la -lib/libpulse.so -lib/libpulse.so.0 -lib/libpulsecore.a -lib/libpulsecore.la -lib/libpulsecore.so -lib/libpulsecore.so.9 -lib/libpulsedsp.so -lib/pulse-%%PULSE_VERSION%%/modules/libauth-cookie.so -lib/pulse-%%PULSE_VERSION%%/modules/libauthkey.so -%%AVAHI%%lib/pulse-%%PULSE_VERSION%%/modules/libavahi-wrap.so -lib/pulse-%%PULSE_VERSION%%/modules/libcli.so -%%HAL%%lib/pulse-%%PULSE_VERSION%%/modules/libdbus-util.so -lib/pulse-%%PULSE_VERSION%%/modules/libiochannel.so -lib/pulse-%%PULSE_VERSION%%/modules/libioline.so -lib/pulse-%%PULSE_VERSION%%/modules/libipacl.so -lib/pulse-%%PULSE_VERSION%%/modules/liboss-util.so -lib/pulse-%%PULSE_VERSION%%/modules/libpacket.so -lib/pulse-%%PULSE_VERSION%%/modules/libparseaddr.so -lib/pulse-%%PULSE_VERSION%%/modules/libpdispatch.so -lib/pulse-%%PULSE_VERSION%%/modules/libprotocol-cli.so -lib/pulse-%%PULSE_VERSION%%/modules/libprotocol-esound.so -lib/pulse-%%PULSE_VERSION%%/modules/libprotocol-http.so -lib/pulse-%%PULSE_VERSION%%/modules/libprotocol-native.so -lib/pulse-%%PULSE_VERSION%%/modules/libprotocol-simple.so -lib/pulse-%%PULSE_VERSION%%/modules/libpstream-util.so -lib/pulse-%%PULSE_VERSION%%/modules/libpstream.so -lib/pulse-%%PULSE_VERSION%%/modules/librtp.so -lib/pulse-%%PULSE_VERSION%%/modules/libsocket-client.so -lib/pulse-%%PULSE_VERSION%%/modules/libsocket-server.so -lib/pulse-%%PULSE_VERSION%%/modules/libsocket-util.so -lib/pulse-%%PULSE_VERSION%%/modules/libstrlist.so -lib/pulse-%%PULSE_VERSION%%/modules/libtagstruct.so -lib/pulse-%%PULSE_VERSION%%/modules/libx11prop.so -lib/pulse-%%PULSE_VERSION%%/modules/libx11wrap.so -lib/pulse-%%PULSE_VERSION%%/modules/module-always-sink.so -lib/pulse-%%PULSE_VERSION%%/modules/module-cli-protocol-tcp.so -lib/pulse-%%PULSE_VERSION%%/modules/module-cli-protocol-unix.so -lib/pulse-%%PULSE_VERSION%%/modules/module-cli.so -lib/pulse-%%PULSE_VERSION%%/modules/module-combine.so -lib/pulse-%%PULSE_VERSION%%/modules/module-console-kit.so -lib/pulse-%%PULSE_VERSION%%/modules/module-default-device-restore.so -lib/pulse-%%PULSE_VERSION%%/modules/module-detect.so -lib/pulse-%%PULSE_VERSION%%/modules/module-device-restore.so -lib/pulse-%%PULSE_VERSION%%/modules/module-esound-compat-spawnfd.so -lib/pulse-%%PULSE_VERSION%%/modules/module-esound-compat-spawnpid.so -lib/pulse-%%PULSE_VERSION%%/modules/module-esound-protocol-tcp.so -lib/pulse-%%PULSE_VERSION%%/modules/module-esound-protocol-unix.so -lib/pulse-%%PULSE_VERSION%%/modules/module-esound-sink.so -%%GCONF%%lib/pulse-%%PULSE_VERSION%%/modules/module-gconf.so -%%HAL%%lib/pulse-%%PULSE_VERSION%%/modules/module-hal-detect.so -lib/pulse-%%PULSE_VERSION%%/modules/module-http-protocol-tcp.so -lib/pulse-%%PULSE_VERSION%%/modules/module-http-protocol-unix.so -%%JACK%%lib/pulse-%%PULSE_VERSION%%/modules/module-jack-sink.so -%%JACK%%lib/pulse-%%PULSE_VERSION%%/modules/module-jack-source.so -lib/pulse-%%PULSE_VERSION%%/modules/module-ladspa-sink.so -lib/pulse-%%PULSE_VERSION%%/modules/module-match.so -lib/pulse-%%PULSE_VERSION%%/modules/module-native-protocol-fd.so -lib/pulse-%%PULSE_VERSION%%/modules/module-native-protocol-tcp.so -lib/pulse-%%PULSE_VERSION%%/modules/module-native-protocol-unix.so -lib/pulse-%%PULSE_VERSION%%/modules/module-null-sink.so -lib/pulse-%%PULSE_VERSION%%/modules/module-oss.so -lib/pulse-%%PULSE_VERSION%%/modules/module-pipe-sink.so -lib/pulse-%%PULSE_VERSION%%/modules/module-pipe-source.so -lib/pulse-%%PULSE_VERSION%%/modules/module-position-event-sounds.so -lib/pulse-%%PULSE_VERSION%%/modules/module-remap-sink.so -lib/pulse-%%PULSE_VERSION%%/modules/module-rescue-streams.so -lib/pulse-%%PULSE_VERSION%%/modules/module-rtp-recv.so -lib/pulse-%%PULSE_VERSION%%/modules/module-rtp-send.so -lib/pulse-%%PULSE_VERSION%%/modules/module-simple-protocol-tcp.so -lib/pulse-%%PULSE_VERSION%%/modules/module-simple-protocol-unix.so -lib/pulse-%%PULSE_VERSION%%/modules/module-sine.so -lib/pulse-%%PULSE_VERSION%%/modules/module-stream-restore.so -lib/pulse-%%PULSE_VERSION%%/modules/module-suspend-on-idle.so -lib/pulse-%%PULSE_VERSION%%/modules/module-tunnel-sink.so -lib/pulse-%%PULSE_VERSION%%/modules/module-tunnel-source.so -lib/pulse-%%PULSE_VERSION%%/modules/module-volume-restore.so -lib/pulse-%%PULSE_VERSION%%/modules/module-x11-bell.so -lib/pulse-%%PULSE_VERSION%%/modules/module-x11-publish.so -lib/pulse-%%PULSE_VERSION%%/modules/module-x11-xsmp.so -%%AVAHI%%lib/pulse-%%PULSE_VERSION%%/modules/module-zeroconf-discover.so -%%AVAHI%%lib/pulse-%%PULSE_VERSION%%/modules/module-zeroconf-publish.so -%%AVAHI%%libdata/pkgconfig/libpulse-browse.pc -libdata/pkgconfig/libpulse-mainloop-glib.pc -libdata/pkgconfig/libpulse-simple.pc -libdata/pkgconfig/libpulse.pc -%%GCONF%%libexec/pulse/gconf-helper -%%HAL%%share/PolicyKit/policy/org.pulseaudio.policy -share/locale/de/LC_MESSAGES/pulseaudio.mo -share/locale/el/LC_MESSAGES/pulseaudio.mo -share/locale/fr/LC_MESSAGES/pulseaudio.mo -share/locale/sv/LC_MESSAGES/pulseaudio.mo -%%GCONF%%@dirrm libexec/pulse -@dirrm lib/pulse-%%PULSE_VERSION%%/modules -@dirrm lib/pulse-%%PULSE_VERSION%% -@dirrm include/pulse -@dirrm etc/pulse diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile deleted file mode 100644 index c874f71bc..000000000 --- a/audio/rhythmbox/Makefile +++ /dev/null @@ -1,139 +0,0 @@ -# New ports collection makefile for: rhythmbox -# Date created: 17 August 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/audio/rhythmbox/Makefile,v 1.96 2009/03/30 21:01:14 marcus Exp $ -# - -PORTNAME= rhythmbox -PORTVERSION= 0.12.0 -PORTREVISION= 2 -CATEGORIES= audio gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= marcus@FreeBSD.org -COMMENT= Audio player for GNOME - -LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ - musicbrainz3.6:${PORTSDIR}/audio/libmusicbrainz3 \ - id3tag.0:${PORTSDIR}/audio/libid3tag \ - totem-plparser.12:${PORTSDIR}/multimedia/totem-pl-parser \ - dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - sexy.2:${PORTSDIR}/x11-toolkits/libsexy \ - soup-2.4.1:${PORTSDIR}/devel/libsoup \ - gnome-media-profiles.0:${PORTSDIR}/audio/gnome-media \ - brasero-media.1:${PORTSDIR}/sysutils/brasero - -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui nautilus2 -WANT_GNOME= yes -USE_GSTREAMER= flac mp3 gnomevfs gconf jpeg -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --disable-vala --with-libbrasero-media \ - --without-libnautilus-burn -INSTALLS_ICONS= yes -USE_LDCONFIG= yes -CONFIGURE_ENV= LIBS="-lm" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - CPPFLAGS="-I${LOCALBASE}/include" - -GCONF_SCHEMAS= rhythmbox.schemas - -OPTIONS= DAAP "Enable iTunes music sharing" off \ - IPOD "Enable iPod support" on \ - FAAD "Enable FAAD decoder support" off \ - NOTIFY "Enable libnotify support" on \ - VORBIS "Enable Ogg/Vorbis support" on \ - LIRC "Enable Infrared syncing support" off \ - MTP "Enable MS Media Transfer Protocol support" off \ - ITMS_PLUGIN "Enable iTunes browser plugin" on - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_VORBIS) -USE_GSTREAMER+= vorbis -.else -CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest -.endif - -.if defined(WITH_FAAD) -USE_GSTREAMER+= faad -.endif - -.if defined(WITH_LIRC) -LIB_DEPENDS+= lirc_client.1:${PORTSDIR}/comms/lirc -PLIST_SUB+= LIRC="" -CONFIGURE_ARGS+=--enable-lirc -.else -CONFIGURE_ARGS+=--disable-lirc -PLIST_SUB+= LIRC="@comment " -.endif - -.if defined(WITH_MTP) -LIB_DEPENDS+= mtp.8:${PORTSDIR}/audio/libmtp -PLIST_SUB+= MTP="" -CONFIGURE_ARGS+= --with-mtp -.else -CONFIGURE_ARGS+= --without-mtp -PLIST_SUB+= MTP="@comment " -.endif - -.if defined(WITH_DAAP) -CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi -LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring -PLIST_SUB+= DAAP="" -.else -.if exists(${LOCALBASE}/lib/libavahi-client.a) -LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app -.endif -CONFIGURE_ARGS+= --disable-daap -PLIST_SUB+= DAAP="@comment " -.endif - -.if !defined(WITHOUT_NOTIFY) -LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify -RUN_DEPENDS+= ${LOCALBASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon -.else -CONFIGURE_ARGS+= --disable-libnotify -.endif - -.if exists(${LOCALBASE}/libdata/pkgconfig/gst-python-0.10.pc) -USE_PYTHON= yes -.include "${PORTSDIR}/Mk/bsd.python.mk" -USE_GSTREAMER+= python -CONFIGURE_ARGS+=--enable-python -PLIST_SUB+= PYTHON="" -.else -CONFIGURE_ARGS+=--disable-python -PLIST_SUB+= PYTHON="@comment " -.endif - -.if !defined(WITHOUT_IPOD) -LIB_DEPENDS+= gpod.3:${PORTSDIR}/audio/libgpod -CONFIGURE_ARGS+=--with-ipod -PLIST_SUB+= IPOD="" -.else -CONFIGURE_ARGS+=--without-ipod -PLIST_SUB+= IPOD="@comment " -.endif - -.if !defined(WITHOUT_ITMS_PLUGIN) -USE_WEBPLUGINS= gecko18 -WEBPLUGINS_FILES=librhythmbox-itms-detection-plugin.so -.include "${PORTSDIR}/www/firefox/Makefile.webplugins" - -CONFIGURE_ARGS+=--enable-browser-plugin -CONFIGURE_ENV+= MOZILLA_PLUGINDIR=${WEBPLUGINS_DIR} -PLIST_SUB+= ITMS_PLUGIN="" -.else -CONFIGURE_ARGS+=--disable-browser-plugin -PLIST_SUB+= ITMS_PLUGIN="@comment " -.endif - -.include <bsd.port.post.mk> diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo deleted file mode 100644 index 9b533414e..000000000 --- a/audio/rhythmbox/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/rhythmbox-0.12.0.tar.bz2) = ae6bc15786cc7659b41c313e45adf44a -SHA256 (gnome2/rhythmbox-0.12.0.tar.bz2) = 797d0e0d542d4c4ddc436f1ea395f272ebcdaa46fff112226ec9ab244af5b7eb -SIZE (gnome2/rhythmbox-0.12.0.tar.bz2) = 4925468 diff --git a/audio/rhythmbox/files/patch-configure b/audio/rhythmbox/files/patch-configure deleted file mode 100644 index 91af140f4..000000000 --- a/audio/rhythmbox/files/patch-configure +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.orig 2009-03-21 13:56:32.000000000 -0400 -+++ configure 2009-03-21 13:57:17.000000000 -0400 -@@ -14206,7 +14206,7 @@ $as_echo "$as_me: error: HAL support exp - { (exit 1); exit 1; }; } - fi - -- if test "x$enable_hal" == "xyes"; then -+ if test "x$enable_hal" = "xyes"; then - - cat >>confdefs.h <<\_ACEOF - #define HAVE_HAL 1 -@@ -20763,7 +20763,7 @@ else - fi - - --MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR:="\${libdir}/mozilla/plugins"}" -+MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR}" - - - if test x$enable_browser_plugin = xyes; then diff --git a/audio/rhythmbox/files/patch-plugins_cd-recorder_rb-recorder-gst.c b/audio/rhythmbox/files/patch-plugins_cd-recorder_rb-recorder-gst.c deleted file mode 100644 index c70afd0dc..000000000 --- a/audio/rhythmbox/files/patch-plugins_cd-recorder_rb-recorder-gst.c +++ /dev/null @@ -1,12 +0,0 @@ ---- plugins/cd-recorder/rb-recorder-gst.c.orig Wed Aug 10 20:06:11 2005 -+++ plugins/cd-recorder/rb-recorder-gst.c Wed Aug 10 20:06:31 2005 -@@ -25,7 +25,9 @@ - #include <string.h> - #include <math.h> - #include <time.h> -+#ifndef __FreeBSD__ - #include <sys/vfs.h> -+#endif - #include <sys/types.h> - #include <sys/stat.h> - #include <fcntl.h> diff --git a/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c b/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c deleted file mode 100644 index 4d9bb5178..000000000 --- a/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c +++ /dev/null @@ -1,26 +0,0 @@ ---- plugins/daap/rb-daap-src.c.orig Fri Jan 27 21:11:13 2006 -+++ plugins/daap/rb-daap-src.c Thu Feb 2 02:07:48 2006 -@@ -34,6 +34,7 @@ - #include <sys/ioctl.h> - #include <netdb.h> - #include <unistd.h> -+#include <signal.h> - #include <ctype.h> - - #include <libsoup/soup-headers.h> -@@ -435,7 +436,14 @@ rb_daap_src_write (RBDAAPSrc *src, const - size_t bytes_written = 0; - - while (bytes_written < count) { -- ssize_t wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); -+ ssize_t wrote; -+#ifdef MSG_NOSIGNAL -+ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); -+#else -+ signal (SIGPIPE, SIG_IGN); -+ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, 0); -+ signal (SIGPIPE, SIG_DFL); -+#endif - - if (wrote < 0) { - GST_WARNING ("error while writing: %s", g_strerror (errno)); diff --git a/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h b/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h deleted file mode 100644 index 2208b3205..000000000 --- a/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h +++ /dev/null @@ -1,10 +0,0 @@ ---- podcast/rb-podcast-parse.h.orig Mon Nov 28 13:51:28 2005 -+++ podcast/rb-podcast-parse.h Mon Nov 28 13:51:05 2005 -@@ -22,6 +22,7 @@ - #ifndef RB_PODCAST_PARSE_H - #define RB_PODCAST_PARSE_H - -+#include <inttypes.h> - #include <glib.h> - - typedef struct diff --git a/audio/rhythmbox/pkg-descr b/audio/rhythmbox/pkg-descr deleted file mode 100644 index 9c4ecf6ca..000000000 --- a/audio/rhythmbox/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Rhythmbox is an integrated music management application, originally inspired by -Apple's iTunes. It is free software, designed to work well under the GNOME -Desktop, and based on the powerful GStreamer media framework. - -WWW: http://www.gnome.org/projects/rhythmbox/ diff --git a/audio/rhythmbox/pkg-plist b/audio/rhythmbox/pkg-plist deleted file mode 100644 index 90fe4bcec..000000000 --- a/audio/rhythmbox/pkg-plist +++ /dev/null @@ -1,669 +0,0 @@ -bin/rhythmbox -bin/rhythmbox-client -%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.a -%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.la -%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.so -lib/librhythmbox-core.a -lib/librhythmbox-core.la -lib/librhythmbox-core.so -lib/librhythmbox-core.so.0 -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.pyo -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.pyo -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.pyo -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.pyo -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.pyo -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyo -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.rb-plugin -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/rhythmbox-missing-artwork.svg -lib/rhythmbox/plugins/audiocd/audiocd-ui.xml -lib/rhythmbox/plugins/audiocd/audiocd.rb-plugin -lib/rhythmbox/plugins/audiocd/libaudiocd.a -lib/rhythmbox/plugins/audiocd/libaudiocd.la -lib/rhythmbox/plugins/audiocd/libaudiocd.so -lib/rhythmbox/plugins/audiocd/multiple-album.glade -lib/rhythmbox/plugins/audioscrobbler/as-icon.png -lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-prefs.glade -lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-ui.xml -lib/rhythmbox/plugins/audioscrobbler/audioscrobbler.rb-plugin -lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.a -lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.la -lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.so -lib/rhythmbox/plugins/cd-recorder/cd-recorder.rb-plugin -lib/rhythmbox/plugins/cd-recorder/libcd-recorder.a -lib/rhythmbox/plugins/cd-recorder/libcd-recorder.la -lib/rhythmbox/plugins/cd-recorder/libcd-recorder.so -%%DAAP%%lib/rhythmbox/plugins/daap/daap-prefs.glade -%%DAAP%%lib/rhythmbox/plugins/daap/daap-ui.xml -%%DAAP%%lib/rhythmbox/plugins/daap/daap.rb-plugin -%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.a -%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.la -%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.so -%%PYTHON%%lib/rhythmbox/plugins/dontreallyclose/dontreallyclose.py -%%PYTHON%%lib/rhythmbox/plugins/dontreallyclose/dontreallyclose.pyc -%%PYTHON%%lib/rhythmbox/plugins/dontreallyclose/dontreallyclose.pyo -%%PYTHON%%lib/rhythmbox/plugins/dontreallyclose/dontreallyclose.rb-plugin -lib/rhythmbox/plugins/generic-player/generic-player-ui.xml -lib/rhythmbox/plugins/generic-player/generic-player.rb-plugin -lib/rhythmbox/plugins/generic-player/libgeneric-player.a -lib/rhythmbox/plugins/generic-player/libgeneric-player.la -lib/rhythmbox/plugins/generic-player/libgeneric-player.so -%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-info.glade -%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-init.glade -%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-ui.xml -%%IPOD%%lib/rhythmbox/plugins/ipod/ipod.rb-plugin -%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.a -%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.la -%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.so -lib/rhythmbox/plugins/iradio/iradio-initial.pls -lib/rhythmbox/plugins/iradio/iradio-ui.xml -lib/rhythmbox/plugins/iradio/iradio.rb-plugin -lib/rhythmbox/plugins/iradio/libiradio.a -lib/rhythmbox/plugins/iradio/libiradio.la -lib/rhythmbox/plugins/iradio/libiradio.so -lib/rhythmbox/plugins/iradio/station-properties.glade -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.py -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.pyc -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.pyo -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.py -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.pyc -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.pyo -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.py -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.pyc -%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.pyo -%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.py -%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.pyc -%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.pyo -%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-loading.glade -%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-prefs.glade -%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo.rb-plugin -%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo.png -%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo_medium.png -%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.a -%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.la -%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.so -%%LIRC%%lib/rhythmbox/plugins/rblirc/lirc.rb-plugin -%%LIRC%%lib/rhythmbox/plugins/rblirc/rhythmbox_lirc_default -%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics-prefs.glade -%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.rb-plugin -%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.py -%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.pyo -%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.py -%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.pyo -%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.py -%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.pyo -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.py -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.pyc -%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.pyo -%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-loading.glade -%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-prefs.glade -%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-purchase.glade -%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune.rb-plugin -%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune_logo_color_small.png -%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune_logo_color_tiny.png -lib/rhythmbox/plugins/mmkeys/libmmkeys.a -lib/rhythmbox/plugins/mmkeys/libmmkeys.la -lib/rhythmbox/plugins/mmkeys/libmmkeys.so -lib/rhythmbox/plugins/mmkeys/mmkeys.rb-plugin -%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.a -%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.la -%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.so -%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtp-ui.xml -%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtpdevice.rb-plugin -lib/rhythmbox/plugins/power-manager/libpower-manager.a -lib/rhythmbox/plugins/power-manager/libpower-manager.la -lib/rhythmbox/plugins/power-manager/libpower-manager.so -lib/rhythmbox/plugins/power-manager/power-manager.rb-plugin -%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.py -%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.pyc -%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.pyo -%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.rb-plugin -%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.py -%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.pyo -%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.py -%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.pyo -%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.py -%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyo -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.py -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.pyc -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.pyo -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.py -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.pyc -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.pyo -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.py -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.pyc -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.pyo -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.py -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.pyc -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.pyo -%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/coherence.rb-plugin -lib/rhythmbox/plugins/visualizer/libvisualizer.a -lib/rhythmbox/plugins/visualizer/libvisualizer.la -lib/rhythmbox/plugins/visualizer/libvisualizer.so -lib/rhythmbox/plugins/visualizer/rb-visualizer-glue.h -lib/rhythmbox/plugins/visualizer/visualizer-controls.glade -lib/rhythmbox/plugins/visualizer/visualizer-ui.xml -lib/rhythmbox/plugins/visualizer/visualizer.rb-plugin -libexec/rhythmbox-metadata -share/applications/rhythmbox.desktop -share/dbus-1/services/org.gnome.Rhythmbox.service -%%DOCSDIR%%/RBAutoPlaylistSource.html -%%DOCSDIR%%/RBBrowserSource.html -%%DOCSDIR%%/RBCellRendererPixbuf.html -%%DOCSDIR%%/RBCellRendererRating.html -%%DOCSDIR%%/RBEncoder.html -%%DOCSDIR%%/RBEntryView.html -%%DOCSDIR%%/RBHistory.html -%%DOCSDIR%%/RBImportErrorsSource.html -%%DOCSDIR%%/RBLibraryBrowser.html -%%DOCSDIR%%/RBLibrarySource.html -%%DOCSDIR%%/RBMetaData.html -%%DOCSDIR%%/RBMissingFilesSource.html -%%DOCSDIR%%/RBPlayOrder.html -%%DOCSDIR%%/RBPlayQueueSource.html -%%DOCSDIR%%/RBPlayer.html -%%DOCSDIR%%/RBPlayerGstDataTee.html -%%DOCSDIR%%/RBPlayerGstFilter.html -%%DOCSDIR%%/RBPlayerGstTee.html -%%DOCSDIR%%/RBPlaylistManager.html -%%DOCSDIR%%/RBPlaylistSource.html -%%DOCSDIR%%/RBPropertyView.html -%%DOCSDIR%%/RBProxyConfig.html -%%DOCSDIR%%/RBQueryCreator.html -%%DOCSDIR%%/RBRandomPlayOrder.html -%%DOCSDIR%%/RBRating.html -%%DOCSDIR%%/RBRemovableMediaManager.html -%%DOCSDIR%%/RBSearchEntry.html -%%DOCSDIR%%/RBShellClipboard.html -%%DOCSDIR%%/RBShellPlayer.html -%%DOCSDIR%%/RBShellPreferences.html -%%DOCSDIR%%/RBSongInfo.html -%%DOCSDIR%%/RBSource.html -%%DOCSDIR%%/RBSourceHeader.html -%%DOCSDIR%%/RBSourceList.html -%%DOCSDIR%%/RBSourceListModel.html -%%DOCSDIR%%/RBStatusbar.html -%%DOCSDIR%%/RBStringValueMap.html -%%DOCSDIR%%/RBTrayIcon.html -%%DOCSDIR%%/RBURIDialog.html -%%DOCSDIR%%/RhythmDB.html -%%DOCSDIR%%/RhythmDBImportJob.html -%%DOCSDIR%%/RhythmDBPropertyModel.html -%%DOCSDIR%%/RhythmDBQueryResults.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/ch03.html -%%DOCSDIR%%/ch04.html -%%DOCSDIR%%/ch05.html -%%DOCSDIR%%/ch06.html -%%DOCSDIR%%/ch07.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/rhythmbox-RBPodcastSource.html -%%DOCSDIR%%/rhythmbox-RBSourceGroup.html -%%DOCSDIR%%/rhythmbox-eel-gconf-extensions.html -%%DOCSDIR%%/rhythmbox-rb-async-queue-watch.html -%%DOCSDIR%%/rhythmbox-rb-debug.html -%%DOCSDIR%%/rhythmbox-rb-dialog.html -%%DOCSDIR%%/rhythmbox-rb-file-helpers.html -%%DOCSDIR%%/rhythmbox-rb-glade-helpers.html -%%DOCSDIR%%/rhythmbox-rb-header.html -%%DOCSDIR%%/rhythmbox-rb-rating-helper.html -%%DOCSDIR%%/rhythmbox-rb-removable-media-source.html -%%DOCSDIR%%/rhythmbox-rb-shell.html -%%DOCSDIR%%/rhythmbox-rb-static-playlist-source.html -%%DOCSDIR%%/rhythmbox-rb-streaming-source.html -%%DOCSDIR%%/rhythmbox-rb-tree-dnd.html -%%DOCSDIR%%/rhythmbox-rb-util.html -%%DOCSDIR%%/rhythmbox-rhythmdb-query-model.html -%%DOCSDIR%%/rhythmbox-rhythmdb-tree.html -%%DOCSDIR%%/rhythmbox.devhelp -%%DOCSDIR%%/rhythmbox.devhelp2 -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/gnome/help/rhythmbox/C/fdl-appendix.xml -share/gnome/help/rhythmbox/C/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/C/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/C/figures/rb-notification-window.png -share/gnome/help/rhythmbox/C/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/C/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/C/figures/rb-statusbar.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/C/figures/rb-toolbar.png -share/gnome/help/rhythmbox/C/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/C/figures/rb-window-small.png -share/gnome/help/rhythmbox/C/figures/rb-window.png -share/gnome/help/rhythmbox/C/legal.xml -share/gnome/help/rhythmbox/C/rhythmbox.xml -share/gnome/help/rhythmbox/cs/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/cs/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/cs/figures/rb-notification-window.png -share/gnome/help/rhythmbox/cs/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/cs/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/cs/figures/rb-statusbar.png -share/gnome/help/rhythmbox/cs/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/cs/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/cs/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/cs/figures/rb-toolbar.png -share/gnome/help/rhythmbox/cs/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/cs/figures/rb-window-small.png -share/gnome/help/rhythmbox/cs/figures/rb-window.png -share/gnome/help/rhythmbox/cs/rhythmbox.xml -share/gnome/help/rhythmbox/da/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/da/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/da/figures/rb-notification-window.png -share/gnome/help/rhythmbox/da/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/da/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/da/figures/rb-statusbar.png -share/gnome/help/rhythmbox/da/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/da/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/da/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/da/figures/rb-toolbar.png -share/gnome/help/rhythmbox/da/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/da/figures/rb-window-small.png -share/gnome/help/rhythmbox/da/figures/rb-window.png -share/gnome/help/rhythmbox/da/rhythmbox.xml -share/gnome/help/rhythmbox/de/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/de/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/de/figures/rb-notification-window.png -share/gnome/help/rhythmbox/de/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/de/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/de/figures/rb-statusbar.png -share/gnome/help/rhythmbox/de/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/de/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/de/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/de/figures/rb-toolbar.png -share/gnome/help/rhythmbox/de/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/de/figures/rb-window-small.png -share/gnome/help/rhythmbox/de/figures/rb-window.png -share/gnome/help/rhythmbox/de/rhythmbox.xml -share/gnome/help/rhythmbox/el/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/el/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/el/figures/rb-notification-window.png -share/gnome/help/rhythmbox/el/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/el/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/el/figures/rb-statusbar.png -share/gnome/help/rhythmbox/el/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/el/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/el/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/el/figures/rb-toolbar.png -share/gnome/help/rhythmbox/el/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/el/figures/rb-window-small.png -share/gnome/help/rhythmbox/el/figures/rb-window.png -share/gnome/help/rhythmbox/el/rhythmbox.xml -share/gnome/help/rhythmbox/es/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/es/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/es/figures/rb-notification-window.png -share/gnome/help/rhythmbox/es/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/es/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/es/figures/rb-statusbar.png -share/gnome/help/rhythmbox/es/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/es/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/es/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/es/figures/rb-toolbar.png -share/gnome/help/rhythmbox/es/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/es/figures/rb-window-small.png -share/gnome/help/rhythmbox/es/figures/rb-window.png -share/gnome/help/rhythmbox/es/rhythmbox.xml -share/gnome/help/rhythmbox/fr/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/fr/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/fr/figures/rb-notification-window.png -share/gnome/help/rhythmbox/fr/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/fr/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/fr/figures/rb-statusbar.png -share/gnome/help/rhythmbox/fr/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/fr/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/fr/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/fr/figures/rb-toolbar.png -share/gnome/help/rhythmbox/fr/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/fr/figures/rb-window-small.png -share/gnome/help/rhythmbox/fr/figures/rb-window.png -share/gnome/help/rhythmbox/fr/rhythmbox.xml -share/gnome/help/rhythmbox/it/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/it/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/it/figures/rb-notification-window.png -share/gnome/help/rhythmbox/it/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/it/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/it/figures/rb-statusbar.png -share/gnome/help/rhythmbox/it/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/it/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/it/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/it/figures/rb-toolbar.png -share/gnome/help/rhythmbox/it/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/it/figures/rb-window-small.png -share/gnome/help/rhythmbox/it/figures/rb-window.png -share/gnome/help/rhythmbox/it/rhythmbox.xml -share/gnome/help/rhythmbox/oc/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/oc/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/oc/figures/rb-notification-window.png -share/gnome/help/rhythmbox/oc/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/oc/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/oc/figures/rb-statusbar.png -share/gnome/help/rhythmbox/oc/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/oc/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/oc/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/oc/figures/rb-toolbar.png -share/gnome/help/rhythmbox/oc/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/oc/figures/rb-window-small.png -share/gnome/help/rhythmbox/oc/figures/rb-window.png -share/gnome/help/rhythmbox/oc/rhythmbox.xml -share/gnome/help/rhythmbox/ru/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/ru/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/ru/figures/rb-notification-window.png -share/gnome/help/rhythmbox/ru/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/ru/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/ru/figures/rb-statusbar.png -share/gnome/help/rhythmbox/ru/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/ru/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/ru/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/ru/figures/rb-toolbar.png -share/gnome/help/rhythmbox/ru/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/ru/figures/rb-window-small.png -share/gnome/help/rhythmbox/ru/figures/rb-window.png -share/gnome/help/rhythmbox/ru/rhythmbox.xml -share/gnome/help/rhythmbox/sv/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/sv/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/sv/figures/rb-notification-window.png -share/gnome/help/rhythmbox/sv/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/sv/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/sv/figures/rb-statusbar.png -share/gnome/help/rhythmbox/sv/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/sv/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/sv/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/sv/figures/rb-toolbar.png -share/gnome/help/rhythmbox/sv/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/sv/figures/rb-window-small.png -share/gnome/help/rhythmbox/sv/figures/rb-window.png -share/gnome/help/rhythmbox/sv/rhythmbox.xml -share/gnome/help/rhythmbox/zh_CN/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-window.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-statusbar.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-window-small.png -share/gnome/help/rhythmbox/zh_CN/figures/rb-window.png -share/gnome/help/rhythmbox/zh_CN/rhythmbox.xml -share/icons/hicolor/16x16/apps/rhythmbox.png -share/icons/hicolor/22x22/apps/rhythmbox.png -share/icons/hicolor/24x24/apps/rhythmbox.png -share/icons/hicolor/32x32/apps/rhythmbox.png -share/icons/hicolor/48x48/apps/rhythmbox.png -share/icons/hicolor/scalable/apps/rhythmbox.svg -share/locale/am/LC_MESSAGES/rhythmbox.mo -share/locale/ar/LC_MESSAGES/rhythmbox.mo -share/locale/az/LC_MESSAGES/rhythmbox.mo -share/locale/be/LC_MESSAGES/rhythmbox.mo -share/locale/be@latin/LC_MESSAGES/rhythmbox.mo -share/locale/bg/LC_MESSAGES/rhythmbox.mo -share/locale/ca/LC_MESSAGES/rhythmbox.mo -share/locale/cs/LC_MESSAGES/rhythmbox.mo -share/locale/cy/LC_MESSAGES/rhythmbox.mo -share/locale/da/LC_MESSAGES/rhythmbox.mo -share/locale/de/LC_MESSAGES/rhythmbox.mo -share/locale/dz/LC_MESSAGES/rhythmbox.mo -share/locale/el/LC_MESSAGES/rhythmbox.mo -share/locale/en_CA/LC_MESSAGES/rhythmbox.mo -share/locale/en_GB/LC_MESSAGES/rhythmbox.mo -share/locale/es/LC_MESSAGES/rhythmbox.mo -share/locale/et/LC_MESSAGES/rhythmbox.mo -share/locale/eu/LC_MESSAGES/rhythmbox.mo -share/locale/fi/LC_MESSAGES/rhythmbox.mo -share/locale/fr/LC_MESSAGES/rhythmbox.mo -share/locale/ga/LC_MESSAGES/rhythmbox.mo -share/locale/gl/LC_MESSAGES/rhythmbox.mo -share/locale/he/LC_MESSAGES/rhythmbox.mo -share/locale/hi/LC_MESSAGES/rhythmbox.mo -share/locale/hr/LC_MESSAGES/rhythmbox.mo -share/locale/hu/LC_MESSAGES/rhythmbox.mo -share/locale/id/LC_MESSAGES/rhythmbox.mo -share/locale/is/LC_MESSAGES/rhythmbox.mo -share/locale/it/LC_MESSAGES/rhythmbox.mo -share/locale/ja/LC_MESSAGES/rhythmbox.mo -share/locale/ko/LC_MESSAGES/rhythmbox.mo -share/locale/lt/LC_MESSAGES/rhythmbox.mo -share/locale/lv/LC_MESSAGES/rhythmbox.mo -share/locale/mk/LC_MESSAGES/rhythmbox.mo -share/locale/ml/LC_MESSAGES/rhythmbox.mo -share/locale/mn/LC_MESSAGES/rhythmbox.mo -share/locale/ms/LC_MESSAGES/rhythmbox.mo -share/locale/nb/LC_MESSAGES/rhythmbox.mo -share/locale/ne/LC_MESSAGES/rhythmbox.mo -share/locale/nl/LC_MESSAGES/rhythmbox.mo -share/locale/oc/LC_MESSAGES/rhythmbox.mo -share/locale/pa/LC_MESSAGES/rhythmbox.mo -share/locale/pl/LC_MESSAGES/rhythmbox.mo -share/locale/ps/LC_MESSAGES/rhythmbox.mo -share/locale/pt/LC_MESSAGES/rhythmbox.mo -share/locale/pt_BR/LC_MESSAGES/rhythmbox.mo -share/locale/ro/LC_MESSAGES/rhythmbox.mo -share/locale/ru/LC_MESSAGES/rhythmbox.mo -share/locale/rw/LC_MESSAGES/rhythmbox.mo -share/locale/sk/LC_MESSAGES/rhythmbox.mo -share/locale/sr/LC_MESSAGES/rhythmbox.mo -share/locale/sr@latin/LC_MESSAGES/rhythmbox.mo -share/locale/sv/LC_MESSAGES/rhythmbox.mo -share/locale/th/LC_MESSAGES/rhythmbox.mo -share/locale/tr/LC_MESSAGES/rhythmbox.mo -share/locale/uk/LC_MESSAGES/rhythmbox.mo -share/locale/vi/LC_MESSAGES/rhythmbox.mo -share/locale/zh_CN/LC_MESSAGES/rhythmbox.mo -share/locale/zh_HK/LC_MESSAGES/rhythmbox.mo -share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo -share/omf/rhythmbox/rhythmbox-C.omf -share/omf/rhythmbox/rhythmbox-cs.omf -share/omf/rhythmbox/rhythmbox-da.omf -share/omf/rhythmbox/rhythmbox-de.omf -share/omf/rhythmbox/rhythmbox-el.omf -share/omf/rhythmbox/rhythmbox-es.omf -share/omf/rhythmbox/rhythmbox-fr.omf -share/omf/rhythmbox/rhythmbox-it.omf -share/omf/rhythmbox/rhythmbox-oc.omf -share/omf/rhythmbox/rhythmbox-ru.omf -share/omf/rhythmbox/rhythmbox-sv.omf -share/omf/rhythmbox/rhythmbox-zh_CN.omf -share/rhythmbox/glade/create-playlist.glade -share/rhythmbox/glade/general-prefs.glade -share/rhythmbox/glade/library-prefs.glade -share/rhythmbox/glade/playback-prefs.glade -share/rhythmbox/glade/playlist-save.glade -share/rhythmbox/glade/plugins.glade -share/rhythmbox/glade/podcast-feed-properties.glade -share/rhythmbox/glade/podcast-prefs.glade -share/rhythmbox/glade/podcast-properties.glade -share/rhythmbox/glade/song-info-multiple.glade -share/rhythmbox/glade/song-info.glade -share/rhythmbox/glade/uri-new.glade -share/rhythmbox/glade/uri.glade -share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-duplicate.png -share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-duplicate.svg -share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-new.png -share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-new.svg -share/rhythmbox/icons/hicolor/16x16/actions/internet-radio-new.png -share/rhythmbox/icons/hicolor/16x16/actions/media-eject.png -share/rhythmbox/icons/hicolor/16x16/actions/playlist-automatic-new.png -share/rhythmbox/icons/hicolor/16x16/actions/playlist-new.png -share/rhythmbox/icons/hicolor/16x16/actions/podcast-new.png -share/rhythmbox/icons/hicolor/16x16/places/library-internet-radio.png -share/rhythmbox/icons/hicolor/16x16/places/library-podcast.png -share/rhythmbox/icons/hicolor/16x16/places/playlist-automatic.png -share/rhythmbox/icons/hicolor/16x16/places/playlist.png -share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-no-star.png -share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-notplaying.png -share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-set-star.png -share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-unset-star.png -share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-duplicate.png -share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-duplicate.svg -share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-new.png -share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-new.svg -share/rhythmbox/icons/hicolor/22x22/actions/internet-radio-new.png -share/rhythmbox/icons/hicolor/22x22/actions/playlist-automatic-new.png -share/rhythmbox/icons/hicolor/22x22/actions/playlist-new.png -share/rhythmbox/icons/hicolor/22x22/actions/podcast-new.png -share/rhythmbox/icons/hicolor/22x22/actions/visualization.png -share/rhythmbox/icons/hicolor/22x22/places/library-internet-radio.png -share/rhythmbox/icons/hicolor/22x22/places/library-podcast.png -share/rhythmbox/icons/hicolor/22x22/places/playlist-automatic.png -share/rhythmbox/icons/hicolor/22x22/places/playlist.png -%%PYTHON%%share/rhythmbox/icons/hicolor/24x24/places/jamendo.png -%%PYTHON%%share/rhythmbox/icons/hicolor/24x24/places/magnatune.png -share/rhythmbox/icons/hicolor/22x22/status/rhythmbox-notplaying.png -share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-duplicate.png -share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-duplicate.svg -share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-new.png -share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-new.svg -share/rhythmbox/icons/hicolor/32x32/actions/internet-radio-new.png -share/rhythmbox/icons/hicolor/32x32/actions/playlist-automatic-new.png -share/rhythmbox/icons/hicolor/32x32/actions/playlist-new.png -share/rhythmbox/icons/hicolor/32x32/places/library-internet-radio.png -share/rhythmbox/icons/hicolor/32x32/places/playlist-automatic.png -share/rhythmbox/icons/hicolor/32x32/places/playlist.png -share/rhythmbox/icons/hicolor/32x32/status/rhythmbox-notplaying.png -share/rhythmbox/icons/hicolor/scalable/actions/audio-cd-duplicate.svg -share/rhythmbox/icons/hicolor/scalable/actions/audio-cd-new.svg -share/rhythmbox/icons/hicolor/scalable/actions/internet-radio-new.svg -share/rhythmbox/icons/hicolor/scalable/actions/playlist-automatic-new.svg -share/rhythmbox/icons/hicolor/scalable/actions/playlist-new.svg -share/rhythmbox/icons/hicolor/scalable/places/library-internet-radio.svg -share/rhythmbox/icons/hicolor/scalable/places/playlist-automatic.svg -share/rhythmbox/icons/hicolor/scalable/places/playlist.svg -share/rhythmbox/icons/hicolor/scalable/status/rhythmbox-notplaying.svg -share/rhythmbox/playlists.xml -share/rhythmbox/rhythmbox-ui.xml -@dirrm share/rhythmbox/icons/hicolor/scalable/status -@dirrm share/rhythmbox/icons/hicolor/scalable/places -@dirrm share/rhythmbox/icons/hicolor/scalable/actions -@dirrm share/rhythmbox/icons/hicolor/scalable -@dirrm share/rhythmbox/icons/hicolor/32x32/status -@dirrm share/rhythmbox/icons/hicolor/32x32/places -@dirrm share/rhythmbox/icons/hicolor/32x32/actions -@dirrm share/rhythmbox/icons/hicolor/32x32 -%%PYTHON%%@dirrm share/rhythmbox/icons/hicolor/24x24/places -%%PYTHON%%@dirrm share/rhythmbox/icons/hicolor/24x24 -@dirrm share/rhythmbox/icons/hicolor/22x22/status -@dirrm share/rhythmbox/icons/hicolor/22x22/places -@dirrm share/rhythmbox/icons/hicolor/22x22/actions -@dirrm share/rhythmbox/icons/hicolor/22x22 -@dirrm share/rhythmbox/icons/hicolor/16x16/status -@dirrm share/rhythmbox/icons/hicolor/16x16/places -@dirrm share/rhythmbox/icons/hicolor/16x16/actions -@dirrm share/rhythmbox/icons/hicolor/16x16 -@dirrm share/rhythmbox/icons/hicolor -@dirrm share/rhythmbox/icons/ -@dirrm share/rhythmbox/glade -@dirrm share/rhythmbox -@dirrm share/omf/rhythmbox -@dirrm share/gnome/help/rhythmbox/zh_CN/figures -@dirrm share/gnome/help/rhythmbox/zh_CN -@dirrm share/gnome/help/rhythmbox/sv/figures -@dirrm share/gnome/help/rhythmbox/sv -@dirrm share/gnome/help/rhythmbox/ru/figures -@dirrm share/gnome/help/rhythmbox/ru -@dirrm share/gnome/help/rhythmbox/oc/figures -@dirrm share/gnome/help/rhythmbox/oc -@dirrm share/gnome/help/rhythmbox/it/figures -@dirrm share/gnome/help/rhythmbox/it -@dirrm share/gnome/help/rhythmbox/fr/figures -@dirrm share/gnome/help/rhythmbox/fr -@dirrm share/gnome/help/rhythmbox/es/figures -@dirrm share/gnome/help/rhythmbox/es -@dirrm share/gnome/help/rhythmbox/el/figures -@dirrm share/gnome/help/rhythmbox/el -@dirrm share/gnome/help/rhythmbox/da/figures -@dirrm share/gnome/help/rhythmbox/da -@dirrm share/gnome/help/rhythmbox/de/figures -@dirrm share/gnome/help/rhythmbox/de -@dirrm share/gnome/help/rhythmbox/cs/figures -@dirrm share/gnome/help/rhythmbox/cs -@dirrm share/gnome/help/rhythmbox/C/figures -@dirrm share/gnome/help/rhythmbox/C -@dirrm share/gnome/help/rhythmbox -@dirrm %%DOCSDIR%% -@dirrm lib/rhythmbox/plugins/visualizer -%%PYTHON%%@dirrm lib/rhythmbox/plugins/upnp_coherence -%%PYTHON%%@dirrm lib/rhythmbox/plugins/rb -%%PYTHON%%@dirrm lib/rhythmbox/plugins/python-console -@dirrm lib/rhythmbox/plugins/power-manager -@dirrm lib/rhythmbox/plugins/mmkeys -%%PYTHON%%@dirrm lib/rhythmbox/plugins/magnatune -%%PYTHON%%@dirrm lib/rhythmbox/plugins/lyrics -%%LIRC%%@dirrm lib/rhythmbox/plugins/lirc -%%PYTHON%%@dirrm lib/rhythmbox/plugins/jamendo -@dirrm lib/rhythmbox/plugins/iradio -%%IPOD%%@dirrm lib/rhythmbox/plugins/ipod -@dirrm lib/rhythmbox/plugins/generic-player -%%PYTHON%%@dirrm lib/rhythmbox/plugins/dontreallyclose -%%DAAP%%@dirrm lib/rhythmbox/plugins/daap -@dirrm lib/rhythmbox/plugins/cd-recorder -@dirrm lib/rhythmbox/plugins/audioscrobbler -@dirrm lib/rhythmbox/plugins/audiocd -%%PYTHON%%@dirrm lib/rhythmbox/plugins/artdisplay -@dirrm lib/rhythmbox/plugins -@dirrm lib/rhythmbox -%%GECKO_PLUGIN%%@dirrmtry %%WEBPLUGINS_DIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/audio/sound-juicer/Makefile b/audio/sound-juicer/Makefile deleted file mode 100644 index 99abfb38c..000000000 --- a/audio/sound-juicer/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# New ports collection makefile for: soundjuicer -# Date created: 20 Jan 2004 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/audio/sound-juicer/Makefile,v 1.90 2009/03/13 14:10:32 kwm Exp $ -# - -PORTNAME= sound-juicer -PORTVERSION= 2.26.0 -CATEGORIES= audio gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Clean, mean and lean CD ripper for GNOME2 - -LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ - musicbrainz3.6:${PORTSDIR}/audio/libmusicbrainz3 \ - gnome-media-profiles.0:${PORTSDIR}/audio/gnome-media \ - cdio.8:${PORTSDIR}/sysutils/libcdio \ - tag.6:${PORTSDIR}/audio/taglib \ - canberra-gtk.0:${PORTSDIR}/audio/libcanberra \ - dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - brasero-media.1:${PORTSDIR}/sysutils/brasero - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -INSTALLS_OMF= yes -USE_GNOME= gnomehack intlhack gnomeprefix gconf2 libglade2 gnomedocutils -USE_GSTREAMER= cdparanoia vorbis flac gconf good gio -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-ignore-missing-cd -INSTALLS_ICONS= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= sound-juicer.1 -GCONF_SCHEMAS= sound-juicer.schemas - -post-patch: - @${REINPLACE_CMD} -e 's|^\(SUBDIRS = .*\)tests\(.*\)|\1\2|' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e 's|" == "|" = "|g' ${WRKSRC}/configure - -post-install: - @-update-desktop-database - -.include <bsd.port.mk> diff --git a/audio/sound-juicer/distinfo b/audio/sound-juicer/distinfo deleted file mode 100644 index d4a8ce371..000000000 --- a/audio/sound-juicer/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/sound-juicer-2.26.0.tar.bz2) = 6dd30f5a8119f9698eabd8220d5c5392 -SHA256 (gnome2/sound-juicer-2.26.0.tar.bz2) = 49b6cbe3f74503a0cf0010332d2e6a1723f6e1a5ae3cb74f543147a4a483db66 -SIZE (gnome2/sound-juicer-2.26.0.tar.bz2) = 1989403 diff --git a/audio/sound-juicer/pkg-descr b/audio/sound-juicer/pkg-descr deleted file mode 100644 index ec4721433..000000000 --- a/audio/sound-juicer/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Sound Juicer is a clean, mean and lean CD ripper for GNOME2. -It provides a clean interface and simple preferences, aiming -to do The Right Thing and What You Mean all of the time. - -WWW: http://www.burtonini.com/blog/computers/sound-juicer/ diff --git a/audio/sound-juicer/pkg-plist b/audio/sound-juicer/pkg-plist deleted file mode 100644 index 14faef6de..000000000 --- a/audio/sound-juicer/pkg-plist +++ /dev/null @@ -1,230 +0,0 @@ -bin/sound-juicer -share/applications/sound-juicer.desktop -share/gnome/help/sound-juicer/C/figures/prefs.png -share/gnome/help/sound-juicer/C/figures/startup.png -share/gnome/help/sound-juicer/C/legal.xml -share/gnome/help/sound-juicer/C/sound-juicer.xml -share/gnome/help/sound-juicer/ar/figures/prefs.png -share/gnome/help/sound-juicer/ar/figures/startup.png -share/gnome/help/sound-juicer/ar/legal.xml -share/gnome/help/sound-juicer/ar/sound-juicer.xml -share/gnome/help/sound-juicer/ca/figures/prefs.png -share/gnome/help/sound-juicer/ca/figures/startup.png -share/gnome/help/sound-juicer/ca/legal.xml -share/gnome/help/sound-juicer/ca/sound-juicer.xml -share/gnome/help/sound-juicer/de/figures/prefs.png -share/gnome/help/sound-juicer/de/figures/startup.png -share/gnome/help/sound-juicer/de/legal.xml -share/gnome/help/sound-juicer/de/sound-juicer.xml -share/gnome/help/sound-juicer/el/figures/prefs.png -share/gnome/help/sound-juicer/el/figures/startup.png -share/gnome/help/sound-juicer/el/legal.xml -share/gnome/help/sound-juicer/el/sound-juicer.xml -share/gnome/help/sound-juicer/en_GB/figures/prefs.png -share/gnome/help/sound-juicer/en_GB/figures/startup.png -share/gnome/help/sound-juicer/en_GB/legal.xml -share/gnome/help/sound-juicer/en_GB/sound-juicer.xml -share/gnome/help/sound-juicer/es/figures/prefs.png -share/gnome/help/sound-juicer/es/figures/startup.png -share/gnome/help/sound-juicer/es/legal.xml -share/gnome/help/sound-juicer/es/sound-juicer.xml -share/gnome/help/sound-juicer/eu/figures/prefs.png -share/gnome/help/sound-juicer/eu/figures/startup.png -share/gnome/help/sound-juicer/eu/legal.xml -share/gnome/help/sound-juicer/eu/sound-juicer.xml -share/gnome/help/sound-juicer/fr/figures/prefs.png -share/gnome/help/sound-juicer/fr/figures/startup.png -share/gnome/help/sound-juicer/fr/legal.xml -share/gnome/help/sound-juicer/fr/sound-juicer.xml -share/gnome/help/sound-juicer/nl/figures/prefs.png -share/gnome/help/sound-juicer/nl/figures/startup.png -share/gnome/help/sound-juicer/nl/legal.xml -share/gnome/help/sound-juicer/nl/sound-juicer.xml -share/gnome/help/sound-juicer/oc/figures/prefs.png -share/gnome/help/sound-juicer/oc/figures/startup.png -share/gnome/help/sound-juicer/oc/legal.xml -share/gnome/help/sound-juicer/oc/sound-juicer.xml -share/gnome/help/sound-juicer/pl/figures/prefs.png -share/gnome/help/sound-juicer/pl/figures/startup.png -share/gnome/help/sound-juicer/pl/legal.xml -share/gnome/help/sound-juicer/pl/sound-juicer.xml -share/gnome/help/sound-juicer/pt_BR/figures/prefs.png -share/gnome/help/sound-juicer/pt_BR/figures/startup.png -share/gnome/help/sound-juicer/pt_BR/legal.xml -share/gnome/help/sound-juicer/pt_BR/sound-juicer.xml -share/gnome/help/sound-juicer/ru/figures/prefs.png -share/gnome/help/sound-juicer/ru/figures/startup.png -share/gnome/help/sound-juicer/ru/legal.xml -share/gnome/help/sound-juicer/ru/sound-juicer.xml -share/gnome/help/sound-juicer/sv/figures/prefs.png -share/gnome/help/sound-juicer/sv/figures/startup.png -share/gnome/help/sound-juicer/sv/legal.xml -share/gnome/help/sound-juicer/sv/sound-juicer.xml -share/gnome/help/sound-juicer/uk/figures/prefs.png -share/gnome/help/sound-juicer/uk/figures/startup.png -share/gnome/help/sound-juicer/uk/legal.xml -share/gnome/help/sound-juicer/uk/sound-juicer.xml -share/icons/hicolor/16x16/apps/sound-juicer.png -share/icons/hicolor/22x22/apps/sound-juicer.png -share/icons/hicolor/24x24/apps/sound-juicer.png -share/icons/hicolor/32x32/apps/sound-juicer.png -share/icons/hicolor/48x48/apps/sound-juicer.png -share/icons/hicolor/scalable/apps/sound-juicer.svg -share/locale/ar/LC_MESSAGES/sound-juicer.mo -share/locale/as/LC_MESSAGES/sound-juicer.mo -share/locale/az/LC_MESSAGES/sound-juicer.mo -share/locale/be/LC_MESSAGES/sound-juicer.mo -share/locale/be@latin/LC_MESSAGES/sound-juicer.mo -share/locale/bg/LC_MESSAGES/sound-juicer.mo -share/locale/bn/LC_MESSAGES/sound-juicer.mo -share/locale/bn_IN/LC_MESSAGES/sound-juicer.mo -share/locale/br/LC_MESSAGES/sound-juicer.mo -share/locale/ca/LC_MESSAGES/sound-juicer.mo -share/locale/cs/LC_MESSAGES/sound-juicer.mo -share/locale/cy/LC_MESSAGES/sound-juicer.mo -share/locale/da/LC_MESSAGES/sound-juicer.mo -share/locale/de/LC_MESSAGES/sound-juicer.mo -share/locale/dz/LC_MESSAGES/sound-juicer.mo -share/locale/el/LC_MESSAGES/sound-juicer.mo -share/locale/en_CA/LC_MESSAGES/sound-juicer.mo -share/locale/en_GB/LC_MESSAGES/sound-juicer.mo -share/locale/es/LC_MESSAGES/sound-juicer.mo -share/locale/et/LC_MESSAGES/sound-juicer.mo -share/locale/eu/LC_MESSAGES/sound-juicer.mo -share/locale/fa/LC_MESSAGES/sound-juicer.mo -share/locale/fi/LC_MESSAGES/sound-juicer.mo -share/locale/fr/LC_MESSAGES/sound-juicer.mo -share/locale/gl/LC_MESSAGES/sound-juicer.mo -share/locale/gu/LC_MESSAGES/sound-juicer.mo -share/locale/he/LC_MESSAGES/sound-juicer.mo -share/locale/hi/LC_MESSAGES/sound-juicer.mo -share/locale/hr/LC_MESSAGES/sound-juicer.mo -share/locale/hu/LC_MESSAGES/sound-juicer.mo -share/locale/id/LC_MESSAGES/sound-juicer.mo -share/locale/it/LC_MESSAGES/sound-juicer.mo -share/locale/ja/LC_MESSAGES/sound-juicer.mo -share/locale/ka/LC_MESSAGES/sound-juicer.mo -share/locale/kn/LC_MESSAGES/sound-juicer.mo -share/locale/ko/LC_MESSAGES/sound-juicer.mo -share/locale/ku/LC_MESSAGES/sound-juicer.mo -share/locale/lt/LC_MESSAGES/sound-juicer.mo -share/locale/lv/LC_MESSAGES/sound-juicer.mo -share/locale/mk/LC_MESSAGES/sound-juicer.mo -share/locale/ml/LC_MESSAGES/sound-juicer.mo -share/locale/mn/LC_MESSAGES/sound-juicer.mo -share/locale/mr/LC_MESSAGES/sound-juicer.mo -share/locale/ms/LC_MESSAGES/sound-juicer.mo -share/locale/nb/LC_MESSAGES/sound-juicer.mo -share/locale/ne/LC_MESSAGES/sound-juicer.mo -share/locale/nl/LC_MESSAGES/sound-juicer.mo -share/locale/nn/LC_MESSAGES/sound-juicer.mo -share/locale/oc/LC_MESSAGES/sound-juicer.mo -share/locale/or/LC_MESSAGES/sound-juicer.mo -share/locale/pa/LC_MESSAGES/sound-juicer.mo -share/locale/pl/LC_MESSAGES/sound-juicer.mo -share/locale/pt/LC_MESSAGES/sound-juicer.mo -share/locale/pt_BR/LC_MESSAGES/sound-juicer.mo -share/locale/ro/LC_MESSAGES/sound-juicer.mo -share/locale/ru/LC_MESSAGES/sound-juicer.mo -share/locale/rw/LC_MESSAGES/sound-juicer.mo -share/locale/si/LC_MESSAGES/sound-juicer.mo -share/locale/sk/LC_MESSAGES/sound-juicer.mo -share/locale/sl/LC_MESSAGES/sound-juicer.mo -share/locale/sq/LC_MESSAGES/sound-juicer.mo -share/locale/sr/LC_MESSAGES/sound-juicer.mo -share/locale/sr@latin/LC_MESSAGES/sound-juicer.mo -share/locale/sv/LC_MESSAGES/sound-juicer.mo -share/locale/ta/LC_MESSAGES/sound-juicer.mo -share/locale/te/LC_MESSAGES/sound-juicer.mo -share/locale/th/LC_MESSAGES/sound-juicer.mo -share/locale/tr/LC_MESSAGES/sound-juicer.mo -share/locale/ug/LC_MESSAGES/sound-juicer.mo -share/locale/uk/LC_MESSAGES/sound-juicer.mo -share/locale/vi/LC_MESSAGES/sound-juicer.mo -share/locale/xh/LC_MESSAGES/sound-juicer.mo -share/locale/zh_CN/LC_MESSAGES/sound-juicer.mo -share/locale/zh_HK/LC_MESSAGES/sound-juicer.mo -share/locale/zh_TW/LC_MESSAGES/sound-juicer.mo -share/omf/sound-juicer/sound-juicer-C.omf -share/omf/sound-juicer/sound-juicer-ar.omf -share/omf/sound-juicer/sound-juicer-ca.omf -share/omf/sound-juicer/sound-juicer-de.omf -share/omf/sound-juicer/sound-juicer-el.omf -share/omf/sound-juicer/sound-juicer-en_GB.omf -share/omf/sound-juicer/sound-juicer-es.omf -share/omf/sound-juicer/sound-juicer-eu.omf -share/omf/sound-juicer/sound-juicer-fr.omf -share/omf/sound-juicer/sound-juicer-nl.omf -share/omf/sound-juicer/sound-juicer-oc.omf -share/omf/sound-juicer/sound-juicer-pl.omf -share/omf/sound-juicer/sound-juicer-pt_BR.omf -share/omf/sound-juicer/sound-juicer-ru.omf -share/omf/sound-juicer/sound-juicer-sv.omf -share/omf/sound-juicer/sound-juicer-uk.omf -%%DATADIR%%/sound-juicer.glade -@dirrm %%DATADIR%% -@dirrm share/omf/sound-juicer -@dirrm share/gnome/help/sound-juicer/uk/figures -@dirrm share/gnome/help/sound-juicer/uk -@dirrm share/gnome/help/sound-juicer/sv/figures -@dirrm share/gnome/help/sound-juicer/sv -@dirrm share/gnome/help/sound-juicer/ru/figures -@dirrm share/gnome/help/sound-juicer/ru -@dirrm share/gnome/help/sound-juicer/pt_BR/figures -@dirrm share/gnome/help/sound-juicer/pt_BR -@dirrm share/gnome/help/sound-juicer/pl/figures -@dirrm share/gnome/help/sound-juicer/pl -@dirrm share/gnome/help/sound-juicer/oc/figures -@dirrm share/gnome/help/sound-juicer/oc -@dirrm share/gnome/help/sound-juicer/nl/figures -@dirrm share/gnome/help/sound-juicer/nl -@dirrm share/gnome/help/sound-juicer/fr/figures -@dirrm share/gnome/help/sound-juicer/fr -@dirrm share/gnome/help/sound-juicer/eu/figures -@dirrm share/gnome/help/sound-juicer/eu -@dirrm share/gnome/help/sound-juicer/es/figures -@dirrm share/gnome/help/sound-juicer/es -@dirrm share/gnome/help/sound-juicer/en_GB/figures -@dirrm share/gnome/help/sound-juicer/en_GB -@dirrm share/gnome/help/sound-juicer/el/figures -@dirrm share/gnome/help/sound-juicer/el -@dirrm share/gnome/help/sound-juicer/de/figures -@dirrm share/gnome/help/sound-juicer/de -@dirrm share/gnome/help/sound-juicer/ca/figures -@dirrm share/gnome/help/sound-juicer/ca -@dirrm share/gnome/help/sound-juicer/ar/figures -@dirrm share/gnome/help/sound-juicer/ar -@dirrm share/gnome/help/sound-juicer/C/figures -@dirrm share/gnome/help/sound-juicer/C -@dirrm share/gnome/help/sound-juicer -@dirrmtry share/applications -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/comms/gnokii/Makefile b/comms/gnokii/Makefile deleted file mode 100644 index 4ecf7e314..000000000 --- a/comms/gnokii/Makefile +++ /dev/null @@ -1,162 +0,0 @@ -# New ports collection makefile for: gnokii -# Date created: 15 March 1999 -# Whom: Staffan Ulfberg <staffanu@multivac.fatburen.org> -# -# $FreeBSD$ -# - -PORTNAME= gnokii -PORTVERSION= 0.6.27 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= comms -MASTER_SITES= http://www.gnokii.org/download/gnokii/ \ - ftp://ftp.gnokii.org/pub/gnokii/ \ - http://www.gnokii.org/download/gnokii/0.6.x/ - -MAINTAINER= mad@madpilot.net -COMMENT= Tools to talk to GSM cellular phones - -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -MAKE_JOBS_SAFE= yes -WANT_GNOME= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE} --enable-security \ - --with-xgnokiidir=${PREFIX}/share -CONFIGURE_ENV+= MSGFMT="${LOCALBASE}/bin/msgfmt" \ - XGETTEXT="${LOCALBASE}/bin/xgettext" \ - CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include -fPIC" \ - LIBS="-L../common -L${LOCALBASE}/lib" \ - PKG_CONFIG="${LOCALBASE}/bin/pkg-config" - -PKGDEINSTALL= ${PKGINSTALL} -SUB_FILES+= pkg-message -PORTDOCS= * -MAN1= gnokii.1 sendsms.1 -MAN8= gnokiid.8 mgnokiidev.8 - -CONFLICTS= smstools-[0-9]* sendsms-[0-9]* - -OPTIONS= ICAL "Build with IETF iCal support" off \ - USB "Build with libusb support" off \ - PCSC "Build with PC/SC-Lite support" off \ - SMSD "Enable smsd daemon" off \ - MYSQL "Enable MySQL support for smsd" off \ - PGSQL "Enable PostgreSQL support for smsd" off \ - X11 "Build graphical version (xgnokii)" on - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/lib/libical.so) || defined(WITH_ICAL) -LIB_DEPENDS+= ical.43:${PORTSDIR}/devel/libical -.endif - -.if ${OSVERSION} < 800069 -. if exists(${LOCALBASE}/lib/libusb.so) || defined(WITH_USB) -LIB_DEPENDS+= usb-0.1.8:${PORTSDIR}/devel/libusb -. endif -.endif - -.if exists(${LOCALBASE}/lib/libpcsclite.so) || defined(WITH_PCSC) -LIB_DEPENDS+= pcsclite.1:${PORTSDIR}/devel/pcsc-lite -.endif - -.if !defined(WITH_SMSD) -PLIST_SUB+= SMSD='@comment ' MSM='@comment ' PGM='@comment ' -CONFIGURE_ARGS+= --disable-smsd -.else -PLIST_SUB+= SMSD='' -USE_GNOME+= glib20 -MAN8+= smsd.8 -.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so) && !defined(WITHOUT_MYSQL) -USE_MYSQL= yes -PLIST_SUB+= MSM='' -.else -PLIST_SUB+= MSM='@comment ' -.endif -.if exists(${LOCALBASE}/bin/psql) && !defined(WITHOUT_PGSQL) -USE_PGSQL= yes -PLIST_SUB+= PGM='' -.else -PLIST_SUB+= PGM='@comment ' -.endif -.endif - -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+= --without-x -PLIST_SUB+= X11='@comment ' -.else -USE_XORG= xpm -USE_GNOME+= gtk20 -PLIST_SUB+= X11='' -MAN1+= xgnokii.1 -.endif - -FIXPREFIX= Docs/man/gnokiid.8 Docs/DataCalls-QuickStart Docs/README \ - common/cfgreader.c po/et.po po/sl.po -post-patch: -.for f in ${FIXPREFIX} - @${REINPLACE_CMD} -e "s:/etc/gnokiirc:${PREFIX}/etc/gnokiirc:g" \ - ${WRKSRC}/${f} -.endfor - @${REINPLACE_CMD} -e "s:%%PTHREAD_LIBS%%:${PTHREAD_LIBS}:; \ - s:%%PTHREAD_CFLAGS%%:${PTHREAD_CFLAGS}:" ${WRKSRC}/configure -.for f in common/data/virtmodem.c utils/mgnokiidev.c - @${REINPLACE_CMD} -E -e "s:^(#ifdef.*)__OpenBSD__:\1__FreeBSD__:" \ - ${WRKSRC}/${f} -.endfor -# fix test(1) conditions in configure script - @${REINPLACE_CMD} -E \ - -e 's|([[:space:]]+test[[:space:]]+.+)==([[:space:]]+"yes")|\1=\2|' \ - ${WRKSRC}/${CONFIGURE_SCRIPT} - @${MV} ${WRKSRC}/Docs/man/xgnokii.1x ${WRKSRC}/Docs/man/xgnokii.1 - -post-build: -.if defined(WITH_SMSD) -.if defined(WITH_MYSQL) - @${REINPLACE_CMD} -e 's/^#libsmsd_mysql_la_SOURCES/libsmsd_mysql_la_SOURCES/' ${WRKSRC}/smsd/Makefile.in - @${REINPLACE_CMD} -e 's/^#libsmsd_mysql_la_LDFLAGS/libsmsd_mysql_la_LDFLAGS/' ${WRKSRC}/smsd/Makefile.in - @${REINPLACE_CMD} -e 's/^#libsmsd_mysql_la_LIBADD/libsmsd_mysql_la_LIBADD/' ${WRKSRC}/smsd/Makefile.in -.endif -.if defined(WITH_PGSQL) - @${REINPLACE_CMD} -e 's/^#libsmsd_pq_la_SOURCES/libsmsd_pq_la_SOURCES/' ${WRKSRC}/smsd/Makefile.in - @${REINPLACE_CMD} -e 's/^#libsmsd_pq_la_LDFLAGS/libsmsd_pq_la_LDFLAGS/' ${WRKSRC}/smsd/Makefile.in - @${REINPLACE_CMD} -e 's/^#libsmsd_pq_la_LIBADD/libsmsd_pq_la_LIBADD/' ${WRKSRC}/smsd/Makefile.in -.endif -.endif - -pre-install: - @${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -post-install: - ${INSTALL_DATA} ${WRKSRC}/xgnokii/xgnokii.pc ${PREFIX}/libdata/pkgconfig - @${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.if !defined(NOPORTDOCS) - ${GMAKE} install -C ${WRKSRC}/Docs -.else - ${GMAKE} install -C ${WRKSRC}/Docs/man -.endif - ${INSTALL_DATA} ${WRKSRC}/Docs/sample/gnokiirc \ - ${PREFIX}/etc/gnokiirc.sample -.if defined(WITH_SMSD) - @cd ${WRKSRC}/smsd && ${GMAKE} install - ${MKDIR} ${PREFIX}/share/smsd - ${INSTALL_SCRIPT} ${WRKSRC}/smsd/action ${PREFIX}/share/smsd - ${INSTALL_DATA} ${WRKSRC}/smsd/README ${PREFIX}/share/smsd -.if defined(WITH_MYSQL) - ${INSTALL_DATA} ${WRKSRC}/smsd/sms.tables.mysql.sql ${PREFIX}/share/smsd -.endif -.if defined(WITH_PGSQL) - ${INSTALL_DATA} ${WRKSRC}/smsd/sms.tables.pq.sql ${PREFIX}/share/smsd -.endif -.endif - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> diff --git a/comms/gnokii/distinfo b/comms/gnokii/distinfo deleted file mode 100644 index 8471bf243..000000000 --- a/comms/gnokii/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnokii-0.6.27.tar.bz2) = fd0ae7996a2e2a2c29e9f3c625df8f3d -SHA256 (gnokii-0.6.27.tar.bz2) = 69f1d75f755a2918e9577cf28dacea9d6fca9b9d722813341d50d12acb8ee886 -SIZE (gnokii-0.6.27.tar.bz2) = 1491564 diff --git a/comms/gnokii/files/patch-Docs-man-Makefile.in b/comms/gnokii/files/patch-Docs-man-Makefile.in deleted file mode 100644 index 38413ce17..000000000 --- a/comms/gnokii/files/patch-Docs-man-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Docs/man/Makefile.in.orig 2008-02-23 17:36:56.000000000 +0100 -+++ Docs/man/Makefile.in 2008-02-23 17:52:50.000000000 +0100 -@@ -252,7 +252,7 @@ - target_vendor = @target_vendor@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --man_MANS = gnokii.1 sendsms.1 gnokiid.8 mgnokiidev.8 xgnokii.1x -+man_MANS = gnokii.1 sendsms.1 gnokiid.8 mgnokiidev.8 xgnokii.1 - EXTRA_DIST = $(man_MANS) - all: all-am - diff --git a/comms/gnokii/files/patch-Makefile.in b/comms/gnokii/files/patch-Makefile.in deleted file mode 100644 index bbaa5eb32..000000000 --- a/comms/gnokii/files/patch-Makefile.in +++ /dev/null @@ -1,14 +0,0 @@ ---- Makefile.in.orig 2008-06-02 15:48:31.000000000 +0200 -+++ Makefile.in 2008-06-02 15:48:47.000000000 +0200 -@@ -279,9 +279,9 @@ - target_vendor = @target_vendor@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --SUBDIRS = include common gnokii po patches Docs $(am__append_1) \ -+SUBDIRS = include common gnokii po patches $(am__append_1) \ - $(am__append_2) $(am__append_3) --DIST_SUBDIRS = include Docs common gnokii gnokiid utils xgnokii po smsd win32 testsuite patches getopt -+DIST_SUBDIRS = include common gnokii gnokiid utils xgnokii po smsd win32 testsuite patches getopt - EXTRA_DIST = \ - ChangeLog \ - COPYING \ diff --git a/comms/gnokii/files/patch-common-Makefile.in b/comms/gnokii/files/patch-common-Makefile.in deleted file mode 100644 index 31358b6e3..000000000 --- a/comms/gnokii/files/patch-common-Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- common/Makefile.in.orig 2008-02-23 17:18:24.000000000 +0100 -+++ common/Makefile.in 2008-02-23 17:18:53.000000000 +0100 -@@ -318,7 +318,8 @@ - $(DATA_DIR) - - pkgconfig_DATA = gnokii.pc --pkgconfigdir = $(libdir)/pkgconfig -+libdatadir = $(libdir)data -+pkgconfigdir = $(libdatadir)/pkgconfig - libgnokii_la_CPPFLAGS = -DLIBDIR="\"$(libdir)\"" - libgnokii_la_CFLAGS = -I$(top_srcdir)/include - libgnokii_la_SOURCES = \ diff --git a/comms/gnokii/files/patch-common-devices-unixbluetooth.c b/comms/gnokii/files/patch-common-devices-unixbluetooth.c deleted file mode 100644 index 5bb9bb09a..000000000 --- a/comms/gnokii/files/patch-common-devices-unixbluetooth.c +++ /dev/null @@ -1,321 +0,0 @@ ---- common/devices/unixbluetooth.c.orig 2008-10-05 12:14:31.000000000 +0200 -+++ common/devices/unixbluetooth.c 2009-02-17 17:03:58.000000000 +0100 -@@ -54,6 +54,8 @@ - #include <netgraph/bluetooth/include/ng_hci.h> - #include <netgraph/bluetooth/include/ng_l2cap.h> - #include <netgraph/bluetooth/include/ng_btsocket.h> -+#include <bluetooth.h> -+#include </usr/include/sdp.h> - - #define BTPROTO_RFCOMM BLUETOOTH_PROTO_RFCOMM - #define BDADDR_ANY NG_HCI_BDADDR_ANY -@@ -86,11 +88,6 @@ - - #endif /* HAVE_BT_ATON */ - --static int str2ba(const char *str, bdaddr_t *ba) --{ -- return !bt_aton(str, ba); --} -- - #else /* Linux / BlueZ support */ - - #include <bluetooth/bluetooth.h> -@@ -100,6 +97,272 @@ - - #endif - -+#ifdef HAVE_BLUETOOTH_NETGRAPH /* FreeBSD / netgraph */ -+ -+/* -+** FreeBSD version of the find_service_channel function. -+** Written by Guido Falsi <mad@madpilot.net>. -+** Contains code taken from FreeBSD's sdpcontrol and rfcomm_sppd -+** programs, which are Copyright (c) 2001-2003 Maksim Yevmenkin -+** <m_evmenkin@yahoo.com>. -+*/ -+ -+static int find_service_channel(bdaddr_t *adapter, bdaddr_t *device, int only_gnapplet, uint16_t svclass_id) -+{ -+ uint8_t getchan = 0; -+ uint32_t i, good = 0; -+ char name[64]; -+ void *ss = NULL; -+ -+ uint32_t attrs[] = -+ { -+ SDP_ATTR_RANGE( SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID + SDP_ATTR_SERVICE_NAME_OFFSET, -+ SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID + SDP_ATTR_SERVICE_NAME_OFFSET), -+ SDP_ATTR_RANGE( SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST, -+ SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST), -+ }; -+ #define attrs_len (sizeof(attrs)/sizeof(attrs[0])) -+ -+ /* Buffer for the attributes */ -+ #define NRECS 25 /* request this much records from the SDP server */ -+ #define BSIZE 256 /* one attribute buffer size */ -+ static uint8_t buffer[NRECS * attrs_len][BSIZE]; -+ -+ /* SDP attributes */ -+ static sdp_attr_t values[NRECS * attrs_len]; -+ #define values_len (sizeof(values)/sizeof(values[0])) -+ -+ /* Initialize attribute values array */ -+ for (i = 0; i < values_len; i ++) { -+ values[i].flags = SDP_ATTR_INVALID; -+ values[i].attr = 0; -+ values[i].vlen = BSIZE; -+ values[i].value = buffer[i]; -+ } -+ -+ if ((ss = sdp_open(adapter, device)) == NULL) -+ return -1; -+ -+ if (sdp_error(ss) != 0) -+ { -+ sdp_close(ss); -+ return -1; -+ } -+ -+ if (sdp_search(ss, 1, &svclass_id, attrs_len, attrs, values_len, values) != 0) -+ { -+ sdp_close(ss); -+ return -1; -+ } -+ -+ for (i = 0; i < values_len; i++) -+ { -+ if (values[i].flags != SDP_ATTR_OK) -+ break; -+ -+ union { -+ uint8_t uint8; -+ uint16_t uint16; -+ uint32_t uint32; -+ uint64_t uint64; -+ int128_t int128; -+ } value; -+ uint8_t *start, *end; -+ uint32_t type, len; -+ -+ start = values[i].value; -+ end = values[i].value + values[i].vlen; -+ -+ switch (values[i].attr) { -+ case SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST: -+ if(getchan) { -+ SDP_GET8(type, start); -+ switch (type) { -+ case SDP_DATA_SEQ8: -+ SDP_GET8(len, start); -+ break; -+ -+ case SDP_DATA_SEQ16: -+ SDP_GET16(len, start); -+ break; -+ -+ case SDP_DATA_SEQ32: -+ SDP_GET32(len, start); -+ break; -+ -+ default: -+ sdp_close(ss); -+ return -1; -+ break; -+ } -+ -+ SDP_GET8(type, start); -+ switch (type) { -+ case SDP_DATA_SEQ8: -+ SDP_GET8(len, start); -+ break; -+ -+ case SDP_DATA_SEQ16: -+ SDP_GET16(len, start); -+ break; -+ -+ case SDP_DATA_SEQ32: -+ SDP_GET32(len, start); -+ break; -+ -+ default: -+ sdp_close(ss); -+ return -1; -+ break; -+ } -+ -+ while (start < end) { -+ SDP_GET8(type, start); -+ switch (type) { -+ case SDP_DATA_UUID16: -+ SDP_GET16(value.uint16, start); -+ break; -+ -+ case SDP_DATA_UUID32: -+ SDP_GET32(value.uint32, start); -+ break; -+ -+ case SDP_DATA_UUID128: -+ SDP_GET_UUID128(&value.int128, start); -+ break; -+ -+ default: -+ sdp_close(ss); -+ return -1; -+ break; -+ } -+ if(value.uint16 == 3) { -+ SDP_GET8(type, start); -+ switch (type) { -+ case SDP_DATA_UINT8: -+ case SDP_DATA_INT8: -+ SDP_GET8(value.uint8, start); -+ return value.uint8; -+ break; -+ -+ case SDP_DATA_UINT16: -+ case SDP_DATA_INT16: -+ SDP_GET16(value.uint16, start); -+ return value.uint16; -+ break; -+ -+ case SDP_DATA_UINT32: -+ case SDP_DATA_INT32: -+ SDP_GET32(value.uint32, start); -+ return value.uint32; -+ break; -+ -+ default: -+ sdp_close(ss); -+ return -1; -+ break; -+ } -+ } else { -+ SDP_GET8(type, start); -+ switch (type) { -+ case SDP_DATA_SEQ8: -+ case SDP_DATA_UINT8: -+ case SDP_DATA_INT8: -+ case SDP_DATA_BOOL: -+ SDP_GET8(value.uint8, start); -+ break; -+ -+ case SDP_DATA_SEQ16: -+ case SDP_DATA_UINT16: -+ case SDP_DATA_INT16: -+ case SDP_DATA_UUID16: -+ SDP_GET16(value.uint16, start); -+ break; -+ -+ case SDP_DATA_SEQ32: -+ case SDP_DATA_UINT32: -+ case SDP_DATA_INT32: -+ case SDP_DATA_UUID32: -+ SDP_GET32(value.uint32, start); -+ break; -+ -+ case SDP_DATA_UINT64: -+ case SDP_DATA_INT64: -+ SDP_GET64(value.uint64, start); -+ break; -+ -+ case SDP_DATA_UINT128: -+ case SDP_DATA_INT128: -+ SDP_GET128(&value.int128, start); -+ break; -+ -+ default: -+ sdp_close(ss); -+ return -1; -+ break; -+ } -+ } -+ } -+ } -+ start += len; -+ break; -+ -+ case SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID + SDP_ATTR_SERVICE_NAME_OFFSET: -+ SDP_GET8(type, start); -+ switch (type) { -+ case SDP_DATA_STR8: -+ case SDP_DATA_URL8: -+ SDP_GET8(len, start); -+ snprintf(name, sizeof(name), "%*.*s", len, len, (char *) start); -+ start += len; -+ break; -+ -+ case SDP_DATA_STR16: -+ case SDP_DATA_URL16: -+ SDP_GET16(len, start); -+ snprintf(name, sizeof(name), "%*.*s", len, len, (char *) start); -+ start += len; -+ break; -+ -+ case SDP_DATA_STR32: -+ case SDP_DATA_URL32: -+ SDP_GET32(len, start); -+ snprintf(name, sizeof(name), "%*.*s", len, len, (char *) start); -+ start += len; -+ break; -+ -+ default: -+ sdp_close(ss); -+ return -1; -+ } -+ if (name == NULL) -+ return -1; -+ -+ if (strcmp(name, "gnapplet") == 0) { -+ if (only_gnapplet != 0) -+ getchan = 1; -+ break; -+ } -+ -+ if (strstr(name, "Nokia PC Suite") != NULL) -+ break; -+ -+ if (strstr(name, "Bluetooth Serial Port") != NULL) -+ break; -+ -+ if (strstr(name, "m-Router Connectivity") != NULL) -+ break; -+ -+ getchan = 1; -+ break; -+ } -+ } -+ -+ sdp_close(ss); -+ return -1; -+} -+ -+#else - /* - * Taken from gnome-phone-manager - */ -@@ -204,6 +467,8 @@ - return channel; - } - -+#endif -+ - static int get_serial_channel(bdaddr_t *device) - { - bdaddr_t src; -@@ -211,9 +476,15 @@ - - bacpy(&src, BDADDR_ANY); - -+#ifdef HAVE_BLUETOOTH_NETGRAPH /* FreeBSD / netgraph */ -+ channel = find_service_channel(&src, device, 0, SDP_SERVICE_CLASS_SERIAL_PORT); -+ if (channel < 0) -+ channel = find_service_channel(&src, device, 0, SDP_SERVICE_CLASS_DIALUP_NETWORKING); -+#else - channel = find_service_channel(&src, device, 0, SERIAL_PORT_SVCLASS_ID); - if (channel < 0) - channel = find_service_channel(&src, device, 0, DIALUP_NET_SVCLASS_ID); -+#endif - - return channel; - } diff --git a/comms/gnokii/files/patch-configure b/comms/gnokii/files/patch-configure deleted file mode 100644 index b76c8a418..000000000 --- a/comms/gnokii/files/patch-configure +++ /dev/null @@ -1,134 +0,0 @@ ---- configure.orig 2008-10-06 08:57:27.000000000 +0200 -+++ configure 2009-02-26 17:21:58.000000000 +0100 -@@ -1057,7 +1057,7 @@ - psdir='${docdir}' - libdir='${exec_prefix}/lib' - localedir='${datarootdir}/locale' --mandir='${datarootdir}/man' -+mandir='${prefix}/man' - - ac_prev= - ac_dashdash= -@@ -24163,13 +24163,15 @@ - # First of all, check if the user has set any of the PTHREAD_LIBS, - # etcetera environment variables, and if threads linking works using - # them: --if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then -+if test x"-pthread" != x; then -+ PTHREAD_CFLAGS="" -+ PTHREAD_LIBS="-pthread" - save_CFLAGS="$CFLAGS" -- CFLAGS="$CFLAGS $PTHREAD_CFLAGS" -+ CFLAGS="$CFLAGS " - save_LIBS="$LIBS" -- LIBS="$PTHREAD_LIBS $LIBS" -- { echo "$as_me:$LINENO: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 --echo $ECHO_N "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... $ECHO_C" >&6; } -+ LIBS="-pthread $LIBS" -+ { echo "$as_me:$LINENO: checking for pthread_join in LIBS=-pthread with CFLAGS=" >&5 -+echo $ECHO_N "checking for pthread_join in LIBS=-pthread with CFLAGS=... $ECHO_C" >&6; } - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -24533,7 +24535,7 @@ - echo $ECHO_N "checking if more special flags are required for pthreads... $ECHO_C" >&6; } - flag=no - case "${host_cpu}-${host_os}" in -- *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; -+ *-aix* | *-darwin*) flag="-D_THREAD_SAFE";; - *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; - esac - { echo "$as_me:$LINENO: result: ${flag}" >&5 -@@ -26561,9 +26563,9 @@ - fi - - --if test "$enable_libical" == "yes"; then -+if test "$enable_libical" = "yes"; then - OLD_CFLAGS="$CFLAGS" -- LIBS="$LIBS $ICAL_LIBS -lpthread -lical" -+ LIBS="$LIBS $ICAL_LIBS -pthread -lical" - CFLAGS="$CFLAGS $ICAL_CFLAGS" - { echo "$as_me:$LINENO: checking whether libical is installed" >&5 - echo $ECHO_N "checking whether libical is installed... $ECHO_C" >&6; } -@@ -26650,7 +26652,7 @@ - enable_libusb=yes - fi - --if test "$enable_libusb" == "yes"; then -+if test "$enable_libusb" = "yes"; then - { echo "$as_me:$LINENO: checking whether libusb is installed" >&5 - echo $ECHO_N "checking whether libusb is installed... $ECHO_C" >&6; } - cat >conftest.$ac_ext <<_ACEOF -@@ -26872,7 +26874,7 @@ - enable_irda=yes - fi - --if test "$enable_irda" == "yes"; then -+if test "$enable_irda" = "yes"; then - { echo "$as_me:$LINENO: checking for linux/irda.h" >&5 - echo $ECHO_N "checking for linux/irda.h... $ECHO_C" >&6; } - if test "${ac_cv_header_linux_irda_h+set}" = set; then -@@ -26955,7 +26957,7 @@ - enable_bluetooth=yes - fi - --if test "$enable_bluetooth" == "yes"; then -+if test "$enable_bluetooth" = "yes"; then - { echo "$as_me:$LINENO: checking for the bluetooth support" >&5 - echo $ECHO_N "checking for the bluetooth support... $ECHO_C" >&6; } - { echo "$as_me:$LINENO: checking for the struct sockaddr_rc in <bluetooth/rfcomm.h>" >&5 -@@ -27025,7 +27027,7 @@ - - fi - fi --if test "$enable_bluetooth" == "yes"; then -+if test "$enable_bluetooth" = "yes"; then - { echo "$as_me:$LINENO: checking for the MacOS X bluetooth support" >&5 - echo $ECHO_N "checking for the MacOS X bluetooth support... $ECHO_C" >&6; } - -@@ -27526,7 +27528,7 @@ - fi - fi - --if test "$enable_bluetooth" == "yes"; then -+if test "$enable_bluetooth" = "yes"; then - { echo "$as_me:$LINENO: checking for the FreeBSD/netgraph bluetooth support" >&5 - echo $ECHO_N "checking for the FreeBSD/netgraph bluetooth support... $ECHO_C" >&6; } - { echo "$as_me:$LINENO: checking for the struct sockaddr_rfcomm in <netgraph/.../ng_btsocket.h>" >&5 -@@ -27602,7 +27604,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lbluetooth $LIBS" -+LIBS="-lsdp -lbluetooth $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -27658,7 +27660,7 @@ - { echo "$as_me:$LINENO: result: $ac_cv_lib_bluetooth_bt_aton" >&5 - echo "${ECHO_T}$ac_cv_lib_bluetooth_bt_aton" >&6; } - if test $ac_cv_lib_bluetooth_bt_aton = yes; then -- BLUETOOTH_LIBS="$LIBS -lbluetooth" -+ BLUETOOTH_LIBS="-lsdp -lbluetooth $LIBS" - cat >>confdefs.h <<\_ACEOF - #define HAVE_BT_ATON - _ACEOF -@@ -27676,7 +27678,7 @@ - enable_libpcsclite=yes - fi - --if test "$enable_libpcsclite" == "yes"; then -+if test "$enable_libpcsclite" = "yes"; then - - - if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then -@@ -28474,7 +28476,7 @@ - echo "${ECHO_T}$ac_cv_lib_Xpm_XpmWriteFileFromXpmImage" >&6; } - if test $ac_cv_lib_Xpm_XpmWriteFileFromXpmImage = yes; then - XPM_CFLAGS="$XINCL" -- XPM_LIBS="$XLIBS -lXpm -lX11" -+ XPM_LIBS="$XLIBS -lXpm -lX11 -lroken -lcrypt" - - cat >>confdefs.h <<\_ACEOF - #define XPM 1 diff --git a/comms/gnokii/files/patch-gnokii-Makefile.in b/comms/gnokii/files/patch-gnokii-Makefile.in deleted file mode 100644 index 9e75758b5..000000000 --- a/comms/gnokii/files/patch-gnokii-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- gnokii/Makefile.in.orig 2009-02-26 17:09:49.000000000 +0100 -+++ gnokii/Makefile.in 2009-02-26 17:20:21.000000000 +0100 -@@ -57,7 +57,7 @@ - gnokii-gnokii-security.$(OBJEXT) \ - gnokii-gnokii-settings.$(OBJEXT) gnokii-gnokii-sms.$(OBJEXT) \ - gnokii-gnokii-todo.$(OBJEXT) gnokii-gnokii-utils.$(OBJEXT) \ -- gnokii-gnokii-wap.$(OBJEXT) -+ gnokii-gnokii-wap.$(OBJEXT) /usr/lib/libsdp.so - gnokii_OBJECTS = $(am_gnokii_OBJECTS) - am__DEPENDENCIES_1 = - gnokii_DEPENDENCIES = $(top_builddir)/common/libgnokii.la \ diff --git a/comms/gnokii/files/patch-gnokii-gnokii-security.c b/comms/gnokii/files/patch-gnokii-gnokii-security.c deleted file mode 100644 index ed4297602..000000000 --- a/comms/gnokii/files/patch-gnokii-gnokii-security.c +++ /dev/null @@ -1,17 +0,0 @@ ---- gnokii/gnokii-security.c.orig Thu May 10 20:50:16 2007 -+++ gnokii/gnokii-security.c Thu Jun 21 11:56:13 2007 -@@ -131,12 +131,14 @@ - - if (isatty(fd)) { - strncpy(pass, getpass(prompt), length - 1); -+/* FreeBSD uses standard C library, no getline, sorry. - } else { - err = getline(&s, &s_len, stdin); - if (err > 0 && s) { - strncpy(pass, s, length - 1); - free(s); - } -+*/ - } - pass[length - 1] = 0; - #endif diff --git a/comms/gnokii/files/patch-gnokii-gnokii-utils.c b/comms/gnokii/files/patch-gnokii-gnokii-utils.c deleted file mode 100644 index 56402ad1f..000000000 --- a/comms/gnokii/files/patch-gnokii-gnokii-utils.c +++ /dev/null @@ -1,11 +0,0 @@ ---- gnokii/gnokii-utils.c.orig 2007-12-06 14:24:37.000000000 +0100 -+++ gnokii/gnokii-utils.c 2007-12-06 14:25:25.000000000 +0100 -@@ -43,6 +43,8 @@ - - #include <stdio.h> - #include <signal.h> -+#include <sys/types.h> -+#include <sys/stat.h> - - #include "gnokii-app.h" - #include "gnokii.h" diff --git a/comms/gnokii/files/patch-gnokii-gnokii.c b/comms/gnokii/files/patch-gnokii-gnokii.c deleted file mode 100644 index dd16da5ae..000000000 --- a/comms/gnokii/files/patch-gnokii-gnokii.c +++ /dev/null @@ -1,11 +0,0 @@ ---- gnokii/gnokii.c.orig 2009-02-03 23:23:35.000000000 +0100 -+++ gnokii/gnokii.c 2009-02-03 23:24:01.000000000 +0100 -@@ -1082,7 +1082,7 @@ - else - len = strlen(input); - if (len > 0) -- argv[argc++] = strndup(input, len); -+ argv[argc++] = strdup(input); - input = tmp; - } while (input); - argv[argc] = NULL; diff --git a/comms/gnokii/files/patch-gnokiid-Makefile.in b/comms/gnokii/files/patch-gnokiid-Makefile.in deleted file mode 100644 index e688fc352..000000000 --- a/comms/gnokii/files/patch-gnokiid-Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- gnokiid/Makefile.in.orig 2008-10-06 08:57:16.000000000 +0200 -+++ gnokiid/Makefile.in 2009-02-26 17:26:31.000000000 +0100 -@@ -48,7 +48,7 @@ - binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) - PROGRAMS = $(bin_PROGRAMS) - am_gnokiid_OBJECTS = gnokiid-gnokiid.$(OBJEXT) --gnokiid_OBJECTS = $(am_gnokiid_OBJECTS) -+gnokiid_OBJECTS = $(am_gnokiid_OBJECTS) /usr/lib/libsdp.so - am__DEPENDENCIES_1 = - gnokiid_DEPENDENCIES = $(top_builddir)/common/libgnokii.la \ - $(top_builddir)/common/data/libDATA.la $(am__DEPENDENCIES_1) -@@ -326,8 +326,8 @@ - || test -f $$p1 \ - ; then \ - f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ -- echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ -- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ -+ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \ -+ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \ - else :; fi; \ - done - diff --git a/comms/gnokii/files/patch-gnokiirc b/comms/gnokii/files/patch-gnokiirc deleted file mode 100644 index 7731e37c3..000000000 --- a/comms/gnokii/files/patch-gnokiirc +++ /dev/null @@ -1,29 +0,0 @@ ---- Docs/sample/gnokiirc.orig Wed Nov 9 01:11:42 2005 -+++ Docs/sample/gnokiirc Sat Nov 12 19:11:21 2005 -@@ -7,7 +7,7 @@ - - # Set port to the physical port used to connect to your phone. - # Linux version is: --port = /dev/ttyS0 -+port = /dev/cuaa0 - # - # For MacOSX you will need something like: - # port = /dev/cu.USA28X1P1.1 -@@ -45,7 +45,7 @@ - # model = AT - # If you can't figure out what to put here read the FAQ. - # If it still doesn't help, consult gnokii-ml or #gnokii at freenode. --model = 6510 -+model = 6210 - # There are few main models that should make use of the certain drivers. - # These are: 6110, 7110, 6510, 3110, 2110, 6160. - -@@ -87,7 +87,7 @@ - # port software (eg. minicom). If you have wrong permissions for the - # directory, a warning will be generated. If you don't want a lockfile, set - # it to 'no'. --use_locking = yes -+use_locking = no - - # Baudrate to use on serial port connections. - # Currently used only by models AT and BIP/CIMD. Defaults to 19200. diff --git a/comms/gnokii/files/patch-smsd-Makefile.in b/comms/gnokii/files/patch-smsd-Makefile.in deleted file mode 100644 index 83601dce0..000000000 --- a/comms/gnokii/files/patch-smsd-Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- smsd/Makefile.in.orig 2008-10-06 08:57:19.000000000 +0200 -+++ smsd/Makefile.in 2009-02-26 17:35:49.000000000 +0100 -@@ -86,7 +86,7 @@ - binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) - PROGRAMS = $(bin_PROGRAMS) - am_smsd_OBJECTS = smsd.$(OBJEXT) lowlevel.$(OBJEXT) --smsd_OBJECTS = $(am_smsd_OBJECTS) -+smsd_OBJECTS = $(am_smsd_OBJECTS) /usr/lib/libsdp.so - smsd_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(top_builddir)/common/libgnokii.la - DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include -@@ -421,8 +421,8 @@ - || test -f $$p1 \ - ; then \ - f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ -- echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ -- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ -+ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \ -+ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \ - else :; fi; \ - done - diff --git a/comms/gnokii/files/patch-xgnokii-Makefile.in b/comms/gnokii/files/patch-xgnokii-Makefile.in deleted file mode 100644 index 75dd784cc..000000000 --- a/comms/gnokii/files/patch-xgnokii-Makefile.in +++ /dev/null @@ -1,21 +0,0 @@ ---- xgnokii/Makefile.in.orig 2008-10-06 08:57:20.000000000 +0200 -+++ xgnokii/Makefile.in 2009-02-26 17:33:22.000000000 +0100 -@@ -62,7 +62,7 @@ - xgnokii-xgnokii_xring.$(OBJEXT) \ - xgnokii-xgnokii_lowlevel.$(OBJEXT) \ - xgnokii-xgnokii_data.$(OBJEXT) --xgnokii_OBJECTS = $(am_xgnokii_OBJECTS) -+xgnokii_OBJECTS = $(am_xgnokii_OBJECTS) /usr/lib/libsdp.so - am__DEPENDENCIES_1 = - xgnokii_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(top_builddir)/common/libgnokii.la \ -@@ -360,7 +360,8 @@ - #FIXME install help - HELP_DIR = docs/help - pkgconfig_DATA = xgnokii.pc --pkgconfigdir = $(libdir)/pkgconfig -+libdatadir = $(libdir)data -+pkgconfigdir = $(libdatadir)/pkgconfig - desktop_in_files = xgnokii.desktop.in - desktopdir = $(datadir)/applications - desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) diff --git a/comms/gnokii/files/pkg-message.in b/comms/gnokii/files/pkg-message.in deleted file mode 100644 index 7f1b37d3d..000000000 --- a/comms/gnokii/files/pkg-message.in +++ /dev/null @@ -1,13 +0,0 @@ -============================================================================== -The default config is installed in %%PREFIX%%/etc/gnokiirc.sample, and is -configured for Nokia 6210 phones connected on COM1. Have a look at the -documentation/manpages for more information. You'll need to copy -gnokiirc.sample to %%PREFIX%%/etc/gnokiirc or $HOME/.gnokiirc for gnokii/ -xgnokii to use it. - -Add the users that shall be authorized to run gnokii programs to the -gnokii group. - -NOTE: if you have enabled and plan using the smsd program check -%%PREFIX%%/share/smsd/README. -============================================================================== diff --git a/comms/gnokii/files/smsd-Makefile-WITH_GLIB.diff b/comms/gnokii/files/smsd-Makefile-WITH_GLIB.diff deleted file mode 100644 index abeed58c8..000000000 --- a/comms/gnokii/files/smsd-Makefile-WITH_GLIB.diff +++ /dev/null @@ -1,21 +0,0 @@ ---- smsd/Makefile.orig Sun Nov 13 16:00:45 2005 -+++ smsd/Makefile Sun Nov 13 16:00:54 2005 -@@ -7,14 +7,14 @@ - # $Id: smsd-Makefile-WITH_GLIB.diff,v 1.1 2009-04-05 19:51:04 marcus Exp $ - # - --#GLIBCFLAGS = glib-config --cflags --#GLIBLDLIBS = glib-config --libs -+GLIBCFLAGS = glib-config --cflags -+GLIBLDLIBS = glib-config --libs - - # Comment out above lines and uncomment below lines if you want compile smsd - # with glib2 instead of glib1. - # --GLIBCFLAGS = pkg-config --cflags glib-2.0 --GLIBLDLIBS = pkg-config --libs glib-2.0 -+#GLIBCFLAGS = pkg-config --cflags glib-2.0 -+#GLIBLDLIBS = pkg-config --libs glib-2.0 - - TOPDIR=.. - include $(TOPDIR)/Makefile.global diff --git a/comms/gnokii/pkg-descr b/comms/gnokii/pkg-descr deleted file mode 100644 index 4d2f2a1ed..000000000 --- a/comms/gnokii/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Gnokii is a Unix/Linux tool suite for mobile phones. It provides a -library to communicate with a phone hiding the communication protocol. -The library handles SMS, phonebook, calendar, phone calls, and other -mobile phone capabilities. It supports most of the GSM phones: Nokia -ones using Nokia proprietary protocol and AT-capable ones -- using -standard AT commands. - -WWW: http://www.gnokii.org/ - -- Guido Falsi <mad@madpilot.net> diff --git a/comms/gnokii/pkg-install b/comms/gnokii/pkg-install deleted file mode 100644 index de143b544..000000000 --- a/comms/gnokii/pkg-install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/bin:/usr/sbin - -GROUP=gnokii - -SUIDBINS="${PKG_PREFIX}/sbin/gnokiid ${PKG_PREFIX}/sbin/mgnokiidev" -BINS="${PKG_PREFIX}/bin/gnokii ${SUIDBINS}" - -if [ -e ${PKG_PREFIX}/bin/xgnokii ]; then - BINS="$BINS ${PKG_PREFIX}/bin/xgnokii" -fi - -case "$2" in -"PRE-INSTALL") - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - ;; - -"POST-INSTALL") - chgrp $GROUP $BINS - chmod 750 ${BINS} - chmod u+s ${SUIDBINS} - ;; - -"DEINSTALL") - if [ -z "`pw groupshow $GROUP 2>&1 | sed -E -e 's/^([^:]+:){3}(.*)$/\2/'`" ]; then - echo "Removing empty group \"$GROUP\"." - pw groupdel $GROUP - fi - ;; - -esac diff --git a/comms/gnokii/pkg-plist b/comms/gnokii/pkg-plist deleted file mode 100644 index 0c8308b95..000000000 --- a/comms/gnokii/pkg-plist +++ /dev/null @@ -1,126 +0,0 @@ -bin/gnokii -bin/sendsms -%%X11%%bin/xgnokii -etc/gnokiirc.sample -include/gnokii.h -include/gnokii/bitmaps.h -include/gnokii/call.h -include/gnokii/common.h -include/gnokii/data.h -include/gnokii/encoding.h -include/gnokii/error.h -include/gnokii/networks.h -include/gnokii/ringtones.h -include/gnokii/rlp-common.h -include/gnokii/sms.h -include/gnokii/statemachine.h -include/gnokii/virtmodem.h -include/gnokii/wappush.h -@dirrm include/gnokii -lib/libgnokii.a -lib/libgnokii.la -lib/libgnokii.so -lib/libgnokii.so.4 -libdata/pkgconfig/gnokii.pc -libdata/pkgconfig/xgnokii.pc -sbin/gnokiid -sbin/mgnokiidev -%%SMSD%%sbin/smsd -share/locale/cs/LC_MESSAGES/gnokii.mo -share/locale/de/LC_MESSAGES/gnokii.mo -share/locale/et/LC_MESSAGES/gnokii.mo -share/locale/fi/LC_MESSAGES/gnokii.mo -share/locale/fr/LC_MESSAGES/gnokii.mo -share/locale/it/LC_MESSAGES/gnokii.mo -share/locale/nl/LC_MESSAGES/gnokii.mo -share/locale/pl/LC_MESSAGES/gnokii.mo -share/locale/pt/LC_MESSAGES/gnokii.mo -share/locale/sk/LC_MESSAGES/gnokii.mo -share/locale/sl/LC_MESSAGES/gnokii.mo -share/locale/sv/LC_MESSAGES/gnokii.mo -share/locale/zh_CN/LC_MESSAGES/gnokii.mo -%%SMSD%%share/smsd/README -%%SMSD%%share/smsd/action -%%SMSD%%lib/smsd/libsmsd_file.a -%%SMSD%%lib/smsd/libsmsd_file.la -%%SMSD%%lib/smsd/libsmsd_file.so -%%MSM%%lib/smsd/libsmsd_mysql.a -%%MSM%%lib/smsd/libsmsd_mysql.la -%%MSM%%lib/smsd/libsmsd_mysql.so -%%MSM%%share/smsd/sms.tables.mysql.sql -%%PGM%%lib/smsd/libsmsd_pq.a -%%PGM%%lib/smsd/libsmsd_pq.la -%%PGM%%lib/smsd/libsmsd_pq.so -%%PGM%%share/smsd/sms.tables.pq.sql -%%SMSD%%@dirrm lib/smsd -%%SMSD%%@dirrm share/smsd -%%X11%%share/applications/xgnokii.desktop -%%X11%%share/xgnokii/help/en_US/faq.html -%%X11%%share/xgnokii/help/en_US/firmware/firmware.html -%%X11%%share/xgnokii/help/en_US/index.html -%%X11%%share/xgnokii/help/en_US/netmon/faq_net0.html -%%X11%%share/xgnokii/help/en_US/netmon/faq_net1.html -%%X11%%share/xgnokii/help/en_US/netmon/faq_net2.html -%%X11%%share/xgnokii/help/en_US/netmon/faq_net3.html -%%X11%%share/xgnokii/help/en_US/netmon/faq_net4.html -%%X11%%share/xgnokii/help/en_US/netmon/faq_net5.html -%%X11%%share/xgnokii/help/en_US/netmon/faq_net6.html -%%X11%%share/xgnokii/help/en_US/netmon/net_mon1.png -%%X11%%share/xgnokii/help/en_US/netmon/net_mon2.png -%%X11%%share/xgnokii/help/en_US/netmon/net_mon3.png -%%X11%%share/xgnokii/help/en_US/netmon/nm2_5110.png -%%X11%%share/xgnokii/help/en_US/netmon/nm_3210.png -%%X11%%share/xgnokii/help/en_US/netmon/nm_5110.png -%%X11%%share/xgnokii/help/en_US/netmon/nm_9110.png -%%X11%%share/xgnokii/help/en_US/netmon/tip.png -%%X11%%share/xgnokii/help/en_US/styl.css -%%X11%%share/xgnokii/help/pl_PL/calendar.html -%%X11%%share/xgnokii/help/pl_PL/contacts.html -%%X11%%share/xgnokii/help/pl_PL/dtmf.html -%%X11%%share/xgnokii/help/pl_PL/index.html -%%X11%%share/xgnokii/help/pl_PL/netmon.html -%%X11%%share/xgnokii/help/pl_PL/netmon/dir0.png -%%X11%%share/xgnokii/help/pl_PL/netmon/dir1.png -%%X11%%share/xgnokii/help/pl_PL/netmon/glowna.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/f2mbus.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/f2mbus2.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_loga.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_net0.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_net1.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_net2.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_net3.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_net4.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_net5.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faq_net6.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/faqkable.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/firmware.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/index.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/net_mon1.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/net_mon2.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/net_mon3.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/net_spis.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/nm2_5110.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/nm_3210.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/nm_5110.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/nm_9110.png -%%X11%%share/xgnokii/help/pl_PL/netmon/gsm/tip.png -%%X11%%share/xgnokii/help/pl_PL/netmon/htm.png -%%X11%%share/xgnokii/help/pl_PL/netmon/index.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/konw.js -%%X11%%share/xgnokii/help/pl_PL/netmon/spis.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/spis_d.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/spis_d2.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/spis_g.htm -%%X11%%share/xgnokii/help/pl_PL/netmon/styl.css -%%X11%%share/xgnokii/help/pl_PL/sms.html -%%X11%%share/xgnokii/help/pl_PL/speeddial.html -%%X11%%share/xgnokii/help/pl_PL/xkeyb.html -%%X11%%@dirrm share/xgnokii/help/en_US/firmware -%%X11%%@dirrm share/xgnokii/help/en_US/netmon -%%X11%%@dirrm share/xgnokii/help/en_US -%%X11%%@dirrm share/xgnokii/help/pl_PL/netmon/gsm -%%X11%%@dirrm share/xgnokii/help/pl_PL/netmon -%%X11%%@dirrm share/xgnokii/help/pl_PL -%%X11%%@dirrm share/xgnokii/help -%%X11%%@dirrm share/xgnokii -%%X11%%@dirrmtry share/applications diff --git a/converters/ical2html/Makefile b/converters/ical2html/Makefile deleted file mode 100644 index 306c02afc..000000000 --- a/converters/ical2html/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# New ports collection makefile for: ical2html -# Date created: Thu Apr 14 18:08:52 BST 2005 -# Whom: keiichi@iijlab.net -# -# $FreeBSD$ -# - -PORTNAME= ical2html -PORTVERSION= 0.4 -PORTREVISION= 3 -CATEGORIES= converters -MASTER_SITES= http://www.w3.org/Tools/Ical2html/ - -MAINTAINER= keiichi@iijlab.net -COMMENT= Manipulation commands for iCalendar files - -LIB_DEPENDS= ical.43:${PORTSDIR}/devel/libical - -GNU_CONFIGURE= yes - -CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include/libical -I${LOCALBASE}/include" \ - LDFLAGS=-L${LOCALBASE}/lib - -.include <bsd.port.mk> diff --git a/converters/ical2html/distinfo b/converters/ical2html/distinfo deleted file mode 100644 index 383afddbc..000000000 --- a/converters/ical2html/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ical2html-0.4.tar.gz) = 5884b2ff2665640bde7f1a296a144e37 -SHA256 (ical2html-0.4.tar.gz) = c74eaef9fb26b5adbec0f1591a9a3d5607b340d538c5d1fdbb67c510c90743f2 -SIZE (ical2html-0.4.tar.gz) = 88490 diff --git a/converters/ical2html/files/patch-Makefile.in b/converters/ical2html/files/patch-Makefile.in deleted file mode 100644 index 5c73b9721..000000000 --- a/converters/ical2html/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Wed Apr 13 12:49:01 2005 -+++ Makefile.in Wed Apr 13 12:48:37 2005 -@@ -89,7 +89,7 @@ - am__quote = @am__quote@ - bindir = @bindir@ - build_alias = @build_alias@ --datadir = @datadir@ -+datadir = @datadir@/ical2html - exec_prefix = @exec_prefix@ - host_alias = @host_alias@ - includedir = @includedir@ diff --git a/converters/ical2html/files/patch-icalmerge.c b/converters/ical2html/files/patch-icalmerge.c deleted file mode 100644 index 6a9f2acd6..000000000 --- a/converters/ical2html/files/patch-icalmerge.c +++ /dev/null @@ -1,11 +0,0 @@ ---- icalmerge.c.orig Thu Jul 31 07:19:06 2003 -+++ icalmerge.c Wed Apr 13 18:08:16 2005 -@@ -27,7 +27,7 @@ - #include "config.h" - - --#define PRODID "-//W3C//NONSGML icalmerge " ## VERSION ## "//EN" -+#define PRODID "-//W3C//NONSGML icalmerge "/**/VERSION/**/"//EN" - - #define ERR_OUT_OF_MEM 1 /* Program exit codes */ - #define ERR_USAGE 2 diff --git a/converters/ical2html/pkg-descr b/converters/ical2html/pkg-descr deleted file mode 100644 index c246f2ff5..000000000 --- a/converters/ical2html/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -ical2html takes an iCalendar file and outputs an HTML file showing one -or more months in the form of tables. Requires libical. diff --git a/converters/ical2html/pkg-plist b/converters/ical2html/pkg-plist deleted file mode 100644 index 4b47e205f..000000000 --- a/converters/ical2html/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -bin/ical2html -bin/icalfilter -bin/icalmerge -share/ical2html/calendar.css -@dirrm share/ical2html diff --git a/converters/pdf2djvu/Makefile b/converters/pdf2djvu/Makefile deleted file mode 100644 index 11c3942dc..000000000 --- a/converters/pdf2djvu/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: pdf2djvu -# Date created: 7 Mar 2008 -# Whom: Denise H. G. <darcsis@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= pdf2djvu -PORTVERSION= 0.4.12 -PORTREVISION= 2 -CATEGORIES= converters -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} -DISTNAME= ${PORTNAME}_${PORTVERSION}${EXTRACT_SUFFIX} - -MAINTAINER= darcsis@gmail.com -COMMENT= Pdf2djvu creates DjVu files from PDF files - -BUILD_DEPENDS= ${LOCALBASE}/include/pstreams/pstream.h:${PORTSDIR}/devel/pstreams -LIB_DEPENDS= poppler.4:${PORTSDIR}/graphics/poppler - -USE_GMAKE= yes -PLIST_FILES= bin/pdf2djvu - -LIB_DEPENDS+= djvulibre.21:${PORTSDIR}/graphics/djvulibre-nox11 - -MAN1= pdf2djvu.1 -MANCOMPRESSED= no - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${MANPREFIX}/man/man1 - -.include <bsd.port.mk> diff --git a/converters/pdf2djvu/distinfo b/converters/pdf2djvu/distinfo deleted file mode 100644 index 174385016..000000000 --- a/converters/pdf2djvu/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pdf2djvu_0.4.12.tar.gz) = af325766614f58e7373c26c6d45f04e4 -SHA256 (pdf2djvu_0.4.12.tar.gz) = 819b1427a74d90ebda8971b670a9f03d6fd5d8a9ae03dbf48c91ebaf5a769a19 -SIZE (pdf2djvu_0.4.12.tar.gz) = 55798 diff --git a/converters/pdf2djvu/pkg-descr b/converters/pdf2djvu/pkg-descr deleted file mode 100644 index a7c51eb6f..000000000 --- a/converters/pdf2djvu/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -pdf2djvu creates DjVu files from PDF files. It's able to extract: -graphics, text layer, hyperlinks, document outline (bookmarks), and -metadata. - -WWW: http://code.google.com/p/pdf2djvu/ diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile deleted file mode 100644 index 47e336ebd..000000000 --- a/databases/evolution-data-server/Makefile +++ /dev/null @@ -1,87 +0,0 @@ -# New ports collection makefile for: evolution-data-server -# Date created: 09 December 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/databases/evolution-data-server/Makefile,v 1.167 2009/03/02 19:08:00 marcus Exp $ -# - -PORTNAME= evolution-data-server -PORTVERSION= 2.26.0 -CATEGORIES= databases gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= The data backends for the Evolution integrated mail/PIM suite - -LIB_DEPENDS= soup-2.4.1:${PORTSDIR}/devel/libsoup \ - ical.43:${PORTSDIR}/devel/libical \ - nss3.1:${PORTSDIR}/security/nss \ - tasn1.4:${PORTSDIR}/security/libtasn1 \ - sqlite3.8:${PORTSDIR}/databases/sqlite3 \ - gnome-keyring.0:${PORTSDIR}/security/gnome-keyring - -USE_BZIP2= yes -USE_GMAKE= yes -USE_BISON= build -USE_GETTEXT= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui ltverhack \ - ltasneededhack -USE_OPENLDAP= yes -USE_AUTOTOOLS= libtool:15 -USE_BDB= 41+ -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static \ - --enable-nss=yes \ - --enable-gnome-keyring=yes \ - --with-openldap=yes \ - --with-libdb=${LOCALBASE} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" - -PLIST_SUB= VERSION="2.26" EVO_VERSION="1.2" - -#OPTIONS= IMAP4 "Enable experimental IMAP4 backend" off -OPTIONS= WEATHER "Enable weather calendar backend" on - -.include <bsd.port.pre.mk> - -.if defined(HEIMDAL_HOME) || defined(WITH_HEIMDAL) -HEIMDAL_HOME?= ${LOCALBASE} -LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal -CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} --with-krb5-includes=${HEIMDAL_HOME}/include -.elif !defined(NO_KERBEROS) -CONFIGURE_ARGS+= --with-krb5=/usr -KRB5_LIB= `/usr/bin/krb5-config gssapi --libs` -.endif - -#.if defined(WITH_IMAP4) || defined(PACKAGE_BUILDING) -#CONFIGURE_ARGS+= --enable-imap4=yes -#PLIST_SUB+= IMAP4="" -#.else -PLIST_SUB+= IMAP4="@comment " -#.endif - -.if defined(WITH_WEATHER) -LIB_DEPENDS+= gweather.1:${PORTSDIR}/net/libgweather -CONFIGURE_ARGS+= --with-weather -PLIST_SUB+= WEATHER="" -.else -CONFIGURE_ARGS+= --without-weather -PLIST_SUB+= WEATHER="@comment " -.endif - -EDS_BDB_MSG= "!!!WARNING!!!: Berkeley Database version is ${BDB_VER}. If this is an upgrade, you may experience problems if you or any other Evolution-data-server users were previously using BDB_VER 41." - -pre-everything:: - @if [ x"${BDB_VER}" != x"41" ]; then \ - ${ECHO_MSG} ${EDS_BDB_MSG} | ${FMT} 75 79 ; \ - fi - -post-patch: - @${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g ; \ - s|heimlibs=".*"|heimlibs="${KRB5_LIB}"|g' \ - ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/databases/evolution-data-server/distinfo b/databases/evolution-data-server/distinfo deleted file mode 100644 index ed4def55e..000000000 --- a/databases/evolution-data-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/evolution-data-server-2.26.0.tar.bz2) = d010845a4ee9604f050403b106c2f416 -SHA256 (gnome2/evolution-data-server-2.26.0.tar.bz2) = 1e15e964355de7db63f9ee1480c0882ede0d44252ed5778fe65b4e163f7945f0 -SIZE (gnome2/evolution-data-server-2.26.0.tar.bz2) = 7344309 diff --git a/databases/evolution-data-server/files/patch-camel_camel-block-file.h b/databases/evolution-data-server/files/patch-camel_camel-block-file.h deleted file mode 100644 index bb155e24a..000000000 --- a/databases/evolution-data-server/files/patch-camel_camel-block-file.h +++ /dev/null @@ -1,10 +0,0 @@ ---- camel/camel-block-file.h.orig Tue May 15 01:48:42 2007 -+++ camel/camel-block-file.h Tue May 15 01:49:00 2007 -@@ -21,6 +21,7 @@ - #ifndef _CAMEL_BLOCK_FILE_H - #define _CAMEL_BLOCK_FILE_H - -+#include <sys/types.h> - #include <camel/camel-object.h> - #include <glib.h> - #include <libedataserver/e-msgport.h> diff --git a/databases/evolution-data-server/files/patch-camel_camel-net-utils.c b/databases/evolution-data-server/files/patch-camel_camel-net-utils.c deleted file mode 100644 index 17bddca39..000000000 --- a/databases/evolution-data-server/files/patch-camel_camel-net-utils.c +++ /dev/null @@ -1,24 +0,0 @@ ---- camel/camel-net-utils.c.orig Tue Dec 21 13:38:52 2004 -+++ camel/camel-net-utils.c Tue Dec 21 13:40:34 2004 -@@ -143,12 +143,21 @@ - case EAI_SERVICE: - return NO_DATA; - break; -+#ifdef EAI_ADDRFAMILY - case EAI_ADDRFAMILY: - return NO_ADDRESS; - break; -+#endif -+#if defined(EAI_NODATA) && EAI_NODATA != EAI_NONAME - case EAI_NODATA: - return NO_DATA; - break; -+#endif -+#ifdef EAI_NOFAMILY -+ case EAI_NOFAMILY: -+ return NO_ADDRESS; -+ break; -+#endif - case EAI_MEMORY: - return ENOMEM; - break; diff --git a/databases/evolution-data-server/files/patch-configure b/databases/evolution-data-server/files/patch-configure deleted file mode 100644 index 3fac0e904..000000000 --- a/databases/evolution-data-server/files/patch-configure +++ /dev/null @@ -1,35 +0,0 @@ ---- configure.orig Mon Jun 18 23:55:48 2007 -+++ configure Mon Jun 18 23:56:20 2007 -@@ -24562,6 +24562,14 @@ case "$host" in - # AC_CACHE_VAL(have_addrinfo, [have_addrinfo=yes]) - # AC_DEFINE(_WIN32_WINNT, 0x501, [To get getaddrinfo etc declarations]) - ;; -+*freebsd*) -+ os_win32=no -+ NO_UNDEFINED='' -+ SOCKET_LIBS='' -+ DL_LIB='' -+ SOFTOKN3_LIB='-lsoftokn3' -+ LIBEXECDIR_IN_SERVER_FILE="$libexecdir" -+ ;; - *) os_win32=no - NO_UNDEFINED='' - SOCKET_LIBS='' -@@ -28651,7 +28659,7 @@ cat >>conftest.$ac_ext <<_ACEOF - #include <sys/socket.h> - #include <netinet/in.h> - #include <netdb.h> -- -+ #include <stdio.h> - - int - main () -@@ -33825,7 +33833,7 @@ idldir='${datadir}'/idl/evolution-data-s - imagesdir='${datadir}'/pixmaps/evolution-data-server - - --serverdir="$libdir/bonobo/servers" -+serverdir="$prefix/libdata/bonobo/servers" - - - extensiondir='${libdir}'/evolution-data-server-$API_VERSION/extensions diff --git a/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in b/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in deleted file mode 100644 index f84db6643..000000000 --- a/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- docs/reference/camel/Makefile.in.orig 2009-01-16 16:16:56.000000000 +0100 -+++ docs/reference/camel/Makefile.in 2009-01-16 16:18:31.000000000 +0100 -@@ -130,7 +130,7 @@ GNOME_PLATFORM_LIBS = @GNOME_PLATFORM_LI - GOBJECT_QUERY = @GOBJECT_QUERY@ - GREP = @GREP@ - HAVE_JW = @HAVE_JW@ --HTML_DIR = $(datadir)/gtk-doc/html -+HTML_DIR = $(prefix)/share/doc - ICONV_CFLAGS = @ICONV_CFLAGS@ - ICONV_LIBS = @ICONV_LIBS@ - IDL_INCLUDES = @IDL_INCLUDES@ diff --git a/databases/evolution-data-server/pkg-descr b/databases/evolution-data-server/pkg-descr deleted file mode 100644 index 076bb0ef7..000000000 --- a/databases/evolution-data-server/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Evolution-data-server provides the various backend components for the -Evolution integrated mail/PIM suite, including the Berkeley database -backend and the libical calendar components. diff --git a/databases/evolution-data-server/pkg-plist b/databases/evolution-data-server/pkg-plist deleted file mode 100644 index d8ef379ca..000000000 --- a/databases/evolution-data-server/pkg-plist +++ /dev/null @@ -1,852 +0,0 @@ -include/evolution-data-server-%%VERSION%%/camel/camel-address.h -include/evolution-data-server-%%VERSION%%/camel/camel-arg.h -include/evolution-data-server-%%VERSION%%/camel/camel-block-file.h -include/evolution-data-server-%%VERSION%%/camel/camel-certdb.h -include/evolution-data-server-%%VERSION%%/camel/camel-charset-map.h -include/evolution-data-server-%%VERSION%%/camel/camel-cipher-context.h -include/evolution-data-server-%%VERSION%%/camel/camel-data-cache.h -include/evolution-data-server-%%VERSION%%/camel/camel-data-wrapper.h -include/evolution-data-server-%%VERSION%%/camel/camel-db.h -include/evolution-data-server-%%VERSION%%/camel/camel-debug.h -include/evolution-data-server-%%VERSION%%/camel/camel-digest-folder.h -include/evolution-data-server-%%VERSION%%/camel/camel-digest-store.h -include/evolution-data-server-%%VERSION%%/camel/camel-digest-summary.h -include/evolution-data-server-%%VERSION%%/camel/camel-disco-diary.h -include/evolution-data-server-%%VERSION%%/camel/camel-disco-folder.h -include/evolution-data-server-%%VERSION%%/camel/camel-disco-store.h -include/evolution-data-server-%%VERSION%%/camel/camel-exception-list.def -include/evolution-data-server-%%VERSION%%/camel/camel-exception.h -include/evolution-data-server-%%VERSION%%/camel/camel-file-utils.h -include/evolution-data-server-%%VERSION%%/camel/camel-filter-driver.h -include/evolution-data-server-%%VERSION%%/camel/camel-filter-search.h -include/evolution-data-server-%%VERSION%%/camel/camel-folder-search.h -include/evolution-data-server-%%VERSION%%/camel/camel-folder-summary.h -include/evolution-data-server-%%VERSION%%/camel/camel-folder-thread.h -include/evolution-data-server-%%VERSION%%/camel/camel-folder.h -include/evolution-data-server-%%VERSION%%/camel/camel-gpg-context.h -include/evolution-data-server-%%VERSION%%/camel/camel-html-parser.h -include/evolution-data-server-%%VERSION%%/camel/camel-http-stream.h -include/evolution-data-server-%%VERSION%%/camel/camel-i18n.h -include/evolution-data-server-%%VERSION%%/camel/camel-iconv.h -include/evolution-data-server-%%VERSION%%/camel/camel-index.h -include/evolution-data-server-%%VERSION%%/camel/camel-internet-address.h -include/evolution-data-server-%%VERSION%%/camel/camel-junk-plugin.h -include/evolution-data-server-%%VERSION%%/camel/camel-list-utils.h -include/evolution-data-server-%%VERSION%%/camel/camel-lock-client.h -include/evolution-data-server-%%VERSION%%/camel/camel-lock-helper.h -include/evolution-data-server-%%VERSION%%/camel/camel-lock.h -include/evolution-data-server-%%VERSION%%/camel/camel-medium.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-basic.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-bestenc.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-canon.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-charset.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-crlf.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-enriched.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-from.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-gzip.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-html.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-index.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-linewrap.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-pgp.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-progress.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-save.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-tohtml.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-windows.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-yenc.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-message.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-parser.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-part-utils.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-part.h -include/evolution-data-server-%%VERSION%%/camel/camel-mime-utils.h -include/evolution-data-server-%%VERSION%%/camel/camel-movemail.h -include/evolution-data-server-%%VERSION%%/camel/camel-msgport.h -include/evolution-data-server-%%VERSION%%/camel/camel-multipart-encrypted.h -include/evolution-data-server-%%VERSION%%/camel/camel-multipart-signed.h -include/evolution-data-server-%%VERSION%%/camel/camel-multipart.h -include/evolution-data-server-%%VERSION%%/camel/camel-net-utils.h -include/evolution-data-server-%%VERSION%%/camel/camel-news-address.h -include/evolution-data-server-%%VERSION%%/camel/camel-nntp-address.h -include/evolution-data-server-%%VERSION%%/camel/camel-object.h -include/evolution-data-server-%%VERSION%%/camel/camel-offline-folder.h -include/evolution-data-server-%%VERSION%%/camel/camel-offline-journal.h -include/evolution-data-server-%%VERSION%%/camel/camel-offline-store.h -include/evolution-data-server-%%VERSION%%/camel/camel-operation.h -include/evolution-data-server-%%VERSION%%/camel/camel-partition-table.h -include/evolution-data-server-%%VERSION%%/camel/camel-process.h -include/evolution-data-server-%%VERSION%%/camel/camel-provider.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-anonymous.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-cram-md5.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-digest-md5.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-gssapi.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-kerberos4.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-login.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-ntlm.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-plain.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl-popb4smtp.h -include/evolution-data-server-%%VERSION%%/camel/camel-sasl.h -include/evolution-data-server-%%VERSION%%/camel/camel-search-private.h -include/evolution-data-server-%%VERSION%%/camel/camel-search-sql-sexp.h -include/evolution-data-server-%%VERSION%%/camel/camel-search-sql.h -include/evolution-data-server-%%VERSION%%/camel/camel-seekable-stream.h -include/evolution-data-server-%%VERSION%%/camel/camel-seekable-substream.h -include/evolution-data-server-%%VERSION%%/camel/camel-service.h -include/evolution-data-server-%%VERSION%%/camel/camel-session.h -include/evolution-data-server-%%VERSION%%/camel/camel-smime-context.h -include/evolution-data-server-%%VERSION%%/camel/camel-store-summary.h -include/evolution-data-server-%%VERSION%%/camel/camel-store.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream-buffer.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream-filter.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream-fs.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream-mem.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream-null.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream-process.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream-vfs.h -include/evolution-data-server-%%VERSION%%/camel/camel-stream.h -include/evolution-data-server-%%VERSION%%/camel/camel-string-utils.h -include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream-raw.h -include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream-ssl.h -include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream.h -include/evolution-data-server-%%VERSION%%/camel/camel-text-index.h -include/evolution-data-server-%%VERSION%%/camel/camel-transport.h -include/evolution-data-server-%%VERSION%%/camel/camel-trie.h -include/evolution-data-server-%%VERSION%%/camel/camel-types.h -include/evolution-data-server-%%VERSION%%/camel/camel-uid-cache.h -include/evolution-data-server-%%VERSION%%/camel/camel-url-scanner.h -include/evolution-data-server-%%VERSION%%/camel/camel-url.h -include/evolution-data-server-%%VERSION%%/camel/camel-utf8.h -include/evolution-data-server-%%VERSION%%/camel/camel-vee-folder.h -include/evolution-data-server-%%VERSION%%/camel/camel-vee-store.h -include/evolution-data-server-%%VERSION%%/camel/camel-vee-summary.h -include/evolution-data-server-%%VERSION%%/camel/camel-vtrash-folder.h -include/evolution-data-server-%%VERSION%%/camel/camel.h -include/evolution-data-server-%%VERSION%%/exchange/e-folder-exchange.h -include/evolution-data-server-%%VERSION%%/exchange/e-folder.h -include/evolution-data-server-%%VERSION%%/exchange/e-storage.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-autoconfig.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-context.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-freebusy.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-global-catalog-ldap.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-global-catalog.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-http-utils.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-marshal.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-operation.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-properties.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-propnames.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-restriction.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-result.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-security-descriptor.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-sid.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-types.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-uri.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-utils.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-validate.h -include/evolution-data-server-%%VERSION%%/exchange/e2k-xml-utils.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-account.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-constants.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-esource.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-folder-size.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy-foreign.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy-somedav.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy-webdav.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-oof.h -include/evolution-data-server-%%VERSION%%/exchange/exchange-types.h -include/evolution-data-server-%%VERSION%%/exchange/mapi.h -include/evolution-data-server-%%VERSION%%/google/libgdata-google/gdata-google-service.h -include/evolution-data-server-%%VERSION%%/google/libgdata/gdata-entry.h -include/evolution-data-server-%%VERSION%%/google/libgdata/gdata-feed.h -include/evolution-data-server-%%VERSION%%/google/libgdata/gdata-service-iface.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-connection.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-container.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-filter.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-item.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-message.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-proxy.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-recur-utils.h -include/evolution-data-server-%%VERSION%%/groupwise/e-gw-sendoptions.h -include/evolution-data-server-%%VERSION%%/groupwise/soup-soap-message.h -include/evolution-data-server-%%VERSION%%/groupwise/soup-soap-response.h -include/evolution-data-server-%%VERSION%%/libebackend/e-data-server-module.h -include/evolution-data-server-%%VERSION%%/libebackend/e-db3-utils.h -include/evolution-data-server-%%VERSION%%/libebackend/e-dbhash.h -include/evolution-data-server-%%VERSION%%/libebackend/e-file-cache.h -include/evolution-data-server-%%VERSION%%/libebook/e-address-western.h -include/evolution-data-server-%%VERSION%%/libebook/e-book-query.h -include/evolution-data-server-%%VERSION%%/libebook/e-book-types.h -include/evolution-data-server-%%VERSION%%/libebook/e-book-view.h -include/evolution-data-server-%%VERSION%%/libebook/e-book.h -include/evolution-data-server-%%VERSION%%/libebook/e-contact.h -include/evolution-data-server-%%VERSION%%/libebook/e-destination.h -include/evolution-data-server-%%VERSION%%/libebook/e-name-western.h -include/evolution-data-server-%%VERSION%%/libebook/e-vcard.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal-check-timezones.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal-component.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal-recur.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal-time-util.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal-types.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal-util.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal-view.h -include/evolution-data-server-%%VERSION%%/libecal/e-cal.h -include/evolution-data-server-%%VERSION%%/libedata-book/Evolution-DataServer-Addressbook.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-cache.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-db-cache.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-factory.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-sexp.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-summary.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-sync.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-factory.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-types.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-view.h -include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book.h -include/evolution-data-server-%%VERSION%%/libedata-cal/Evolution-DataServer-Calendar.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-cache.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-factory.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-loader-factory.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sexp.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sync.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-util.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-common.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-factory.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-view.h -include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-account-list.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-account.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-categories.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-component-listener.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-data-server-util.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-flag.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-iconv.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-iterator.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-list-iterator.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-list.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-memory.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-msgport.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-proxy.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-sexp.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-source-group.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-source-list.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-source.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-time-utils.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-trie.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-uid.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-url.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-hash-utils.h -include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-utils.h -include/evolution-data-server-%%VERSION%%/libedataserver/eds-version.h -include/evolution-data-server-%%VERSION%%/libedataserver/md5-utils.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-book-auth-util.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-category-completion.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-categories-dialog.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-cell-renderer-color.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-contact-store.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-destination-store.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-dialog.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-entry.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-list.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-model.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-passwords.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-combo-box.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-option-menu.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-selector-dialog.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-selector.h -include/evolution-data-server-%%VERSION%%/libedataserverui/e-tree-model-generator.h -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.urls -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.urls -%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.a -%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.la -%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.so -%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.urls -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.urls -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.urls -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.urls -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.urls -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.a -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.la -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.so -lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.urls -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgoogle.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgoogle.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgoogle.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.so -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.a -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.la -lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.so -%%WEATHER%%lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.a -%%WEATHER%%lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.la -%%WEATHER%%lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.so -lib/libcamel-%%EVO_VERSION%%.a -lib/libcamel-%%EVO_VERSION%%.la -lib/libcamel-%%EVO_VERSION%%.so -lib/libcamel-%%EVO_VERSION%%.so.14 -lib/libcamel-provider-%%EVO_VERSION%%.a -lib/libcamel-provider-%%EVO_VERSION%%.la -lib/libcamel-provider-%%EVO_VERSION%%.so -lib/libcamel-provider-%%EVO_VERSION%%.so.14 -lib/libebackend-%%EVO_VERSION%%.a -lib/libebackend-%%EVO_VERSION%%.la -lib/libebackend-%%EVO_VERSION%%.so -lib/libebackend-%%EVO_VERSION%%.so.0 -lib/libebook-%%EVO_VERSION%%.a -lib/libebook-%%EVO_VERSION%%.la -lib/libebook-%%EVO_VERSION%%.so -lib/libebook-%%EVO_VERSION%%.so.9 -lib/libecal-%%EVO_VERSION%%.a -lib/libecal-%%EVO_VERSION%%.la -lib/libecal-%%EVO_VERSION%%.so -lib/libecal-%%EVO_VERSION%%.so.7 -lib/libedata-book-%%EVO_VERSION%%.a -lib/libedata-book-%%EVO_VERSION%%.la -lib/libedata-book-%%EVO_VERSION%%.so -lib/libedata-book-%%EVO_VERSION%%.so.2 -lib/libedata-cal-%%EVO_VERSION%%.a -lib/libedata-cal-%%EVO_VERSION%%.la -lib/libedata-cal-%%EVO_VERSION%%.so -lib/libedata-cal-%%EVO_VERSION%%.so.6 -lib/libedataserver-%%EVO_VERSION%%.a -lib/libedataserver-%%EVO_VERSION%%.la -lib/libedataserver-%%EVO_VERSION%%.so -lib/libedataserver-%%EVO_VERSION%%.so.11 -lib/libedataserverui-%%EVO_VERSION%%.a -lib/libedataserverui-%%EVO_VERSION%%.la -lib/libedataserverui-%%EVO_VERSION%%.so -lib/libedataserverui-%%EVO_VERSION%%.so.8 -lib/libegroupwise-%%EVO_VERSION%%.a -lib/libegroupwise-%%EVO_VERSION%%.la -lib/libegroupwise-%%EVO_VERSION%%.so -lib/libegroupwise-%%EVO_VERSION%%.so.13 -lib/libexchange-storage-%%EVO_VERSION%%.a -lib/libexchange-storage-%%EVO_VERSION%%.la -lib/libexchange-storage-%%EVO_VERSION%%.so -lib/libexchange-storage-%%EVO_VERSION%%.so.3 -lib/libgdata-%%EVO_VERSION%%.a -lib/libgdata-%%EVO_VERSION%%.la -lib/libgdata-%%EVO_VERSION%%.so -lib/libgdata-%%EVO_VERSION%%.so.1 -lib/libgdata-google-%%EVO_VERSION%%.a -lib/libgdata-google-%%EVO_VERSION%%.la -lib/libgdata-google-%%EVO_VERSION%%.so -lib/libgdata-google-%%EVO_VERSION%%.so.1 -libdata/bonobo/servers/GNOME_Evolution_DataServer_%%EVO_VERSION%%.server -libdata/pkgconfig/camel-%%EVO_VERSION%%.pc -libdata/pkgconfig/camel-provider-%%EVO_VERSION%%.pc -libdata/pkgconfig/evolution-data-server-%%EVO_VERSION%%.pc -libdata/pkgconfig/libebackend-%%EVO_VERSION%%.pc -libdata/pkgconfig/libebook-%%EVO_VERSION%%.pc -libdata/pkgconfig/libecal-%%EVO_VERSION%%.pc -libdata/pkgconfig/libedata-book-%%EVO_VERSION%%.pc -libdata/pkgconfig/libedata-cal-%%EVO_VERSION%%.pc -libdata/pkgconfig/libedataserver-%%EVO_VERSION%%.pc -libdata/pkgconfig/libedataserverui-%%EVO_VERSION%%.pc -libdata/pkgconfig/libegroupwise-%%EVO_VERSION%%.pc -libdata/pkgconfig/libexchange-storage-%%EVO_VERSION%%.pc -libdata/pkgconfig/libgdata-%%EVO_VERSION%%.pc -libdata/pkgconfig/libgdata-google-%%EVO_VERSION%%.pc -libexec/camel-index-control-%%EVO_VERSION%% -libexec/camel-lock-helper-%%EVO_VERSION%% -libexec/evolution-data-server-%%VERSION%% -share/doc/camel/Addresses.html -share/doc/camel/ClassTree.html -share/doc/camel/Crypto.html -share/doc/camel/Deprecated.html -share/doc/camel/Filters.html -share/doc/camel/Folders.html -share/doc/camel/Fundamentals.html -share/doc/camel/MIME.html -share/doc/camel/SearchFolders.html -share/doc/camel/Services.html -share/doc/camel/Storage.html -share/doc/camel/StreamFilters.html -share/doc/camel/Streams.html -share/doc/camel/Utilities.html -share/doc/camel/camel-CamelAddress.html -share/doc/camel/camel-CamelCertDB.html -share/doc/camel/camel-CamelCipherContext.html -share/doc/camel/camel-CamelDB.html -share/doc/camel/camel-CamelDataCache.html -share/doc/camel/camel-CamelDataWrapper.html -share/doc/camel/camel-CamelFilterDriver.html -share/doc/camel/camel-CamelFolder.html -share/doc/camel/camel-CamelFolderSearch.html -share/doc/camel/camel-CamelFolderSummary.html -share/doc/camel/camel-CamelGpgContext.html -share/doc/camel/camel-CamelHttpStream.html -share/doc/camel/camel-CamelIndex.html -share/doc/camel/camel-CamelInternetAddress.html -share/doc/camel/camel-CamelKeyFile.html -share/doc/camel/camel-CamelKeyTable.html -share/doc/camel/camel-CamelMedium.html -share/doc/camel/camel-CamelMimeFilter.html -share/doc/camel/camel-CamelMimeFilterBasic.html -share/doc/camel/camel-CamelMimeFilterBestenc.html -share/doc/camel/camel-CamelMimeFilterCRLF.html -share/doc/camel/camel-CamelMimeFilterCanon.html -share/doc/camel/camel-CamelMimeFilterCharset.html -share/doc/camel/camel-CamelMimeFilterEnriched.html -share/doc/camel/camel-CamelMimeFilterFrom.html -share/doc/camel/camel-CamelMimeFilterGZip.html -share/doc/camel/camel-CamelMimeFilterHTML.html -share/doc/camel/camel-CamelMimeFilterIndex.html -share/doc/camel/camel-CamelMimeFilterLinewrap.html -share/doc/camel/camel-CamelMimeFilterPgp.html -share/doc/camel/camel-CamelMimeFilterProgress.html -share/doc/camel/camel-CamelMimeFilterSave.html -share/doc/camel/camel-CamelMimeFilterToHTML.html -share/doc/camel/camel-CamelMimeFilterWindows.html -share/doc/camel/camel-CamelMimeFilterYenc.html -share/doc/camel/camel-CamelMimeMessage.html -share/doc/camel/camel-CamelMimeParser.html -share/doc/camel/camel-CamelMimePart.html -share/doc/camel/camel-CamelMsgPort.html -share/doc/camel/camel-CamelMultipart.html -share/doc/camel/camel-CamelMultipartEncrypted.html -share/doc/camel/camel-CamelMultipartSigned.html -share/doc/camel/camel-CamelNNTPAddress.html -share/doc/camel/camel-CamelNewsAddress.html -share/doc/camel/camel-CamelObject.html -share/doc/camel/camel-CamelOfflineFolder.html -share/doc/camel/camel-CamelOfflineJournal.html -share/doc/camel/camel-CamelOfflineStore.html -share/doc/camel/camel-CamelSMIMEContext.html -share/doc/camel/camel-CamelSasl.html -share/doc/camel/camel-CamelSaslAnonymous.html -share/doc/camel/camel-CamelSaslCramMd5.html -share/doc/camel/camel-CamelSaslDigestMd5.html -share/doc/camel/camel-CamelSaslGssapi.html -share/doc/camel/camel-CamelSaslKerberos4.html -share/doc/camel/camel-CamelSaslLogin.html -share/doc/camel/camel-CamelSaslNTLM.html -share/doc/camel/camel-CamelSaslPOPB4SMTP.html -share/doc/camel/camel-CamelSaslPlain.html -share/doc/camel/camel-CamelSeekableStream.html -share/doc/camel/camel-CamelSeekableSubstream.html -share/doc/camel/camel-CamelService.html -share/doc/camel/camel-CamelSession.html -share/doc/camel/camel-CamelStore.html -share/doc/camel/camel-CamelStoreSummary.html -share/doc/camel/camel-CamelStream.html -share/doc/camel/camel-CamelStreamBuffer.html -share/doc/camel/camel-CamelStreamFilter.html -share/doc/camel/camel-CamelStreamFs.html -share/doc/camel/camel-CamelStreamMem.html -share/doc/camel/camel-CamelStreamNull.html -share/doc/camel/camel-CamelStreamProcess.html -share/doc/camel/camel-CamelStreamVFS.html -share/doc/camel/camel-CamelTcpStream.html -share/doc/camel/camel-CamelTcpStreamRaw.html -share/doc/camel/camel-CamelTcpStreamSSL.html -share/doc/camel/camel-CamelTextIndexName.html -share/doc/camel/camel-CamelTransport.html -share/doc/camel/camel-CamelVTrashFolder.html -share/doc/camel/camel-CamelVeeFolder.html -share/doc/camel/camel-CamelVeeStore.html -share/doc/camel/camel-CamelVeeSummary.html -share/doc/camel/camel-camel-arg.html -share/doc/camel/camel-camel-charset-map.html -share/doc/camel/camel-camel-debug.html -share/doc/camel/camel-camel-exception.html -share/doc/camel/camel-camel-file-utils.html -share/doc/camel/camel-camel-filter-search.html -share/doc/camel/camel-camel-folder-thread.html -share/doc/camel/camel-camel-i18n.html -share/doc/camel/camel-camel-iconv.html -share/doc/camel/camel-camel-junk-plugin.html -share/doc/camel/camel-camel-list-utils.html -share/doc/camel/camel-camel-lock-client.html -share/doc/camel/camel-camel-lock.html -share/doc/camel/camel-camel-mime-utils.html -share/doc/camel/camel-camel-movemail.html -share/doc/camel/camel-camel-net-utils.html -share/doc/camel/camel-camel-operation.html -share/doc/camel/camel-camel-process.html -share/doc/camel/camel-camel-provider.html -share/doc/camel/camel-camel-search-sql.html -share/doc/camel/camel-camel-search-sql-sexp.html -share/doc/camel/camel-camel-string-utils.html -share/doc/camel/camel-camel-trie.html -share/doc/camel/camel-camel-uid-cache.html -share/doc/camel/camel-camel-url-scanner.html -share/doc/camel/camel-camel-url.html -share/doc/camel/camel-camel-utf8.html -share/doc/camel/camel.devhelp -share/doc/camel/camel.devhelp2 -share/doc/camel/classes.html -share/doc/camel/home.png -share/doc/camel/index.html -share/doc/camel/index.sgml -share/doc/camel/ix01.html -share/doc/camel/ix02.html -share/doc/camel/left.png -share/doc/camel/right.png -share/doc/camel/style.css -share/doc/camel/up.png -share/doc/libebackend/EFileCache.html -share/doc/libebackend/ch01.html -share/doc/libebackend/home.png -share/doc/libebackend/index.html -share/doc/libebackend/index.sgml -share/doc/libebackend/left.png -share/doc/libebackend/libebackend-e-data-server-module.html -share/doc/libebackend/libebackend-e-db3-utils.html -share/doc/libebackend/libebackend-e-dbhash.html -share/doc/libebackend/libebackend.devhelp -share/doc/libebackend/libebackend.devhelp2 -share/doc/libebackend/right.png -share/doc/libebackend/style.css -share/doc/libebackend/up.png -share/doc/libebook/EBook.html -share/doc/libebook/EBookListener.html -share/doc/libebook/EBookView.html -share/doc/libebook/EBookViewListener.html -share/doc/libebook/EContact.html -share/doc/libebook/EDestination.html -share/doc/libebook/EVCard.html -share/doc/libebook/ch01.html -share/doc/libebook/home.png -share/doc/libebook/index.html -share/doc/libebook/index.sgml -share/doc/libebook/ix01.html -share/doc/libebook/left.png -share/doc/libebook/libebook-EAddressWestern.html -share/doc/libebook/libebook-ENameWestern.html -share/doc/libebook/libebook-e-book-query.html -share/doc/libebook/libebook-e-book-types.html -share/doc/libebook/libebook.devhelp -share/doc/libebook/libebook.devhelp2 -share/doc/libebook/right.png -share/doc/libebook/style.css -share/doc/libebook/up.png -share/doc/libecal/ECal.html -share/doc/libecal/ECalComponent.html -share/doc/libecal/ECalListener.html -share/doc/libecal/ECalView.html -share/doc/libecal/ECalViewListener.html -share/doc/libecal/ch01.html -share/doc/libecal/home.png -share/doc/libecal/index.html -share/doc/libecal/index.sgml -share/doc/libecal/ix01.html -share/doc/libecal/left.png -share/doc/libecal/libecal-e-cal-check-timezones.html -share/doc/libecal/libecal-e-cal-recur.html -share/doc/libecal/libecal-e-cal-time-util.html -share/doc/libecal/libecal-e-cal-types.html -share/doc/libecal/libecal-e-cal-util.html -share/doc/libecal/libecal.devhelp -share/doc/libecal/libecal.devhelp2 -share/doc/libecal/right.png -share/doc/libecal/style.css -share/doc/libecal/up.png -share/doc/libedata-book/EBookBackend.html -share/doc/libedata-book/EBookBackendCache.html -share/doc/libedata-book/EBookBackendFactory.html -share/doc/libedata-book/EBookBackendSExp.html -share/doc/libedata-book/EBookBackendSummary.html -share/doc/libedata-book/EBookBackendSync.html -share/doc/libedata-book/EDataBook.html -share/doc/libedata-book/EDataBookView.html -share/doc/libedata-book/ch01.html -share/doc/libedata-book/home.png -share/doc/libedata-book/index.html -share/doc/libedata-book/index.sgml -share/doc/libedata-book/ix01.html -share/doc/libedata-book/left.png -share/doc/libedata-book/libedata-book-EDataBookFactory.html -share/doc/libedata-book/libedata-book-e-book-backend-db-cache.html -share/doc/libedata-book/libedata-book-ximian-vcard.html -share/doc/libedata-book/libedata-book.devhelp -share/doc/libedata-book/libedata-book.devhelp2 -share/doc/libedata-book/right.png -share/doc/libedata-book/style.css -share/doc/libedata-book/up.png -share/doc/libedata-cal/ECalBackend.html -share/doc/libedata-cal/ECalBackendCache.html -share/doc/libedata-cal/ECalBackendFactory.html -share/doc/libedata-cal/ECalBackendSExp.html -share/doc/libedata-cal/ECalBackendSync.html -share/doc/libedata-cal/EDataCal.html -share/doc/libedata-cal/EDataCalFactory.html -share/doc/libedata-cal/EDataCalView.html -share/doc/libedata-cal/ch01.html -share/doc/libedata-cal/home.png -share/doc/libedata-cal/index.html -share/doc/libedata-cal/index.sgml -share/doc/libedata-cal/ix01.html -share/doc/libedata-cal/left.png -share/doc/libedata-cal/libedata-cal-e-cal-backend-util.html -share/doc/libedata-cal/libedata-cal.devhelp -share/doc/libedata-cal/libedata-cal.devhelp2 -share/doc/libedata-cal/right.png -share/doc/libedata-cal/style.css -share/doc/libedata-cal/up.png -share/doc/libedataserver/EAccount.html -share/doc/libedataserver/EAccountList.html -share/doc/libedataserver/EComponentListener.html -share/doc/libedataserver/EIterator.html -share/doc/libedataserver/EList.html -share/doc/libedataserver/EListIterator.html -share/doc/libedataserver/ESource.html -share/doc/libedataserver/ESourceGroup.html -share/doc/libedataserver/ESourceList.html -share/doc/libedataserver/ch01.html -share/doc/libedataserver/home.png -share/doc/libedataserver/index.html -share/doc/libedataserver/index.sgml -share/doc/libedataserver/ix01.html -share/doc/libedataserver/left.png -share/doc/libedataserver/libedataserver-EFlag.html -share/doc/libedataserver/libedataserver-EProxy.html -share/doc/libedataserver/libedataserver-ESExp.html -share/doc/libedataserver/libedataserver-Version-Information.html -share/doc/libedataserver/libedataserver-e-categories.html -share/doc/libedataserver/libedataserver-e-iconv.html -share/doc/libedataserver/libedataserver-e-memory.html -share/doc/libedataserver/libedataserver-e-msgport.html -share/doc/libedataserver/libedataserver-e-time-utils.html -share/doc/libedataserver/libedataserver-e-trie.html -share/doc/libedataserver/libedataserver-e-uid.html -share/doc/libedataserver/libedataserver-e-url.html -share/doc/libedataserver/libedataserver-e-util.html -share/doc/libedataserver/libedataserver-e-xml-hash-utils.html -share/doc/libedataserver/libedataserver-md5-utils.html -share/doc/libedataserver/libedataserver.devhelp -share/doc/libedataserver/libedataserver.devhelp2 -share/doc/libedataserver/right.png -share/doc/libedataserver/style.css -share/doc/libedataserver/up.png -share/doc/libedataserverui/ECategoriesDialog.html -share/doc/libedataserverui/EContactStore.html -share/doc/libedataserverui/EDestinationStore.html -share/doc/libedataserverui/ENameSelector.html -share/doc/libedataserverui/ENameSelectorDialog.html -share/doc/libedataserverui/ENameSelectorEntry.html -share/doc/libedataserverui/ENameSelectorList.html -share/doc/libedataserverui/ENameSelectorModel.html -share/doc/libedataserverui/ESourceComboBox.html -share/doc/libedataserverui/ESourceOptionMenu.html -share/doc/libedataserverui/ESourceSelector.html -share/doc/libedataserverui/ESourceSelectorDialog.html -share/doc/libedataserverui/ETreeModelGenerator.html -share/doc/libedataserverui/ch01.html -share/doc/libedataserverui/home.png -share/doc/libedataserverui/index.html -share/doc/libedataserverui/index.sgml -share/doc/libedataserverui/ix01.html -share/doc/libedataserverui/left.png -share/doc/libedataserverui/libedataserverui-ECategoryCompletion.html -share/doc/libedataserverui/libedataserverui-ECellRendererColor.html -share/doc/libedataserverui/libedataserverui-e-book-auth-util.html -share/doc/libedataserverui/libedataserverui-e-data-server-ui-marshal.html -share/doc/libedataserverui/libedataserverui-e-passwords.html -share/doc/libedataserverui/libedataserverui.devhelp -share/doc/libedataserverui/libedataserverui.devhelp2 -share/doc/libedataserverui/right.png -share/doc/libedataserverui/style.css -share/doc/libedataserverui/up.png -share/evolution-data-server-%%VERSION%%/evolutionperson.schema -share/evolution-data-server-%%VERSION%%/glade/e-categories-dialog.glade -share/evolution-data-server-%%VERSION%%/glade/e-name-selector-dialog.glade -%%WEATHER%%share/evolution-data-server-%%VERSION%%/weather/Locations.xml -share/idl/evolution-data-server-%%EVO_VERSION%%/Evolution-DataServer-Addressbook.idl -share/idl/evolution-data-server-%%EVO_VERSION%%/Evolution-DataServer-Calendar.idl -share/idl/evolution-data-server-%%EVO_VERSION%%/Evolution-DataServer.idl -share/locale/am/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ar/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/as/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/az/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/be/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/bg/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/bn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/bn_IN/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/bs/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ca/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/cs/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/cy/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/da/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/de/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/dz/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/el/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/en_AU/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/en_CA/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/en_GB/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/es/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/et/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/eu/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/fa/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/fi/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/fr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ga/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/gl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/gu/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/he/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/hi/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/hr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/hu/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/id/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/is/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/it/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ja/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ka/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/kn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ko/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ku/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/lt/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/lv/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/mk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ml/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/mn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/mr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ms/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/nb/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ne/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/nl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/nn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/oc/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/or/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/pa/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/pl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/pt/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/pt_BR/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ro/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ru/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/rw/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/si/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/sk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/sl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/sq/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/sr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/sr@latin/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/sv/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/ta/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/te/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/th/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/tr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/uk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/vi/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/wa/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/xh/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/zh_CN/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/zh_HK/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/locale/zh_TW/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo -share/pixmaps/evolution-data-server/category_birthday_16.png -share/pixmaps/evolution-data-server/category_business_16.png -share/pixmaps/evolution-data-server/category_favorites_16.png -share/pixmaps/evolution-data-server/category_gifts_16.png -share/pixmaps/evolution-data-server/category_goals_16.png -share/pixmaps/evolution-data-server/category_holiday-cards_16.png -share/pixmaps/evolution-data-server/category_holiday_16.png -share/pixmaps/evolution-data-server/category_hot-contacts_16.png -share/pixmaps/evolution-data-server/category_ideas_16.png -share/pixmaps/evolution-data-server/category_international_16.png -share/pixmaps/evolution-data-server/category_key-customer_16.png -share/pixmaps/evolution-data-server/category_miscellaneous_16.png -share/pixmaps/evolution-data-server/category_personal_16.png -share/pixmaps/evolution-data-server/category_phonecalls_16.png -share/pixmaps/evolution-data-server/category_status_16.png -share/pixmaps/evolution-data-server/category_strategies_16.png -share/pixmaps/evolution-data-server/category_suppliers_16.png -share/pixmaps/evolution-data-server/category_time-and-expenses_16.png -@dirrm share/pixmaps/evolution-data-server -@dirrm share/idl/evolution-data-server-%%EVO_VERSION%% -%%WEATHER%%@dirrm share/evolution-data-server-%%VERSION%%/weather -@dirrm share/evolution-data-server-%%VERSION%%/glade -@dirrm share/evolution-data-server-%%VERSION%% -@dirrm share/doc/libedataserverui -@dirrm share/doc/libedataserver -@dirrm share/doc/libedata-cal -@dirrm share/doc/libedata-book -@dirrm share/doc/libecal -@dirrm share/doc/libebook -@dirrm share/doc/libebackend -@dirrm share/doc/camel -@dirrm lib/evolution-data-server-%%EVO_VERSION%%/extensions -@dirrm lib/evolution-data-server-%%EVO_VERSION%%/camel-providers -@dirrm lib/evolution-data-server-%%EVO_VERSION%% -@dirrm include/evolution-data-server-%%VERSION%%/libedataserverui -@dirrm include/evolution-data-server-%%VERSION%%/libedataserver -@dirrm include/evolution-data-server-%%VERSION%%/libedata-cal -@dirrm include/evolution-data-server-%%VERSION%%/libedata-book -@dirrm include/evolution-data-server-%%VERSION%%/libecal -@dirrm include/evolution-data-server-%%VERSION%%/libebook -@dirrm include/evolution-data-server-%%VERSION%%/libebackend -@dirrm include/evolution-data-server-%%VERSION%%/groupwise -@dirrm include/evolution-data-server-%%VERSION%%/google/libgdata-google -@dirrm include/evolution-data-server-%%VERSION%%/google/libgdata -@dirrm include/evolution-data-server-%%VERSION%%/google -@dirrm include/evolution-data-server-%%VERSION%%/exchange -@dirrm include/evolution-data-server-%%VERSION%%/camel -@dirrm include/evolution-data-server-%%VERSION%% -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/databases/glom/Makefile b/databases/glom/Makefile deleted file mode 100644 index c8c614006..000000000 --- a/databases/glom/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: glom -# Date created: 24 April, 2005 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/databases/glom/Makefile,v 1.23 2009/03/10 19:14:49 kwm Exp $ -# - -PORTNAME= glom -PORTVERSION= 1.10.0 -CATEGORIES= databases gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= kwm@FreeBSD.org -COMMENT= GNOME database designer and user interface - -LIB_DEPENDS= bakery-2.6:${PORTSDIR}/x11-toolkits/bakery \ - gdamm-4.0.10:${PORTSDIR}/databases/libgdamm \ - gtksourceviewmm-2.0.2:${PORTSDIR}/x11-toolkits/libgtksourceviewmm \ - goocanvasmm-0.1.4:${PORTSDIR}/graphics/goocanvasmm -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes \ - ${LOCALBASE}/libdata/pkgconfig/libgda-postgres-4.0.pc:${PORTSDIR}/databases/libgda4-postgresql -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes \ - ${LOCALBASE}/libdata/pkgconfig/libgda-postgres-4.0.pc:${PORTSDIR}/databases/libgda4-postgresql - -USE_BZIP2= yes -USE_PYTHON= yes -GNU_CONFIGURE= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomedocutils gnomehack gnomeprefix pygnomeextras -USE_LDCONFIG= yes -USE_PGSQL= yes -INSTALLS_OMF= yes -CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-postgres-utils=${LOCALBASE}/bin -INSTALLS_ICONS= yes - -#OPTIONS= SELF_HOSTING "Host the database locally" on - -.include <bsd.port.pre.mk> - -#.if defined(WITH_SELF_HOSTING) -# Note: USE_PGSQL has already been set above. -BUILD_DEPENDS+= postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server -RUN_DEPENDS+= postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server -#.else -#CONFIGURE_ARGS+=--enable-client-only -#.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-update-mime-database|true|g' \ - ${WRKSRC}/Makefile.in - -post-install: - @-update-mime-database ${PREFIX}/share/mime - -.include <bsd.port.post.mk> diff --git a/databases/glom/distinfo b/databases/glom/distinfo deleted file mode 100644 index 522bfdf6e..000000000 --- a/databases/glom/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/glom-1.10.0.tar.bz2) = 8c46a5e087771a0bc45c71d7dd74ec7f -SHA256 (gnome2/glom-1.10.0.tar.bz2) = a0e03a087cec62ccf440923d44f2f99f83607502bf84aef34dc50c41989fca2a -SIZE (gnome2/glom-1.10.0.tar.bz2) = 3246293 diff --git a/databases/glom/files/patch-glom_libglom_connectionpool.cc b/databases/glom/files/patch-glom_libglom_connectionpool.cc deleted file mode 100644 index b1f9b2c50..000000000 --- a/databases/glom/files/patch-glom_libglom_connectionpool.cc +++ /dev/null @@ -1,14 +0,0 @@ ---- glom/libglom/connectionpool.cc.orig 2008-04-29 18:10:54.000000000 +0200 -+++ glom/libglom/connectionpool.cc 2008-08-08 02:39:55.000000000 +0200 -@@ -789,7 +789,11 @@ bool ConnectionPool::directory_exists_ur - // TODO: This is probably mingw specific - static __p_sig_fn_t previous_sig_handler = SIG_DFL; - #else -+# ifdef __FreeBSD__ -+static __sighandler_t *previous_sig_handler = SIG_DFL; /* Arbitrary default */ -+# else - static sighandler_t previous_sig_handler = SIG_DFL; /* Arbitrary default */ -+# endif - #endif - - /* This is a Linux/Unix signal handler, diff --git a/databases/glom/files/patch-glom_main.cc b/databases/glom/files/patch-glom_main.cc deleted file mode 100644 index c9143bb8b..000000000 --- a/databases/glom/files/patch-glom_main.cc +++ /dev/null @@ -1,32 +0,0 @@ ---- glom/main.cc.orig 2009-03-16 14:53:55.000000000 +0100 -+++ glom/main.cc 2009-03-17 16:22:01.000000000 +0100 -@@ -100,18 +100,19 @@ OptionGroup::OptionGroup() - - } //namespace Glom - --#ifndef G_OS_WIN32 -+#ifdef __linux - extern "C" void __libc_freeres(void); - #endif - - int - main(int argc, char* argv[]) - { --#ifndef G_OS_WIN32 -+#ifdef __linux - //Force some cleanup at exit, - //to help valgrind to detect memory leaks: - atexit(__libc_freeres); - #else -+# ifdef G_OS_WIN32 - WSADATA data; - int errcode = WSAStartup(MAKEWORD(2, 0), &data); - if(errcode != 0) -@@ -123,6 +124,7 @@ main(int argc, char* argv[]) - gchar* installation_dir_c = g_win32_get_package_installation_directory_of_module(NULL); - const std::string installation_dir(installation_dir_c); - g_free(installation_dir_c); -+# endif - #endif - - // TODO: I am not sure why, but this does not work. PYTHONPATH is set diff --git a/databases/glom/pkg-descr b/databases/glom/pkg-descr deleted file mode 100644 index 6974a6efb..000000000 --- a/databases/glom/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -With Glom you can design table definitions and the relationships -between them, plus arrange the fields on the screen. You can edit -and search the data in those tables, and specify field values in -terms of other fields. It's as easy as it should be. - -The design is loosely based on FileMaker Pro, with the added -advantage of separation between interface and data. Its simple -framework should be enough to implement most database -applications. Without Glom these systems normally consist of lots -of repetitive, unmaintainable code. - -Glom-specific data such as the relationship definitions is saved -in the Glom document. Glom re-connects to the database server -when it loads a previous Glom document. The document is in XML -format. - -Glom uses the PostgreSQL database backend but it can not edit -databases that it did not create, because it uses only a simple -subset of Postgres functionality. - -WWW: http://www.glom.org/ diff --git a/databases/glom/pkg-plist b/databases/glom/pkg-plist deleted file mode 100644 index 682717c2e..000000000 --- a/databases/glom/pkg-plist +++ /dev/null @@ -1,253 +0,0 @@ -bin/glom -include/glom-1.0/libglom/appstate.h -include/glom-1.0/libglom/data_structure/field.h -include/glom-1.0/libglom/data_structure/fieldtypes.h -include/glom-1.0/libglom/data_structure/foundset.h -include/glom-1.0/libglom/data_structure/glomconversions.h -include/glom-1.0/libglom/data_structure/groupinfo.h -include/glom-1.0/libglom/data_structure/iso_codes.h -include/glom-1.0/libglom/data_structure/layout/custom_title.h -include/glom-1.0/libglom/data_structure/layout/fieldformatting.h -include/glom-1.0/libglom/data_structure/layout/layoutgroup.h -include/glom-1.0/libglom/data_structure/layout/layoutitem.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_button.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_calendarportal.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_field.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_image.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_line.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_notebook.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_placeholder.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_portal.h -include/glom-1.0/libglom/data_structure/layout/layoutitem_text.h -include/glom-1.0/libglom/data_structure/layout/report_parts/layoutitem_fieldsummary.h -include/glom-1.0/libglom/data_structure/layout/report_parts/layoutitem_footer.h -include/glom-1.0/libglom/data_structure/layout/report_parts/layoutitem_groupby.h -include/glom-1.0/libglom/data_structure/layout/report_parts/layoutitem_header.h -include/glom-1.0/libglom/data_structure/layout/report_parts/layoutitem_summary.h -include/glom-1.0/libglom/data_structure/layout/report_parts/layoutitem_verticalgroup.h -include/glom-1.0/libglom/data_structure/layout/usesrelationship.h -include/glom-1.0/libglom/data_structure/numeric_format.h -include/glom-1.0/libglom/data_structure/parameternamegenerator.h -include/glom-1.0/libglom/data_structure/print_layout.h -include/glom-1.0/libglom/data_structure/privileges.h -include/glom-1.0/libglom/data_structure/relationship.h -include/glom-1.0/libglom/data_structure/report.h -include/glom-1.0/libglom/data_structure/system_prefs.h -include/glom-1.0/libglom/data_structure/tableinfo.h -include/glom-1.0/libglom/data_structure/translatable_item.h -include/glom-1.0/libglom/document/document_glom.h -include/glom-1.0/libglom/document/view.h -include/glom-1.0/libglom/libglom_config.h -include/glom-1.0/libglom/sharedptr.h -include/glom-1.0/libglom/standard_table_prefs_fields.h -lib/libglom-1.0.a -lib/libglom-1.0.la -lib/libglom-1.0.so -lib/libglom-1.0.so.0 -%%PYTHON_SITELIBDIR%%/glom.a -%%PYTHON_SITELIBDIR%%/glom.la -%%PYTHON_SITELIBDIR%%/glom.so -libdata/pkgconfig/glom-1.0.pc -share/applications/glom.desktop -%%DATADIR%%/doc/examples/example_film_manager.glom -%%DATADIR%%/doc/examples/example_lesson_planner.glom -%%DATADIR%%/doc/examples/example_music_collection.glom -%%DATADIR%%/doc/examples/example_project_manager.glom -%%DATADIR%%/doc/examples/example_smallbusiness.glom -%%DATADIR%%/glade/glom_developer.glade -%%DATADIR%%/glade/glom.glade -%%DATADIR%%/glom_document.dtd -%%DATADIR%%/pixmaps/glom-button.png -%%DATADIR%%/pixmaps/glom-field.png -%%DATADIR%%/pixmaps/glom-group.png -%%DATADIR%%/pixmaps/glom-line-horizontal.png -%%DATADIR%%/pixmaps/glom-line-vertical.png -%%DATADIR%%/pixmaps/glom-image.png -%%DATADIR%%/pixmaps/glom-notebook.png -%%DATADIR%%/pixmaps/glom-related-records.png -%%DATADIR%%/pixmaps/glom-text.png -%%DATADIR%%/xslt/print_details_to_html.xsl -%%DATADIR%%/xslt/print_report_to_html.xsl -share/gnome/help/glom/C/figures/glom_data_details.png -share/gnome/help/glom/C/figures/glom_data_list.png -share/gnome/help/glom/C/figures/glom_design_fields.png -share/gnome/help/glom/C/figures/glom_design_fields_dialog_calculated.png -share/gnome/help/glom/C/figures/glom_design_layout_details.png -share/gnome/help/glom/C/figures/glom_design_layout_list.png -share/gnome/help/glom/C/figures/glom_design_reports.png -share/gnome/help/glom/C/figures/glom_design_reports_details.png -share/gnome/help/glom/C/figures/glom_design_reports_group_by.png -share/gnome/help/glom/C/figures/glom_design_reports_vertical_group.png -share/gnome/help/glom/C/figures/glom_design_translations.png -share/gnome/help/glom/C/figures/glom_import.png -share/gnome/help/glom/C/figures/glom_initial_dialog_local_network.png -share/gnome/help/glom/C/figures/glom_report_result.png -share/gnome/help/glom/C/figures/glom_tables.png -share/gnome/help/glom/C/figures/start.png -share/gnome/help/glom/C/glom.xml -share/gnome/help/glom/C/legal.xml -share/gnome/help/glom/de/figures/glom_data_details.png -share/gnome/help/glom/de/figures/glom_data_list.png -share/gnome/help/glom/de/figures/glom_design_fields.png -share/gnome/help/glom/de/figures/glom_design_fields_dialog_calculated.png -share/gnome/help/glom/de/figures/glom_design_layout_details.png -share/gnome/help/glom/de/figures/glom_design_layout_list.png -share/gnome/help/glom/de/figures/glom_design_reports.png -share/gnome/help/glom/de/figures/glom_design_reports_details.png -share/gnome/help/glom/de/figures/glom_design_reports_group_by.png -share/gnome/help/glom/de/figures/glom_design_reports_vertical_group.png -share/gnome/help/glom/de/figures/glom_design_translations.png -share/gnome/help/glom/de/figures/glom_import.png -share/gnome/help/glom/de/figures/glom_initial_dialog_local_network.png -share/gnome/help/glom/de/figures/glom_report_result.png -share/gnome/help/glom/de/figures/glom_tables.png -share/gnome/help/glom/de/figures/start.png -share/gnome/help/glom/de/glom.xml -share/gnome/help/glom/de/legal.xml -share/gnome/help/glom/en_GB/figures/glom_data_details.png -share/gnome/help/glom/en_GB/figures/glom_data_list.png -share/gnome/help/glom/en_GB/figures/glom_design_fields.png -share/gnome/help/glom/en_GB/figures/glom_design_fields_dialog_calculated.png -share/gnome/help/glom/en_GB/figures/glom_design_layout_details.png -share/gnome/help/glom/en_GB/figures/glom_design_layout_list.png -share/gnome/help/glom/en_GB/figures/glom_design_reports.png -share/gnome/help/glom/en_GB/figures/glom_design_reports_details.png -share/gnome/help/glom/en_GB/figures/glom_design_reports_group_by.png -share/gnome/help/glom/en_GB/figures/glom_design_reports_vertical_group.png -share/gnome/help/glom/en_GB/figures/glom_design_translations.png -share/gnome/help/glom/en_GB/figures/glom_import.png -share/gnome/help/glom/en_GB/figures/glom_initial_dialog_local_network.png -share/gnome/help/glom/en_GB/figures/glom_report_result.png -share/gnome/help/glom/en_GB/figures/glom_tables.png -share/gnome/help/glom/en_GB/figures/start.png -share/gnome/help/glom/en_GB/glom.xml -share/gnome/help/glom/en_GB/legal.xml -share/gnome/help/glom/es/figures/glom_data_details.png -share/gnome/help/glom/es/figures/glom_data_list.png -share/gnome/help/glom/es/figures/glom_design_fields.png -share/gnome/help/glom/es/figures/glom_design_fields_dialog_calculated.png -share/gnome/help/glom/es/figures/glom_design_layout_details.png -share/gnome/help/glom/es/figures/glom_design_layout_list.png -share/gnome/help/glom/es/figures/glom_design_reports.png -share/gnome/help/glom/es/figures/glom_design_reports_details.png -share/gnome/help/glom/es/figures/glom_design_reports_group_by.png -share/gnome/help/glom/es/figures/glom_design_reports_vertical_group.png -share/gnome/help/glom/es/figures/glom_design_translations.png -share/gnome/help/glom/es/figures/glom_import.png -share/gnome/help/glom/es/figures/glom_initial_dialog_local_network.png -share/gnome/help/glom/es/figures/glom_report_result.png -share/gnome/help/glom/es/figures/glom_tables.png -share/gnome/help/glom/es/figures/start.png -share/gnome/help/glom/es/glom.xml -share/gnome/help/glom/es/legal.xml -share/gnome/help/glom/fr/figures/glom_data_details.png -share/gnome/help/glom/fr/figures/glom_data_list.png -share/gnome/help/glom/fr/figures/glom_design_fields.png -share/gnome/help/glom/fr/figures/glom_design_fields_dialog_calculated.png -share/gnome/help/glom/fr/figures/glom_design_layout_details.png -share/gnome/help/glom/fr/figures/glom_design_layout_list.png -share/gnome/help/glom/fr/figures/glom_design_reports.png -share/gnome/help/glom/fr/figures/glom_design_reports_details.png -share/gnome/help/glom/fr/figures/glom_design_reports_group_by.png -share/gnome/help/glom/fr/figures/glom_design_reports_vertical_group.png -share/gnome/help/glom/fr/figures/glom_design_translations.png -share/gnome/help/glom/fr/figures/glom_import.png -share/gnome/help/glom/fr/figures/glom_initial_dialog_local_network.png -share/gnome/help/glom/fr/figures/glom_report_result.png -share/gnome/help/glom/fr/figures/glom_tables.png -share/gnome/help/glom/fr/figures/start.png -share/gnome/help/glom/fr/glom.xml -share/gnome/help/glom/fr/legal.xml -share/gnome/help/glom/sv/figures/glom_data_details.png -share/gnome/help/glom/sv/figures/glom_data_list.png -share/gnome/help/glom/sv/figures/glom_design_fields.png -share/gnome/help/glom/sv/figures/glom_design_fields_dialog_calculated.png -share/gnome/help/glom/sv/figures/glom_design_layout_details.png -share/gnome/help/glom/sv/figures/glom_design_layout_list.png -share/gnome/help/glom/sv/figures/glom_design_reports.png -share/gnome/help/glom/sv/figures/glom_design_reports_details.png -share/gnome/help/glom/sv/figures/glom_design_reports_group_by.png -share/gnome/help/glom/sv/figures/glom_design_reports_vertical_group.png -share/gnome/help/glom/sv/figures/glom_design_translations.png -share/gnome/help/glom/sv/figures/glom_import.png -share/gnome/help/glom/sv/figures/glom_initial_dialog_local_network.png -share/gnome/help/glom/sv/figures/glom_report_result.png -share/gnome/help/glom/sv/figures/glom_tables.png -share/gnome/help/glom/sv/figures/start.png -share/gnome/help/glom/sv/glom.xml -share/gnome/help/glom/sv/legal.xml -share/mime-info/glom.keys -share/mime-info/glom.mime -share/icons/hicolor/16x16/apps/glom.png -share/icons/hicolor/22x22/apps/glom.png -share/icons/hicolor/24x24/apps/glom.png -share/icons/hicolor/32x32/apps/glom.png -share/icons/hicolor/48x48/apps/glom.png -share/icons/hicolor/scalable/apps/glom.svg -share/locale/ar/LC_MESSAGES/glom.mo -share/locale/ca/LC_MESSAGES/glom.mo -share/locale/cs/LC_MESSAGES/glom.mo -share/locale/de/LC_MESSAGES/glom.mo -share/locale/dz/LC_MESSAGES/glom.mo -share/locale/en_CA/LC_MESSAGES/glom.mo -share/locale/en_GB/LC_MESSAGES/glom.mo -share/locale/es/LC_MESSAGES/glom.mo -share/locale/fi/LC_MESSAGES/glom.mo -share/locale/fr/LC_MESSAGES/glom.mo -share/locale/gl/LC_MESSAGES/glom.mo -share/locale/gu/LC_MESSAGES/glom.mo -share/locale/hu/LC_MESSAGES/glom.mo -share/locale/it/LC_MESSAGES/glom.mo -share/locale/nb/LC_MESSAGES/glom.mo -share/locale/ne/LC_MESSAGES/glom.mo -share/locale/nl/LC_MESSAGES/glom.mo -share/locale/oc/LC_MESSAGES/glom.mo -share/locale/pa/LC_MESSAGES/glom.mo -share/locale/pt/LC_MESSAGES/glom.mo -share/locale/pt_BR/LC_MESSAGES/glom.mo -share/locale/rw/LC_MESSAGES/glom.mo -share/locale/sq/LC_MESSAGES/glom.mo -share/locale/sv/LC_MESSAGES/glom.mo -share/locale/tr/LC_MESSAGES/glom.mo -share/locale/vi/LC_MESSAGES/glom.mo -share/locale/zh_CN/LC_MESSAGES/glom.mo -share/mime/packages/glom.xml -share/omf/glom/glom-C.omf -share/omf/glom/glom-de.omf -share/omf/glom/glom-en_GB.omf -share/omf/glom/glom-es.omf -share/omf/glom/glom-fr.omf -share/omf/glom/glom-sv.omf -@dirrm share/omf/glom -@dirrm share/gnome/help/glom/sv/figures -@dirrm share/gnome/help/glom/sv -@dirrm share/gnome/help/glom/fr/figures -@dirrm share/gnome/help/glom/fr -@dirrm share/gnome/help/glom/es/figures -@dirrm share/gnome/help/glom/es -@dirrm share/gnome/help/glom/en_GB/figures -@dirrm share/gnome/help/glom/en_GB -@dirrm share/gnome/help/glom/de/figures -@dirrm share/gnome/help/glom/de -@dirrm share/gnome/help/glom/C/figures -@dirrm share/gnome/help/glom/C -@dirrm share/gnome/help/glom -@dirrm %%DATADIR%%/xslt -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%%/doc/examples -@dirrm %%DATADIR%%/doc -@dirrm %%DATADIR%% -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@dirrmtry share/applications -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrm include/glom-1.0/libglom/document -@dirrm include/glom-1.0/libglom/data_structure/layout/report_parts -@dirrm include/glom-1.0/libglom/data_structure/layout -@dirrm include/glom-1.0/libglom/data_structure -@dirrm include/glom-1.0/libglom -@dirrm include/glom-1.0 diff --git a/databases/libgdamm/Makefile b/databases/libgdamm/Makefile deleted file mode 100644 index 323dfa378..000000000 --- a/databases/libgdamm/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: libglademm -# Date created: 1 Oct 2003 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/databases/libgdamm/Makefile,v 1.14 2009/04/05 19:40:33 marcus Exp $ -# - -PORTNAME= libgdamm -PORTVERSION= 3.99.14 -PORTREVISION= 1 -CATEGORIES= databases gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libgda3 library - -LIB_DEPENDS= glibmm-2.4:${PORTSDIR}/devel/glibmm -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -USE_AUTOTOOLS= libtool:15 -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack libgda4 -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -post-patch: - @${REINPLACE_CMD} -e "s|\(-lglibmm\)|-L\$$(GMM_PROCDIR)/../.. \1|" \ - ${WRKSRC}/tools/extra_defs_gen/Makefile.in - -.include <bsd.port.mk> diff --git a/databases/libgdamm/distinfo b/databases/libgdamm/distinfo deleted file mode 100644 index a8b2bd6c3..000000000 --- a/databases/libgdamm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgdamm-3.99.14.tar.bz2) = 51b680fdf2b724cfd475886c687f5780 -SHA256 (gnome2/libgdamm-3.99.14.tar.bz2) = d5e860afa2927af7be4deabfc97c7ead9c13f2efdab8f1b158f8e4d19bcdefa4 -SIZE (gnome2/libgdamm-3.99.14.tar.bz2) = 830976 diff --git a/databases/libgdamm/pkg-descr b/databases/libgdamm/pkg-descr deleted file mode 100644 index 07ef04f5b..000000000 --- a/databases/libgdamm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a set of thin C++ wrappers for libgda v3 library. - -WWW: http://www.gtkmm.org/ diff --git a/databases/libgdamm/pkg-plist b/databases/libgdamm/pkg-plist deleted file mode 100644 index 6c974cbc0..000000000 --- a/databases/libgdamm/pkg-plist +++ /dev/null @@ -1,87 +0,0 @@ -include/libgdamm-4.0/libgdamm.h -include/libgdamm-4.0/libgdamm/batch.h -include/libgdamm-4.0/libgdamm/blob.h -include/libgdamm-4.0/libgdamm/blobop.h -include/libgdamm-4.0/libgdamm/column.h -include/libgdamm-4.0/libgdamm/config.h -include/libgdamm-4.0/libgdamm/connection.h -include/libgdamm-4.0/libgdamm/connectionevent.h -include/libgdamm-4.0/libgdamm/dataaccesswrapper.h -include/libgdamm-4.0/libgdamm/datacomparator.h -include/libgdamm-4.0/libgdamm/datahandler.h -include/libgdamm-4.0/libgdamm/datamodel.h -include/libgdamm-4.0/libgdamm/datamodelarray.h -include/libgdamm-4.0/libgdamm/datamodelimport.h -include/libgdamm-4.0/libgdamm/datamodeliter.h -include/libgdamm-4.0/libgdamm/dataproxy.h -include/libgdamm-4.0/libgdamm/dataselect.h -include/libgdamm-4.0/libgdamm/handlerbin.h -include/libgdamm-4.0/libgdamm/handlerboolean.h -include/libgdamm-4.0/libgdamm/handlernumerical.h -include/libgdamm-4.0/libgdamm/handlerstring.h -include/libgdamm-4.0/libgdamm/handlertime.h -include/libgdamm-4.0/libgdamm/handlertype.h -include/libgdamm-4.0/libgdamm/holder.h -include/libgdamm-4.0/libgdamm/init.h -include/libgdamm-4.0/libgdamm/metastore.h -include/libgdamm-4.0/libgdamm/metastruct.h -include/libgdamm-4.0/libgdamm/private/batch_p.h -include/libgdamm-4.0/libgdamm/private/blob_p.h -include/libgdamm-4.0/libgdamm/private/blobop_p.h -include/libgdamm-4.0/libgdamm/private/column_p.h -include/libgdamm-4.0/libgdamm/private/config_p.h -include/libgdamm-4.0/libgdamm/private/connection_p.h -include/libgdamm-4.0/libgdamm/private/connectionevent_p.h -include/libgdamm-4.0/libgdamm/private/dataaccesswrapper_p.h -include/libgdamm-4.0/libgdamm/private/datacomparator_p.h -include/libgdamm-4.0/libgdamm/private/datahandler_p.h -include/libgdamm-4.0/libgdamm/private/datamodel_p.h -include/libgdamm-4.0/libgdamm/private/datamodelarray_p.h -include/libgdamm-4.0/libgdamm/private/datamodelimport_p.h -include/libgdamm-4.0/libgdamm/private/datamodeliter_p.h -include/libgdamm-4.0/libgdamm/private/dataproxy_p.h -include/libgdamm-4.0/libgdamm/private/dataselect_p.h -include/libgdamm-4.0/libgdamm/private/handlerbin_p.h -include/libgdamm-4.0/libgdamm/private/handlerboolean_p.h -include/libgdamm-4.0/libgdamm/private/handlernumerical_p.h -include/libgdamm-4.0/libgdamm/private/handlerstring_p.h -include/libgdamm-4.0/libgdamm/private/handlertime_p.h -include/libgdamm-4.0/libgdamm/private/handlertype_p.h -include/libgdamm-4.0/libgdamm/private/holder_p.h -include/libgdamm-4.0/libgdamm/private/metastore_p.h -include/libgdamm-4.0/libgdamm/private/metastruct_p.h -include/libgdamm-4.0/libgdamm/private/quarklist_p.h -include/libgdamm-4.0/libgdamm/private/row_p.h -include/libgdamm-4.0/libgdamm/private/serveroperation_p.h -include/libgdamm-4.0/libgdamm/private/serverprovider_p.h -include/libgdamm-4.0/libgdamm/private/set_p.h -include/libgdamm-4.0/libgdamm/private/sqlparser_p.h -include/libgdamm-4.0/libgdamm/private/statement_p.h -include/libgdamm-4.0/libgdamm/private/transactionstatus_p.h -include/libgdamm-4.0/libgdamm/private/xatransaction_p.h -include/libgdamm-4.0/libgdamm/quarklist.h -include/libgdamm-4.0/libgdamm/row.h -include/libgdamm-4.0/libgdamm/serveroperation.h -include/libgdamm-4.0/libgdamm/serverprovider.h -include/libgdamm-4.0/libgdamm/set.h -include/libgdamm-4.0/libgdamm/sqlparser.h -include/libgdamm-4.0/libgdamm/statement.h -include/libgdamm-4.0/libgdamm/transactionstatus.h -include/libgdamm-4.0/libgdamm/value.h -include/libgdamm-4.0/libgdamm/wrap_init.h -include/libgdamm-4.0/libgdamm/xatransaction.h -lib/libgdamm-4.0.a -lib/libgdamm-4.0.la -lib/libgdamm-4.0.so -lib/libgdamm-4.0.so.10 -lib/libgdamm-4.0/include/libgdammconfig.h -lib/libgdamm-4.0/proc/m4/convert.m4 -lib/libgdamm-4.0/proc/m4/convert_libgdamm.m4 -libdata/pkgconfig/libgdamm-4.0.pc -@dirrm lib/libgdamm-4.0/proc/m4 -@dirrm lib/libgdamm-4.0/proc -@dirrm lib/libgdamm-4.0/include -@dirrm lib/libgdamm-4.0 -@dirrm include/libgdamm-4.0/libgdamm/private -@dirrm include/libgdamm-4.0/libgdamm -@dirrm include/libgdamm-4.0 diff --git a/deskutils/deskbar-applet/Makefile b/deskutils/deskbar-applet/Makefile deleted file mode 100644 index 0a0697def..000000000 --- a/deskutils/deskbar-applet/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: deskbar-applet -# Date created: 2005-07-13 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/deskutils/deskbar-applet/Makefile,v 1.98 2009/03/03 19:19:18 marcus Exp $ -# - -PORTNAME= deskbar-applet -PORTVERSION= 2.26.0 -CATEGORIES= deskutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Omnipresent versatile search interface - -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/elementtree/__init__.py:${PORTSDIR}/devel/py-elementtree \ - ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/elementtree/__init__.py:${PORTSDIR}/devel/py-elementtree \ - ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus \ - ${PYTHON_SITELIBDIR}/simplejson-2.0.9-py${PYTHON_VER}-${OPSYS:L}-${_OSRELEASE}-${ARCH}.egg:${PORTSDIR}/devel/py-simplejson - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix gnomehack pygnomedesktop intlhack -USE_PYTHON= yes -USE_GMAKE= yes -USE_DISPLAY= yes -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -INSTALLS_OMF= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= deskbar-applet.schemas - -OPTIONS= EVO "Enable evolution support" on - -.include <bsd.port.pre.mk> - -_OSRELEASE!= ${UNAME} -r - -.if !defined(WITHOUT_EVO) -USE_GNOME+= evolutiondataserver -PLIST_SUB+= EVO="" -.else -CONFIGURE_ARGS+=--disable-evolution -PLIST_SUB+= EVO="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/deskbar/handlers/mozilla.py \ - ${WRKSRC}/deskbar/core/Utils.py - -.include <bsd.port.post.mk> diff --git a/deskutils/deskbar-applet/distinfo b/deskutils/deskbar-applet/distinfo deleted file mode 100644 index b038a7cfb..000000000 --- a/deskutils/deskbar-applet/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/deskbar-applet-2.26.0.tar.bz2) = 168044d1312bf30e71f2ed587d2bffb6 -SHA256 (gnome2/deskbar-applet-2.26.0.tar.bz2) = 547c80dc1a21b0f4e8b866601623b902448ac81780c2d29a25299a0953e1bc17 -SIZE (gnome2/deskbar-applet-2.26.0.tar.bz2) = 969825 diff --git a/deskutils/deskbar-applet/files/patch-deskbar_core_Utils.py b/deskutils/deskbar-applet/files/patch-deskbar_core_Utils.py deleted file mode 100644 index 1a41213c3..000000000 --- a/deskutils/deskbar-applet/files/patch-deskbar_core_Utils.py +++ /dev/null @@ -1,11 +0,0 @@ ---- deskbar/core/Utils.py.orig 2007-08-13 13:07:20.000000000 -0400 -+++ deskbar/core/Utils.py 2007-08-14 14:35:19.000000000 -0400 -@@ -51,7 +51,7 @@ def get_xdg_data_dirs(): - - sysdirs = os.getenv("XDG_DATA_DIRS") - if sysdirs == None: -- sysdirs = "/usr/local/share:/usr/share" -+ sysdirs = "/usr/local/share" - - dirs = "%s:%s" % (dirs, sysdirs) - return [dir for dir in dirs.split(":") if dir.strip() != "" and exists(dir)] diff --git a/deskutils/deskbar-applet/files/patch-deskbar_deskbar-applet.py b/deskutils/deskbar-applet/files/patch-deskbar_deskbar-applet.py deleted file mode 100644 index aeb9dadaa..000000000 --- a/deskutils/deskbar-applet/files/patch-deskbar_deskbar-applet.py +++ /dev/null @@ -1,17 +0,0 @@ ---- deskbar/deskbar-applet.py.orig Tue Jul 10 15:28:29 2007 -+++ deskbar/deskbar-applet.py Tue Jul 10 15:29:43 2007 -@@ -43,10 +43,10 @@ - gettext.bind_textdomain_codeset('deskbar-applet','UTF-8') - gettext.textdomain('deskbar-applet') - --locale.bindtextdomain('deskbar-applet', abspath(join(deskbar.defs.DATA_DIR, "locale"))) --if hasattr(locale, 'bind_textdomain_codeset'): -- locale.bind_textdomain_codeset('deskbar-applet','UTF-8') --locale.textdomain('deskbar-applet') -+#locale.bindtextdomain('deskbar-applet', abspath(join(deskbar.defs.DATA_DIR, "locale"))) -+#if hasattr(locale, 'bind_textdomain_codeset'): -+# locale.bind_textdomain_codeset('deskbar-applet','UTF-8') -+#locale.textdomain('deskbar-applet') - - # Enable threads - gtk.gdk.threads_init() diff --git a/deskutils/deskbar-applet/pkg-descr b/deskutils/deskbar-applet/pkg-descr deleted file mode 100644 index 4eed2539a..000000000 --- a/deskutils/deskbar-applet/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Omnipresent versatile GNOME search applet. - -WWW: http://raphael.slinckx.net/deskbar/ diff --git a/deskutils/deskbar-applet/pkg-plist b/deskutils/deskbar-applet/pkg-plist deleted file mode 100644 index 5635b20f6..000000000 --- a/deskutils/deskbar-applet/pkg-plist +++ /dev/null @@ -1,530 +0,0 @@ -lib/deskbar-applet/deskbar-applet -lib/deskbar-applet/modules-2.20-compatible/beagle-live.py -lib/deskbar-applet/modules-2.20-compatible/beagle-live.pyc -lib/deskbar-applet/modules-2.20-compatible/beagle-live.pyo -lib/deskbar-applet/modules-2.20-compatible/beagle-static.py -lib/deskbar-applet/modules-2.20-compatible/beagle-static.pyc -lib/deskbar-applet/modules-2.20-compatible/beagle-static.pyo -lib/deskbar-applet/modules-2.20-compatible/calculator.py -lib/deskbar-applet/modules-2.20-compatible/calculator.pyc -lib/deskbar-applet/modules-2.20-compatible/calculator.pyo -lib/deskbar-applet/modules-2.20-compatible/desklicious.py -lib/deskbar-applet/modules-2.20-compatible/desklicious.pyc -lib/deskbar-applet/modules-2.20-compatible/desklicious.pyo -lib/deskbar-applet/modules-2.20-compatible/epiphany.py -lib/deskbar-applet/modules-2.20-compatible/epiphany.pyc -lib/deskbar-applet/modules-2.20-compatible/epiphany.pyo -%%EVO%%lib/deskbar-applet/modules-2.20-compatible/evolution.py -%%EVO%%lib/deskbar-applet/modules-2.20-compatible/evolution.pyc -%%EVO%%lib/deskbar-applet/modules-2.20-compatible/evolution.pyo -lib/deskbar-applet/modules-2.20-compatible/files.py -lib/deskbar-applet/modules-2.20-compatible/files.pyc -lib/deskbar-applet/modules-2.20-compatible/files.pyo -lib/deskbar-applet/modules-2.20-compatible/gdmactions.py -lib/deskbar-applet/modules-2.20-compatible/gdmactions.pyc -lib/deskbar-applet/modules-2.20-compatible/gdmactions.pyo -lib/deskbar-applet/modules-2.20-compatible/googlecodesearch.py -lib/deskbar-applet/modules-2.20-compatible/googlecodesearch.pyc -lib/deskbar-applet/modules-2.20-compatible/googlecodesearch.pyo -lib/deskbar-applet/modules-2.20-compatible/googlesearch.py -lib/deskbar-applet/modules-2.20-compatible/googlesearch.pyc -lib/deskbar-applet/modules-2.20-compatible/googlesearch.pyo -lib/deskbar-applet/modules-2.20-compatible/history.py -lib/deskbar-applet/modules-2.20-compatible/history.pyc -lib/deskbar-applet/modules-2.20-compatible/history.pyo -lib/deskbar-applet/modules-2.20-compatible/iswitch-window.py -lib/deskbar-applet/modules-2.20-compatible/iswitch-window.pyc -lib/deskbar-applet/modules-2.20-compatible/iswitch-window.pyo -lib/deskbar-applet/modules-2.20-compatible/mozilla.py -lib/deskbar-applet/modules-2.20-compatible/mozilla.pyc -lib/deskbar-applet/modules-2.20-compatible/mozilla.pyo -lib/deskbar-applet/modules-2.20-compatible/opensearch.py -lib/deskbar-applet/modules-2.20-compatible/opensearch.pyc -lib/deskbar-applet/modules-2.20-compatible/opensearch.pyo -lib/deskbar-applet/modules-2.20-compatible/programs.py -lib/deskbar-applet/modules-2.20-compatible/programs.pyc -lib/deskbar-applet/modules-2.20-compatible/programs.pyo -lib/deskbar-applet/modules-2.20-compatible/recent.py -lib/deskbar-applet/modules-2.20-compatible/recent.pyc -lib/deskbar-applet/modules-2.20-compatible/recent.pyo -lib/deskbar-applet/modules-2.20-compatible/templates.py -lib/deskbar-applet/modules-2.20-compatible/templates.pyc -lib/deskbar-applet/modules-2.20-compatible/templates.pyo -lib/deskbar-applet/modules-2.20-compatible/tomboy.py -lib/deskbar-applet/modules-2.20-compatible/tomboy.pyc -lib/deskbar-applet/modules-2.20-compatible/tomboy.pyo -lib/deskbar-applet/modules-2.20-compatible/twitter.py -lib/deskbar-applet/modules-2.20-compatible/twitter.pyc -lib/deskbar-applet/modules-2.20-compatible/twitter.pyo -lib/deskbar-applet/modules-2.20-compatible/web_address.py -lib/deskbar-applet/modules-2.20-compatible/web_address.pyc -lib/deskbar-applet/modules-2.20-compatible/web_address.pyo -lib/deskbar-applet/modules-2.20-compatible/wikipedia-suggest.py -lib/deskbar-applet/modules-2.20-compatible/wikipedia-suggest.pyc -lib/deskbar-applet/modules-2.20-compatible/wikipedia-suggest.pyo -lib/deskbar-applet/modules-2.20-compatible/yahoo.py -lib/deskbar-applet/modules-2.20-compatible/yahoo.pyc -lib/deskbar-applet/modules-2.20-compatible/yahoo.pyo -%%PYTHON_SITELIBDIR%%/deskbar/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/BrowserMatch.py -%%PYTHON_SITELIBDIR%%/deskbar/core/BrowserMatch.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/BrowserMatch.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/Categories.py -%%PYTHON_SITELIBDIR%%/deskbar/core/Categories.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/Categories.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/CoreImpl.py -%%PYTHON_SITELIBDIR%%/deskbar/core/CoreImpl.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/CoreImpl.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/DeskbarHistory.py -%%PYTHON_SITELIBDIR%%/deskbar/core/DeskbarHistory.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/DeskbarHistory.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/GconfStore.py -%%PYTHON_SITELIBDIR%%/deskbar/core/GconfStore.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/GconfStore.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/Indexer.py -%%PYTHON_SITELIBDIR%%/deskbar/core/Indexer.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/Indexer.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/Keybinder.py -%%PYTHON_SITELIBDIR%%/deskbar/core/Keybinder.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/Keybinder.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleInstaller.py -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleInstaller.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleInstaller.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleList.py -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleList.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleList.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleLoader.py -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleLoader.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/ModuleLoader.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/ThreadPool.py -%%PYTHON_SITELIBDIR%%/deskbar/core/ThreadPool.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/ThreadPool.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/Utils.py -%%PYTHON_SITELIBDIR%%/deskbar/core/Utils.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/Utils.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/Watcher.py -%%PYTHON_SITELIBDIR%%/deskbar/core/Watcher.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/Watcher.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/Web.py -%%PYTHON_SITELIBDIR%%/deskbar/core/Web.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/Web.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/core/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/_userdirs/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/core/_userdirs/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/_userdirs/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/_userdirs/__userdirs.la -%%PYTHON_SITELIBDIR%%/deskbar/core/_userdirs/__userdirs.so -%%PYTHON_SITELIBDIR%%/deskbar/core/keybinder/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/core/keybinder/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/keybinder/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/keybinder/_keybinder.la -%%PYTHON_SITELIBDIR%%/deskbar/core/keybinder/_keybinder.so -%%PYTHON_SITELIBDIR%%/deskbar/core/updater/Capuchin.py -%%PYTHON_SITELIBDIR%%/deskbar/core/updater/Capuchin.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/updater/Capuchin.pyo -%%PYTHON_SITELIBDIR%%/deskbar/core/updater/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/core/updater/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/core/updater/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/defs.py -%%PYTHON_SITELIBDIR%%/deskbar/defs.pyc -%%PYTHON_SITELIBDIR%%/deskbar/defs.pyo -%%PYTHON_SITELIBDIR%%/deskbar/gtkexcepthook.py -%%PYTHON_SITELIBDIR%%/deskbar/gtkexcepthook.pyc -%%PYTHON_SITELIBDIR%%/deskbar/gtkexcepthook.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/ActionsFactory.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/ActionsFactory.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/ActionsFactory.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/CopyToClipboardAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/CopyToClipboardAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/CopyToClipboardAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/GoToLocationAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/GoToLocationAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/GoToLocationAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenDesktopFileAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenDesktopFileAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenDesktopFileAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenFileAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenFileAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenFileAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenWithApplicationAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenWithApplicationAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenWithApplicationAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenWithNautilusAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenWithNautilusAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/OpenWithNautilusAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/SendEmailToAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/SendEmailToAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/SendEmailToAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/SendFileViaEmailAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/SendFileViaEmailAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/SendFileViaEmailAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/ShowUrlAction.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/ShowUrlAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/ShowUrlAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/actions/__init__.pyo -%%EVO%%%%PYTHON_SITELIBDIR%%/deskbar/handlers/evolution/__init__.py -%%EVO%%%%PYTHON_SITELIBDIR%%/deskbar/handlers/evolution/__init__.pyc -%%EVO%%%%PYTHON_SITELIBDIR%%/deskbar/handlers/evolution/__init__.pyo -%%EVO%%%%PYTHON_SITELIBDIR%%/deskbar/handlers/evolution/_evolution.la -%%EVO%%%%PYTHON_SITELIBDIR%%/deskbar/handlers/evolution/_evolution.so -%%PYTHON_SITELIBDIR%%/deskbar/handlers/gdmclient/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/handlers/gdmclient/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/handlers/gdmclient/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/handlers/gdmclient/_gdmclient.la -%%PYTHON_SITELIBDIR%%/deskbar/handlers/gdmclient/_gdmclient.so -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Action.py -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Action.pyc -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Action.pyo -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Controller.py -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Controller.pyc -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Controller.pyo -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Core.py -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Core.pyc -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Core.pyo -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Match.py -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Match.pyc -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Match.pyo -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Module.py -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Module.pyc -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/Module.pyo -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/View.py -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/View.pyc -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/View.pyo -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/interfaces/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/osutils/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/osutils/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/osutils/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/osutils/_osutils.la -%%PYTHON_SITELIBDIR%%/deskbar/osutils/_osutils.so -%%PYTHON_SITELIBDIR%%/deskbar/ui/About.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/About.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/About.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/AbstractCuemiacDeskbarIcon.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/AbstractCuemiacDeskbarIcon.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/AbstractCuemiacDeskbarIcon.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/AbstractCuemiacView.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/AbstractCuemiacView.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/AbstractCuemiacView.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacAlignedView.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacAlignedView.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacAlignedView.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacWindowController.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacWindowController.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacWindowController.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacWindowView.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacWindowView.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/CuemiacWindowView.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/DeskbarApplet.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/DeskbarApplet.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/DeskbarApplet.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/DeskbarStatusIcon.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/DeskbarStatusIcon.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/DeskbarStatusIcon.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacActionsTreeView.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacActionsTreeView.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacActionsTreeView.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacAlignedWindow.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacAlignedWindow.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacAlignedWindow.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRenderer.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRenderer.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRenderer.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRendererAction.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRendererAction.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRendererAction.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRendererMatch.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRendererMatch.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacCellRendererMatch.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacEntry.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacEntry.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacEntry.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacHeader.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacHeader.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacHeader.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacHistory.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacHistory.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacHistory.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacItems.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacItems.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacItems.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacModel.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacModel.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacModel.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacTreeView.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacTreeView.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/CuemiacTreeView.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/LingeringSelectionWindow.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/LingeringSelectionWindow.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/LingeringSelectionWindow.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/iconentry/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/iconentry/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/iconentry/__init__.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/iconentry/_iconentry.la -%%PYTHON_SITELIBDIR%%/deskbar/ui/iconentry/_iconentry.so -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/AccelEntry.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/AccelEntry.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/AccelEntry.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/DeskbarPreferences.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/DeskbarPreferences.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/DeskbarPreferences.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ErrorDialog.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ErrorDialog.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ErrorDialog.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ModuleListView.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ModuleListView.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ModuleListView.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ProgressbarDialog.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ProgressbarDialog.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/ProgressbarDialog.pyo -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/__init__.py -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/__init__.pyc -%%PYTHON_SITELIBDIR%%/deskbar/ui/preferences/__init__.pyo -libdata/bonobo/servers/Deskbar_Applet.server -libdata/pkgconfig/deskbar-applet.pc -%%DATADIR%%/Deskbar_Applet.xml -%%DATADIR%%/art/delicious.png -%%DATADIR%%/art/deskbar-applet-panel-h.png -%%DATADIR%%/art/deskbar-applet-panel-h.svg -%%DATADIR%%/art/deskbar-applet-panel-v.png -%%DATADIR%%/art/deskbar-applet-panel-v.svg -%%DATADIR%%/art/epiphany-history.png -%%DATADIR%%/art/generic.png -%%DATADIR%%/art/google.png -%%DATADIR%%/art/gpm-suspend-to-disk.png -%%DATADIR%%/art/gpm-suspend-to-ram.png -%%DATADIR%%/art/note-new.png -%%DATADIR%%/art/note.png -%%DATADIR%%/art/web-search.png -%%DATADIR%%/art/wikipedia.png -%%DATADIR%%/art/yahoo.png -%%DATADIR%%/mozilla-search.ui -%%DATADIR%%/prefs-dialog.ui -%%DATADIR%%/smart-bookmarks.ui -share/gnome/help/deskbar/C/deskbar.xml -share/gnome/help/deskbar/C/figures/deskbar-applet.png -share/gnome/help/deskbar/C/legal.xml -share/gnome/help/deskbar/ca/deskbar.xml -share/gnome/help/deskbar/ca/figures/deskbar-applet.png -share/gnome/help/deskbar/ca/legal.xml -share/gnome/help/deskbar/de/deskbar.xml -share/gnome/help/deskbar/de/figures/deskbar-applet.png -share/gnome/help/deskbar/de/legal.xml -share/gnome/help/deskbar/el/deskbar.xml -share/gnome/help/deskbar/el/figures/deskbar-applet.png -share/gnome/help/deskbar/el/legal.xml -share/gnome/help/deskbar/en_GB/deskbar.xml -share/gnome/help/deskbar/en_GB/figures/deskbar-applet.png -share/gnome/help/deskbar/en_GB/legal.xml -share/gnome/help/deskbar/es/deskbar.xml -share/gnome/help/deskbar/es/figures/deskbar-applet.png -share/gnome/help/deskbar/es/legal.xml -share/gnome/help/deskbar/fr/deskbar.xml -share/gnome/help/deskbar/fr/figures/deskbar-applet.png -share/gnome/help/deskbar/fr/legal.xml -share/gnome/help/deskbar/it/deskbar.xml -share/gnome/help/deskbar/it/figures/deskbar-applet.png -share/gnome/help/deskbar/it/legal.xml -share/gnome/help/deskbar/oc/deskbar.xml -share/gnome/help/deskbar/oc/figures/deskbar-applet.png -share/gnome/help/deskbar/oc/legal.xml -share/gnome/help/deskbar/pt_BR/deskbar.xml -share/gnome/help/deskbar/pt_BR/figures/deskbar-applet.png -share/gnome/help/deskbar/pt_BR/legal.xml -share/gnome/help/deskbar/ru/deskbar.xml -share/gnome/help/deskbar/ru/figures/deskbar-applet.png -share/gnome/help/deskbar/ru/legal.xml -share/gnome/help/deskbar/sv/deskbar.xml -share/gnome/help/deskbar/sv/figures/deskbar-applet.png -share/gnome/help/deskbar/sv/legal.xml -share/gnome/help/deskbar/uk/deskbar.xml -share/gnome/help/deskbar/uk/figures/deskbar-applet.png -share/gnome/help/deskbar/uk/legal.xml -share/gnome/help/deskbar/zh_CN/deskbar.xml -share/gnome/help/deskbar/zh_CN/figures/deskbar-applet.png -share/gnome/help/deskbar/zh_CN/legal.xml -share/icons/hicolor/16x16/apps/deskbar-applet.png -share/icons/hicolor/22x22/apps/deskbar-applet.png -share/icons/hicolor/32x32/apps/deskbar-applet.png -share/icons/hicolor/48x48/apps/deskbar-applet.png -share/icons/hicolor/scalable/apps/deskbar-applet.svg -share/locale/af/LC_MESSAGES/deskbar-applet.mo -share/locale/ar/LC_MESSAGES/deskbar-applet.mo -share/locale/as/LC_MESSAGES/deskbar-applet.mo -share/locale/ast/LC_MESSAGES/deskbar-applet.mo -share/locale/be/LC_MESSAGES/deskbar-applet.mo -share/locale/be@latin/LC_MESSAGES/deskbar-applet.mo -share/locale/bg/LC_MESSAGES/deskbar-applet.mo -share/locale/bn/LC_MESSAGES/deskbar-applet.mo -share/locale/bn_IN/LC_MESSAGES/deskbar-applet.mo -share/locale/ca/LC_MESSAGES/deskbar-applet.mo -share/locale/cs/LC_MESSAGES/deskbar-applet.mo -share/locale/cy/LC_MESSAGES/deskbar-applet.mo -share/locale/da/LC_MESSAGES/deskbar-applet.mo -share/locale/de/LC_MESSAGES/deskbar-applet.mo -share/locale/dz/LC_MESSAGES/deskbar-applet.mo -share/locale/el/LC_MESSAGES/deskbar-applet.mo -share/locale/en_CA/LC_MESSAGES/deskbar-applet.mo -share/locale/en_GB/LC_MESSAGES/deskbar-applet.mo -share/locale/es/LC_MESSAGES/deskbar-applet.mo -share/locale/et/LC_MESSAGES/deskbar-applet.mo -share/locale/eu/LC_MESSAGES/deskbar-applet.mo -share/locale/fa/LC_MESSAGES/deskbar-applet.mo -share/locale/fi/LC_MESSAGES/deskbar-applet.mo -share/locale/fr/LC_MESSAGES/deskbar-applet.mo -share/locale/gl/LC_MESSAGES/deskbar-applet.mo -share/locale/gu/LC_MESSAGES/deskbar-applet.mo -share/locale/he/LC_MESSAGES/deskbar-applet.mo -share/locale/hi/LC_MESSAGES/deskbar-applet.mo -share/locale/hr/LC_MESSAGES/deskbar-applet.mo -share/locale/hu/LC_MESSAGES/deskbar-applet.mo -share/locale/id/LC_MESSAGES/deskbar-applet.mo -share/locale/it/LC_MESSAGES/deskbar-applet.mo -share/locale/ja/LC_MESSAGES/deskbar-applet.mo -share/locale/ka/LC_MESSAGES/deskbar-applet.mo -share/locale/kn/LC_MESSAGES/deskbar-applet.mo -share/locale/ko/LC_MESSAGES/deskbar-applet.mo -share/locale/ku/LC_MESSAGES/deskbar-applet.mo -share/locale/lt/LC_MESSAGES/deskbar-applet.mo -share/locale/lv/LC_MESSAGES/deskbar-applet.mo -share/locale/mg/LC_MESSAGES/deskbar-applet.mo -share/locale/mk/LC_MESSAGES/deskbar-applet.mo -share/locale/ml/LC_MESSAGES/deskbar-applet.mo -share/locale/mn/LC_MESSAGES/deskbar-applet.mo -share/locale/mr/LC_MESSAGES/deskbar-applet.mo -share/locale/nb/LC_MESSAGES/deskbar-applet.mo -share/locale/ne/LC_MESSAGES/deskbar-applet.mo -share/locale/nl/LC_MESSAGES/deskbar-applet.mo -share/locale/nn/LC_MESSAGES/deskbar-applet.mo -share/locale/oc/LC_MESSAGES/deskbar-applet.mo -share/locale/or/LC_MESSAGES/deskbar-applet.mo -share/locale/pa/LC_MESSAGES/deskbar-applet.mo -share/locale/pl/LC_MESSAGES/deskbar-applet.mo -share/locale/ps/LC_MESSAGES/deskbar-applet.mo -share/locale/pt/LC_MESSAGES/deskbar-applet.mo -share/locale/pt_BR/LC_MESSAGES/deskbar-applet.mo -share/locale/ro/LC_MESSAGES/deskbar-applet.mo -share/locale/ru/LC_MESSAGES/deskbar-applet.mo -share/locale/si/LC_MESSAGES/deskbar-applet.mo -share/locale/sk/LC_MESSAGES/deskbar-applet.mo -share/locale/sl/LC_MESSAGES/deskbar-applet.mo -share/locale/sq/LC_MESSAGES/deskbar-applet.mo -share/locale/sr/LC_MESSAGES/deskbar-applet.mo -share/locale/sr@latin/LC_MESSAGES/deskbar-applet.mo -share/locale/sv/LC_MESSAGES/deskbar-applet.mo -share/locale/ta/LC_MESSAGES/deskbar-applet.mo -share/locale/te/LC_MESSAGES/deskbar-applet.mo -share/locale/th/LC_MESSAGES/deskbar-applet.mo -share/locale/tr/LC_MESSAGES/deskbar-applet.mo -share/locale/uk/LC_MESSAGES/deskbar-applet.mo -share/locale/vi/LC_MESSAGES/deskbar-applet.mo -share/locale/zh_CN/LC_MESSAGES/deskbar-applet.mo -share/locale/zh_HK/LC_MESSAGES/deskbar-applet.mo -share/locale/zh_TW/LC_MESSAGES/deskbar-applet.mo -share/omf/deskbar/deskbar-C.omf -share/omf/deskbar/deskbar-ca.omf -share/omf/deskbar/deskbar-de.omf -share/omf/deskbar/deskbar-el.omf -share/omf/deskbar/deskbar-en_GB.omf -share/omf/deskbar/deskbar-es.omf -share/omf/deskbar/deskbar-fr.omf -share/omf/deskbar/deskbar-it.omf -share/omf/deskbar/deskbar-oc.omf -share/omf/deskbar/deskbar-pt_BR.omf -share/omf/deskbar/deskbar-ru.omf -share/omf/deskbar/deskbar-sv.omf -share/omf/deskbar/deskbar-uk.omf -share/omf/deskbar/deskbar-zh_CN.omf -@dirrm share/omf/deskbar -@dirrm share/gnome/help/deskbar/zh_CN/figures -@dirrm share/gnome/help/deskbar/zh_CN -@dirrm share/gnome/help/deskbar/uk/figures -@dirrm share/gnome/help/deskbar/uk -@dirrm share/gnome/help/deskbar/sv/figures -@dirrm share/gnome/help/deskbar/sv -@dirrm share/gnome/help/deskbar/ru/figures -@dirrm share/gnome/help/deskbar/ru -@dirrm share/gnome/help/deskbar/pt_BR/figures -@dirrm share/gnome/help/deskbar/pt_BR -@dirrm share/gnome/help/deskbar/oc/figures -@dirrm share/gnome/help/deskbar/oc -@dirrm share/gnome/help/deskbar/it/figures -@dirrm share/gnome/help/deskbar/it -@dirrm share/gnome/help/deskbar/fr/figures -@dirrm share/gnome/help/deskbar/fr -@dirrm share/gnome/help/deskbar/es/figures -@dirrm share/gnome/help/deskbar/es -@dirrm share/gnome/help/deskbar/en_GB/figures -@dirrm share/gnome/help/deskbar/en_GB -@dirrm share/gnome/help/deskbar/el/figures -@dirrm share/gnome/help/deskbar/el -@dirrm share/gnome/help/deskbar/de/figures -@dirrm share/gnome/help/deskbar/de -@dirrm share/gnome/help/deskbar/ca/figures -@dirrm share/gnome/help/deskbar/ca -@dirrm share/gnome/help/deskbar/C/figures -@dirrm share/gnome/help/deskbar/C -@dirrm share/gnome/help/deskbar -@dirrm %%DATADIR%%/art -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/ui/preferences -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/ui/iconentry -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/ui/cuemiac -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/ui -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/osutils -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/interfaces -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/handlers/gdmclient -%%EVO%%@dirrm %%PYTHON_SITELIBDIR%%/deskbar/handlers/evolution -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/handlers/actions -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/handlers -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/core/updater -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/core/keybinder -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/core/_userdirs -@dirrm %%PYTHON_SITELIBDIR%%/deskbar/core -@dirrm %%PYTHON_SITELIBDIR%%/deskbar -@dirrm lib/deskbar-applet/modules-2.20-compatible -@dirrm lib/deskbar-applet -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/deskutils/evolution-jescs/Makefile b/deskutils/evolution-jescs/Makefile deleted file mode 100644 index b1ea5840c..000000000 --- a/deskutils/evolution-jescs/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: evolution-jescs -# Date created: 08 September 2005 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= evolution-jescs -PORTVERSION= 2.26.0 -CATEGORIES= deskutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Sun Java Enterprise System Calendar Server provider for Evolution - -BUILD_DEPENDS= evolution:${PORTSDIR}/mail/evolution -RUN_DEPENDS= evolution:${PORTSDIR}/mail/evolution - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix gnomehack intlhack -INSTALLS_ICONS= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -EVO_VERSION= 2.26 -PLIST_SUB= EVO_VERSION=${EVO_VERSION} EDS_VERSION="1.2" VERSION="2.26" - -post-patch: - @${REINPLACE_CMD} -e 's|libdir/bonobo/servers|prefix/libdata/bonobo/servers|g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/deskutils/evolution-jescs/distinfo b/deskutils/evolution-jescs/distinfo deleted file mode 100644 index 51be94083..000000000 --- a/deskutils/evolution-jescs/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/evolution-jescs-2.26.0.tar.bz2) = dd59c0d9589f5ad4755fa4e473d7fe1f -SHA256 (gnome2/evolution-jescs-2.26.0.tar.bz2) = cff3cf2a9ce7e68d879ef0ba47884ebbe4cdec94b7872f3ef285153bb389a8b9 -SIZE (gnome2/evolution-jescs-2.26.0.tar.bz2) = 537795 diff --git a/deskutils/evolution-jescs/pkg-descr b/deskutils/evolution-jescs/pkg-descr deleted file mode 100644 index 252cf8eaf..000000000 --- a/deskutils/evolution-jescs/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This is the Evolution Connector for Sun Java Enterprise System Calendar Server -(SJESCS), which adds support for SJESCS 5.1 and above to Evolution. - -This connector supports the WCAP (Web Calendar Access Protocol) 2.0, 3.0, 3.1. diff --git a/deskutils/evolution-jescs/pkg-plist b/deskutils/evolution-jescs/pkg-plist deleted file mode 100644 index cad1ae2c8..000000000 --- a/deskutils/evolution-jescs/pkg-plist +++ /dev/null @@ -1,61 +0,0 @@ -lib/evolution-data-server-%%EDS_VERSION%%/camel-providers/libcamelsunone.la -lib/evolution-data-server-%%EDS_VERSION%%/camel-providers/libcamelsunone.so -lib/evolution-data-server-%%EDS_VERSION%%/camel-providers/libcamelsunone.urls -libdata/bonobo/servers/GNOME_Evolution_SunOne_Storage.server -libexec/evolution/%%EVO_VERSION%%/evolution-jescs -share/evolution/%%EVO_VERSION%%/icons/hicolor/16x16/categories/sunone-invitations.png -share/evolution/%%EVO_VERSION%%/icons/hicolor/22x22/categories/sunone-invitations.png -share/evolution/%%EVO_VERSION%%/icons/hicolor/24x24/categories/sunone-invitations.png -share/evolution/%%EVO_VERSION%%/icons/hicolor/32x32/categories/sunone-invitations.png -share/evolution/%%EVO_VERSION%%/icons/hicolor/48x48/categories/sunone-invitations.png -share/evolution-jescs/glade/sunone-add-permission-dialog.glade -share/evolution-jescs/glade/sunone-permissions-dialog.glade -share/evolution-jescs/glade/sunone-subscription-dialog.glade -share/icons/hicolor/16x16/apps/sun-connector.png -share/icons/hicolor/22x22/apps/sun-connector.png -share/icons/hicolor/24x24/apps/sun-connector.png -share/icons/hicolor/32x32/apps/sun-connector.png -share/icons/hicolor/48x48/apps/sun-connector.png -share/locale/ar/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/ca/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/cs/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/de/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/dz/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/en_CA/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/en_GB/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/es/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/fi/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/fr/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/it/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/ja/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/ko/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/nb/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/nl/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/oc/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/pl/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/pt/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/pt_BR/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/ru/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/rw/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/sk/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/sq/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/sv/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/uk/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/vi/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/zh_CN/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/zh_HK/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -share/locale/zh_TW/LC_MESSAGES/evolution-jescs-%%VERSION%%.mo -@dirrm share/evolution-jescs/glade -@dirrm share/evolution-jescs -@dirrmtry share/evolution/%%EVO_VERSION%%/icons/hicolor/32x32/categories -@dirrmtry share/evolution/%%EVO_VERSION%%/icons/hicolor/24x24/categories -@dirrmtry share/evolution/%%EVO_VERSION%%/icons/hicolor/22x22/categories -@dirrmtry share/evolution/%%EVO_VERSION%%/icons/hicolor/16x16/categories -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz diff --git a/deskutils/gnome-main-menu/Makefile b/deskutils/gnome-main-menu/Makefile deleted file mode 100644 index baea2f882..000000000 --- a/deskutils/gnome-main-menu/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: gnome-main-menu -# Date created: 06 July 2008 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnome-main-menu -PORTVERSION= 0.9.12 -PORTREVISION= 2 -CATEGORIES= deskutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Provides easy access to sets of GNOME applications - -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop - -USE_BZIP2= yes -USE_GNOME= gnomehack gnomeprefix gnomepanel intlhack eel2 gnomedesktop -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" - -GCONF_SCHEMAS= application-browser.schemas slab.schemas - -.include <bsd.port.mk> diff --git a/deskutils/gnome-main-menu/distinfo b/deskutils/gnome-main-menu/distinfo deleted file mode 100644 index 650dfbe0f..000000000 --- a/deskutils/gnome-main-menu/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-main-menu-0.9.12.tar.bz2) = 12ed9e69bc9d09a20263ff8926d330ef -SHA256 (gnome2/gnome-main-menu-0.9.12.tar.bz2) = af068405e510a5005205569c2fb90cbd9ac8d31129fe86cd11933105265c60d5 -SIZE (gnome2/gnome-main-menu-0.9.12.tar.bz2) = 576477 diff --git a/deskutils/gnome-main-menu/files/patch-application-browser_src_application-browser.c b/deskutils/gnome-main-menu/files/patch-application-browser_src_application-browser.c deleted file mode 100644 index becc28feb..000000000 --- a/deskutils/gnome-main-menu/files/patch-application-browser_src_application-browser.c +++ /dev/null @@ -1,11 +0,0 @@ ---- application-browser/src/application-browser.c.orig 2008-07-06 23:02:33.000000000 -0400 -+++ application-browser/src/application-browser.c 2008-07-06 23:02:50.000000000 -0400 -@@ -83,7 +83,7 @@ main (int argc, char *argv[]) - NewAppConfig *config = g_new0 (NewAppConfig, 1); - config->max_items = get_slab_gconf_int (NEW_APPS_MAX_ITEMS); - config->name = _("New Applications"); -- AppShellData *app_data = appshelldata_new ("applications.menu", config, -+ AppShellData *app_data = appshelldata_new ("gnome-applications.menu", config, - APPLICATION_BROWSER_PREFIX, GTK_ICON_SIZE_DND, TRUE, FALSE); - generate_categories (app_data); - diff --git a/deskutils/gnome-main-menu/files/patch-configure b/deskutils/gnome-main-menu/files/patch-configure deleted file mode 100644 index 9f32bd639..000000000 --- a/deskutils/gnome-main-menu/files/patch-configure +++ /dev/null @@ -1,86 +0,0 @@ ---- configure.orig 2008-10-08 13:36:57.000000000 -0400 -+++ configure 2008-10-08 13:38:39.000000000 -0400 -@@ -23975,12 +23975,12 @@ if test -n "$MAIN_MENU_CFLAGS"; then - pkg_cv_MAIN_MENU_CFLAGS="$MAIN_MENU_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ -- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" \$COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo \"") >&5 -- ($PKG_CONFIG --exists --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo ") 2>&5 -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" \$COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo \"") >&5 -+ ($PKG_CONFIG --exists --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo ") 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then -- pkg_cv_MAIN_MENU_CFLAGS=`$PKG_CONFIG --cflags " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo " 2>/dev/null` -+ pkg_cv_MAIN_MENU_CFLAGS=`$PKG_CONFIG --cflags " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo " 2>/dev/null` - else - pkg_failed=yes - fi -@@ -23991,12 +23991,12 @@ if test -n "$MAIN_MENU_LIBS"; then - pkg_cv_MAIN_MENU_LIBS="$MAIN_MENU_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ -- { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" \$COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo \"") >&5 -- ($PKG_CONFIG --exists --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo ") 2>&5 -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" \$COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo \"") >&5 -+ ($PKG_CONFIG --exists --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo ") 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then -- pkg_cv_MAIN_MENU_LIBS=`$PKG_CONFIG --libs " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo " 2>/dev/null` -+ pkg_cv_MAIN_MENU_LIBS=`$PKG_CONFIG --libs " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo " 2>/dev/null` - else - pkg_failed=yes - fi -@@ -24014,14 +24014,14 @@ else - _pkg_short_errors_supported=no - fi - if test $_pkg_short_errors_supported = yes; then -- MAIN_MENU_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo " 2>&1` -+ MAIN_MENU_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo " 2>&1` - else -- MAIN_MENU_PKG_ERRORS=`$PKG_CONFIG --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo " 2>&1` -+ MAIN_MENU_PKG_ERRORS=`$PKG_CONFIG --print-errors " $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo " 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$MAIN_MENU_PKG_ERRORS" >&5 - -- { { $as_echo "$as_me:$LINENO: error: Package requirements ( $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo ) were not met: -+ { { $as_echo "$as_me:$LINENO: error: Package requirements ( $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo ) were not met: - - $MAIN_MENU_PKG_ERRORS - -@@ -24032,7 +24032,7 @@ Alternatively, you may set the environme - and MAIN_MENU_LIBS to avoid the need to call pkg-config. - See the pkg-config man page for more details. - " >&5 --$as_echo "$as_me: error: Package requirements ( $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 NetworkManager libnm_glib >= 0.7.0 hal-storage cairo ) were not met: -+$as_echo "$as_me: error: Package requirements ( $COMMON_MODULES libpanelapplet-2.0 gnome-desktop-2.0 gconf-2.0 libgtop-2.0 libgnome-2.0 libgnomeui-2.0 dbus-glib-1 hal-storage cairo ) were not met: - - $MAIN_MENU_PKG_ERRORS - -@@ -24075,7 +24075,7 @@ $as_echo "yes" >&6; } - fi - - --for ac_header in iwlib.h -+for ac_header in # - do - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` - if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -@@ -24297,15 +24297,6 @@ fi - done - - --if test "x$have_iwlib" != "xyes" ; then -- { { $as_echo "$as_me:$LINENO: error: cannot find iwlib" >&5 --$as_echo "$as_me: error: cannot find iwlib" >&2;} -- { (exit 1); exit 1; }; } --else -- MAIN_MENU_LIBS="$MAIN_MENU_LIBS -liw" -- --fi -- - - - diff --git a/deskutils/gnome-main-menu/files/patch-libslab_directory-tile.c b/deskutils/gnome-main-menu/files/patch-libslab_directory-tile.c deleted file mode 100644 index 955b69721..000000000 --- a/deskutils/gnome-main-menu/files/patch-libslab_directory-tile.c +++ /dev/null @@ -1,9 +0,0 @@ ---- libslab/directory-tile.c.orig 2008-07-06 22:40:19.000000000 -0400 -+++ libslab/directory-tile.c 2008-07-06 22:40:33.000000000 -0400 -@@ -672,5 +672,5 @@ static void - disown_spawned_child (gpointer user_data) - { - setsid (); -- setpgrp (); -+ setpgrp (0, 0); - } diff --git a/deskutils/gnome-main-menu/files/patch-main-menu_src_Makefile.in b/deskutils/gnome-main-menu/files/patch-main-menu_src_Makefile.in deleted file mode 100644 index c010e5ebf..000000000 --- a/deskutils/gnome-main-menu/files/patch-main-menu_src_Makefile.in +++ /dev/null @@ -1,32 +0,0 @@ ---- main-menu/src/Makefile.in.orig 2008-07-06 22:33:39.000000000 -0400 -+++ main-menu/src/Makefile.in 2008-07-06 22:33:59.000000000 -0400 -@@ -48,8 +48,7 @@ libexecPROGRAMS_INSTALL = $(INSTALL_PROG - PROGRAMS = $(libexec_PROGRAMS) - am_main_menu_OBJECTS = main-menu.$(OBJEXT) main-menu-ui.$(OBJEXT) \ - main-menu-migration.$(OBJEXT) tile-table.$(OBJEXT) \ -- hard-drive-status-tile.$(OBJEXT) network-status-tile.$(OBJEXT) \ -- network-status-agent.$(OBJEXT) network-status-info.$(OBJEXT) \ -+ hard-drive-status-tile.$(OBJEXT) \ - tomboykeybinder.$(OBJEXT) eggaccelerators.$(OBJEXT) - main_menu_OBJECTS = $(am_main_menu_OBJECTS) - am__DEPENDENCIES_1 = -@@ -272,9 +271,6 @@ main_menu_SOURCES = \ - main-menu-migration.c main-menu-migration.h \ - tile-table.c tile-table.h \ - hard-drive-status-tile.c hard-drive-status-tile.h \ -- network-status-tile.c network-status-tile.h \ -- network-status-agent.c network-status-agent.h \ -- network-status-info.c network-status-info.h \ - tomboykeybinder.c tomboykeybinder.h \ - eggaccelerators.c eggaccelerators.h - -@@ -360,9 +356,6 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main-menu-migration.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main-menu-ui.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main-menu.Po@am__quote@ --@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network-status-agent.Po@am__quote@ --@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network-status-info.Po@am__quote@ --@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network-status-tile.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tile-table.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tomboykeybinder.Po@am__quote@ - diff --git a/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu-ui.c b/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu-ui.c deleted file mode 100644 index d038d2868..000000000 --- a/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu-ui.c +++ /dev/null @@ -1,55 +0,0 @@ ---- main-menu/src/main-menu-ui.c.orig 2008-07-06 22:31:43.000000000 -0400 -+++ main-menu/src/main-menu-ui.c 2008-07-06 22:33:32.000000000 -0400 -@@ -47,7 +47,6 @@ - #include "directory-tile.h" - #include "system-tile.h" - #include "hard-drive-status-tile.h" --#include "network-status-tile.h" - - #include "tile-table.h" - -@@ -100,7 +99,6 @@ typedef struct { - - GtkWidget *search_section; - GtkWidget *search_entry; -- GtkWidget *network_status; - - GtkNotebook *file_section; - GtkWidget *page_selectors [3]; -@@ -405,7 +403,6 @@ main_menu_ui_init (MainMenuUI *this) - - priv->status_section = NULL; - priv->system_section = NULL; -- priv->network_status = NULL; - - priv->volume_mon = NULL; - -@@ -730,19 +727,6 @@ create_status_section (MainMenuUI *this) - gtk_container_add (ctnr, tile); - gtk_widget_show_all (GTK_WIDGET (ctnr)); - -- ctnr = GTK_CONTAINER (glade_xml_get_widget ( -- priv->main_menu_xml, "network-status-container")); -- priv->network_status = network_status_tile_new (); -- -- gtk_widget_set_size_request (priv->network_status, 6 * icon_width, -1); -- -- g_signal_connect ( -- G_OBJECT (priv->network_status), "tile-action-triggered", -- G_CALLBACK (tile_action_triggered_cb), this); -- -- gtk_container_add (ctnr, priv->network_status); -- gtk_widget_show_all (GTK_WIDGET (ctnr)); -- - priv->status_section = glade_xml_get_widget ( - priv->main_menu_xml, "slab-status-section"); - } -@@ -1853,8 +1837,6 @@ present_slab_window (MainMenuUI *this) - { - MainMenuUIPrivate *priv = PRIVATE (this); - -- network_tile_update_status (priv->network_status); -- - update_recently_used_sections (this); - - gtk_window_present_with_time (GTK_WINDOW (priv->slab_window), gtk_get_current_event_time ()); diff --git a/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu.c b/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu.c deleted file mode 100644 index 0f30d84d3..000000000 --- a/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu.c +++ /dev/null @@ -1,10 +0,0 @@ ---- main-menu/src/main-menu.c.orig 2009-04-06 23:41:15.000000000 -0400 -+++ main-menu/src/main-menu.c 2009-04-06 23:41:27.000000000 -0400 -@@ -24,6 +24,7 @@ - - #include <glib.h> - #include <panel-applet.h> -+#include <libgnomeui/libgnomeui.h> - #include <string.h> - - #include "libslab-utils.h" diff --git a/deskutils/gnome-main-menu/pkg-descr b/deskutils/gnome-main-menu/pkg-descr deleted file mode 100644 index 0d18665c3..000000000 --- a/deskutils/gnome-main-menu/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -The gnome-main-menu is a set of two utilities. A gnome-panel applet similar -to the traditional main-menu but a few addtions and changes. In particular the -gnome-main-menu does not provide direct access to all the applications on the -system, but rather displays user specified "favorites" and recently launched -applications. - -Access to all the applications is made through the second of the three -utilities, the application-browser, which is a larger format application than -that the traditional main-menu which is managed by the window manager to allow -for resizing, etc. diff --git a/deskutils/gnome-main-menu/pkg-plist b/deskutils/gnome-main-menu/pkg-plist deleted file mode 100644 index 981f24047..000000000 --- a/deskutils/gnome-main-menu/pkg-plist +++ /dev/null @@ -1,127 +0,0 @@ -bin/application-browser -bin/trigger-panel-run-dialog -include/slab/app-resizer.h -include/slab/app-shell-startup.h -include/slab/app-shell.h -include/slab/application-tile.h -include/slab/directory-tile.h -include/slab/document-tile.h -include/slab/gnome-utils.h -include/slab/nameplate-tile.h -include/slab/nld-marshal.c -include/slab/nld-marshal.h -include/slab/search-bar.h -include/slab/search-context-picker.h -include/slab/search-entry-watermark.h -include/slab/search-entry.h -include/slab/shell-window.h -include/slab/slab-gnome-util.h -include/slab/slab-section.h -include/slab/system-tile.h -include/slab/tile.h -lib/libslab.a -lib/libslab.la -lib/libslab.so -lib/libslab.so.1 -libdata/bonobo/servers/GNOME_MainMenu.server -libdata/pkgconfig/libslab.pc -libexec/main-menu -share/applications/application-browser.desktop -share/applications/gnome-screensaver-lock.desktop -share/applications/gnome-session-logout.desktop -share/applications/gnome-session-shutdown.desktop -share/applications/trigger-panel-run-dialog.desktop -share/gnome-2.0/ui/GNOME_MainMenu_ContextMenu.xml -%%DATADIR%%/applications.xbel -%%DATADIR%%/documents.xbel -%%DATADIR%%/empty.ots -%%DATADIR%%/empty.ott -%%DATADIR%%/places.xbel -%%DATADIR%%/slab-window.glade -%%DATADIR%%/system-items.xbel -share/locale/af/LC_MESSAGES/gnome-main-menu.mo -share/locale/ar/LC_MESSAGES/gnome-main-menu.mo -share/locale/bg/LC_MESSAGES/gnome-main-menu.mo -share/locale/bn/LC_MESSAGES/gnome-main-menu.mo -share/locale/br/LC_MESSAGES/gnome-main-menu.mo -share/locale/bs/LC_MESSAGES/gnome-main-menu.mo -share/locale/ca/LC_MESSAGES/gnome-main-menu.mo -share/locale/cs/LC_MESSAGES/gnome-main-menu.mo -share/locale/cy/LC_MESSAGES/gnome-main-menu.mo -share/locale/da/LC_MESSAGES/gnome-main-menu.mo -share/locale/de/LC_MESSAGES/gnome-main-menu.mo -share/locale/dz/LC_MESSAGES/gnome-main-menu.mo -share/locale/el/LC_MESSAGES/gnome-main-menu.mo -share/locale/en_CA/LC_MESSAGES/gnome-main-menu.mo -share/locale/en_GB/LC_MESSAGES/gnome-main-menu.mo -share/locale/en_IGID/LC_MESSAGES/gnome-main-menu.mo -share/locale/en_US/LC_MESSAGES/gnome-main-menu.mo -share/locale/es/LC_MESSAGES/gnome-main-menu.mo -share/locale/et/LC_MESSAGES/gnome-main-menu.mo -share/locale/eu/LC_MESSAGES/gnome-main-menu.mo -share/locale/fi/LC_MESSAGES/gnome-main-menu.mo -share/locale/fr/LC_MESSAGES/gnome-main-menu.mo -share/locale/gl/LC_MESSAGES/gnome-main-menu.mo -share/locale/gu/LC_MESSAGES/gnome-main-menu.mo -share/locale/he/LC_MESSAGES/gnome-main-menu.mo -share/locale/hi/LC_MESSAGES/gnome-main-menu.mo -share/locale/hr/LC_MESSAGES/gnome-main-menu.mo -share/locale/hu/LC_MESSAGES/gnome-main-menu.mo -share/locale/id/LC_MESSAGES/gnome-main-menu.mo -share/locale/it/LC_MESSAGES/gnome-main-menu.mo -share/locale/ja/LC_MESSAGES/gnome-main-menu.mo -share/locale/ka/LC_MESSAGES/gnome-main-menu.mo -share/locale/km/LC_MESSAGES/gnome-main-menu.mo -share/locale/ko/LC_MESSAGES/gnome-main-menu.mo -share/locale/lo/LC_MESSAGES/gnome-main-menu.mo -share/locale/lt/LC_MESSAGES/gnome-main-menu.mo -share/locale/lv/LC_MESSAGES/gnome-main-menu.mo -share/locale/mk/LC_MESSAGES/gnome-main-menu.mo -share/locale/mr/LC_MESSAGES/gnome-main-menu.mo -share/locale/nb/LC_MESSAGES/gnome-main-menu.mo -share/locale/nl/LC_MESSAGES/gnome-main-menu.mo -share/locale/oc/LC_MESSAGES/gnome-main-menu.mo -share/locale/pa/LC_MESSAGES/gnome-main-menu.mo -share/locale/pl/LC_MESSAGES/gnome-main-menu.mo -share/locale/ps/LC_MESSAGES/gnome-main-menu.mo -share/locale/pt/LC_MESSAGES/gnome-main-menu.mo -share/locale/pt_BR/LC_MESSAGES/gnome-main-menu.mo -share/locale/ro/LC_MESSAGES/gnome-main-menu.mo -share/locale/ru/LC_MESSAGES/gnome-main-menu.mo -share/locale/sk/LC_MESSAGES/gnome-main-menu.mo -share/locale/sl/LC_MESSAGES/gnome-main-menu.mo -share/locale/sr/LC_MESSAGES/gnome-main-menu.mo -share/locale/sv/LC_MESSAGES/gnome-main-menu.mo -share/locale/ta/LC_MESSAGES/gnome-main-menu.mo -share/locale/th/LC_MESSAGES/gnome-main-menu.mo -share/locale/tr/LC_MESSAGES/gnome-main-menu.mo -share/locale/uk/LC_MESSAGES/gnome-main-menu.mo -share/locale/vi/LC_MESSAGES/gnome-main-menu.mo -share/locale/wa/LC_MESSAGES/gnome-main-menu.mo -share/locale/xh/LC_MESSAGES/gnome-main-menu.mo -share/locale/zh_CN/LC_MESSAGES/gnome-main-menu.mo -share/locale/zh_TW/LC_MESSAGES/gnome-main-menu.mo -share/locale/zu/LC_MESSAGES/gnome-main-menu.mo -@dirrm %%DATADIR%% -@dirrm include/slab -@dirrmtry share/applications -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/lo/LC_MESSAGES -@dirrmtry share/locale/lo -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/en_US/LC_MESSAGES -@dirrmtry share/locale/en_US -@dirrmtry share/locale/en_IGID/LC_MESSAGES -@dirrmtry share/locale/en_IGID -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz diff --git a/deskutils/gnome-utils/Makefile b/deskutils/gnome-utils/Makefile deleted file mode 100644 index ca49271ef..000000000 --- a/deskutils/gnome-utils/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: gnomeutils2 -# Date created: 06 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/deskutils/gnome-utils/Makefile,v 1.134 2009/03/17 23:13:44 kwm Exp $ -# - -PORTNAME= gnome-utils -PORTVERSION= 2.26.0 -PORTREVISION= 1 -PORTEPOCH= 1 -CATEGORIES= deskutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 support utilities - -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop - -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -USE_LDCONFIG= yes -INSTALLS_ICONS= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel \ - libgnomeprintui gnomedesktop ltverhack -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-dictionary.1 gnome-search-tool.1 gnome-system-log.1 \ - baobab.1 -GCONF_SCHEMAS= gnome-dictionary.schemas gnome-screenshot.schemas \ - gnome-search-tool.schemas baobab.schemas \ - gnome-system-log.schemas - -.include <bsd.port.mk> diff --git a/deskutils/gnome-utils/distinfo b/deskutils/gnome-utils/distinfo deleted file mode 100644 index 032b1ebd5..000000000 --- a/deskutils/gnome-utils/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-utils-2.26.0.tar.bz2) = 667400cfb9bee954028024ac3cf91a09 -SHA256 (gnome2/gnome-utils-2.26.0.tar.bz2) = 8407acc4f1839d86157d4eb19406cb8c0762729af8d0ddcc288844ffc9ecb120 -SIZE (gnome2/gnome-utils-2.26.0.tar.bz2) = 6882359 diff --git a/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c b/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c deleted file mode 100644 index f29974a81..000000000 --- a/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c +++ /dev/null @@ -1,10 +0,0 @@ ---- gsearchtool/gsearchtool-support.c.orig 2008-12-19 16:53:22.000000000 -0500 -+++ gsearchtool/gsearchtool-support.c 2009-02-27 17:30:06.000000000 -0500 -@@ -32,6 +32,7 @@ - #include <string.h> - #include <glib/gi18n.h> - #include <glib.h> -+#include <sys/types.h> - #include <regex.h> - #include <gdk/gdkx.h> - #include <libart_lgpl/art_rgb.h> diff --git a/deskutils/gnome-utils/files/patch-logview_gtkmessagearea.c b/deskutils/gnome-utils/files/patch-logview_gtkmessagearea.c deleted file mode 100644 index 2388e3449..000000000 --- a/deskutils/gnome-utils/files/patch-logview_gtkmessagearea.c +++ /dev/null @@ -1,11 +0,0 @@ ---- logview/gtkmessagearea.c.orig 2009-03-21 17:23:53.000000000 -0400 -+++ logview/gtkmessagearea.c 2009-03-21 17:24:08.000000000 -0400 -@@ -33,6 +33,8 @@ - - #include "gtkmessagearea.h" - -+#include <stdlib.h> -+ - #include <glib/gi18n.h> - #include <gtk/gtk.h> - #include <gdk/gdkkeysyms.h> diff --git a/deskutils/gnome-utils/files/patch-logview_logview-manager.c b/deskutils/gnome-utils/files/patch-logview_logview-manager.c deleted file mode 100644 index 00ec357ef..000000000 --- a/deskutils/gnome-utils/files/patch-logview_logview-manager.c +++ /dev/null @@ -1,10 +0,0 @@ ---- logview/logview-manager.c.orig 2009-03-21 17:25:27.000000000 -0400 -+++ logview/logview-manager.c 2009-03-21 17:25:37.000000000 -0400 -@@ -25,6 +25,7 @@ - - #include <glib/gi18n.h> - -+#include "logview-app.h" - #include "logview-prefs.h" - #include "logview-marshal.h" - diff --git a/deskutils/gnome-utils/files/patch-logview_logview-utils.c b/deskutils/gnome-utils/files/patch-logview_logview-utils.c deleted file mode 100644 index 4faad7021..000000000 --- a/deskutils/gnome-utils/files/patch-logview_logview-utils.c +++ /dev/null @@ -1,11 +0,0 @@ ---- logview/logview-utils.c.orig 2009-03-21 17:22:41.000000000 -0400 -+++ logview/logview-utils.c 2009-03-21 17:23:22.000000000 -0400 -@@ -136,7 +136,7 @@ log_read_dates (const char **buffer_line - { - int current_year, offsetyear, i, n, rangemin, rangemax, timestamp_len = 0; - GSList *days = NULL; -- GDate *date, *newdate; -+ GDate *date = NULL, *newdate; - struct tm *tmptm; - char *date_string; - Day *day; diff --git a/deskutils/gnome-utils/pkg-descr b/deskutils/gnome-utils/pkg-descr deleted file mode 100644 index bfe154899..000000000 --- a/deskutils/gnome-utils/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -GNOME 2.0 support utilities, including a dictionary looker-upper, -a frontend for find(1), a system log viewer, and more. diff --git a/deskutils/gnome-utils/pkg-plist b/deskutils/gnome-utils/pkg-plist deleted file mode 100644 index c53f053ed..000000000 --- a/deskutils/gnome-utils/pkg-plist +++ /dev/null @@ -1,727 +0,0 @@ -bin/baobab -bin/gnome-dictionary -bin/gnome-panel-screenshot -bin/gnome-screenshot -bin/gnome-search-tool -bin/gnome-system-log -include/gdict-1.0/gdict/gdict-client-context.h -include/gdict-1.0/gdict/gdict-context.h -include/gdict-1.0/gdict/gdict-database-chooser.h -include/gdict-1.0/gdict/gdict-defbox.h -include/gdict-1.0/gdict/gdict-enum-types.h -include/gdict-1.0/gdict/gdict-source-loader.h -include/gdict-1.0/gdict/gdict-source-chooser.h -include/gdict-1.0/gdict/gdict-source.h -include/gdict-1.0/gdict/gdict-speller.h -include/gdict-1.0/gdict/gdict-strategy-chooser.h -include/gdict-1.0/gdict/gdict-utils.h -include/gdict-1.0/gdict/gdict-version.h -include/gdict-1.0/gdict/gdict.h -lib/libgdict-1.0.a -lib/libgdict-1.0.la -lib/libgdict-1.0.so -lib/libgdict-1.0.so.6 -libdata/bonobo/servers/GNOME_DictionaryApplet.server -libdata/pkgconfig/gdict-1.0.pc -libexec/gnome-dictionary-applet -share/doc/gdict/GdictClientContext.html -share/doc/gdict/GdictDatabaseChooser.html -share/doc/gdict/GdictDefbox.html -share/doc/gdict/GdictSource.html -share/doc/gdict/GdictSourceChooser.html -share/doc/gdict/GdictSourceLoader.html -share/doc/gdict/GdictSpeller.html -share/doc/gdict/GdictStrategyChooser.html -share/doc/gdict/ch05.html -share/doc/gdict/ch06.html -share/doc/gdict/context-types.html -share/doc/gdict/context.html -share/doc/gdict/gdict-Gdict-Utilities.html -share/doc/gdict/gdict-Gdict-Version-Checking.html -share/doc/gdict/gdict-GdictContext.html -share/doc/gdict/gdict-utils.html -share/doc/gdict/gdict.devhelp -share/doc/gdict/gdict.devhelp2 -share/doc/gdict/gdict.html -share/doc/gdict/gdictui.html -share/doc/gdict/home.png -share/doc/gdict/index.html -share/doc/gdict/index.sgml -share/doc/gdict/ix01.html -share/doc/gdict/ix02.html -share/doc/gdict/ix03.html -share/doc/gdict/ix04.html -share/doc/gdict/introduction.html -share/doc/gdict/left.png -share/doc/gdict/right.png -share/doc/gdict/sources.html -share/doc/gdict/style.css -share/doc/gdict/up.png -share/applications/baobab.desktop -share/applications/gnome-dictionary.desktop -share/applications/gnome-screenshot.desktop -share/applications/gnome-search-tool.desktop -share/applications/gnome-system-log.desktop -share/baobab/pixmaps/baobab.glade -share/baobab/pixmaps/shot.png -share/gdict-1.0/sources/default.desktop -share/gdict-1.0/sources/spanish.desktop -share/gdict-1.0/sources/thai.desktop -share/gnome-2.0/ui/GNOME_DictionaryApplet.xml -share/gnome-dictionary/gnome-dictionary-preferences.glade -share/gnome-dictionary/gnome-dictionary-ui.xml -share/gnome-screenshot/gnome-screenshot.ui -%%DATADIR%%/logview-toolbar.xml -share/gnome/help/baobab/C/baobab.xml -share/gnome/help/baobab/C/figures/baobab_fullscan.png -share/gnome/help/baobab/C/figures/baobab_prefs.png -share/gnome/help/baobab/C/figures/baobab_remote.png -share/gnome/help/baobab/C/figures/baobab_ringschart1.png -share/gnome/help/baobab/C/figures/baobab_ringschart2.png -share/gnome/help/baobab/C/figures/baobab_treemaps.png -share/gnome/help/baobab/C/figures/baobab_window.png -share/gnome/help/baobab/C/legal.xml -share/gnome/help/baobab/ca/baobab.xml -share/gnome/help/baobab/ca/figures/baobab_fullscan.png -share/gnome/help/baobab/ca/figures/baobab_prefs.png -share/gnome/help/baobab/ca/figures/baobab_remote.png -share/gnome/help/baobab/ca/figures/baobab_ringschart1.png -share/gnome/help/baobab/ca/figures/baobab_ringschart2.png -share/gnome/help/baobab/ca/figures/baobab_treemaps.png -share/gnome/help/baobab/ca/figures/baobab_window.png -share/gnome/help/baobab/cs/baobab.xml -share/gnome/help/baobab/cs/figures/baobab_fullscan.png -share/gnome/help/baobab/cs/figures/baobab_prefs.png -share/gnome/help/baobab/cs/figures/baobab_remote.png -share/gnome/help/baobab/cs/figures/baobab_ringschart1.png -share/gnome/help/baobab/cs/figures/baobab_ringschart2.png -share/gnome/help/baobab/cs/figures/baobab_treemaps.png -share/gnome/help/baobab/cs/figures/baobab_window.png -share/gnome/help/baobab/da/baobab.xml -share/gnome/help/baobab/da/figures/baobab_fullscan.png -share/gnome/help/baobab/da/figures/baobab_prefs.png -share/gnome/help/baobab/da/figures/baobab_remote.png -share/gnome/help/baobab/da/figures/baobab_ringschart1.png -share/gnome/help/baobab/da/figures/baobab_ringschart2.png -share/gnome/help/baobab/da/figures/baobab_treemaps.png -share/gnome/help/baobab/da/figures/baobab_window.png -share/gnome/help/baobab/de/baobab.xml -share/gnome/help/baobab/de/figures/baobab_fullscan.png -share/gnome/help/baobab/de/figures/baobab_prefs.png -share/gnome/help/baobab/de/figures/baobab_remote.png -share/gnome/help/baobab/de/figures/baobab_ringschart1.png -share/gnome/help/baobab/de/figures/baobab_ringschart2.png -share/gnome/help/baobab/de/figures/baobab_treemaps.png -share/gnome/help/baobab/de/figures/baobab_window.png -share/gnome/help/baobab/en_GB/baobab.xml -share/gnome/help/baobab/en_GB/figures/baobab_fullscan.png -share/gnome/help/baobab/en_GB/figures/baobab_prefs.png -share/gnome/help/baobab/en_GB/figures/baobab_remote.png -share/gnome/help/baobab/en_GB/figures/baobab_ringschart1.png -share/gnome/help/baobab/en_GB/figures/baobab_ringschart2.png -share/gnome/help/baobab/en_GB/figures/baobab_treemaps.png -share/gnome/help/baobab/en_GB/figures/baobab_window.png -share/gnome/help/baobab/es/baobab.xml -share/gnome/help/baobab/es/figures/baobab_fullscan.png -share/gnome/help/baobab/es/figures/baobab_prefs.png -share/gnome/help/baobab/es/figures/baobab_remote.png -share/gnome/help/baobab/es/figures/baobab_ringschart1.png -share/gnome/help/baobab/es/figures/baobab_ringschart2.png -share/gnome/help/baobab/es/figures/baobab_treemaps.png -share/gnome/help/baobab/es/figures/baobab_window.png -share/gnome/help/baobab/eu/baobab.xml -share/gnome/help/baobab/eu/figures/baobab_fullscan.png -share/gnome/help/baobab/eu/figures/baobab_prefs.png -share/gnome/help/baobab/eu/figures/baobab_remote.png -share/gnome/help/baobab/eu/figures/baobab_ringschart1.png -share/gnome/help/baobab/eu/figures/baobab_ringschart2.png -share/gnome/help/baobab/eu/figures/baobab_treemaps.png -share/gnome/help/baobab/eu/figures/baobab_window.png -share/gnome/help/baobab/fi/baobab.xml -share/gnome/help/baobab/fi/figures/baobab_fullscan.png -share/gnome/help/baobab/fi/figures/baobab_prefs.png -share/gnome/help/baobab/fi/figures/baobab_remote.png -share/gnome/help/baobab/fi/figures/baobab_ringschart1.png -share/gnome/help/baobab/fi/figures/baobab_ringschart2.png -share/gnome/help/baobab/fi/figures/baobab_treemaps.png -share/gnome/help/baobab/fi/figures/baobab_window.png -share/gnome/help/baobab/fr/baobab.xml -share/gnome/help/baobab/fr/figures/baobab_fullscan.png -share/gnome/help/baobab/fr/figures/baobab_prefs.png -share/gnome/help/baobab/fr/figures/baobab_remote.png -share/gnome/help/baobab/fr/figures/baobab_ringschart1.png -share/gnome/help/baobab/fr/figures/baobab_ringschart2.png -share/gnome/help/baobab/fr/figures/baobab_treemaps.png -share/gnome/help/baobab/fr/figures/baobab_window.png -share/gnome/help/baobab/it/baobab.xml -share/gnome/help/baobab/it/figures/baobab_fullscan.png -share/gnome/help/baobab/it/figures/baobab_prefs.png -share/gnome/help/baobab/it/figures/baobab_remote.png -share/gnome/help/baobab/it/figures/baobab_ringschart1.png -share/gnome/help/baobab/it/figures/baobab_ringschart2.png -share/gnome/help/baobab/it/figures/baobab_treemaps.png -share/gnome/help/baobab/it/figures/baobab_window.png -share/gnome/help/baobab/oc/baobab.xml -share/gnome/help/baobab/oc/figures/baobab_fullscan.png -share/gnome/help/baobab/oc/figures/baobab_prefs.png -share/gnome/help/baobab/oc/figures/baobab_remote.png -share/gnome/help/baobab/oc/figures/baobab_ringschart1.png -share/gnome/help/baobab/oc/figures/baobab_ringschart2.png -share/gnome/help/baobab/oc/figures/baobab_treemaps.png -share/gnome/help/baobab/oc/figures/baobab_window.png -share/gnome/help/baobab/pl/baobab.xml -share/gnome/help/baobab/pl/figures/baobab_fullscan.png -share/gnome/help/baobab/pl/figures/baobab_prefs.png -share/gnome/help/baobab/pl/figures/baobab_remote.png -share/gnome/help/baobab/pl/figures/baobab_ringschart1.png -share/gnome/help/baobab/pl/figures/baobab_ringschart2.png -share/gnome/help/baobab/pl/figures/baobab_treemaps.png -share/gnome/help/baobab/pl/figures/baobab_window.png -share/gnome/help/baobab/ru/baobab.xml -share/gnome/help/baobab/ru/figures/baobab_fullscan.png -share/gnome/help/baobab/ru/figures/baobab_prefs.png -share/gnome/help/baobab/ru/figures/baobab_remote.png -share/gnome/help/baobab/ru/figures/baobab_ringschart1.png -share/gnome/help/baobab/ru/figures/baobab_ringschart2.png -share/gnome/help/baobab/ru/figures/baobab_treemaps.png -share/gnome/help/baobab/ru/figures/baobab_window.png -share/gnome/help/baobab/sv/baobab.xml -share/gnome/help/baobab/sv/figures/baobab_fullscan.png -share/gnome/help/baobab/sv/figures/baobab_prefs.png -share/gnome/help/baobab/sv/figures/baobab_remote.png -share/gnome/help/baobab/sv/figures/baobab_ringschart1.png -share/gnome/help/baobab/sv/figures/baobab_ringschart2.png -share/gnome/help/baobab/sv/figures/baobab_treemaps.png -share/gnome/help/baobab/sv/figures/baobab_window.png -share/gnome/help/baobab/uk/baobab.xml -share/gnome/help/baobab/uk/figures/baobab_fullscan.png -share/gnome/help/baobab/uk/figures/baobab_prefs.png -share/gnome/help/baobab/uk/figures/baobab_remote.png -share/gnome/help/baobab/uk/figures/baobab_ringschart1.png -share/gnome/help/baobab/uk/figures/baobab_ringschart2.png -share/gnome/help/baobab/uk/figures/baobab_treemaps.png -share/gnome/help/baobab/uk/figures/baobab_window.png -share/gnome/help/baobab/zh_HK/baobab.xml -share/gnome/help/baobab/zh_HK/figures/baobab_fullscan.png -share/gnome/help/baobab/zh_HK/figures/baobab_prefs.png -share/gnome/help/baobab/zh_HK/figures/baobab_remote.png -share/gnome/help/baobab/zh_HK/figures/baobab_ringschart1.png -share/gnome/help/baobab/zh_HK/figures/baobab_ringschart2.png -share/gnome/help/baobab/zh_HK/figures/baobab_treemaps.png -share/gnome/help/baobab/zh_HK/figures/baobab_window.png -share/gnome/help/baobab/zh_TW/baobab.xml -share/gnome/help/baobab/zh_TW/figures/baobab_fullscan.png -share/gnome/help/baobab/zh_TW/figures/baobab_prefs.png -share/gnome/help/baobab/zh_TW/figures/baobab_remote.png -share/gnome/help/baobab/zh_TW/figures/baobab_ringschart1.png -share/gnome/help/baobab/zh_TW/figures/baobab_ringschart2.png -share/gnome/help/baobab/zh_TW/figures/baobab_treemaps.png -share/gnome/help/baobab/zh_TW/figures/baobab_window.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/C/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/C/legal.xml -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/ca/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/de/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/el/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/en_GB/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/es/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/eu/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/fi/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/fr/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/it/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/oc/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/ru/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/sv/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/uk/gnome-dictionary.xml -share/gnome/help/gnome-search-tool/C/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/C/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/C/legal.xml -share/gnome/help/gnome-search-tool/ca/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/ca/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/de/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/de/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/en_GB/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/en_GB/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/es/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/es/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/eu/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/eu/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/fi/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/fi/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/fr/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/fr/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/it/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/it/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/ko/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/ko/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/oc/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/oc/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/ru/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/ru/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/sv/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/sv/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/uk/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/uk/gnome-search-tool.xml -share/gnome/help/gnome-system-log/C/figures/syslog_window.png -share/gnome/help/gnome-system-log/C/gnome-system-log.xml -share/gnome/help/gnome-system-log/C/legal.xml -share/gnome/help/gnome-system-log/ca/figures/syslog_window.png -share/gnome/help/gnome-system-log/ca/gnome-system-log.xml -share/gnome/help/gnome-system-log/de/figures/syslog_window.png -share/gnome/help/gnome-system-log/de/gnome-system-log.xml -share/gnome/help/gnome-system-log/el/figures/syslog_window.png -share/gnome/help/gnome-system-log/el/gnome-system-log.xml -share/gnome/help/gnome-system-log/en_GB/figures/syslog_window.png -share/gnome/help/gnome-system-log/en_GB/gnome-system-log.xml -share/gnome/help/gnome-system-log/es/figures/syslog_window.png -share/gnome/help/gnome-system-log/es/gnome-system-log.xml -share/gnome/help/gnome-system-log/eu/figures/syslog_window.png -share/gnome/help/gnome-system-log/eu/gnome-system-log.xml -share/gnome/help/gnome-system-log/fi/figures/syslog_window.png -share/gnome/help/gnome-system-log/fi/gnome-system-log.xml -share/gnome/help/gnome-system-log/fr/figures/syslog_window.png -share/gnome/help/gnome-system-log/fr/gnome-system-log.xml -share/gnome/help/gnome-system-log/it/figures/syslog_window.png -share/gnome/help/gnome-system-log/it/gnome-system-log.xml -share/gnome/help/gnome-system-log/ko/figures/syslog_window.png -share/gnome/help/gnome-system-log/ko/gnome-system-log.xml -share/gnome/help/gnome-system-log/oc/figures/syslog_window.png -share/gnome/help/gnome-system-log/oc/gnome-system-log.xml -share/gnome/help/gnome-system-log/ru/figures/syslog_window.png -share/gnome/help/gnome-system-log/ru/gnome-system-log.xml -share/gnome/help/gnome-system-log/sv/figures/syslog_window.png -share/gnome/help/gnome-system-log/sv/gnome-system-log.xml -share/gnome/help/gnome-system-log/uk/figures/syslog_window.png -share/gnome/help/gnome-system-log/uk/gnome-system-log.xml -share/omf/baobab/baobab-C.omf -share/omf/baobab/baobab-ca.omf -share/omf/baobab/baobab-cs.omf -share/omf/baobab/baobab-da.omf -share/omf/baobab/baobab-de.omf -share/omf/baobab/baobab-en_GB.omf -share/omf/baobab/baobab-es.omf -share/omf/baobab/baobab-eu.omf -share/omf/baobab/baobab-fi.omf -share/omf/baobab/baobab-fr.omf -share/omf/baobab/baobab-it.omf -share/omf/baobab/baobab-oc.omf -share/omf/baobab/baobab-pl.omf -share/omf/baobab/baobab-ru.omf -share/omf/baobab/baobab-sv.omf -share/omf/baobab/baobab-uk.omf -share/omf/baobab/baobab-zh_HK.omf -share/omf/baobab/baobab-zh_TW.omf -share/omf/gnome-dictionary/gnome-dictionary-C.omf -share/omf/gnome-dictionary/gnome-dictionary-ca.omf -share/omf/gnome-dictionary/gnome-dictionary-de.omf -share/omf/gnome-dictionary/gnome-dictionary-el.omf -share/omf/gnome-dictionary/gnome-dictionary-en_GB.omf -share/omf/gnome-dictionary/gnome-dictionary-es.omf -share/omf/gnome-dictionary/gnome-dictionary-eu.omf -share/omf/gnome-dictionary/gnome-dictionary-fi.omf -share/omf/gnome-dictionary/gnome-dictionary-fr.omf -share/omf/gnome-dictionary/gnome-dictionary-it.omf -share/omf/gnome-dictionary/gnome-dictionary-oc.omf -share/omf/gnome-dictionary/gnome-dictionary-ru.omf -share/omf/gnome-dictionary/gnome-dictionary-sv.omf -share/omf/gnome-dictionary/gnome-dictionary-uk.omf -share/omf/gnome-search-tool/gnome-search-tool-C.omf -share/omf/gnome-search-tool/gnome-search-tool-ca.omf -share/omf/gnome-search-tool/gnome-search-tool-de.omf -share/omf/gnome-search-tool/gnome-search-tool-en_GB.omf -share/omf/gnome-search-tool/gnome-search-tool-es.omf -share/omf/gnome-search-tool/gnome-search-tool-eu.omf -share/omf/gnome-search-tool/gnome-search-tool-fi.omf -share/omf/gnome-search-tool/gnome-search-tool-it.omf -share/omf/gnome-search-tool/gnome-search-tool-ko.omf -share/omf/gnome-search-tool/gnome-search-tool-oc.omf -share/omf/gnome-search-tool/gnome-search-tool-fr.omf -share/omf/gnome-search-tool/gnome-search-tool-ru.omf -share/omf/gnome-search-tool/gnome-search-tool-sv.omf -share/omf/gnome-search-tool/gnome-search-tool-uk.omf -share/omf/gnome-system-log/gnome-system-log-C.omf -share/omf/gnome-system-log/gnome-system-log-ca.omf -share/omf/gnome-system-log/gnome-system-log-de.omf -share/omf/gnome-system-log/gnome-system-log-el.omf -share/omf/gnome-system-log/gnome-system-log-en_GB.omf -share/omf/gnome-system-log/gnome-system-log-es.omf -share/omf/gnome-system-log/gnome-system-log-eu.omf -share/omf/gnome-system-log/gnome-system-log-fi.omf -share/omf/gnome-system-log/gnome-system-log-fr.omf -share/omf/gnome-system-log/gnome-system-log-it.omf -share/omf/gnome-system-log/gnome-system-log-ko.omf -share/omf/gnome-system-log/gnome-system-log-oc.omf -share/omf/gnome-system-log/gnome-system-log-ru.omf -share/omf/gnome-system-log/gnome-system-log-sv.omf -share/omf/gnome-system-log/gnome-system-log-uk.omf -share/pixmaps/gsearchtool/thumbnail_frame.png -share/icons/hicolor/24x24/apps/baobab.png -share/icons/hicolor/scalable/apps/baobab.svg -share/locale/am/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/as/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ast/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/az/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/be/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/da/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/de/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/el/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/es/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/et/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/he/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/id/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/it/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mai/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/or/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ps/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/si/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/te/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/th/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-utils-2.0.mo -@dirrm share/pixmaps/gsearchtool -@dirrm share/omf/gnome-system-log -@dirrm share/omf/gnome-search-tool -@dirrm share/omf/gnome-dictionary -@dirrm share/omf/baobab -@dirrm share/gnome/help/gnome-system-log/uk/figures -@dirrm share/gnome/help/gnome-system-log/uk -@dirrm share/gnome/help/gnome-system-log/sv/figures -@dirrm share/gnome/help/gnome-system-log/sv -@dirrm share/gnome/help/gnome-system-log/ru/figures -@dirrm share/gnome/help/gnome-system-log/ru -@dirrm share/gnome/help/gnome-system-log/oc/figures -@dirrm share/gnome/help/gnome-system-log/oc -@dirrm share/gnome/help/gnome-system-log/ko/figures -@dirrm share/gnome/help/gnome-system-log/ko -@dirrm share/gnome/help/gnome-system-log/it/figures -@dirrm share/gnome/help/gnome-system-log/it -@dirrm share/gnome/help/gnome-system-log/fr/figures -@dirrm share/gnome/help/gnome-system-log/fr -@dirrm share/gnome/help/gnome-system-log/fi/figures -@dirrm share/gnome/help/gnome-system-log/fi -@dirrm share/gnome/help/gnome-system-log/eu/figures -@dirrm share/gnome/help/gnome-system-log/eu -@dirrm share/gnome/help/gnome-system-log/es/figures -@dirrm share/gnome/help/gnome-system-log/es -@dirrm share/gnome/help/gnome-system-log/en_GB/figures -@dirrm share/gnome/help/gnome-system-log/en_GB -@dirrm share/gnome/help/gnome-system-log/el/figures -@dirrm share/gnome/help/gnome-system-log/el -@dirrm share/gnome/help/gnome-system-log/de/figures -@dirrm share/gnome/help/gnome-system-log/de -@dirrm share/gnome/help/gnome-system-log/ca/figures -@dirrm share/gnome/help/gnome-system-log/ca -@dirrm share/gnome/help/gnome-system-log/C/figures -@dirrm share/gnome/help/gnome-system-log/C -@dirrm share/gnome/help/gnome-system-log -@dirrm share/gnome/help/gnome-search-tool/uk/figures -@dirrm share/gnome/help/gnome-search-tool/uk -@dirrm share/gnome/help/gnome-search-tool/sv/figures -@dirrm share/gnome/help/gnome-search-tool/sv -@dirrm share/gnome/help/gnome-search-tool/ru/figures -@dirrm share/gnome/help/gnome-search-tool/ru -@dirrm share/gnome/help/gnome-search-tool/oc/figures -@dirrm share/gnome/help/gnome-search-tool/oc -@dirrm share/gnome/help/gnome-search-tool/ko/figures -@dirrm share/gnome/help/gnome-search-tool/ko -@dirrm share/gnome/help/gnome-search-tool/it/figures -@dirrm share/gnome/help/gnome-search-tool/it -@dirrm share/gnome/help/gnome-search-tool/fr/figures -@dirrm share/gnome/help/gnome-search-tool/fr -@dirrm share/gnome/help/gnome-search-tool/fi/figures -@dirrm share/gnome/help/gnome-search-tool/fi -@dirrm share/gnome/help/gnome-search-tool/eu/figures -@dirrm share/gnome/help/gnome-search-tool/eu -@dirrm share/gnome/help/gnome-search-tool/es/figures -@dirrm share/gnome/help/gnome-search-tool/es -@dirrm share/gnome/help/gnome-search-tool/en_GB/figures -@dirrm share/gnome/help/gnome-search-tool/en_GB -@dirrm share/gnome/help/gnome-search-tool/de/figures -@dirrm share/gnome/help/gnome-search-tool/de -@dirrm share/gnome/help/gnome-search-tool/ca/figures -@dirrm share/gnome/help/gnome-search-tool/ca -@dirrm share/gnome/help/gnome-search-tool/C/figures -@dirrm share/gnome/help/gnome-search-tool/C -@dirrm share/gnome/help/gnome-search-tool -@dirrm share/gnome/help/gnome-dictionary/uk/figures -@dirrm share/gnome/help/gnome-dictionary/uk -@dirrm share/gnome/help/gnome-dictionary/sv/figures -@dirrm share/gnome/help/gnome-dictionary/sv -@dirrm share/gnome/help/gnome-dictionary/ru/figures -@dirrm share/gnome/help/gnome-dictionary/ru -@dirrm share/gnome/help/gnome-dictionary/oc/figures -@dirrm share/gnome/help/gnome-dictionary/oc -@dirrm share/gnome/help/gnome-dictionary/it/figures -@dirrm share/gnome/help/gnome-dictionary/it -@dirrm share/gnome/help/gnome-dictionary/fr/figures -@dirrm share/gnome/help/gnome-dictionary/fr -@dirrm share/gnome/help/gnome-dictionary/fi/figures -@dirrm share/gnome/help/gnome-dictionary/fi -@dirrm share/gnome/help/gnome-dictionary/eu/figures -@dirrm share/gnome/help/gnome-dictionary/eu -@dirrm share/gnome/help/gnome-dictionary/es/figures -@dirrm share/gnome/help/gnome-dictionary/es -@dirrm share/gnome/help/gnome-dictionary/en_GB/figures -@dirrm share/gnome/help/gnome-dictionary/en_GB -@dirrm share/gnome/help/gnome-dictionary/el/figures -@dirrm share/gnome/help/gnome-dictionary/el -@dirrm share/gnome/help/gnome-dictionary/de/figures -@dirrm share/gnome/help/gnome-dictionary/de -@dirrm share/gnome/help/gnome-dictionary/ca/figures -@dirrm share/gnome/help/gnome-dictionary/ca -@dirrm share/gnome/help/gnome-dictionary/C/figures -@dirrm share/gnome/help/gnome-dictionary/C -@dirrm share/gnome/help/gnome-dictionary -@dirrm share/gnome/help/baobab/zh_TW/figures -@dirrm share/gnome/help/baobab/zh_TW -@dirrm share/gnome/help/baobab/zh_HK/figures -@dirrm share/gnome/help/baobab/zh_HK -@dirrm share/gnome/help/baobab/uk/figures -@dirrm share/gnome/help/baobab/uk -@dirrm share/gnome/help/baobab/sv/figures -@dirrm share/gnome/help/baobab/sv -@dirrm share/gnome/help/baobab/ru/figures -@dirrm share/gnome/help/baobab/ru -@dirrm share/gnome/help/baobab/pl/figures -@dirrm share/gnome/help/baobab/pl -@dirrm share/gnome/help/baobab/oc/figures -@dirrm share/gnome/help/baobab/oc -@dirrm share/gnome/help/baobab/it/figures -@dirrm share/gnome/help/baobab/it -@dirrm share/gnome/help/baobab/fr/figures -@dirrm share/gnome/help/baobab/fr -@dirrm share/gnome/help/baobab/fi/figures -@dirrm share/gnome/help/baobab/fi -@dirrm share/gnome/help/baobab/eu/figures -@dirrm share/gnome/help/baobab/eu -@dirrm share/gnome/help/baobab/es/figures -@dirrm share/gnome/help/baobab/es -@dirrm share/gnome/help/baobab/en_GB/figures -@dirrm share/gnome/help/baobab/en_GB -@dirrm share/gnome/help/baobab/de/figures -@dirrm share/gnome/help/baobab/de -@dirrm share/gnome/help/baobab/da/figures -@dirrm share/gnome/help/baobab/da -@dirrm share/gnome/help/baobab/cs/figures -@dirrm share/gnome/help/baobab/cs -@dirrm share/gnome/help/baobab/ca/figures -@dirrm share/gnome/help/baobab/ca -@dirrm share/gnome/help/baobab/C/figures -@dirrm share/gnome/help/baobab/C -@dirrm share/gnome/help/baobab -@dirrm %%DATADIR%% -@dirrm share/gnome-screenshot -@dirrm share/gnome-dictionary -@dirrm share/gdict-1.0/sources -@dirrm share/gdict-1.0 -@dirrm share/baobab/pixmaps -@dirrm share/baobab -@dirrm share/doc/gdict -@dirrm include/gdict-1.0/gdict -@dirrm include/gdict-1.0 -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/deskutils/gucharmap/Makefile b/deskutils/gucharmap/Makefile deleted file mode 100644 index bab9ffafc..000000000 --- a/deskutils/gucharmap/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: gucharmap -# Date created: 02 Mar 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/deskutils/gucharmap/Makefile,v 1.59 2009/02/21 22:11:24 kwm Exp $ -# - -PORTNAME= gucharmap -PORTVERSION= 2.26.0 -CATEGORIES= deskutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A Unicode/ISO10646 character map and font viewer - -LIB_DEPENDS= rarian.0:${PORTSDIR}/textproc/rarian - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix intlhack gnomehack gtk20 gnomedocutils gconf2 -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gucharmap.schemas - -.include <bsd.port.mk> diff --git a/deskutils/gucharmap/distinfo b/deskutils/gucharmap/distinfo deleted file mode 100644 index 0b61f2f41..000000000 --- a/deskutils/gucharmap/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gucharmap-2.26.0.tar.bz2) = c4384767bd11f43ef997bda7d77600a4 -SHA256 (gnome2/gucharmap-2.26.0.tar.bz2) = 7eff30430f3c2a29b2e608d803c109985b3c6218dd1f70d8cbfd0b8dd4c1e1b6 -SIZE (gnome2/gucharmap-2.26.0.tar.bz2) = 2939486 diff --git a/deskutils/gucharmap/pkg-descr b/deskutils/gucharmap/pkg-descr deleted file mode 100644 index e69361663..000000000 --- a/deskutils/gucharmap/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -gucharmap is a Unicode/ISO10646 character map and font viewer. It uses -GTK+ 2, and supports anti-aliased, scalable fonts. - -WWW: http://gucharmap.sourceforge.net/ diff --git a/deskutils/gucharmap/pkg-plist b/deskutils/gucharmap/pkg-plist deleted file mode 100644 index 80d040647..000000000 --- a/deskutils/gucharmap/pkg-plist +++ /dev/null @@ -1,236 +0,0 @@ -bin/charmap -bin/gnome-character-map -bin/gucharmap -include/gucharmap-2/gucharmap/gucharmap-block-chapters-model.h -include/gucharmap-2/gucharmap/gucharmap-block-codepoint-list.h -include/gucharmap-2/gucharmap/gucharmap-chapters-model.h -include/gucharmap-2/gucharmap/gucharmap-chapters-view.h -include/gucharmap-2/gucharmap/gucharmap-charmap.h -include/gucharmap-2/gucharmap/gucharmap-chartable.h -include/gucharmap-2/gucharmap/gucharmap-codepoint-list.h -include/gucharmap-2/gucharmap/gucharmap-script-chapters-model.h -include/gucharmap-2/gucharmap/gucharmap-script-codepoint-list.h -include/gucharmap-2/gucharmap/gucharmap-type-builtins.h -include/gucharmap-2/gucharmap/gucharmap-unicode-info.h -include/gucharmap-2/gucharmap/gucharmap.h -lib/libgucharmap.la -lib/libgucharmap.so -lib/libgucharmap.so.7 -libdata/pkgconfig/gucharmap-2.pc -share/applications/gucharmap.desktop -share/gnome/help/gucharmap/C/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/C/figures/gucharmap_window.png -share/gnome/help/gucharmap/C/gucharmap.xml -share/gnome/help/gucharmap/C/legal.xml -share/gnome/help/gucharmap/bg/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/bg/figures/gucharmap_window.png -share/gnome/help/gucharmap/bg/gucharmap.xml -share/gnome/help/gucharmap/ca/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/ca/figures/gucharmap_window.png -share/gnome/help/gucharmap/ca/gucharmap.xml -share/gnome/help/gucharmap/de/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/de/figures/gucharmap_window.png -share/gnome/help/gucharmap/de/gucharmap.xml -share/gnome/help/gucharmap/en_GB/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/en_GB/figures/gucharmap_window.png -share/gnome/help/gucharmap/en_GB/gucharmap.xml -share/gnome/help/gucharmap/es/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/es/figures/gucharmap_window.png -share/gnome/help/gucharmap/es/gucharmap.xml -share/gnome/help/gucharmap/fi/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/fi/figures/gucharmap_window.png -share/gnome/help/gucharmap/fi/gucharmap.xml -share/gnome/help/gucharmap/fr/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/fr/figures/gucharmap_window.png -share/gnome/help/gucharmap/fr/gucharmap.xml -share/gnome/help/gucharmap/it/figures/gucharmap_window.png -share/gnome/help/gucharmap/it/gucharmap.xml -share/gnome/help/gucharmap/it/legal.xml -share/gnome/help/gucharmap/ja/figures/gucharmap_window.png -share/gnome/help/gucharmap/ja/gucharmap.xml -share/gnome/help/gucharmap/ja/legal.xml -share/gnome/help/gucharmap/ko/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/ko/figures/gucharmap_window.png -share/gnome/help/gucharmap/ko/gucharmap.xml -share/gnome/help/gucharmap/oc/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/oc/figures/gucharmap_window.png -share/gnome/help/gucharmap/oc/gucharmap.xml -share/gnome/help/gucharmap/pt_BR/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/pt_BR/figures/gucharmap_window.png -share/gnome/help/gucharmap/pt_BR/gucharmap.xml -share/gnome/help/gucharmap/ru/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/ru/figures/gucharmap_window.png -share/gnome/help/gucharmap/ru/gucharmap.xml -share/gnome/help/gucharmap/sv/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/sv/figures/gucharmap_window.png -share/gnome/help/gucharmap/sv/gucharmap.xml -share/gnome/help/gucharmap/vi/figures/gucharmap_start_window.png -share/gnome/help/gucharmap/vi/figures/gucharmap_window.png -share/gnome/help/gucharmap/vi/gucharmap.xml -share/gnome/help/gucharmap/zh_CN/figures/gucharmap_window.png -share/gnome/help/gucharmap/zh_CN/gucharmap.xml -share/gnome/help/gucharmap/zh_CN/legal.xml -share/gnome/help/gucharmap/zh_TW/figures/gucharmap_window.png -share/gnome/help/gucharmap/zh_TW/gucharmap.xml -share/gnome/help/gucharmap/zh_TW/legal.xml -share/locale/af/LC_MESSAGES/gucharmap.mo -share/locale/am/LC_MESSAGES/gucharmap.mo -share/locale/ar/LC_MESSAGES/gucharmap.mo -share/locale/az/LC_MESSAGES/gucharmap.mo -share/locale/be/LC_MESSAGES/gucharmap.mo -share/locale/be@latin/LC_MESSAGES/gucharmap.mo -share/locale/bg/LC_MESSAGES/gucharmap.mo -share/locale/bn/LC_MESSAGES/gucharmap.mo -share/locale/bn_IN/LC_MESSAGES/gucharmap.mo -share/locale/bs/LC_MESSAGES/gucharmap.mo -share/locale/ca/LC_MESSAGES/gucharmap.mo -share/locale/cs/LC_MESSAGES/gucharmap.mo -share/locale/cy/LC_MESSAGES/gucharmap.mo -share/locale/da/LC_MESSAGES/gucharmap.mo -share/locale/de/LC_MESSAGES/gucharmap.mo -share/locale/dz/LC_MESSAGES/gucharmap.mo -share/locale/el/LC_MESSAGES/gucharmap.mo -share/locale/en_CA/LC_MESSAGES/gucharmap.mo -share/locale/en_GB/LC_MESSAGES/gucharmap.mo -share/locale/eo/LC_MESSAGES/gucharmap.mo -share/locale/es/LC_MESSAGES/gucharmap.mo -share/locale/et/LC_MESSAGES/gucharmap.mo -share/locale/eu/LC_MESSAGES/gucharmap.mo -share/locale/fa/LC_MESSAGES/gucharmap.mo -share/locale/fi/LC_MESSAGES/gucharmap.mo -share/locale/fr/LC_MESSAGES/gucharmap.mo -share/locale/ga/LC_MESSAGES/gucharmap.mo -share/locale/gl/LC_MESSAGES/gucharmap.mo -share/locale/gu/LC_MESSAGES/gucharmap.mo -share/locale/he/LC_MESSAGES/gucharmap.mo -share/locale/hi/LC_MESSAGES/gucharmap.mo -share/locale/hr/LC_MESSAGES/gucharmap.mo -share/locale/hu/LC_MESSAGES/gucharmap.mo -share/locale/id/LC_MESSAGES/gucharmap.mo -share/locale/is/LC_MESSAGES/gucharmap.mo -share/locale/it/LC_MESSAGES/gucharmap.mo -share/locale/ja/LC_MESSAGES/gucharmap.mo -share/locale/ka/LC_MESSAGES/gucharmap.mo -share/locale/ko/LC_MESSAGES/gucharmap.mo -share/locale/lt/LC_MESSAGES/gucharmap.mo -share/locale/lv/LC_MESSAGES/gucharmap.mo -share/locale/mi/LC_MESSAGES/gucharmap.mo -share/locale/mk/LC_MESSAGES/gucharmap.mo -share/locale/ml/LC_MESSAGES/gucharmap.mo -share/locale/mn/LC_MESSAGES/gucharmap.mo -share/locale/mr/LC_MESSAGES/gucharmap.mo -share/locale/ms/LC_MESSAGES/gucharmap.mo -share/locale/nb/LC_MESSAGES/gucharmap.mo -share/locale/ne/LC_MESSAGES/gucharmap.mo -share/locale/nl/LC_MESSAGES/gucharmap.mo -share/locale/nn/LC_MESSAGES/gucharmap.mo -share/locale/oc/LC_MESSAGES/gucharmap.mo -share/locale/or/LC_MESSAGES/gucharmap.mo -share/locale/pa/LC_MESSAGES/gucharmap.mo -share/locale/pl/LC_MESSAGES/gucharmap.mo -share/locale/pt/LC_MESSAGES/gucharmap.mo -share/locale/pt_BR/LC_MESSAGES/gucharmap.mo -share/locale/ro/LC_MESSAGES/gucharmap.mo -share/locale/ru/LC_MESSAGES/gucharmap.mo -share/locale/rw/LC_MESSAGES/gucharmap.mo -share/locale/si/LC_MESSAGES/gucharmap.mo -share/locale/sk/LC_MESSAGES/gucharmap.mo -share/locale/sl/LC_MESSAGES/gucharmap.mo -share/locale/sq/LC_MESSAGES/gucharmap.mo -share/locale/sr/LC_MESSAGES/gucharmap.mo -share/locale/sr@latin/LC_MESSAGES/gucharmap.mo -share/locale/sv/LC_MESSAGES/gucharmap.mo -share/locale/ta/LC_MESSAGES/gucharmap.mo -share/locale/te/LC_MESSAGES/gucharmap.mo -share/locale/th/LC_MESSAGES/gucharmap.mo -share/locale/tr/LC_MESSAGES/gucharmap.mo -share/locale/uk/LC_MESSAGES/gucharmap.mo -share/locale/vi/LC_MESSAGES/gucharmap.mo -share/locale/wa/LC_MESSAGES/gucharmap.mo -share/locale/xh/LC_MESSAGES/gucharmap.mo -share/locale/zh_CN/LC_MESSAGES/gucharmap.mo -share/locale/zh_HK/LC_MESSAGES/gucharmap.mo -share/locale/zh_TW/LC_MESSAGES/gucharmap.mo -share/omf/gucharmap/gucharmap-C.omf -share/omf/gucharmap/gucharmap-bg.omf -share/omf/gucharmap/gucharmap-ca.omf -share/omf/gucharmap/gucharmap-de.omf -share/omf/gucharmap/gucharmap-en_GB.omf -share/omf/gucharmap/gucharmap-es.omf -share/omf/gucharmap/gucharmap-fi.omf -share/omf/gucharmap/gucharmap-fr.omf -share/omf/gucharmap/gucharmap-it.omf -share/omf/gucharmap/gucharmap-ja.omf -share/omf/gucharmap/gucharmap-ko.omf -share/omf/gucharmap/gucharmap-oc.omf -share/omf/gucharmap/gucharmap-pt_BR.omf -share/omf/gucharmap/gucharmap-ru.omf -share/omf/gucharmap/gucharmap-sv.omf -share/omf/gucharmap/gucharmap-vi.omf -share/omf/gucharmap/gucharmap-zh_CN.omf -share/omf/gucharmap/gucharmap-zh_TW.omf -@dirrm share/omf/gucharmap -@dirrm share/gnome/help/gucharmap/zh_TW/figures -@dirrm share/gnome/help/gucharmap/zh_TW -@dirrm share/gnome/help/gucharmap/zh_CN/figures -@dirrm share/gnome/help/gucharmap/zh_CN -@dirrm share/gnome/help/gucharmap/vi/figures -@dirrm share/gnome/help/gucharmap/vi -@dirrm share/gnome/help/gucharmap/sv/figures -@dirrm share/gnome/help/gucharmap/sv -@dirrm share/gnome/help/gucharmap/ru/figures -@dirrm share/gnome/help/gucharmap/ru -@dirrm share/gnome/help/gucharmap/pt_BR/figures -@dirrm share/gnome/help/gucharmap/pt_BR -@dirrm share/gnome/help/gucharmap/oc/figures -@dirrm share/gnome/help/gucharmap/oc -@dirrm share/gnome/help/gucharmap/ko/figures -@dirrm share/gnome/help/gucharmap/ko -@dirrm share/gnome/help/gucharmap/ja/figures -@dirrm share/gnome/help/gucharmap/ja -@dirrm share/gnome/help/gucharmap/it/figures -@dirrm share/gnome/help/gucharmap/it -@dirrm share/gnome/help/gucharmap/fr/figures -@dirrm share/gnome/help/gucharmap/fr -@dirrm share/gnome/help/gucharmap/fi/figures -@dirrm share/gnome/help/gucharmap/fi -@dirrm share/gnome/help/gucharmap/es/figures -@dirrm share/gnome/help/gucharmap/es -@dirrm share/gnome/help/gucharmap/en_GB/figures -@dirrm share/gnome/help/gucharmap/en_GB -@dirrm share/gnome/help/gucharmap/de/figures -@dirrm share/gnome/help/gucharmap/de -@dirrm share/gnome/help/gucharmap/ca/figures -@dirrm share/gnome/help/gucharmap/ca -@dirrm share/gnome/help/gucharmap/bg/figures -@dirrm share/gnome/help/gucharmap/bg -@dirrm share/gnome/help/gucharmap/C/figures -@dirrm share/gnome/help/gucharmap/C -@dirrm share/gnome/help/gucharmap -@dirrmtry share/applications -@dirrm include/gucharmap-2/gucharmap -@dirrm include/gucharmap-2 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/deskutils/hamster-applet/Makefile b/deskutils/hamster-applet/Makefile deleted file mode 100644 index b470d27a6..000000000 --- a/deskutils/hamster-applet/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: hamster-applet -# Date created: 06 August 2008 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/deskutils/hamster-applet/Makefile,v 1.17 2009/03/17 15:57:59 kwm Exp $ -# - -PORTNAME= hamster-applet -PORTVERSION= 2.26.0 -PORTREVISION= 1 -CATEGORIES= deskutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Time management applet for the GNOME Desktop - -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_PYTHON= yes -USE_XORG= xscrnsaver -USE_GNOME= gnomeprefix intlhack gnomehack pygnomedesktop \ - gnomecontrolcenter2 -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= hamster-applet.schemas - -.include <bsd.port.mk> diff --git a/deskutils/hamster-applet/distinfo b/deskutils/hamster-applet/distinfo deleted file mode 100644 index 958527b87..000000000 --- a/deskutils/hamster-applet/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/hamster-applet-2.26.0.tar.bz2) = 4e2e5853b1101fa98e69c231a2378ae5 -SHA256 (gnome2/hamster-applet-2.26.0.tar.bz2) = 97930bdbf8ca3f3078709625430401ce6bff644dd3583e958f8ff9472fdd7d2d -SIZE (gnome2/hamster-applet-2.26.0.tar.bz2) = 421678 diff --git a/deskutils/hamster-applet/files/patch-hamster___init__.py b/deskutils/hamster-applet/files/patch-hamster___init__.py deleted file mode 100644 index a277063e0..000000000 --- a/deskutils/hamster-applet/files/patch-hamster___init__.py +++ /dev/null @@ -1,10 +0,0 @@ ---- hamster/__init__.py.orig 2008-08-07 10:53:47.000000000 -0400 -+++ hamster/__init__.py 2008-08-07 10:54:01.000000000 -0400 -@@ -74,6 +74,7 @@ if not exists(USER_HAMSTER_DIR): - if not exists(HAMSTER_DB): - print "Database not found in %s - installing default from %s!" % (HAMSTER_DB, SHARED_DATA_DIR) - copyfile(join(SHARED_DATA_DIR, DB_FILE), HAMSTER_DB) -+ os.chmod(HAMSTER_DB, 0644) - - # Init storage - diff --git a/deskutils/hamster-applet/files/patch-hamster_hamster-applet.py b/deskutils/hamster-applet/files/patch-hamster_hamster-applet.py deleted file mode 100644 index ec54fd792..000000000 --- a/deskutils/hamster-applet/files/patch-hamster_hamster-applet.py +++ /dev/null @@ -1,17 +0,0 @@ ---- hamster/hamster-applet.py.orig 2009-02-13 16:02:00.000000000 -0500 -+++ hamster/hamster-applet.py 2009-02-27 19:50:13.000000000 -0500 -@@ -52,10 +52,10 @@ if hasattr(gettext, 'bind_textdomain_cod - gettext.bind_textdomain_codeset('hamster-applet','UTF-8') - gettext.textdomain('hamster-applet') - --locale.bindtextdomain('hamster-applet', locale_dir) --if hasattr(locale, 'bind_textdomain_codeset'): -- locale.bind_textdomain_codeset('hamster-applet','UTF-8') --locale.textdomain('hamster-applet') -+#locale.bindtextdomain('hamster-applet', locale_dir) -+#if hasattr(locale, 'bind_textdomain_codeset'): -+# locale.bind_textdomain_codeset('hamster-applet','UTF-8') -+#locale.textdomain('hamster-applet') - - hamster.__init_db() - import hamster.applet diff --git a/deskutils/hamster-applet/pkg-descr b/deskutils/hamster-applet/pkg-descr deleted file mode 100644 index 9e3edc3cb..000000000 --- a/deskutils/hamster-applet/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Hamster Applet allows you to keep track on where are you spending your time. - -WWW: http://projecthamster.wordpress.com/ diff --git a/deskutils/hamster-applet/pkg-plist b/deskutils/hamster-applet/pkg-plist deleted file mode 100644 index 12f0f91c0..000000000 --- a/deskutils/hamster-applet/pkg-plist +++ /dev/null @@ -1,150 +0,0 @@ -lib/hamster-applet/hamster-applet -%%PYTHON_SITELIBDIR%%/hamster/Configuration.py -%%PYTHON_SITELIBDIR%%/hamster/Configuration.pyc -%%PYTHON_SITELIBDIR%%/hamster/Configuration.pyo -%%PYTHON_SITELIBDIR%%/hamster/KeyBinder.py -%%PYTHON_SITELIBDIR%%/hamster/KeyBinder.pyc -%%PYTHON_SITELIBDIR%%/hamster/KeyBinder.pyo -%%PYTHON_SITELIBDIR%%/hamster/__init__.py -%%PYTHON_SITELIBDIR%%/hamster/__init__.pyc -%%PYTHON_SITELIBDIR%%/hamster/__init__.pyo -%%PYTHON_SITELIBDIR%%/hamster/about.py -%%PYTHON_SITELIBDIR%%/hamster/about.pyc -%%PYTHON_SITELIBDIR%%/hamster/about.pyo -%%PYTHON_SITELIBDIR%%/hamster/add_custom_fact.py -%%PYTHON_SITELIBDIR%%/hamster/add_custom_fact.pyc -%%PYTHON_SITELIBDIR%%/hamster/add_custom_fact.pyo -%%PYTHON_SITELIBDIR%%/hamster/applet.py -%%PYTHON_SITELIBDIR%%/hamster/applet.pyc -%%PYTHON_SITELIBDIR%%/hamster/applet.pyo -%%PYTHON_SITELIBDIR%%/hamster/charting.py -%%PYTHON_SITELIBDIR%%/hamster/charting.pyc -%%PYTHON_SITELIBDIR%%/hamster/charting.pyo -%%PYTHON_SITELIBDIR%%/hamster/db.py -%%PYTHON_SITELIBDIR%%/hamster/db.pyc -%%PYTHON_SITELIBDIR%%/hamster/db.pyo -%%PYTHON_SITELIBDIR%%/hamster/defs.py -%%PYTHON_SITELIBDIR%%/hamster/defs.pyc -%%PYTHON_SITELIBDIR%%/hamster/defs.pyo -%%PYTHON_SITELIBDIR%%/hamster/dispatcher.py -%%PYTHON_SITELIBDIR%%/hamster/dispatcher.pyc -%%PYTHON_SITELIBDIR%%/hamster/dispatcher.pyo -%%PYTHON_SITELIBDIR%%/hamster/eds.py -%%PYTHON_SITELIBDIR%%/hamster/eds.pyc -%%PYTHON_SITELIBDIR%%/hamster/eds.pyo -%%PYTHON_SITELIBDIR%%/hamster/hamsterdbus.py -%%PYTHON_SITELIBDIR%%/hamster/hamsterdbus.pyc -%%PYTHON_SITELIBDIR%%/hamster/hamsterdbus.pyo -%%PYTHON_SITELIBDIR%%/hamster/idle.py -%%PYTHON_SITELIBDIR%%/hamster/idle.pyc -%%PYTHON_SITELIBDIR%%/hamster/idle.pyo -%%PYTHON_SITELIBDIR%%/hamster/keybinder/__init__.py -%%PYTHON_SITELIBDIR%%/hamster/keybinder/__init__.pyc -%%PYTHON_SITELIBDIR%%/hamster/keybinder/__init__.pyo -%%PYTHON_SITELIBDIR%%/hamster/keybinder/_keybinder.la -%%PYTHON_SITELIBDIR%%/hamster/keybinder/_keybinder.so -%%PYTHON_SITELIBDIR%%/hamster/preferences.py -%%PYTHON_SITELIBDIR%%/hamster/preferences.pyc -%%PYTHON_SITELIBDIR%%/hamster/preferences.pyo -%%PYTHON_SITELIBDIR%%/hamster/reports.py -%%PYTHON_SITELIBDIR%%/hamster/reports.pyc -%%PYTHON_SITELIBDIR%%/hamster/reports.pyo -%%PYTHON_SITELIBDIR%%/hamster/stats.py -%%PYTHON_SITELIBDIR%%/hamster/stats.pyc -%%PYTHON_SITELIBDIR%%/hamster/stats.pyo -%%PYTHON_SITELIBDIR%%/hamster/storage.py -%%PYTHON_SITELIBDIR%%/hamster/storage.pyc -%%PYTHON_SITELIBDIR%%/hamster/storage.pyo -%%PYTHON_SITELIBDIR%%/hamster/stuff.py -%%PYTHON_SITELIBDIR%%/hamster/stuff.pyc -%%PYTHON_SITELIBDIR%%/hamster/stuff.pyo -libdata/bonobo/servers/Hamster_Applet.server -share/gnome-control-center/keybindings/99-hamster-applet.xml -%%DATADIR%%/Hamster_Applet.xml -%%DATADIR%%/add_custom_fact.glade -%%DATADIR%%/art/hamster-applet.png -%%DATADIR%%/art/stock_calendar-view-day.png -%%DATADIR%%/art/stock_calendar-view-month.png -%%DATADIR%%/art/stock_calendar-view-week.png -%%DATADIR%%/hamster.db -%%DATADIR%%/menu.glade -%%DATADIR%%/preferences.glade -%%DATADIR%%/stats.glade -share/icons/hicolor/16x16/apps/hamster-applet.png -share/icons/hicolor/22x22/apps/hamster-applet.png -share/icons/hicolor/32x32/apps/hamster-applet.png -share/icons/hicolor/48x48/apps/hamster-applet.png -share/icons/hicolor/scalable/apps/hamster-applet.svg -share/locale/ar/LC_MESSAGES/hamster-applet.mo -share/locale/as/LC_MESSAGES/hamster-applet.mo -share/locale/bg/LC_MESSAGES/hamster-applet.mo -share/locale/bn_IN/LC_MESSAGES/hamster-applet.mo -share/locale/ca/LC_MESSAGES/hamster-applet.mo -share/locale/cs/LC_MESSAGES/hamster-applet.mo -share/locale/da/LC_MESSAGES/hamster-applet.mo -share/locale/de/LC_MESSAGES/hamster-applet.mo -share/locale/el/LC_MESSAGES/hamster-applet.mo -share/locale/en_GB/LC_MESSAGES/hamster-applet.mo -share/locale/es/LC_MESSAGES/hamster-applet.mo -share/locale/et/LC_MESSAGES/hamster-applet.mo -share/locale/eu/LC_MESSAGES/hamster-applet.mo -share/locale/fi/LC_MESSAGES/hamster-applet.mo -share/locale/fr/LC_MESSAGES/hamster-applet.mo -share/locale/gl/LC_MESSAGES/hamster-applet.mo -share/locale/gu/LC_MESSAGES/hamster-applet.mo -share/locale/he/LC_MESSAGES/hamster-applet.mo -share/locale/hi/LC_MESSAGES/hamster-applet.mo -share/locale/hu/LC_MESSAGES/hamster-applet.mo -share/locale/it/LC_MESSAGES/hamster-applet.mo -share/locale/ja/LC_MESSAGES/hamster-applet.mo -share/locale/kn/LC_MESSAGES/hamster-applet.mo -share/locale/ko/LC_MESSAGES/hamster-applet.mo -share/locale/ku/LC_MESSAGES/hamster-applet.mo -share/locale/lt/LC_MESSAGES/hamster-applet.mo -share/locale/lv/LC_MESSAGES/hamster-applet.mo -share/locale/mk/LC_MESSAGES/hamster-applet.mo -share/locale/ml/LC_MESSAGES/hamster-applet.mo -share/locale/mr/LC_MESSAGES/hamster-applet.mo -share/locale/nb/LC_MESSAGES/hamster-applet.mo -share/locale/nl/LC_MESSAGES/hamster-applet.mo -share/locale/or/LC_MESSAGES/hamster-applet.mo -share/locale/pa/LC_MESSAGES/hamster-applet.mo -share/locale/pl/LC_MESSAGES/hamster-applet.mo -share/locale/pt/LC_MESSAGES/hamster-applet.mo -share/locale/pt_BR/LC_MESSAGES/hamster-applet.mo -share/locale/ro/LC_MESSAGES/hamster-applet.mo -share/locale/ru/LC_MESSAGES/hamster-applet.mo -share/locale/sl/LC_MESSAGES/hamster-applet.mo -share/locale/sq/LC_MESSAGES/hamster-applet.mo -share/locale/sr/LC_MESSAGES/hamster-applet.mo -share/locale/sr@latin/LC_MESSAGES/hamster-applet.mo -share/locale/sv/LC_MESSAGES/hamster-applet.mo -share/locale/ta/LC_MESSAGES/hamster-applet.mo -share/locale/te/LC_MESSAGES/hamster-applet.mo -share/locale/th/LC_MESSAGES/hamster-applet.mo -share/locale/tr/LC_MESSAGES/hamster-applet.mo -share/locale/vi/LC_MESSAGES/hamster-applet.mo -share/locale/zh_CN/LC_MESSAGES/hamster-applet.mo -share/locale/zh_HK/LC_MESSAGES/hamster-applet.mo -share/locale/zh_TW/LC_MESSAGES/hamster-applet.mo -@dirrm %%DATADIR%%/art -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/hamster/keybinder -@dirrm %%PYTHON_SITELIBDIR%%/hamster -@dirrm lib/hamster-applet -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/ro/LC_MESSAGES -@dirrmtry share/locale/ro -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/deskutils/kdepimlibs4/Makefile b/deskutils/kdepimlibs4/Makefile deleted file mode 100644 index 196d7a912..000000000 --- a/deskutils/kdepimlibs4/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection Makefile for: kdepimplibs -# Date created: 2008-01-20 -# Whom: arved -# -# $FreeBSD$ - -PORTNAME= kdepimlibs -PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 -CATEGORIES= deskutils kde ipv6 -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Libraries for KDE-PIM applications - -LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \ - sasl2:${PORTSDIR}/security/cyrus-sasl2 \ - boost_python:${PORTSDIR}/devel/boost-python \ - ical.43:${PORTSDIR}/devel/libical - -USE_KDE4= kdelibs akonadi kdeprefix kdehier automoc4 -KDE4_BUILDENV= yes -USE_BZIP2= yes -USE_QT_VER= 4 -QT_COMPONENTS= corelib opengl dbus qt3support \ - designer network svg qtestlib help \ - qmake_build moc_build rcc_build uic_build -USE_OPENLDAP= yes -MAKE_JOBS_SAFE= yes - -.if exists(${LOCALBASE}/lib/libgpgme-pth.so) -PLIST_SUB+= WITH_PTH='' -.else -PLIST_SUB+= WITH_PTH='@comment ' -.endif - -post-extract: - ${MKDIR} ${WRKSRC} - ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/../cmake/modules/*.cmake - -.include <bsd.port.mk> diff --git a/deskutils/kdepimlibs4/distinfo b/deskutils/kdepimlibs4/distinfo deleted file mode 100644 index 12cacc5bd..000000000 --- a/deskutils/kdepimlibs4/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (KDE/kdepimlibs-4.2.2.tar.bz2) = 62562a3025138a08ffdf08e6466b5065 -SHA256 (KDE/kdepimlibs-4.2.2.tar.bz2) = a5effac6724a66fe70711f449fb0472cc60637fec4357f8dbec21d71da9c6692 -SIZE (KDE/kdepimlibs-4.2.2.tar.bz2) = 1594954 diff --git a/deskutils/kdepimlibs4/files/patch-CMakeLists.txt b/deskutils/kdepimlibs4/files/patch-CMakeLists.txt deleted file mode 100644 index 312ff0638..000000000 --- a/deskutils/kdepimlibs4/files/patch-CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- ../CMakeLists.txt.orig 2009-02-26 17:15:42.000000000 +0300 -+++ ../CMakeLists.txt 2009-03-07 09:57:33.000000000 +0300 -@@ -127,7 +127,7 @@ - macro_write_basic_cmake_version_file(${CMAKE_CURRENT_BINARY_DIR}/KdepimLibsConfigVersion.cmake - ${KDEPIMLIBS_VERSION_MAJOR} ${KDEPIMLIBS_VERSION_MINOR} ${KDEPIMLIBS_VERSION_PATCH}) - --set(_KdepimLibsConfig_INSTALL_DIR ${LIB_INSTALL_DIR}/KdepimLibs-${KDEPIMLIBS_VERSION}/cmake) -+set(_KdepimLibsConfig_INSTALL_DIR ${LIB_INSTALL_DIR}/KdepimLibs/cmake) - # places where find_package() looks for FooConfig.cmake files: - # CMake >= 2.6.0 looks in lib/Foo*/cmake/, CMake >= 2.6.3 also looks in - # lib/cmake/Foo*/, which packagers prefer. So they can set the KDE4_USE_COMMON_CMAKE_PACKAGE_CONFIG_DIR diff --git a/deskutils/kdepimlibs4/files/patch-cmake-modules_FindLibical.cmake b/deskutils/kdepimlibs4/files/patch-cmake-modules_FindLibical.cmake deleted file mode 100644 index efbbb2725..000000000 --- a/deskutils/kdepimlibs4/files/patch-cmake-modules_FindLibical.cmake +++ /dev/null @@ -1,11 +0,0 @@ ---- ../cmake/modules/FindLibical.cmake.orgi 2009-02-27 17:59:51.000000000 +0100 -+++ ../cmake/modules/FindLibical.cmake 2009-02-27 18:00:20.000000000 +0100 -@@ -52,7 +52,7 @@ - - if(LIBICAL_INCLUDE_DIRS AND LIBICAL_LIBRARIES) - set(FIND_LIBICAL_VERSION_SOURCE -- "#include <libical/ical.h>\n int main()\n {\n printf(\"%s\",ICAL_VERSION);return 1;\n }\n") -+ "#include <ical.h>\n int main()\n {\n printf(\"%s\",ICAL_VERSION);return 1;\n }\n") - set(FIND_LIBICAL_VERSION_SOURCE_FILE ${CMAKE_BINARY_DIR}/CMakeTmp/FindLIBICAL.cxx) - file(WRITE "${FIND_LIBICAL_VERSION_SOURCE_FILE}" "${FIND_LIBICAL_VERSION_SOURCE}") - diff --git a/deskutils/kdepimlibs4/pkg-descr b/deskutils/kdepimlibs4/pkg-descr deleted file mode 100644 index 7cd2cfe6a..000000000 --- a/deskutils/kdepimlibs4/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -This module includes libraries that are central to the development and -execution of a KDE-PIM application. - -The KDE-PIM project aims to bring together those who wish to help design, -implement, test, etc. anything that's to do with personal information -management. - -This rather broad scope encompasses mail clients, addressbooks, usenet news, -scheduling and even sticky notes. - -WWW: http://www.kde.org/ diff --git a/deskutils/kdepimlibs4/pkg-plist b/deskutils/kdepimlibs4/pkg-plist deleted file mode 100644 index 5a5c45511..000000000 --- a/deskutils/kdepimlibs4/pkg-plist +++ /dev/null @@ -1,510 +0,0 @@ -include/akonadi/agentbase.h -include/akonadi/agentfilterproxymodel.h -include/akonadi/agentinstance.h -include/akonadi/agentinstancecreatejob.h -include/akonadi/agentinstancemodel.h -include/akonadi/agentinstancewidget.h -include/akonadi/agentmanager.h -include/akonadi/agenttype.h -include/akonadi/agenttypedialog.h -include/akonadi/agenttypemodel.h -include/akonadi/agenttypewidget.h -include/akonadi/akonadi_export.h -include/akonadi/attribute.h -include/akonadi/attributefactory.h -include/akonadi/cachepolicy.h -include/akonadi/changerecorder.h -include/akonadi/collection.h -include/akonadi/collectioncopyjob.h -include/akonadi/collectioncreatejob.h -include/akonadi/collectiondeletejob.h -include/akonadi/collectionfetchjob.h -include/akonadi/collectionfilterproxymodel.h -include/akonadi/collectionmodel.h -include/akonadi/collectionmodifyjob.h -include/akonadi/collectionpropertiesdialog.h -include/akonadi/collectionpropertiespage.h -include/akonadi/collectionstatistics.h -include/akonadi/collectionstatisticsdelegate.h -include/akonadi/collectionstatisticsjob.h -include/akonadi/collectionstatisticsmodel.h -include/akonadi/collectionview.h -include/akonadi/control.h -include/akonadi/entity.h -include/akonadi/entitydisplayattribute.h -include/akonadi/item.h -include/akonadi/itemcopyjob.h -include/akonadi/itemcreatejob.h -include/akonadi/itemdeletejob.h -include/akonadi/itemfetchjob.h -include/akonadi/itemfetchscope.h -include/akonadi/itemmodel.h -include/akonadi/itemmodifyjob.h -include/akonadi/itemmonitor.h -include/akonadi/itemmovejob.h -include/akonadi/itempayloadinternals_p.h -include/akonadi/itemserializerplugin.h -include/akonadi/itemsync.h -include/akonadi/itemview.h -include/akonadi/job.h -include/akonadi/kabc/akonadi-kabc_export.h -include/akonadi/kabc/contactparts.h -include/akonadi/kmime/akonadi-kmime_export.h -include/akonadi/kmime/messagemodel.h -include/akonadi/kmime/messageparts.h -include/akonadi/kmime/messagethreaderproxymodel.h -include/akonadi/kmime/messagethreadingattribute.h -include/akonadi/linkjob.h -include/akonadi/monitor.h -include/akonadi/private/collectionpathresolver_p.h -include/akonadi/resourcebase.h -include/akonadi/searchcreatejob.h -include/akonadi/servermanager.h -include/akonadi/session.h -include/akonadi/standardactionmanager.h -include/akonadi/transactionjobs.h -include/akonadi/transactionsequence.h -include/akonadi/unlinkjob.h -include/gpgme++/context.h -include/gpgme++/data.h -include/gpgme++/decryptionresult.h -include/gpgme++/editinteractor.h -include/gpgme++/encryptionresult.h -include/gpgme++/engineinfo.h -include/gpgme++/error.h -include/gpgme++/eventloopinteractor.h -include/gpgme++/exception.h -include/gpgme++/global.h -include/gpgme++/gpgadduserideditinteractor.h -include/gpgme++/gpgme++_export.h -include/gpgme++/gpgmefw.h -include/gpgme++/gpgsetexpirytimeeditinteractor.h -include/gpgme++/gpgsetownertrusteditinteractor.h -include/gpgme++/gpgsignkeyeditinteractor.h -include/gpgme++/importresult.h -include/gpgme++/interfaces/dataprovider.h -include/gpgme++/interfaces/passphraseprovider.h -include/gpgme++/interfaces/progressprovider.h -include/gpgme++/key.h -include/gpgme++/keygenerationresult.h -include/gpgme++/keylistresult.h -include/gpgme++/notation.h -include/gpgme++/result.h -include/gpgme++/signingresult.h -include/gpgme++/trustitem.h -include/gpgme++/verificationresult.h -include/kabc/address.h -include/kabc/addressbook.h -include/kabc/addressee.h -include/kabc/addresseedialog.h -include/kabc/addresseelist.h -include/kabc/addresslineedit.h -include/kabc/distributionlist.h -include/kabc/distributionlistdialog.h -include/kabc/emailselectdialog.h -include/kabc/errorhandler.h -include/kabc/field.h -include/kabc/format.h -include/kabc/formatfactory.h -include/kabc/geo.h -include/kabc/kabc_export.h -include/kabc/key.h -include/kabc/ldifconverter.h -include/kabc/lock.h -include/kabc/locknull.h -include/kabc/phonenumber.h -include/kabc/picture.h -include/kabc/plugin.h -include/kabc/resource.h -include/kabc/resourceabc.h -include/kabc/resourcecached.h -include/kabc/secrecy.h -include/kabc/sortmode.h -include/kabc/sound.h -include/kabc/stdaddressbook.h -include/kabc/timezone.h -include/kabc/vcard.h -include/kabc/vcardconverter.h -include/kabc/vcardformat.h -include/kabc/vcardline.h -include/kabc/vcardparser.h -include/kblog/blog.h -include/kblog/blogcomment.h -include/kblog/blogger1.h -include/kblog/blogmedia.h -include/kblog/blogpost.h -include/kblog/gdata.h -include/kblog/kblog_export.h -include/kblog/metaweblog.h -include/kblog/movabletype.h -include/kblog/wordpressbuggy.h -include/kcal/alarm.h -include/kcal/attachment.h -include/kcal/attendee.h -include/kcal/calendar.h -include/kcal/calendarlocal.h -include/kcal/calendarnull.h -include/kcal/calendarresources.h -include/kcal/calfilter.h -include/kcal/calformat.h -include/kcal/calstorage.h -include/kcal/confirmsavedialog.h -include/kcal/customproperties.h -include/kcal/dndfactory.h -include/kcal/duration.h -include/kcal/event.h -include/kcal/exceptions.h -include/kcal/filestorage.h -include/kcal/freebusy.h -include/kcal/freebusycache.h -include/kcal/freebusyperiod.h -include/kcal/freebusyurlstore.h -include/kcal/htmlexport.h -include/kcal/htmlexportsettings.h -include/kcal/icaldrag.h -include/kcal/icalformat.h -include/kcal/icaltimezones.h -include/kcal/imipscheduler.h -include/kcal/incidence.h -include/kcal/incidencebase.h -include/kcal/incidenceformatter.h -include/kcal/journal.h -include/kcal/kcal_export.h -include/kcal/kcalversion.h -include/kcal/kresult.h -include/kcal/listbase.h -include/kcal/period.h -include/kcal/person.h -include/kcal/qtopiaformat.h -include/kcal/recurrence.h -include/kcal/recurrencerule.h -include/kcal/resourcecached.h -include/kcal/resourcecachedconfig.h -include/kcal/resourcecalendar.h -include/kcal/resourcelocal.h -include/kcal/resourcelocalconfig.h -include/kcal/resourcelocaldir.h -include/kcal/resourcelocaldirconfig.h -include/kcal/scheduler.h -include/kcal/sortablelist.h -include/kcal/todo.h -include/kcal/vcaldrag.h -include/kcal/vcalformat.h -include/kimap/kimap_export.h -include/kimap/rfccodecs.h -include/kldap/ber.h -include/kldap/kldap_export.h -include/kldap/ldapattributeproxymodel.h -include/kldap/ldapconfigwidget.h -include/kldap/ldapconnection.h -include/kldap/ldapcontrol.h -include/kldap/ldapdefs.h -include/kldap/ldapdn.h -include/kldap/ldapmodel.h -include/kldap/ldapobject.h -include/kldap/ldapoperation.h -include/kldap/ldapsearch.h -include/kldap/ldapserver.h -include/kldap/ldapstructureproxymodel.h -include/kldap/ldapurl.h -include/kldap/ldif.h -include/kmime/boolflags.h -include/kmime/kmime_charfreq.h -include/kmime/kmime_codecs.h -include/kmime/kmime_content.h -include/kmime/kmime_contentindex.h -include/kmime/kmime_dateformatter.h -include/kmime/kmime_export.h -include/kmime/kmime_header_parsing.h -include/kmime/kmime_headers.h -include/kmime/kmime_mdn.h -include/kmime/kmime_message.h -include/kmime/kmime_newsarticle.h -include/kmime/kmime_util.h -include/kpimidentities/identity.h -include/kpimidentities/identitycombo.h -include/kpimidentities/identitymanager.h -include/kpimidentities/kpimidentities_export.h -include/kpimidentities/signature.h -include/kpimidentities/signatureconfigurator.h -include/kpimutils/email.h -include/kpimutils/kfileio.h -include/kpimutils/kpimutils_export.h -include/kpimutils/linklocator.h -include/kpimutils/spellingfilter.h -include/kresources/configdialog.h -include/kresources/configpage.h -include/kresources/configwidget.h -include/kresources/factory.h -include/kresources/idmapper.h -include/kresources/kresources_export.h -include/kresources/manager.h -include/kresources/managerimpl.h -include/kresources/resource.h -include/kresources/selectdialog.h -include/ktnef/formatter.h -include/ktnef/ktnef_export.h -include/ktnef/ktnefattach.h -include/ktnef/ktnefdefs.h -include/ktnef/ktnefmessage.h -include/ktnef/ktnefparser.h -include/ktnef/ktnefproperty.h -include/ktnef/ktnefpropertyset.h -include/ktnef/ktnefwriter.h -include/kxmlrpcclient/client.h -include/kxmlrpcclient/kxmlrpcclient_export.h -include/mailtransport/mailtransport_export.h -include/mailtransport/sendmailjob.h -include/mailtransport/servertest.h -include/mailtransport/smtpjob.h -include/mailtransport/transport.h -include/mailtransport/transportbase.h -include/mailtransport/transportcombobox.h -include/mailtransport/transportconfigdialog.h -include/mailtransport/transportjob.h -include/mailtransport/transportmanagementwidget.h -include/mailtransport/transportmanager.h -include/qgpgme/dataprovider.h -include/qgpgme/eventloopinteractor.h -include/qgpgme/qgpgme_export.h -include/syndication/abstractparser.h -include/syndication/atom/atom.h -include/syndication/atom/category.h -include/syndication/atom/constants.h -include/syndication/atom/content.h -include/syndication/atom/document.h -include/syndication/atom/entry.h -include/syndication/atom/generator.h -include/syndication/atom/link.h -include/syndication/atom/parser.h -include/syndication/atom/person.h -include/syndication/atom/source.h -include/syndication/category.h -include/syndication/constants.h -include/syndication/dataretriever.h -include/syndication/documentsource.h -include/syndication/documentvisitor.h -include/syndication/elementwrapper.h -include/syndication/enclosure.h -include/syndication/feed.h -include/syndication/global.h -include/syndication/image.h -include/syndication/item.h -include/syndication/ksyndication_export.h -include/syndication/loader.h -include/syndication/mapper.h -include/syndication/parsercollection.h -include/syndication/person.h -include/syndication/rdf/contentvocab.h -include/syndication/rdf/document.h -include/syndication/rdf/dublincore.h -include/syndication/rdf/dublincorevocab.h -include/syndication/rdf/image.h -include/syndication/rdf/item.h -include/syndication/rdf/literal.h -include/syndication/rdf/model.h -include/syndication/rdf/modelmaker.h -include/syndication/rdf/node.h -include/syndication/rdf/nodevisitor.h -include/syndication/rdf/parser.h -include/syndication/rdf/property.h -include/syndication/rdf/rdf.h -include/syndication/rdf/rdfvocab.h -include/syndication/rdf/resource.h -include/syndication/rdf/resourcewrapper.h -include/syndication/rdf/rssvocab.h -include/syndication/rdf/sequence.h -include/syndication/rdf/statement.h -include/syndication/rdf/syndicationinfo.h -include/syndication/rdf/syndicationvocab.h -include/syndication/rdf/textinput.h -include/syndication/rss2/category.h -include/syndication/rss2/cloud.h -include/syndication/rss2/document.h -include/syndication/rss2/enclosure.h -include/syndication/rss2/image.h -include/syndication/rss2/item.h -include/syndication/rss2/parser.h -include/syndication/rss2/rss2.h -include/syndication/rss2/source.h -include/syndication/rss2/textinput.h -include/syndication/specificdocument.h -include/syndication/specificitem.h -include/syndication/specificitemvisitor.h -include/syndication/syndication.h -include/syndication/tools.h -lib/KdepimLibs/cmake/KDEPimLibsLibraryTargetsWithPrefix-%%KDE4_BUILD_TYPE%%.cmake -lib/KdepimLibs/cmake/KDEPimLibsLibraryTargetsWithPrefix.cmake -lib/KdepimLibs/cmake/KdepimLibsConfig.cmake -lib/KdepimLibs/cmake/KdepimLibsConfigVersion.cmake -lib/gpgmepp/GpgmeppConfig.cmake -lib/gpgmepp/GpgmeppLibraryDepends.cmake -lib/kde4/kabc_directory.so -lib/kde4/kabc_file.so -lib/kde4/kabc_ldapkio.so -lib/kde4/kabc_net.so -lib/kde4/kabcformat_binary.so -lib/kde4/kcal_local.so -lib/kde4/kcal_localdir.so -lib/kde4/kcm_kresources.so -lib/kde4/kcm_mailtransport.so -lib/kde4/kio_imap4.so -lib/kde4/kio_ldap.so -lib/kde4/kio_mbox.so -lib/kde4/kio_nntp.so -lib/kde4/kio_pop3.so -lib/kde4/kio_sieve.so -lib/kde4/kio_smtp.so -lib/libakonadi-kabc.so -lib/libakonadi-kabc.so.5 -lib/libakonadi-kabc.so.5.0.1 -lib/libakonadi-kde.so -lib/libakonadi-kde.so.5 -lib/libakonadi-kde.so.5.0.1 -lib/libakonadi-kmime.so -lib/libakonadi-kmime.so.5 -lib/libakonadi-kmime.so.5.0.1 -%%WITH_PTH%%lib/libgpgme++-pth.so -%%WITH_PTH%%lib/libgpgme++-pth.so.2 -%%WITH_PTH%%lib/libgpgme++-pth.so.2.0.2 -lib/libgpgme++-pthread.so -lib/libgpgme++-pthread.so.2 -lib/libgpgme++-pthread.so.2.0.2 -lib/libgpgme++.so -lib/libgpgme++.so.2 -lib/libgpgme++.so.2.0.2 -lib/libkabc.so -lib/libkabc.so.5 -lib/libkabc.so.5.0.1 -lib/libkabc_file_core.so -lib/libkabc_file_core.so.5 -lib/libkabc_file_core.so.5.0.1 -lib/libkblog.so -lib/libkblog.so.5 -lib/libkblog.so.5.0.1 -lib/libkcal.so -lib/libkcal.so.5 -lib/libkcal.so.5.0.1 -lib/libkimap.so -lib/libkimap.so.5 -lib/libkimap.so.5.0.1 -lib/libkldap.so -lib/libkldap.so.5 -lib/libkldap.so.5.0.1 -lib/libkmime.so -lib/libkmime.so.5 -lib/libkmime.so.5.0.1 -lib/libkpimidentities.so -lib/libkpimidentities.so.5 -lib/libkpimidentities.so.5.0.1 -lib/libkpimutils.so -lib/libkpimutils.so.5 -lib/libkpimutils.so.5.0.1 -lib/libkresources.so -lib/libkresources.so.5 -lib/libkresources.so.5.0.1 -lib/libktnef.so -lib/libktnef.so.5 -lib/libktnef.so.5.0.1 -lib/libkxmlrpcclient.so -lib/libkxmlrpcclient.so.5 -lib/libkxmlrpcclient.so.5.0.1 -lib/libmailtransport.so -lib/libmailtransport.so.5 -lib/libmailtransport.so.5.0.1 -lib/libqgpgme.so -lib/libqgpgme.so.1 -lib/libqgpgme.so.1.0.1 -lib/libsyndication.so -lib/libsyndication.so.5 -lib/libsyndication.so.5.0.1 -share/apps/akonadi-kde/kcfg2dbus.xsl -share/apps/cmake/modules/CheckTimezone.cmake -share/apps/cmake/modules/FindAkonadi.cmake -share/apps/cmake/modules/FindGpgme.cmake -share/apps/cmake/modules/FindLdap.cmake -share/apps/cmake/modules/FindLibical.cmake -share/apps/cmake/modules/FindQGpgme.cmake -share/apps/cmake/modules/KDEPimLibsDependencies.cmake -share/apps/kabc/countrytransl.map -share/apps/kabc/formats/binary.desktop -share/apps/kconf_update/mailtransports.upd -share/apps/kconf_update/migrate-transports.pl -share/config.kcfg/mailtransport.kcfg -share/dbus-1/interfaces/org.kde.KResourcesManager.xml -share/dbus-1/interfaces/org.kde.pim.IdentityManager.xml -share/doc/HTML/en/kcontrol/kresources/common -share/doc/HTML/en/kcontrol/kresources/index.cache.bz2 -share/doc/HTML/en/kcontrol/kresources/index.docbook -share/doc/HTML/en/kioslave/imap/common -share/doc/HTML/en/kioslave/imap/index.cache.bz2 -share/doc/HTML/en/kioslave/imap/index.docbook -share/doc/HTML/en/kioslave/ldap/common -share/doc/HTML/en/kioslave/ldap/index.cache.bz2 -share/doc/HTML/en/kioslave/ldap/index.docbook -share/doc/HTML/en/kioslave/nntp/common -share/doc/HTML/en/kioslave/nntp/index.cache.bz2 -share/doc/HTML/en/kioslave/nntp/index.docbook -share/doc/HTML/en/kioslave/pop3/common -share/doc/HTML/en/kioslave/pop3/index.cache.bz2 -share/doc/HTML/en/kioslave/pop3/index.docbook -share/doc/HTML/en/kioslave/smtp/common -share/doc/HTML/en/kioslave/smtp/index.cache.bz2 -share/doc/HTML/en/kioslave/smtp/index.docbook -share/kde4/services/imap4.protocol -share/kde4/services/imaps.protocol -share/kde4/services/kcm_mailtransport.desktop -share/kde4/services/kresources.desktop -share/kde4/services/kresources/kabc/dir.desktop -share/kde4/services/kresources/kabc/file.desktop -share/kde4/services/kresources/kabc/ldapkio.desktop -share/kde4/services/kresources/kabc/net.desktop -share/kde4/services/kresources/kabc_manager.desktop -share/kde4/services/kresources/kcal/local.desktop -share/kde4/services/kresources/kcal/localdir.desktop -share/kde4/services/kresources/kcal_manager.desktop -share/kde4/services/ldap.protocol -share/kde4/services/ldaps.protocol -share/kde4/services/mbox.protocol -share/kde4/services/nntp.protocol -share/kde4/services/nntps.protocol -share/kde4/services/pop3.protocol -share/kde4/services/pop3s.protocol -share/kde4/services/sieve.protocol -share/kde4/services/smtp.protocol -share/kde4/services/smtps.protocol -share/kde4/servicetypes/kresources_manager.desktop -share/kde4/servicetypes/kresources_plugin.desktop -@dirrm share/doc/HTML/en/kioslave/smtp -@dirrm share/doc/HTML/en/kioslave/pop3 -@dirrm share/doc/HTML/en/kioslave/nntp -@dirrm share/doc/HTML/en/kioslave/ldap -@dirrm share/doc/HTML/en/kioslave/imap -@dirrm share/doc/HTML/en/kcontrol/kresources -@dirrm share/apps/akonadi-kde -@dirrm lib/gpgmepp -@dirrm lib/KdepimLibs/cmake -@dirrm lib/KdepimLibs -@dirrm include/syndication/rss2 -@dirrm include/syndication/rdf -@dirrm include/syndication/atom -@dirrm include/syndication -@dirrm include/qgpgme -@dirrm include/mailtransport -@dirrm include/kxmlrpcclient -@dirrm include/ktnef -@dirrm include/kresources -@dirrm include/kpimutils -@dirrm include/kpimidentities -@dirrm include/kmime -@dirrm include/kldap -@dirrm include/kimap -@dirrm include/kcal -@dirrm include/kblog -@dirrm include/kabc -@dirrm include/gpgme++/interfaces -@dirrm include/gpgme++ -@dirrmtry include/akonadi/private -@dirrm include/akonadi/kmime -@dirrm include/akonadi/kabc -@dirrmtry include/akonadi diff --git a/deskutils/nautilus-locked-folder/Makefile b/deskutils/nautilus-locked-folder/Makefile deleted file mode 100644 index 6b5affeff..000000000 --- a/deskutils/nautilus-locked-folder/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: nautilus-locked-folder -# Date created: 2005-09-17 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/deskutils/nautilus-locked-folder/Makefile,v 1.7 2008/03/18 15:20:20 ahze Exp $ -# - -PORTNAME= nautilus-locked-folder -PORTVERSION= 1.0.0 -PORTREVISION= 6 -CATEGORIES= deskutils security -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= pav - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Nautilus plugin that allows you to encrypt the contents of a folder - -USE_AUTOTOOLS= libtool:15 -GNU_CONFIGURE= yes -USE_GNOME= nautilus2 eel2 -PKGCONFIGS= gtk+-2.0 libglade-2.0 libnautilus-extension libgnomeui-2.0 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags ${PKGCONFIGS}`" \ - LDFLASG="-L${LOCALBASE}/lib `pkg-config --libs ${PKGCONFIGS}`" \ - LIBS="-lssl" -PLIST_FILES= lib/nautilus/extensions-2.0/libnautilus-locked-folder.a \ - lib/nautilus/extensions-2.0/libnautilus-locked-folder.la \ - lib/nautilus/extensions-2.0/libnautilus-locked-folder.so - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/share/icons/hicolor/32x32/stock/data/|${LOCALBASE}/share/icons/hicolor/32x32/stock/data/|' \ - ${WRKSRC}/src/lockedfolder-extension.c - @${REINPLACE_CMD} -e 's|gladedir)"\\" \\|gladedir)"\\"|g ; \ - s|.*-Werror||g' ${WRKSRC}/src/Makefile.in - -.include <bsd.port.mk> diff --git a/deskutils/nautilus-locked-folder/distinfo b/deskutils/nautilus-locked-folder/distinfo deleted file mode 100644 index e1eaf91dc..000000000 --- a/deskutils/nautilus-locked-folder/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (nautilus-locked-folder-1.0.0.tar.gz) = b83dd18fa26b524a61f6d61bfbcaf55c -SHA256 (nautilus-locked-folder-1.0.0.tar.gz) = d806007493359d6501a8f9696fba8f9960a456a319a5fe58cb534453d2d75602 -SIZE (nautilus-locked-folder-1.0.0.tar.gz) = 336027 diff --git a/deskutils/nautilus-locked-folder/files/patch-configure b/deskutils/nautilus-locked-folder/files/patch-configure deleted file mode 100644 index f6801cb4b..000000000 --- a/deskutils/nautilus-locked-folder/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed Aug 31 07:17:44 2005 -+++ configure Sat Sep 17 00:31:55 2005 -@@ -19277,7 +19277,7 @@ - echo "$as_me:$LINENO: checking for libnautilus-extension >= $NAUTILUS_REQUIRED eel-2.0 >= $EEL_REQUIRED glib-2.0 >= $GLIB_REQUIRED openssl >= $OPENSSL_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED" >&5 - echo $ECHO_N "checking for libnautilus-extension >= $NAUTILUS_REQUIRED eel-2.0 >= $EEL_REQUIRED glib-2.0 >= $GLIB_REQUIRED openssl >= $OPENSSL_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED... $ECHO_C" >&6 - -- if $PKG_CONFIG --exists "libnautilus-extension >= $NAUTILUS_REQUIRED eel-2.0 >= $EEL_REQUIRED glib-2.0 >= $GLIB_REQUIRED openssl >= $OPENSSL_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED" ; then -+ if $PKG_CONFIG --exists "libnautilus-extension >= $NAUTILUS_REQUIRED eel-2.0 >= $EEL_REQUIRED glib-2.0 >= $GLIB_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED" ; then - echo "$as_me:$LINENO: result: yes" >&5 - echo "${ECHO_T}yes" >&6 - succeeded=yes diff --git a/deskutils/nautilus-locked-folder/files/patch-src_Makefile.in b/deskutils/nautilus-locked-folder/files/patch-src_Makefile.in deleted file mode 100644 index 8e8f2e24a..000000000 --- a/deskutils/nautilus-locked-folder/files/patch-src_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig 2008-03-18 11:10:04.000000000 -0400 -+++ src/Makefile.in 2008-03-18 11:10:10.000000000 -0400 -@@ -229,7 +229,7 @@ - - - # FIXME: get this from the .pc file --nautilus_extensiondir = $(libdir)/nautilus/extensions-1.0 -+nautilus_extensiondir = $(libdir)/nautilus/extensions-2.0 - nautilus_extension_LTLIBRARIES = libnautilus-locked-folder.la - libnautilus_locked_folder_la_SOURCES = \ - encrypt.c decrypt.c lockedfolder-extension.c lockedfolder.h diff --git a/deskutils/nautilus-locked-folder/files/patch-src_lockedfolder.h b/deskutils/nautilus-locked-folder/files/patch-src_lockedfolder.h deleted file mode 100644 index 0690536e1..000000000 --- a/deskutils/nautilus-locked-folder/files/patch-src_lockedfolder.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/lockedfolder.h.orig 2009-01-11 13:41:26.000000000 -0500 -+++ src/lockedfolder.h 2009-01-11 13:41:33.000000000 -0500 -@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA. */ - #define LF_ENCRYPT 1 - #define LF_DECRYPT 0 - -+#include <sys/types.h> - #include <glade/glade.h> - - diff --git a/deskutils/nautilus-locked-folder/pkg-descr b/deskutils/nautilus-locked-folder/pkg-descr deleted file mode 100644 index a3afbc579..000000000 --- a/deskutils/nautilus-locked-folder/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This is a plugin for Nautilus that adds a 'Lock folder' item to the -right-click menus of folders. Locking a folder encrypts its contents -and converts it into a '.locked' format archive. This archive can then -be decrypted by right-clicking it and selecting 'Unlock folder'. - -WWW: http://www.gnome.org/projects/nautilus-locked-folders/ diff --git a/deskutils/nautilus-open-terminal/Makefile b/deskutils/nautilus-open-terminal/Makefile deleted file mode 100644 index b8f81d049..000000000 --- a/deskutils/nautilus-open-terminal/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: nautilus-open-terminal -# Date created: 2005-07-07 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/deskutils/nautilus-open-terminal/Makefile,v 1.12 2008/02/28 18:19:56 kwm Exp $ -# - -PORTNAME= nautilus-open-terminal -PORTVERSION= 0.9 -PORTREVISION= 2 -CATEGORIES= deskutils -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Nautilus extension which allows you to open a terminal - -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_GNOME= nautilus2 gnomeprefix intlhack gnomehack -USE_GETTEXT= yes -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags gnome-vfs-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib" -GCONF_SCHEMAS= nautilus-open-terminal.schemas - -.include <bsd.port.mk> diff --git a/deskutils/nautilus-open-terminal/distinfo b/deskutils/nautilus-open-terminal/distinfo deleted file mode 100644 index b5d08e553..000000000 --- a/deskutils/nautilus-open-terminal/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (nautilus-open-terminal-0.9.tar.bz2) = b2dfbba5357524341157b00ea7a4291a -SHA256 (nautilus-open-terminal-0.9.tar.bz2) = c6fbcdf3248ab6a30cc8b9771acf703f2111872ae7ee2bad5a01f31efc4828b0 -SIZE (nautilus-open-terminal-0.9.tar.bz2) = 273099 diff --git a/deskutils/nautilus-open-terminal/pkg-descr b/deskutils/nautilus-open-terminal/pkg-descr deleted file mode 100644 index 6f36a4660..000000000 --- a/deskutils/nautilus-open-terminal/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Nautilus extension which allows you to open a terminal diff --git a/deskutils/nautilus-open-terminal/pkg-plist b/deskutils/nautilus-open-terminal/pkg-plist deleted file mode 100644 index 10c9d0d01..000000000 --- a/deskutils/nautilus-open-terminal/pkg-plist +++ /dev/null @@ -1,66 +0,0 @@ -lib/nautilus/extensions-2.0/libnautilus-open-terminal.a -lib/nautilus/extensions-2.0/libnautilus-open-terminal.la -lib/nautilus/extensions-2.0/libnautilus-open-terminal.so -share/locale/ar/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/be@latin/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/be/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/bg/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/bn_IN/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ca/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/cs/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/da/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/de/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/dz/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/el/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/en_CA/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/en_GB/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/es/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/et/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/eu/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/fi/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/fr/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/gl/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/gu/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/he/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/hu/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/it/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ja/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ka/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ko/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/lt/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/mk/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ml/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/nb/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ne/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/nl/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/oc/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/or/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/pa/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/pl/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/pt_BR/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/pt/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ro/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ru/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/rw/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/sk/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/sl/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/sr/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/sr@Latn/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/sv/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/ta/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/th/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/tr/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/uk/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/vi/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/zh_CN/LC_MESSAGES/nautilus-open-terminal.mo -share/locale/zh_TW/LC_MESSAGES/nautilus-open-terminal.mo -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/deskutils/orage/Makefile b/deskutils/orage/Makefile deleted file mode 100644 index 1790da3c2..000000000 --- a/deskutils/orage/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: xfce4-calendar -# Date created: 2003-01-14 -# Whom: Matt Lancereau <matt@rimasec.net> -# -# $FreeBSD$ -# - -PORTNAME= orage -PORTVERSION= 4.6.0 -PORTREVISION= 1 -CATEGORIES= deskutils xfce -MASTER_SITES= ${MASTER_SITE_XFCE} -DIST_SUBDIR= xfce4 - -MAINTAINER= oliver@FreeBSD.org -COMMENT= A calendar application to manage your time with XFce 4 - -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnometarget gtk20 intltool intlhack pkgconfig -USE_XFCE= configenv libgui panel -USE_XORG= xext xrender xinerama xi xrandr xcursor xcomposite xdamage x11 \ - xfixes - -OPTIONS= BDB "Enable BDB support" off \ - ICAL "Enable libical support" off - -MAN1= globaltime.1 orage.1 - -.include <bsd.port.pre.mk> - -.if defined(WITH_BDB) -CONFIGURE_ARGS+=--with-bdb4=yes --with-bdb4_dir=${LOCALBASE} -USE_BDB= 40 -.else -CONFIGURE_ARGS+=--with-bdb4=no -.endif - -.if defined(WITH_ICAL) -LIB_DEPENDS+= ical.43:${PORTSDIR}/devel/libical -.endif - -post-patch: -.if !defined(WITH_ICAL) - @${REINPLACE_CMD} -e 's|libical-|no-&|g' ${WRKSRC}/configure -.endif - @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/deskutils/orage/distinfo b/deskutils/orage/distinfo deleted file mode 100644 index 87c2d386d..000000000 --- a/deskutils/orage/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (xfce4/orage-4.6.0.tar.bz2) = c3f71a922f9032119dbb1b37a09adf93 -SHA256 (xfce4/orage-4.6.0.tar.bz2) = ec284731ed0f06bb2753be853a3a742383e8d35b29a894292cbeb3fea8a93445 -SIZE (xfce4/orage-4.6.0.tar.bz2) = 1934900 diff --git a/deskutils/orage/pkg-descr b/deskutils/orage/pkg-descr deleted file mode 100644 index d0c4a1bda..000000000 --- a/deskutils/orage/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Orage provides a calendar which integrates nicely into the Xfce desktop -environment. It is highly configurable and supports alerts based on dates. -It warns you with popup or audio alarm. As it is an application kind-of -every day use it launches itself in the background as a daemon. - -WWW: http://www.xfce.org/projects/orage/ diff --git a/deskutils/orage/pkg-plist b/deskutils/orage/pkg-plist deleted file mode 100644 index dc43cf1fa..000000000 --- a/deskutils/orage/pkg-plist +++ /dev/null @@ -1,499 +0,0 @@ -bin/globaltime -bin/orage -libexec/xfce4/panel-plugins/orageclock -share/applications/xfcalendar.desktop -share/applications/xfce-xfcalendar-settings.desktop -share/dbus-1/services/org.xfce.calendar.service -share/dbus-1/services/org.xfce.orage.service -share/icons/hicolor/48x48/apps/xfcalendar.png -share/icons/hicolor/scalable/apps/xfcalendar.svg -share/locale/am/LC_MESSAGES/orage.mo -share/locale/ar/LC_MESSAGES/orage.mo -share/locale/az/LC_MESSAGES/orage.mo -share/locale/bg/LC_MESSAGES/orage.mo -share/locale/da/LC_MESSAGES/orage.mo -share/locale/de/LC_MESSAGES/orage.mo -share/locale/dz/LC_MESSAGES/orage.mo -share/locale/en_AU/LC_MESSAGES/orage.mo -share/locale/en_GB/LC_MESSAGES/orage.mo -share/locale/eo/LC_MESSAGES/orage.mo -share/locale/es/LC_MESSAGES/orage.mo -share/locale/et/LC_MESSAGES/orage.mo -share/locale/eu/LC_MESSAGES/orage.mo -share/locale/fa/LC_MESSAGES/orage.mo -share/locale/fr/LC_MESSAGES/orage.mo -share/locale/gu/LC_MESSAGES/orage.mo -share/locale/he/LC_MESSAGES/orage.mo -share/locale/hi/LC_MESSAGES/orage.mo -share/locale/hu/LC_MESSAGES/orage.mo -share/locale/id/LC_MESSAGES/orage.mo -share/locale/it/LC_MESSAGES/orage.mo -share/locale/ja/LC_MESSAGES/orage.mo -share/locale/ka/LC_MESSAGES/orage.mo -share/locale/ku/LC_MESSAGES/orage.mo -share/locale/lt/LC_MESSAGES/orage.mo -share/locale/lv/LC_MESSAGES/orage.mo -share/locale/mk/LC_MESSAGES/orage.mo -share/locale/ms/LC_MESSAGES/orage.mo -share/locale/nl/LC_MESSAGES/orage.mo -share/locale/pa/LC_MESSAGES/orage.mo -share/locale/pt_BR/LC_MESSAGES/orage.mo -share/locale/pt_PT/LC_MESSAGES/orage.mo -share/locale/ru/LC_MESSAGES/orage.mo -share/locale/sq/LC_MESSAGES/orage.mo -share/locale/sv/LC_MESSAGES/orage.mo -share/locale/ta/LC_MESSAGES/orage.mo -share/locale/tr/LC_MESSAGES/orage.mo -share/locale/ur/LC_MESSAGES/orage.mo -share/locale/vi/LC_MESSAGES/orage.mo -share/locale/be/LC_MESSAGES/orage.mo -share/locale/ca/LC_MESSAGES/orage.mo -share/locale/cs/LC_MESSAGES/orage.mo -share/locale/el/LC_MESSAGES/orage.mo -share/locale/fi/LC_MESSAGES/orage.mo -share/locale/gl/LC_MESSAGES/orage.mo -share/locale/ko/LC_MESSAGES/orage.mo -share/locale/pl/LC_MESSAGES/orage.mo -share/locale/ro/LC_MESSAGES/orage.mo -share/locale/sk/LC_MESSAGES/orage.mo -share/locale/uk/LC_MESSAGES/orage.mo -share/locale/zh_CN/LC_MESSAGES/orage.mo -share/locale/zh_TW/LC_MESSAGES/orage.mo -share/locale/mr/LC_MESSAGES/orage.mo -share/locale/bn_IN/LC_MESSAGES/orage.mo -share/locale/nb_NO/LC_MESSAGES/orage.mo -share/locale/hy/LC_MESSAGES/orage.mo -share/orage/doc/C/images/default_calendar.png -share/orage/doc/C/images/orage_eventlist.png -share/orage/doc/C/images/orage_appointment.png -share/orage/doc/C/images/orage_appointment_alarm.png -share/orage/doc/C/images/orage_appointment_recurrence.png -share/orage/doc/C/images/orage_calendar_edit_menu.png -share/orage/doc/C/images/orage_calendar_file_menu.png -share/orage/doc/C/images/orage_calendar_help_menu.png -share/orage/doc/C/images/orage_calendar_view_menu.png -share/orage/doc/C/images/orage_desktop_menuitem.png -share/orage/doc/C/images/orage_preferences_display.png -share/orage/doc/C/images/orage_daylist.png -share/orage/doc/C/images/orage_exchange_impexp.png -share/orage/doc/C/images/orage_exchange_oragefiles.png -share/orage/doc/C/images/orage_exchange_foreign.png -share/orage/doc/C/images/orage_preferences_main.png -share/orage/doc/C/images/orage_preferences_extra.png -share/orage/doc/C/orage.html -share/orage/sounds/Boiling.wav -share/orage/sounds/KDE_Beep_Digital_1.ogg -share/orage/sounds/KDE_Beep_Digital_2.ogg -share/orage/sounds/Knock.wav -share/orage/sounds/Phone.wav -share/orage/sounds/Spo.wav -share/orage/sounds/Tear.wav -share/orage/sounds/Wall_c.wav -share/orage/zoneinfo/Africa/Abidjan.ics -share/orage/zoneinfo/Africa/Accra.ics -share/orage/zoneinfo/Africa/Addis_Ababa.ics -share/orage/zoneinfo/Africa/Algiers.ics -share/orage/zoneinfo/Africa/Asmera.ics -share/orage/zoneinfo/Africa/Bamako.ics -share/orage/zoneinfo/Africa/Bangui.ics -share/orage/zoneinfo/Africa/Banjul.ics -share/orage/zoneinfo/Africa/Bissau.ics -share/orage/zoneinfo/Africa/Blantyre.ics -share/orage/zoneinfo/Africa/Brazzaville.ics -share/orage/zoneinfo/Africa/Bujumbura.ics -share/orage/zoneinfo/Africa/Cairo.ics -share/orage/zoneinfo/Africa/Casablanca.ics -share/orage/zoneinfo/Africa/Ceuta.ics -share/orage/zoneinfo/Africa/Conakry.ics -share/orage/zoneinfo/Africa/Dakar.ics -share/orage/zoneinfo/Africa/Dar_es_Salaam.ics -share/orage/zoneinfo/Africa/Djibouti.ics -share/orage/zoneinfo/Africa/Douala.ics -share/orage/zoneinfo/Africa/El_Aaiun.ics -share/orage/zoneinfo/Africa/Freetown.ics -share/orage/zoneinfo/Africa/Gaborone.ics -share/orage/zoneinfo/Africa/Harare.ics -share/orage/zoneinfo/Africa/Johannesburg.ics -share/orage/zoneinfo/Africa/Kampala.ics -share/orage/zoneinfo/Africa/Khartoum.ics -share/orage/zoneinfo/Africa/Kigali.ics -share/orage/zoneinfo/Africa/Kinshasa.ics -share/orage/zoneinfo/Africa/Lagos.ics -share/orage/zoneinfo/Africa/Libreville.ics -share/orage/zoneinfo/Africa/Lome.ics -share/orage/zoneinfo/Africa/Luanda.ics -share/orage/zoneinfo/Africa/Lubumbashi.ics -share/orage/zoneinfo/Africa/Lusaka.ics -share/orage/zoneinfo/Africa/Malabo.ics -share/orage/zoneinfo/Africa/Maputo.ics -share/orage/zoneinfo/Africa/Maseru.ics -share/orage/zoneinfo/Africa/Mbabane.ics -share/orage/zoneinfo/Africa/Mogadishu.ics -share/orage/zoneinfo/Africa/Monrovia.ics -share/orage/zoneinfo/Africa/Nairobi.ics -share/orage/zoneinfo/Africa/Ndjamena.ics -share/orage/zoneinfo/Africa/Niamey.ics -share/orage/zoneinfo/Africa/Nouakchott.ics -share/orage/zoneinfo/Africa/Ouagadougou.ics -share/orage/zoneinfo/Africa/Porto-Novo.ics -share/orage/zoneinfo/Africa/Sao_Tome.ics -share/orage/zoneinfo/Africa/Timbuktu.ics -share/orage/zoneinfo/Africa/Tripoli.ics -share/orage/zoneinfo/Africa/Tunis.ics -share/orage/zoneinfo/Africa/Windhoek.ics -share/orage/zoneinfo/America/Argentina/Buenos_Aires.ics -share/orage/zoneinfo/America/Argentina/Catamarca.ics -share/orage/zoneinfo/America/Argentina/Cordoba.ics -share/orage/zoneinfo/America/Argentina/Jujuy.ics -share/orage/zoneinfo/America/Argentina/Mendoza.ics -share/orage/zoneinfo/America/Adak.ics -share/orage/zoneinfo/America/Anchorage.ics -share/orage/zoneinfo/America/Anguilla.ics -share/orage/zoneinfo/America/Antigua.ics -share/orage/zoneinfo/America/Araguaina.ics -share/orage/zoneinfo/America/Aruba.ics -share/orage/zoneinfo/America/Asuncion.ics -share/orage/zoneinfo/America/Barbados.ics -share/orage/zoneinfo/America/Belem.ics -share/orage/zoneinfo/America/Belize.ics -share/orage/zoneinfo/America/Boa_Vista.ics -share/orage/zoneinfo/America/Bogota.ics -share/orage/zoneinfo/America/Boise.ics -share/orage/zoneinfo/America/Buenos_Aires.ics -share/orage/zoneinfo/America/Cambridge_Bay.ics -share/orage/zoneinfo/America/Cancun.ics -share/orage/zoneinfo/America/Caracas.ics -share/orage/zoneinfo/America/Catamarca.ics -share/orage/zoneinfo/America/Cayenne.ics -share/orage/zoneinfo/America/Cayman.ics -share/orage/zoneinfo/America/Chicago.ics -share/orage/zoneinfo/America/Chihuahua.ics -share/orage/zoneinfo/America/Cordoba.ics -share/orage/zoneinfo/America/Costa_Rica.ics -share/orage/zoneinfo/America/Cuiaba.ics -share/orage/zoneinfo/America/Curacao.ics -share/orage/zoneinfo/America/Dawson.ics -share/orage/zoneinfo/America/Dawson_Creek.ics -share/orage/zoneinfo/America/Denver.ics -share/orage/zoneinfo/America/Detroit.ics -share/orage/zoneinfo/America/Dominica.ics -share/orage/zoneinfo/America/Edmonton.ics -share/orage/zoneinfo/America/Eirunepe.ics -share/orage/zoneinfo/America/El_Salvador.ics -share/orage/zoneinfo/America/Fortaleza.ics -share/orage/zoneinfo/America/Glace_Bay.ics -share/orage/zoneinfo/America/Godthab.ics -share/orage/zoneinfo/America/Goose_Bay.ics -share/orage/zoneinfo/America/Grand_Turk.ics -share/orage/zoneinfo/America/Grenada.ics -share/orage/zoneinfo/America/Guadeloupe.ics -share/orage/zoneinfo/America/Guatemala.ics -share/orage/zoneinfo/America/Guayaquil.ics -share/orage/zoneinfo/America/Guyana.ics -share/orage/zoneinfo/America/Halifax.ics -share/orage/zoneinfo/America/Havana.ics -share/orage/zoneinfo/America/Hermosillo.ics -share/orage/zoneinfo/America/Indiana/Indianapolis.ics -share/orage/zoneinfo/America/Indiana/Knox.ics -share/orage/zoneinfo/America/Indiana/Marengo.ics -share/orage/zoneinfo/America/Indiana/Vevay.ics -share/orage/zoneinfo/America/Indianapolis.ics -share/orage/zoneinfo/America/Inuvik.ics -share/orage/zoneinfo/America/Iqaluit.ics -share/orage/zoneinfo/America/Jamaica.ics -share/orage/zoneinfo/America/Jujuy.ics -share/orage/zoneinfo/America/Juneau.ics -share/orage/zoneinfo/America/Kentucky/Louisville.ics -share/orage/zoneinfo/America/Kentucky/Monticello.ics -share/orage/zoneinfo/America/La_Paz.ics -share/orage/zoneinfo/America/Lima.ics -share/orage/zoneinfo/America/Los_Angeles.ics -share/orage/zoneinfo/America/Louisville.ics -share/orage/zoneinfo/America/Maceio.ics -share/orage/zoneinfo/America/Managua.ics -share/orage/zoneinfo/America/Manaus.ics -share/orage/zoneinfo/America/Martinique.ics -share/orage/zoneinfo/America/Mazatlan.ics -share/orage/zoneinfo/America/Mendoza.ics -share/orage/zoneinfo/America/Menominee.ics -share/orage/zoneinfo/America/Merida.ics -share/orage/zoneinfo/America/Mexico_City.ics -share/orage/zoneinfo/America/Miquelon.ics -share/orage/zoneinfo/America/Monterrey.ics -share/orage/zoneinfo/America/Montevideo.ics -share/orage/zoneinfo/America/Montreal.ics -share/orage/zoneinfo/America/Montserrat.ics -share/orage/zoneinfo/America/Nassau.ics -share/orage/zoneinfo/America/New_York.ics -share/orage/zoneinfo/America/Nipigon.ics -share/orage/zoneinfo/America/Nome.ics -share/orage/zoneinfo/America/Noronha.ics -share/orage/zoneinfo/America/Panama.ics -share/orage/zoneinfo/America/Pangnirtung.ics -share/orage/zoneinfo/America/Paramaribo.ics -share/orage/zoneinfo/America/Phoenix.ics -share/orage/zoneinfo/America/Port-au-Prince.ics -share/orage/zoneinfo/America/Port_of_Spain.ics -share/orage/zoneinfo/America/Porto_Velho.ics -share/orage/zoneinfo/America/Puerto_Rico.ics -share/orage/zoneinfo/America/Rainy_River.ics -share/orage/zoneinfo/America/Rankin_Inlet.ics -share/orage/zoneinfo/America/Recife.ics -share/orage/zoneinfo/America/Regina.ics -share/orage/zoneinfo/America/Rio_Branco.ics -share/orage/zoneinfo/America/Rosario.ics -share/orage/zoneinfo/America/Santiago.ics -share/orage/zoneinfo/America/Santo_Domingo.ics -share/orage/zoneinfo/America/Sao_Paulo.ics -share/orage/zoneinfo/America/Scoresbysund.ics -share/orage/zoneinfo/America/Shiprock.ics -share/orage/zoneinfo/America/St_Johns.ics -share/orage/zoneinfo/America/St_Kitts.ics -share/orage/zoneinfo/America/St_Lucia.ics -share/orage/zoneinfo/America/St_Thomas.ics -share/orage/zoneinfo/America/St_Vincent.ics -share/orage/zoneinfo/America/Swift_Current.ics -share/orage/zoneinfo/America/Tegucigalpa.ics -share/orage/zoneinfo/America/Thule.ics -share/orage/zoneinfo/America/Thunder_Bay.ics -share/orage/zoneinfo/America/Tijuana.ics -share/orage/zoneinfo/America/Tortola.ics -share/orage/zoneinfo/America/Vancouver.ics -share/orage/zoneinfo/America/Whitehorse.ics -share/orage/zoneinfo/America/Winnipeg.ics -share/orage/zoneinfo/America/Yakutat.ics -share/orage/zoneinfo/America/Yellowknife.ics -share/orage/zoneinfo/Antarctica/Casey.ics -share/orage/zoneinfo/Antarctica/Davis.ics -share/orage/zoneinfo/Antarctica/DumontDUrville.ics -share/orage/zoneinfo/Antarctica/Mawson.ics -share/orage/zoneinfo/Antarctica/McMurdo.ics -share/orage/zoneinfo/Antarctica/Palmer.ics -share/orage/zoneinfo/Antarctica/South_Pole.ics -share/orage/zoneinfo/Antarctica/Syowa.ics -share/orage/zoneinfo/Antarctica/Vostok.ics -share/orage/zoneinfo/Arctic/Longyearbyen.ics -share/orage/zoneinfo/Asia/Aden.ics -share/orage/zoneinfo/Asia/Almaty.ics -share/orage/zoneinfo/Asia/Amman.ics -share/orage/zoneinfo/Asia/Anadyr.ics -share/orage/zoneinfo/Asia/Aqtau.ics -share/orage/zoneinfo/Asia/Aqtobe.ics -share/orage/zoneinfo/Asia/Ashgabat.ics -share/orage/zoneinfo/Asia/Baghdad.ics -share/orage/zoneinfo/Asia/Bahrain.ics -share/orage/zoneinfo/Asia/Baku.ics -share/orage/zoneinfo/Asia/Bangkok.ics -share/orage/zoneinfo/Asia/Beirut.ics -share/orage/zoneinfo/Asia/Bishkek.ics -share/orage/zoneinfo/Asia/Brunei.ics -share/orage/zoneinfo/Asia/Calcutta.ics -share/orage/zoneinfo/Asia/Chungking.ics -share/orage/zoneinfo/Asia/Colombo.ics -share/orage/zoneinfo/Asia/Damascus.ics -share/orage/zoneinfo/Asia/Dhaka.ics -share/orage/zoneinfo/Asia/Dili.ics -share/orage/zoneinfo/Asia/Dubai.ics -share/orage/zoneinfo/Asia/Dushanbe.ics -share/orage/zoneinfo/Asia/Gaza.ics -share/orage/zoneinfo/Asia/Harbin.ics -share/orage/zoneinfo/Asia/Hong_Kong.ics -share/orage/zoneinfo/Asia/Hovd.ics -share/orage/zoneinfo/Asia/Irkutsk.ics -share/orage/zoneinfo/Asia/Istanbul.ics -share/orage/zoneinfo/Asia/Jakarta.ics -share/orage/zoneinfo/Asia/Jayapura.ics -share/orage/zoneinfo/Asia/Jerusalem.ics -share/orage/zoneinfo/Asia/Kabul.ics -share/orage/zoneinfo/Asia/Kamchatka.ics -share/orage/zoneinfo/Asia/Karachi.ics -share/orage/zoneinfo/Asia/Kashgar.ics -share/orage/zoneinfo/Asia/Katmandu.ics -share/orage/zoneinfo/Asia/Krasnoyarsk.ics -share/orage/zoneinfo/Asia/Kuala_Lumpur.ics -share/orage/zoneinfo/Asia/Kuching.ics -share/orage/zoneinfo/Asia/Kuwait.ics -share/orage/zoneinfo/Asia/Macao.ics -share/orage/zoneinfo/Asia/Magadan.ics -share/orage/zoneinfo/Asia/Manila.ics -share/orage/zoneinfo/Asia/Muscat.ics -share/orage/zoneinfo/Asia/Nicosia.ics -share/orage/zoneinfo/Asia/Novosibirsk.ics -share/orage/zoneinfo/Asia/Omsk.ics -share/orage/zoneinfo/Asia/Phnom_Penh.ics -share/orage/zoneinfo/Asia/Pontianak.ics -share/orage/zoneinfo/Asia/Pyongyang.ics -share/orage/zoneinfo/Asia/Qatar.ics -share/orage/zoneinfo/Asia/Rangoon.ics -share/orage/zoneinfo/Asia/Riyadh.ics -share/orage/zoneinfo/Asia/Saigon.ics -share/orage/zoneinfo/Asia/Samarkand.ics -share/orage/zoneinfo/Asia/Seoul.ics -share/orage/zoneinfo/Asia/Shanghai.ics -share/orage/zoneinfo/Asia/Singapore.ics -share/orage/zoneinfo/Asia/Taipei.ics -share/orage/zoneinfo/Asia/Tashkent.ics -share/orage/zoneinfo/Asia/Tbilisi.ics -share/orage/zoneinfo/Asia/Tehran.ics -share/orage/zoneinfo/Asia/Thimphu.ics -share/orage/zoneinfo/Asia/Tokyo.ics -share/orage/zoneinfo/Asia/Ujung_Pandang.ics -share/orage/zoneinfo/Asia/Ulaanbaatar.ics -share/orage/zoneinfo/Asia/Urumqi.ics -share/orage/zoneinfo/Asia/Vientiane.ics -share/orage/zoneinfo/Asia/Vladivostok.ics -share/orage/zoneinfo/Asia/Yakutsk.ics -share/orage/zoneinfo/Asia/Yekaterinburg.ics -share/orage/zoneinfo/Asia/Yerevan.ics -share/orage/zoneinfo/Atlantic/Azores.ics -share/orage/zoneinfo/Atlantic/Bermuda.ics -share/orage/zoneinfo/Atlantic/Canary.ics -share/orage/zoneinfo/Atlantic/Cape_Verde.ics -share/orage/zoneinfo/Atlantic/Faeroe.ics -share/orage/zoneinfo/Atlantic/Jan_Mayen.ics -share/orage/zoneinfo/Atlantic/Madeira.ics -share/orage/zoneinfo/Atlantic/Reykjavik.ics -share/orage/zoneinfo/Atlantic/South_Georgia.ics -share/orage/zoneinfo/Atlantic/St_Helena.ics -share/orage/zoneinfo/Atlantic/Stanley.ics -share/orage/zoneinfo/Australia/Adelaide.ics -share/orage/zoneinfo/Australia/Brisbane.ics -share/orage/zoneinfo/Australia/Broken_Hill.ics -share/orage/zoneinfo/Australia/Darwin.ics -share/orage/zoneinfo/Australia/Hobart.ics -share/orage/zoneinfo/Australia/Lindeman.ics -share/orage/zoneinfo/Australia/Lord_Howe.ics -share/orage/zoneinfo/Australia/Melbourne.ics -share/orage/zoneinfo/Australia/Perth.ics -share/orage/zoneinfo/Australia/Sydney.ics -share/orage/zoneinfo/Europe/Amsterdam.ics -share/orage/zoneinfo/Europe/Andorra.ics -share/orage/zoneinfo/Europe/Athens.ics -share/orage/zoneinfo/Europe/Belfast.ics -share/orage/zoneinfo/Europe/Belgrade.ics -share/orage/zoneinfo/Europe/Berlin.ics -share/orage/zoneinfo/Europe/Bratislava.ics -share/orage/zoneinfo/Europe/Brussels.ics -share/orage/zoneinfo/Europe/Bucharest.ics -share/orage/zoneinfo/Europe/Budapest.ics -share/orage/zoneinfo/Europe/Chisinau.ics -share/orage/zoneinfo/Europe/Copenhagen.ics -share/orage/zoneinfo/Europe/Dublin.ics -share/orage/zoneinfo/Europe/Gibraltar.ics -share/orage/zoneinfo/Europe/Helsinki.ics -share/orage/zoneinfo/Europe/Istanbul.ics -share/orage/zoneinfo/Europe/Kaliningrad.ics -share/orage/zoneinfo/Europe/Kiev.ics -share/orage/zoneinfo/Europe/Lisbon.ics -share/orage/zoneinfo/Europe/Ljubljana.ics -share/orage/zoneinfo/Europe/London.ics -share/orage/zoneinfo/Europe/Luxembourg.ics -share/orage/zoneinfo/Europe/Madrid.ics -share/orage/zoneinfo/Europe/Malta.ics -share/orage/zoneinfo/Europe/Minsk.ics -share/orage/zoneinfo/Europe/Monaco.ics -share/orage/zoneinfo/Europe/Moscow.ics -share/orage/zoneinfo/Europe/Nicosia.ics -share/orage/zoneinfo/Europe/Oslo.ics -share/orage/zoneinfo/Europe/Paris.ics -share/orage/zoneinfo/Europe/Prague.ics -share/orage/zoneinfo/Europe/Riga.ics -share/orage/zoneinfo/Europe/Rome.ics -share/orage/zoneinfo/Europe/Samara.ics -share/orage/zoneinfo/Europe/San_Marino.ics -share/orage/zoneinfo/Europe/Sarajevo.ics -share/orage/zoneinfo/Europe/Simferopol.ics -share/orage/zoneinfo/Europe/Skopje.ics -share/orage/zoneinfo/Europe/Sofia.ics -share/orage/zoneinfo/Europe/Stockholm.ics -share/orage/zoneinfo/Europe/Tallinn.ics -share/orage/zoneinfo/Europe/Tirane.ics -share/orage/zoneinfo/Europe/Uzhgorod.ics -share/orage/zoneinfo/Europe/Vaduz.ics -share/orage/zoneinfo/Europe/Vatican.ics -share/orage/zoneinfo/Europe/Vienna.ics -share/orage/zoneinfo/Europe/Vilnius.ics -share/orage/zoneinfo/Europe/Warsaw.ics -share/orage/zoneinfo/Europe/Zagreb.ics -share/orage/zoneinfo/Europe/Zaporozhye.ics -share/orage/zoneinfo/Europe/Zurich.ics -share/orage/zoneinfo/Indian/Antananarivo.ics -share/orage/zoneinfo/Indian/Chagos.ics -share/orage/zoneinfo/Indian/Christmas.ics -share/orage/zoneinfo/Indian/Cocos.ics -share/orage/zoneinfo/Indian/Comoro.ics -share/orage/zoneinfo/Indian/Kerguelen.ics -share/orage/zoneinfo/Indian/Mahe.ics -share/orage/zoneinfo/Indian/Maldives.ics -share/orage/zoneinfo/Indian/Mauritius.ics -share/orage/zoneinfo/Indian/Mayotte.ics -share/orage/zoneinfo/Indian/Reunion.ics -share/orage/zoneinfo/Pacific/Apia.ics -share/orage/zoneinfo/Pacific/Auckland.ics -share/orage/zoneinfo/Pacific/Chatham.ics -share/orage/zoneinfo/Pacific/Easter.ics -share/orage/zoneinfo/Pacific/Efate.ics -share/orage/zoneinfo/Pacific/Enderbury.ics -share/orage/zoneinfo/Pacific/Fakaofo.ics -share/orage/zoneinfo/Pacific/Fiji.ics -share/orage/zoneinfo/Pacific/Funafuti.ics -share/orage/zoneinfo/Pacific/Galapagos.ics -share/orage/zoneinfo/Pacific/Gambier.ics -share/orage/zoneinfo/Pacific/Guadalcanal.ics -share/orage/zoneinfo/Pacific/Guam.ics -share/orage/zoneinfo/Pacific/Honolulu.ics -share/orage/zoneinfo/Pacific/Johnston.ics -share/orage/zoneinfo/Pacific/Kiritimati.ics -share/orage/zoneinfo/Pacific/Kosrae.ics -share/orage/zoneinfo/Pacific/Kwajalein.ics -share/orage/zoneinfo/Pacific/Majuro.ics -share/orage/zoneinfo/Pacific/Marquesas.ics -share/orage/zoneinfo/Pacific/Midway.ics -share/orage/zoneinfo/Pacific/Nauru.ics -share/orage/zoneinfo/Pacific/Niue.ics -share/orage/zoneinfo/Pacific/Norfolk.ics -share/orage/zoneinfo/Pacific/Noumea.ics -share/orage/zoneinfo/Pacific/Pago_Pago.ics -share/orage/zoneinfo/Pacific/Palau.ics -share/orage/zoneinfo/Pacific/Pitcairn.ics -share/orage/zoneinfo/Pacific/Ponape.ics -share/orage/zoneinfo/Pacific/Port_Moresby.ics -share/orage/zoneinfo/Pacific/Rarotonga.ics -share/orage/zoneinfo/Pacific/Saipan.ics -share/orage/zoneinfo/Pacific/Tahiti.ics -share/orage/zoneinfo/Pacific/Tarawa.ics -share/orage/zoneinfo/Pacific/Tongatapu.ics -share/orage/zoneinfo/Pacific/Truk.ics -share/orage/zoneinfo/Pacific/Wake.ics -share/orage/zoneinfo/Pacific/Wallis.ics -share/orage/zoneinfo/Pacific/Yap.ics -share/orage/zoneinfo/zones.tab -share/xfce4/panel-plugins/orageclock.desktop -@dirrmtry libexec/xfce4/panel-plugins -@dirrmtry libexec/xfce4 -@dirrmtry share/applications -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrm share/orage/doc/C/images -@dirrm share/orage/doc/C -@dirrm share/orage/doc -@dirrm share/orage/sounds -@dirrm share/orage/zoneinfo/Africa -@dirrm share/orage/zoneinfo/America/Argentina -@dirrm share/orage/zoneinfo/America/Indiana -@dirrm share/orage/zoneinfo/America/Kentucky -@dirrm share/orage/zoneinfo/America -@dirrm share/orage/zoneinfo/Antarctica -@dirrm share/orage/zoneinfo/Arctic -@dirrm share/orage/zoneinfo/Asia -@dirrm share/orage/zoneinfo/Atlantic -@dirrm share/orage/zoneinfo/Australia -@dirrm share/orage/zoneinfo/Europe -@dirrm share/orage/zoneinfo/Indian -@dirrm share/orage/zoneinfo/Pacific -@dirrm share/orage/zoneinfo -@dirrm share/orage -@dirrmtry share/xfce4/panel-plugins -@dirrmtry share/xfce4 -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable diff --git a/devel/anjuta/Makefile b/devel/anjuta/Makefile deleted file mode 100644 index a75d10280..000000000 --- a/devel/anjuta/Makefile +++ /dev/null @@ -1,99 +0,0 @@ -# New ports collection makefile for: anjuta -# Date created: 31 March 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/anjuta/Makefile,v 1.36 2009/03/17 23:52:29 kwm Exp $ -# - -PORTNAME= anjuta -PORTVERSION= 2.26.0.1 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Integrated Development Environment for C and C++ - -BUILD_DEPENDS= autogen:${PORTSDIR}/devel/autogen \ - bash:${PORTSDIR}/shells/bash \ - neato:${PORTSDIR}/graphics/graphviz -LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre \ - gladeui-1.9:${PORTSDIR}/devel/glade3 \ - neon.28:${PORTSDIR}/www/neon28 -RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \ - autogen:${PORTSDIR}/devel/autogen \ - neato:${PORTSDIR}/graphics/graphviz \ - libtool:${PORTSDIR}/devel/libtool15 \ - ${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme - -USE_BZIP2= yes -USE_AUTOTOOLS= autotools:run -USE_GMAKE= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_GNOME= gnomeprefix gnomehack libgnomeui vte gtksourceview2 libgda4 -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -USE_LDCONFIG= yes -GCONF_SCHEMAS= anjuta-build-basic-autotools-plugin.schemas \ - anjuta-cvs-plugin.schemas \ - anjuta-document-manager.schemas \ - anjuta-editor-scintilla.schemas \ - anjuta-editor-sourceview.schemas \ - anjuta-language-cpp-java.schemas \ - anjuta-message-manager-plugin.schemas \ - anjuta-symbol-db.schemas \ - anjuta-terminal-plugin.schemas \ - anjuta.schemas - -MAN1= anjuta.1 anjuta_launcher.1 - -OPTIONS= SVN "Build subversion plugin" off \ - DEVHELP "Build devhelp plugin" on - -.include <bsd.port.pre.mk> - -.if defined(WITH_SVN) -BUILD_DEPENDS+= svn:${PORTSDIR}/devel/subversion -RUN_DEPENDS+= svn:${PORTSDIR}/devel/subversion -USE_APACHE= 2.0+ - -CONFIGURE_ARGS+=--with-subversion-dir=${LOCALBASE}/bin \ - --with-svn-include=${LOCALBASE}/include \ - --with-svn-lib=${LOCALBASE}/lib \ - --with-apr-config=${LOCALBASE}/bin/apr-1-config \ - --with-apu-config=${LOCALBASE}/bin/apu-1-config -PLIST_SUB+= SVN="" -.else -CONFIGURE_ARGS+=--disable-plugin-subversion -PLIST_SUB+= SVN="@comment " -.endif - -.if defined(WITH_DEVHELP) -LIB_DEPENDS+= devhelp-1.0:${PORTSDIR}/devel/devhelp -PLIST_SUB+= DEVHELP="" -.else -CONFIGURE_ARGS+=--disable-plugin-devhelp -PLIST_SUB+= DEVHELP="@comment " -.endif - -post-configure: - @${REINPLACE_CMD} -e 's|PKG_PATH|PKG_CONFIG_PATH|g' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|"make|"gmake|g' \ - ${WRKSRC}/plugins/build-basic-autotools/plugin.c - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in AUTHORS COPYING ChangeLog FUTURE INSTALL NEWS README \ - doc/ScintillaDoc.html TODO - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - @-update-mime-database ${PREFIX}/share/mime - -.include <bsd.port.post.mk> diff --git a/devel/anjuta/distinfo b/devel/anjuta/distinfo deleted file mode 100644 index a52aeb6d5..000000000 --- a/devel/anjuta/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/anjuta-2.26.0.1.tar.bz2) = 84d3aae494f9866ca7d2a906be82a8df -SHA256 (gnome2/anjuta-2.26.0.1.tar.bz2) = 9e4778cfd9bdf364ebccdedb9305cbe49fb7bc215ef7b12f9f07db4dfb1e1e1f -SIZE (gnome2/anjuta-2.26.0.1.tar.bz2) = 7703345 diff --git a/devel/anjuta/files/patch-Makefile.in b/devel/anjuta/files/patch-Makefile.in deleted file mode 100644 index 132cd2755..000000000 --- a/devel/anjuta/files/patch-Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ ---- Makefile.in.orig 2008-09-22 14:17:35.000000000 -0400 -+++ Makefile.in 2008-09-22 14:20:32.000000000 -0400 -@@ -505,14 +505,14 @@ uninstall-anjuta_dataDATA: - rm -f "$(DESTDIR)$(anjuta_datadir)/$$f"; \ - done - install-anjutadocDATA: $(anjutadoc_DATA) -- @$(NORMAL_INSTALL) -- test -z "$(anjutadocdir)" || $(MKDIR_P) "$(DESTDIR)$(anjutadocdir)" -- @list='$(anjutadoc_DATA)'; for p in $$list; do \ -- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ -- f=$(am__strip_dir) \ -- echo " $(anjutadocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(anjutadocdir)/$$f'"; \ -- $(anjutadocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(anjutadocdir)/$$f"; \ -- done -+# @$(NORMAL_INSTALL) -+# test -z "$(anjutadocdir)" || $(MKDIR_P) "$(DESTDIR)$(anjutadocdir)" -+# @list='$(anjutadoc_DATA)'; for p in $$list; do \ -+# if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ -+# f=$(am__strip_dir) \ -+# echo " $(anjutadocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(anjutadocdir)/$$f'"; \ -+# $(anjutadocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(anjutadocdir)/$$f"; \ -+# done - - uninstall-anjutadocDATA: - @$(NORMAL_UNINSTALL) diff --git a/devel/anjuta/files/patch-doc::Makefile.in b/devel/anjuta/files/patch-doc::Makefile.in deleted file mode 100644 index a567fda33..000000000 --- a/devel/anjuta/files/patch-doc::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- doc/Makefile.in.orig 2008-08-06 17:40:26.000000000 +0200 -+++ doc/Makefile.in 2008-08-06 17:41:04.000000000 +0200 -@@ -540,7 +540,7 @@ - - info-am: - --install-data-am: install-anjuta_docDATA install-man -+install-data-am: install-man - - install-dvi: install-dvi-am - diff --git a/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c b/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c deleted file mode 100644 index 0235ff1e8..000000000 --- a/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c +++ /dev/null @@ -1,71 +0,0 @@ ---- libanjuta/anjuta-launcher.c.orig 2008-05-29 22:37:02.000000000 +0200 -+++ libanjuta/anjuta-launcher.c 2008-06-05 16:12:17.000000000 +0200 -@@ -761,7 +761,8 @@ anjuta_launcher_scan_output (GIOChannel - GError *err = NULL; - do - { -- g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err); -+ GIOStatus status; -+ status = g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err); - if (n > 0) /* There is output */ - { - gchar *utf8_chars = NULL; -@@ -789,6 +790,13 @@ anjuta_launcher_scan_output (GIOChannel - anjuta_launcher_synchronize (launcher); - ret = FALSE; - } -+ else if (status == G_IO_STATUS_EOF) -+ { -+ launcher->priv->stdout_is_done = TRUE; -+ anjuta_launcher_synchronize (launcher); -+ ret = FALSE; -+ } -+ - /* Read next chars if buffer was too small - * (the maximum length of one character is 6 bytes) */ - } while (!err && (n > FILE_BUFFER_SIZE - 7)); -@@ -818,7 +826,8 @@ anjuta_launcher_scan_error (GIOChannel * - GError *err = NULL; - do - { -- g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err); -+ GIOStatus status; -+ status = g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err); - if (n > 0) /* There is stderr output */ - { - gchar *utf8_chars; -@@ -844,6 +853,13 @@ anjuta_launcher_scan_error (GIOChannel * - anjuta_launcher_synchronize (launcher); - ret = FALSE; - } -+ else if (status == G_IO_STATUS_EOF) -+ { -+ launcher->priv->stderr_is_done = TRUE; -+ anjuta_launcher_synchronize (launcher); -+ ret = FALSE; -+ } -+ - /* Read next chars if buffer was too small - * (the maximum length of one character is 6 bytes) */ - } while (!err && (n > FILE_BUFFER_SIZE - 7)); -@@ -873,7 +889,8 @@ anjuta_launcher_scan_pty (GIOChannel *ch - GError *err = NULL; - do - { -- g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err); -+ GIOStatus status; -+ status = g_io_channel_read_chars (channel, buffer, FILE_BUFFER_SIZE-1, &n, &err); - if (n > 0) /* There is stderr output */ - { - gchar *utf8_chars; -@@ -902,6 +919,10 @@ anjuta_launcher_scan_pty (GIOChannel *ch - { - ret = FALSE; - } -+ else if (status == G_IO_STATUS_EOF) -+ { -+ ret = FALSE; -+ } - /* Read next chars if buffer was too small - * (the maximum length of one character is 6 bytes) */ - } while (!err && (n > FILE_BUFFER_SIZE - 7)); diff --git a/devel/anjuta/files/patch-plugins_symbol-db_Makefile.in b/devel/anjuta/files/patch-plugins_symbol-db_Makefile.in deleted file mode 100644 index a7165a47d..000000000 --- a/devel/anjuta/files/patch-plugins_symbol-db_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/symbol-db/Makefile.in.orig 2009-02-28 20:29:49.000000000 -0500 -+++ plugins/symbol-db/Makefile.in 2009-02-28 20:29:57.000000000 -0500 -@@ -369,7 +369,7 @@ sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --SUBDIRS = images test -+SUBDIRS = images - symbol_db_datadir = $(anjuta_data_dir) - symbol_db_data_DATA = tables.sql - diff --git a/devel/anjuta/pkg-descr b/devel/anjuta/pkg-descr deleted file mode 100644 index eff552164..000000000 --- a/devel/anjuta/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Anjuta is a very versatile Integrated development environment for -C and C++. Written in GTK/GNOME and written for GTK+/GNOME, -it features many advanced programming tools and utilities. It is -basically a GUI interface for the bunch of command line programming -utilities and tools available for FreeBSD, which are usually run in console -and are very user unfriendly. - -WWW: http://anjuta.org/ diff --git a/devel/anjuta/pkg-plist b/devel/anjuta/pkg-plist deleted file mode 100644 index 9652918a5..000000000 --- a/devel/anjuta/pkg-plist +++ /dev/null @@ -1,1239 +0,0 @@ -bin/anjuta -bin/anjuta_launcher -bin/gbf-am-parse -bin/gbf-mkfile-parse -include/libanjuta-1.0/libanjuta/anjuta-async-command.h -include/libanjuta-1.0/libanjuta/anjuta-async-notify.h -include/libanjuta-1.0/libanjuta/anjuta-command.h -include/libanjuta-1.0/libanjuta/anjuta-convert.h -include/libanjuta-1.0/libanjuta/anjuta-debug.h -include/libanjuta-1.0/libanjuta/anjuta-encodings.h -include/libanjuta-1.0/libanjuta/anjuta-enum-types.h -include/libanjuta-1.0/libanjuta/anjuta-error.h -include/libanjuta-1.0/libanjuta/anjuta-launcher.h -include/libanjuta-1.0/libanjuta/anjuta-marshal.h -include/libanjuta-1.0/libanjuta/anjuta-message-area.h -include/libanjuta-1.0/libanjuta/anjuta-plugin-description.h -include/libanjuta-1.0/libanjuta/anjuta-plugin-handle.h -include/libanjuta-1.0/libanjuta/anjuta-plugin-manager.h -include/libanjuta-1.0/libanjuta/anjuta-plugin.h -include/libanjuta-1.0/libanjuta/anjuta-preferences-dialog.h -include/libanjuta-1.0/libanjuta/anjuta-preferences.h -include/libanjuta-1.0/libanjuta/anjuta-profile-manager.h -include/libanjuta-1.0/libanjuta/anjuta-profile.h -include/libanjuta-1.0/libanjuta/anjuta-save-prompt.h -include/libanjuta-1.0/libanjuta/anjuta-serializer.h -include/libanjuta-1.0/libanjuta/anjuta-session.h -include/libanjuta-1.0/libanjuta/anjuta-shell.h -include/libanjuta-1.0/libanjuta/anjuta-status.h -include/libanjuta-1.0/libanjuta/anjuta-sync-command.h -include/libanjuta-1.0/libanjuta/anjuta-ui.h -include/libanjuta-1.0/libanjuta/anjuta-utils.h -include/libanjuta-1.0/libanjuta/anjuta-vcs-status.h -include/libanjuta-1.0/libanjuta/anjuta-vcs-status-tree-view.h -include/libanjuta-1.0/libanjuta/anjuta-version.h -include/libanjuta-1.0/libanjuta/gbf-project.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-buildable.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-builder.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-debug-manager.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-debugger-breakpoint.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-debugger-instruction.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-debugger-memory.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-debugger-register.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-debugger-variable.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-debugger.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-document-manager.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-document.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-assist.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-cell-style.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-cell.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-comment.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-convert.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-factory.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-folds.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-goto.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-hover.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-language.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-line-mode.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-search.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-selection.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-view.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor-zoom.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-editor.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-environment.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-file-loader.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-file-manager.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-file-savable.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-file.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-help.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-indicable.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-iterable-tree.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-iterable.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-language-support.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-language.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-loader.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-macro.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-markable.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-message-manager.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-message-view.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-plugin-factory.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-preferences.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-print.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-project-backend.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-project-manager.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-stream-loader.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-stream-savable.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-stream.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-symbol-manager.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-symbol.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-terminal.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-todo.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-vcs.h -include/libanjuta-1.0/libanjuta/interfaces/ianjuta-wizard.h -include/libanjuta-1.0/libanjuta/interfaces/libanjuta-iface-marshallers.h -include/libanjuta-1.0/libanjuta/interfaces/libanjuta-interfaces.h -include/libanjuta-1.0/libanjuta/interfaces/libanjuta.idl -include/libanjuta-1.0/libanjuta/libanjuta.h -include/libanjuta-1.0/libanjuta/resources.h -lib/anjuta/anjuta-build-basic-autotools.plugin -lib/anjuta/anjuta-class-gen.plugin -lib/anjuta/anjuta-class-inheritance.plugin -lib/anjuta/anjuta-cvs.plugin -lib/anjuta/anjuta-debug-manager.plugin -%%DEVHELP%%lib/anjuta/anjuta-devhelp.plugin -lib/anjuta/anjuta-document-manager.plugin -lib/anjuta/anjuta-editor.plugin -lib/anjuta/anjuta-file-wizard.plugin -lib/anjuta/anjuta-gdb.plugin -lib/anjuta/anjuta-glade.plugin -lib/anjuta/anjuta-gtodo.plugin -lib/anjuta/anjuta-language-cpp-java.plugin -lib/anjuta/anjuta-loader.plugin -lib/anjuta/anjuta-macro.plugin -lib/anjuta/anjuta-message-manager.plugin -lib/anjuta/anjuta-patch.plugin -lib/anjuta/anjuta-project-import.plugin -lib/anjuta/anjuta-project-manager.plugin -lib/anjuta/anjuta-project-wizard.plugin -lib/anjuta/anjuta-run-program.plugin -lib/anjuta/anjuta-sample.plugin -lib/anjuta/anjuta-scratchbox.plugin -lib/anjuta/anjuta-search.plugin -lib/anjuta/anjuta-starter.plugin -%%SVN%%lib/anjuta/anjuta-subversion.plugin -lib/anjuta/anjuta-terminal.plugin -lib/anjuta/anjuta-tools.plugin -lib/anjuta/file-manager.plugin -lib/anjuta/gbf-am.plugin -lib/anjuta/gbf-mkfile.plugin -lib/anjuta/git.plugin -lib/anjuta/language-manager.plugin -lib/anjuta/libanjuta-build-basic-autotools.la -lib/anjuta/libanjuta-build-basic-autotools.so -lib/anjuta/libanjuta-class-gen.la -lib/anjuta/libanjuta-class-gen.so -lib/anjuta/libanjuta-class-inheritance.la -lib/anjuta/libanjuta-class-inheritance.so -lib/anjuta/libanjuta-cvs-plugin.la -lib/anjuta/libanjuta-cvs-plugin.so -lib/anjuta/libanjuta-debug-manager.la -lib/anjuta/libanjuta-debug-manager.so -%%DEVHELP%%lib/anjuta/libanjuta-devhelp.la -%%DEVHELP%%lib/anjuta/libanjuta-devhelp.so -lib/anjuta/libanjuta-document-manager.la -lib/anjuta/libanjuta-document-manager.so -lib/anjuta/libanjuta-editor.la -lib/anjuta/libanjuta-editor.so -lib/anjuta/libanjuta-file-wizard.la -lib/anjuta/libanjuta-file-wizard.so -lib/anjuta/libanjuta-gdb.la -lib/anjuta/libanjuta-gdb.so -lib/anjuta/libanjuta-git.la -lib/anjuta/libanjuta-git.so -lib/anjuta/libanjuta-glade.la -lib/anjuta/libanjuta-glade.so -lib/anjuta/libanjuta-gtodo.la -lib/anjuta/libanjuta-gtodo.so -lib/anjuta/libanjuta-language-cpp-java.la -lib/anjuta/libanjuta-language-cpp-java.so -lib/anjuta/libanjuta-loader.la -lib/anjuta/libanjuta-loader.so -lib/anjuta/libanjuta-macro.la -lib/anjuta/libanjuta-macro.so -lib/anjuta/libanjuta-message-view.la -lib/anjuta/libanjuta-message-view.so -lib/anjuta/libanjuta-patch.la -lib/anjuta/libanjuta-patch.so -lib/anjuta/libanjuta-profiler.la -lib/anjuta/libanjuta-profiler.so -lib/anjuta/libanjuta-project-import.la -lib/anjuta/libanjuta-project-import.so -lib/anjuta/libanjuta-project-manager.la -lib/anjuta/libanjuta-project-manager.so -lib/anjuta/libanjuta-project-wizard.la -lib/anjuta/libanjuta-project-wizard.so -lib/anjuta/libanjuta-run-program.la -lib/anjuta/libanjuta-run-program.so -lib/anjuta/libanjuta-sample.la -lib/anjuta/libanjuta-sample.so -lib/anjuta/libanjuta-scratchbox.la -lib/anjuta/libanjuta-scratchbox.so -lib/anjuta/libanjuta-search.la -lib/anjuta/libanjuta-search.so -lib/anjuta/libanjuta-sourceview.la -lib/anjuta/libanjuta-sourceview.so -lib/anjuta/libanjuta-starter.la -lib/anjuta/libanjuta-starter.so -%%SVN%%lib/anjuta/libanjuta-subversion.la -%%SVN%%lib/anjuta/libanjuta-subversion.so -lib/anjuta/libanjuta-symbol-db.la -lib/anjuta/libanjuta-symbol-db.so -lib/anjuta/libanjuta-terminal.la -lib/anjuta/libanjuta-terminal.so -lib/anjuta/libanjuta-tools.la -lib/anjuta/libanjuta-tools.so -lib/anjuta/libfile-manager.la -lib/anjuta/libfile-manager.so -lib/anjuta/libfile-manager.so.0 -lib/anjuta/libgbf-am.la -lib/anjuta/libgbf-am.so -lib/anjuta/libgbf-mkfile.la -lib/anjuta/libgbf-mkfile.so -lib/anjuta/liblanguage-manager.la -lib/anjuta/liblanguage-manager.so -lib/anjuta/profiler.plugin -lib/anjuta/sourceview.plugin -lib/anjuta/symbol-db.plugin -lib/glade3/modules/libgladeanjuta.la -lib/glade3/modules/libgladeanjuta.so -lib/libanjuta.la -lib/libanjuta.so -lib/libanjuta.so.0 -libdata/pkgconfig/libanjuta-1.0.pc -share/anjuta/AUTHORS -share/anjuta/GBF/AmFiles.pm -share/anjuta/GBF/General.pm -share/anjuta/GBF/Make.pm -share/anjuta/anjuta_project.template -share/anjuta/build/automake-c.filters -share/anjuta/class-templates/cc-header.tpl -share/anjuta/class-templates/cc-source.tpl -share/anjuta/class-templates/go-header.tpl -share/anjuta/class-templates/go-source.tpl -share/anjuta/gdb.init -share/anjuta/glade/anjuta-build-basic-autotools-plugin.glade -share/anjuta/glade/anjuta-class-gen-plugin.glade -share/anjuta/glade/anjuta-cvs-plugin.glade -share/anjuta/glade/anjuta-debug-manager.glade -share/anjuta/glade/anjuta-document-manager.glade -share/anjuta/glade/anjuta-editor-scintilla.glade -share/anjuta/glade/anjuta-editor-sourceview.glade -share/anjuta/glade/anjuta-file-wizard.glade -share/anjuta/glade/anjuta-gdb.glade -share/anjuta/glade/anjuta-git.glade -share/anjuta/glade/anjuta-glade.glade -share/anjuta/glade/anjuta-language-cpp-java.glade -share/anjuta/glade/anjuta-macro.glade -share/anjuta/glade/anjuta-message-manager-plugin.glade -share/anjuta/glade/anjuta-project-wizard.ui -share/anjuta/glade/anjuta-run-program.glade -share/anjuta/glade/anjuta-scratchbox.glade -share/anjuta/glade/anjuta-scratchbox-panel.png -share/anjuta/glade/anjuta-search.glade -%%SVN%%share/anjuta/glade/anjuta-subversion.glade -share/anjuta/glade/anjuta-symbol-db.glade -share/anjuta/glade/anjuta-terminal-plugin.glade -share/anjuta/glade/anjuta-tools.glade -share/anjuta/glade/anjuta.glade -share/anjuta/glade/applogo.png -share/anjuta/glade/appwizard.png -share/anjuta/glade/create_dialogs.glade -share/anjuta/glade/file-manager.glade -share/anjuta/glade/gbf-am-dialogs.glade -share/anjuta/glade/patch-plugin.glade -share/anjuta/glade/profiler-call-graph.glade -share/anjuta/glade/profiler-flat-profile.glade -share/anjuta/glade/profiler-function-call-tree.glade -share/anjuta/glade/profiler.glade -share/anjuta/glade/start-with-import.png -share/anjuta/glade/start-with-open.png -share/anjuta/glade/start-with-wizard.png -share/anjuta/gtodo/gtodo.css -share/anjuta/gtodo/gtodo.xsl -share/anjuta/gtodo/gtodo-plain.xsl -share/anjuta/languages.xml -share/anjuta/layout.xml -share/anjuta/macros.xml -share/anjuta/profiles/default.profile -share/anjuta/project/anjuta-plugin-logo.png -share/anjuta/project/anjuta-plugin.wiz -share/anjuta/project/anjuta-plugin/configure.ac.tpl -share/anjuta/project/anjuta-plugin/po/POTFILES.in -share/anjuta/project/anjuta-plugin/src/Makefile.am.tpl -share/anjuta/project/anjuta-plugin/src/plugin.c -share/anjuta/project/anjuta-plugin/src/plugin.glade -share/anjuta/project/anjuta-plugin/src/plugin.h -share/anjuta/project/anjuta-plugin/src/plugin.plugin.in -share/anjuta/project/anjuta-plugin/src/plugin.ui -share/anjuta/project/anjuta-plugin-vala.wiz -share/anjuta/project/anjuta-plugin-vala/configure.ac.tpl -share/anjuta/project/anjuta-plugin-vala/po/POTFILES.in -share/anjuta/project/anjuta-plugin-vala/src/Makefile.am.tpl -share/anjuta/project/anjuta-plugin-vala/src/config.vapi -share/anjuta/project/anjuta-plugin-vala/src/plugin.vala -share/anjuta/project/appwiz_sdl.png -share/anjuta/project/cpp-logo.png -share/anjuta/project/cpp.wiz -share/anjuta/project/cpp/configure.ac.tpl -share/anjuta/project/cpp/po/POTFILES.in -share/anjuta/project/cpp/src/Makefile.am.tpl -share/anjuta/project/cpp/src/cvsignore -share/anjuta/project/cpp/src/main.cc -share/anjuta/project/django-logo.png -share/anjuta/project/django.wiz -share/anjuta/project/gcj-logo.png -share/anjuta/project/gcj.wiz -share/anjuta/project/gcj/configure.ac.tpl -share/anjuta/project/gcj/src/Makefile.am.tpl -share/anjuta/project/gnome-applet.wiz -share/anjuta/project/gnome-applet/HACKING -share/anjuta/project/gnome-applet/Makefile.am.tpl -share/anjuta/project/gnome-applet/autogen.sh -share/anjuta/project/gnome-applet/configure.ac.tpl -share/anjuta/project/gnome-applet/src/GNOME_Applet.server.in.in -share/anjuta/project/gnome-applet/src/Makefile.am.tpl -share/anjuta/project/gnome-applet/src/main.c -share/anjuta/project/gnome-logo.png -share/anjuta/project/gnome/po/POTFILES.in -share/anjuta/project/gtk-logo.png -share/anjuta/project/gtk.wiz -share/anjuta/project/gtk/po/POTFILES.in -share/anjuta/project/gtk/src/Makefile.am.tpl -share/anjuta/project/gtk/src/callbacks.c -share/anjuta/project/gtk/src/callbacks.h -share/anjuta/project/gtk/src/main.c -share/anjuta/project/gtk/src/project.glade -share/anjuta/project/gtkmm-logo.png -share/anjuta/project/gtkmm.wiz -share/anjuta/project/gtkmm/po/POTFILES.in -share/anjuta/project/gtkmm/src/Makefile.am.tpl -share/anjuta/project/gtkmm/src/main.cc -share/anjuta/project/gtkmm/src/project.glade -share/anjuta/project/java-logo.png -share/anjuta/project/java.wiz -share/anjuta/project/java/configure.ac.tpl -share/anjuta/project/java/po/POTFILES.in -share/anjuta/project/java/project.anjuta -share/anjuta/project/java/src/Makefile.am.tpl -share/anjuta/project/java/src/main.java -share/anjuta/project/licenses/BSD -share/anjuta/project/licenses/GPL -share/anjuta/project/licenses/LGPL -share/anjuta/project/licenses/None -share/anjuta/project/m4/as-ac-expand.m4 -share/anjuta/project/minimal.wiz -share/anjuta/project/minimal/Makefile.am.tpl -share/anjuta/project/minimal/autogen.sh -share/anjuta/project/minimal/configure.ac.tpl -share/anjuta/project/minimal/project.anjuta -share/anjuta/project/mkfile-logo.png -share/anjuta/project/mkfile.wiz -share/anjuta/project/mkfile/po/ChangeLog -share/anjuta/project/mkfile/po/POTFILES.in -share/anjuta/project/mkfile/project.anjuta -share/anjuta/project/mkfile/src/Makefile.tpl -share/anjuta/project/mkfile/src/main.c -share/anjuta/project/python-logo.png -share/anjuta/project/python.wiz -share/anjuta/project/python/configure.ac.tpl -share/anjuta/project/python/po/POTFILES.in -share/anjuta/project/python/project.anjuta -share/anjuta/project/python/src/Makefile.am.tpl -share/anjuta/project/python/src/main.py -share/anjuta/project/sdl.wiz -share/anjuta/project/sdl/acinclude.m4.tpl -share/anjuta/project/sdl/configure.ac.tpl -share/anjuta/project/sdl/po/POTFILES.in -share/anjuta/project/sdl/src/Makefile.am.tpl -share/anjuta/project/sdl/src/main.c -share/anjuta/project/terminal-logo.png -share/anjuta/project/terminal.wiz -share/anjuta/project/terminal/AUTHORS -share/anjuta/project/terminal/ChangeLog -share/anjuta/project/terminal/Makefile.am.tpl -share/anjuta/project/terminal/NEWS -share/anjuta/project/terminal/README -share/anjuta/project/terminal/autogen.sh -share/anjuta/project/terminal/configure.ac.tpl -share/anjuta/project/terminal/cvsignore -share/anjuta/project/terminal/po/ChangeLog -share/anjuta/project/terminal/po/LINGUAS -share/anjuta/project/terminal/po/POTFILES.in -share/anjuta/project/terminal/po/cvsignore -share/anjuta/project/terminal/project.anjuta -share/anjuta/project/terminal/src/Makefile.am.tpl -share/anjuta/project/terminal/src/cvsignore -share/anjuta/project/terminal/src/main.c -share/anjuta/project/wxwin-logo.png -share/anjuta/project/wxwin.wiz -share/anjuta/project/wxwin/configure.ac.tpl -share/anjuta/project/wxwin/po/POTFILES.in -share/anjuta/project/wxwin/src/Makefile.am.tpl -share/anjuta/project/wxwin/src/main.cc -share/anjuta/project/xlib-dock.wiz -share/anjuta/project/xlib-dock/po/POTFILES.in -share/anjuta/project/xlib-dock/src/Makefile.am.tpl -share/anjuta/project/xlib-dock/src/main.c -share/anjuta/project/xlib-dock/src/pixmaps.h -share/anjuta/project/xlib-dock/src/wmgeneral.c -share/anjuta/project/xlib-dock/src/wmgeneral.h -share/anjuta/project/xlib-logo.png -share/anjuta/project/xlib.wiz -share/anjuta/project/xlib/configure.ac.tpl -share/anjuta/project/xlib/po/POTFILES.in -share/anjuta/project/xlib/src/Makefile.am.tpl -share/anjuta/project/xlib/src/main.c -share/anjuta/properties/anjuta.properties -share/anjuta/properties/styles.properties -share/anjuta/properties/user.properties -share/anjuta/tables.sql -share/anjuta/tools/find-fixmes.pl -share/anjuta/tools/prepare-changelog.pl -share/anjuta/tools/tools-2.xml -share/anjuta/tools/translation-status.pl -share/anjuta/ui/anjuta-build-basic-autotools-plugin.ui -share/anjuta/ui/anjuta-cvs.ui -share/anjuta/ui/anjuta-debug-manager.ui -%%DEVHELP%%share/anjuta/ui/anjuta-devhelp-simple.ui -%%DEVHELP%%share/anjuta/ui/anjuta-devhelp.ui -share/anjuta/ui/anjuta-document-manager.ui -share/anjuta/ui/anjuta-git.ui -share/anjuta/ui/anjuta-glade.ui -share/anjuta/ui/anjuta-gtodo.ui -share/anjuta/ui/anjuta-language-support-cpp-java.ui -share/anjuta/ui/anjuta-loader-plugin.ui -share/anjuta/ui/anjuta-macro.ui -share/anjuta/ui/anjuta-message-manager.ui -share/anjuta/ui/anjuta-patch.ui -share/anjuta/ui/anjuta-project-manager.ui -share/anjuta/ui/anjuta-run-program.ui -share/anjuta/ui/anjuta-sample.ui -share/anjuta/ui/anjuta-search.ui -%%SVN%%share/anjuta/ui/anjuta-subversion.ui -share/anjuta/ui/anjuta-symbol-db-plugin.ui -share/anjuta/ui/anjuta-terminal-plugin.ui -share/anjuta/ui/anjuta-tools.ui -share/anjuta/ui/anjuta.ui -share/anjuta/ui/file-manager.ui -share/anjuta/ui/profiler.ui -share/anjuta/welcome.txt -share/applications/anjuta.desktop -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/FUTURE -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/ScintillaDoc.html -%%PORTDOCS%%%%DOCSDIR%%/TODO -share/doc/libanjuta/AnjutaAsyncCommand.html -share/doc/libanjuta/AnjutaCellRendererCaptionedImage.html -share/doc/libanjuta/AnjutaCommand.html -share/doc/libanjuta/AnjutaLauncher.html -share/doc/libanjuta/AnjutaMessageArea.html -share/doc/libanjuta/AnjutaPlugin.html -share/doc/libanjuta/AnjutaPluginHandle.html -share/doc/libanjuta/AnjutaPluginManager.html -share/doc/libanjuta/AnjutaPreferences.html -share/doc/libanjuta/AnjutaPreferencesDialog.html -share/doc/libanjuta/AnjutaProfile.html -share/doc/libanjuta/AnjutaProfileManager.html -share/doc/libanjuta/AnjutaSavePrompt.html -share/doc/libanjuta/AnjutaSerializer.html -share/doc/libanjuta/AnjutaSession.html -share/doc/libanjuta/AnjutaStatus.html -share/doc/libanjuta/AnjutaSyncCommand.html -share/doc/libanjuta/AnjutaVcsStatusTreeView.html -share/doc/libanjuta/AnjutaUI.html -share/doc/libanjuta/action-block.html -share/doc/libanjuta/anjuta-architecture.html -share/doc/libanjuta/anjuta-architecture.png -share/doc/libanjuta/content-block.html -share/doc/libanjuta/debugger-states.png -share/doc/libanjuta/header-block.html -share/doc/libanjuta/home.png -share/doc/libanjuta/index.html -share/doc/libanjuta/index.sgml -share/doc/libanjuta/left.png -share/doc/libanjuta/libanjuta-ESplash.html -share/doc/libanjuta/libanjuta-anjuta-c-module.html -share/doc/libanjuta/libanjuta-anjuta-c-plugin-factory.html -share/doc/libanjuta/libanjuta-anjuta-convert.html -share/doc/libanjuta/libanjuta-anjuta-debug.html -share/doc/libanjuta/libanjuta-anjuta-encodings.html -share/doc/libanjuta/libanjuta-anjuta-enum-types.html -share/doc/libanjuta/libanjuta-anjuta-error.html -share/doc/libanjuta/libanjuta-anjuta-marshal.html -share/doc/libanjuta/libanjuta-anjuta-plugin-description.html -share/doc/libanjuta/libanjuta-anjuta-shell.html -share/doc/libanjuta/libanjuta-anjuta-utils-priv.html -share/doc/libanjuta/libanjuta-anjuta-utils.html -share/doc/libanjuta/libanjuta-anjuta-version.html -share/doc/libanjuta/libanjuta-api.html -share/doc/libanjuta/libanjuta-ianjuta-bookmark.html -share/doc/libanjuta/libanjuta-ianjuta-buildable.html -share/doc/libanjuta/libanjuta-ianjuta-builder.html -share/doc/libanjuta/libanjuta-ianjuta-debug-manager.html -share/doc/libanjuta/libanjuta-ianjuta-debugger-breakpoint.html -share/doc/libanjuta/libanjuta-ianjuta-environment.html -share/doc/libanjuta/libanjuta-ianjuta-debugger-instruction.html -share/doc/libanjuta/libanjuta-ianjuta-debugger-memory.html -share/doc/libanjuta/libanjuta-ianjuta-debugger-register.html -share/doc/libanjuta/libanjuta-ianjuta-debugger-variable.html -share/doc/libanjuta/libanjuta-ianjuta-debugger.html -share/doc/libanjuta/libanjuta-ianjuta-document-manager.html -share/doc/libanjuta/libanjuta-ianjuta-document.html -share/doc/libanjuta/libanjuta-ianjuta-editor-assist.html -share/doc/libanjuta/libanjuta-ianjuta-editor-cell-style.html -share/doc/libanjuta/libanjuta-ianjuta-editor-cell.html -share/doc/libanjuta/libanjuta-ianjuta-editor-comment.html -share/doc/libanjuta/libanjuta-ianjuta-editor-convert.html -share/doc/libanjuta/libanjuta-ianjuta-editor-factory.html -share/doc/libanjuta/libanjuta-ianjuta-editor-folds.html -share/doc/libanjuta/libanjuta-ianjuta-editor-goto.html -share/doc/libanjuta/libanjuta-ianjuta-editor-hover.html -share/doc/libanjuta/libanjuta-ianjuta-editor-language.html -share/doc/libanjuta/libanjuta-ianjuta-editor-line-mode.html -share/doc/libanjuta/libanjuta-ianjuta-editor-search.html -share/doc/libanjuta/libanjuta-ianjuta-editor-selection.html -share/doc/libanjuta/libanjuta-ianjuta-editor-view.html -share/doc/libanjuta/libanjuta-ianjuta-editor-zoom.html -share/doc/libanjuta/libanjuta-ianjuta-editor.html -share/doc/libanjuta/libanjuta-ianjuta-file-loader.html -share/doc/libanjuta/libanjuta-ianjuta-file-manager.html -share/doc/libanjuta/libanjuta-ianjuta-file-savable.html -share/doc/libanjuta/libanjuta-ianjuta-file.html -share/doc/libanjuta/libanjuta-ianjuta-help.html -share/doc/libanjuta/libanjuta-ianjuta-indicable.html -share/doc/libanjuta/libanjuta-ianjuta-iterable-tree.html -share/doc/libanjuta/libanjuta-ianjuta-iterable.html -share/doc/libanjuta/libanjuta-ianjuta-language-support.html -share/doc/libanjuta/libanjuta-ianjuta-language.html -share/doc/libanjuta/libanjuta-ianjuta-loader.html -share/doc/libanjuta/libanjuta-ianjuta-macro.html -share/doc/libanjuta/libanjuta-ianjuta-markable.html -share/doc/libanjuta/libanjuta-ianjuta-message-manager.html -share/doc/libanjuta/libanjuta-ianjuta-message-view.html -share/doc/libanjuta/libanjuta-ianjuta-plugin-factory.html -share/doc/libanjuta/libanjuta-ianjuta-preferences.html -share/doc/libanjuta/libanjuta-ianjuta-print.html -share/doc/libanjuta/libanjuta-ianjuta-project-manager.html -share/doc/libanjuta/libanjuta-ianjuta-stream-loader.html -share/doc/libanjuta/libanjuta-ianjuta-stream-savable.html -share/doc/libanjuta/libanjuta-ianjuta-stream.html -share/doc/libanjuta/libanjuta-ianjuta-symbol-manager.html -share/doc/libanjuta/libanjuta-ianjuta-symbol.html -share/doc/libanjuta/libanjuta-ianjuta-terminal.html -share/doc/libanjuta/libanjuta-ianjuta-todo.html -share/doc/libanjuta/libanjuta-ianjuta-vcs.html -share/doc/libanjuta/libanjuta-ianjuta-wizard.html -share/doc/libanjuta/libanjuta-internal-api.html -share/doc/libanjuta/libanjuta-libanjuta-iface-marshallers.html -share/doc/libanjuta/libanjuta-resources.html -share/doc/libanjuta/libanjuta.devhelp -share/doc/libanjuta/libanjuta.devhelp2 -share/doc/libanjuta/object-hierarchy.html -share/doc/libanjuta/page-block.html -share/doc/libanjuta/plugin-description-file.html -share/doc/libanjuta/plugin-interfaces.html -share/doc/libanjuta/project-wizard-format.html -share/doc/libanjuta/right.png -share/doc/libanjuta/style.css -share/doc/libanjuta/up.png -share/doc/libanjuta/writing-plugins-build-setup.html -share/doc/libanjuta/writing-plugins-simple.html -share/doc/libanjuta/writing-plugins-sources.html -share/doc/libanjuta/writing-plugins.html -share/glade3/catalogs/anjuta-glade.xml -share/gnome/help/anjuta-build-tutorial/C/anjuta-build-tutorial.xml -share/gnome/help/anjuta-build-tutorial/C/figures/autotools-process.png -share/gnome/help/anjuta-build-tutorial/C/figures/build_preferences.png -share/gnome/help/anjuta-build-tutorial/C/figures/compilation-stages.png -share/gnome/help/anjuta-build-tutorial/C/figures/configure-dialog.png -share/gnome/help/anjuta-build-tutorial/C/figures/configure-process.png -share/gnome/help/anjuta-build-tutorial/C/figures/library-add-pkgconfig.png -share/gnome/help/anjuta-build-tutorial/C/figures/library-add-properties.png -share/gnome/help/anjuta-build-tutorial/C/figures/new-project-basic.png -share/gnome/help/anjuta-build-tutorial/C/figures/new-project-message.png -share/gnome/help/anjuta-build-tutorial/C/figures/new-project-options.png -share/gnome/help/anjuta-build-tutorial/C/figures/new-project-select.png -share/gnome/help/anjuta-build-tutorial/C/figures/new-project-summary.png -share/gnome/help/anjuta-faqs/C/anjuta-faqs.xml -share/gnome/help/anjuta-faqs/C/legal.xml -share/gnome/help/anjuta-manual/C/anjuta-manual.xml -share/gnome/help/anjuta-manual/C/authors.xml -share/gnome/help/anjuta-manual/C/build.xml -share/gnome/help/anjuta-manual/C/debugger.xml -share/gnome/help/anjuta-manual/C/figures/add_edit_macro.png -share/gnome/help/anjuta-manual/C/figures/anjuta-in-action.png -share/gnome/help/anjuta-manual/C/figures/attach.png -share/gnome/help/anjuta-manual/C/figures/brk_add.png -share/gnome/help/anjuta-manual/C/figures/brk_dlg.png -share/gnome/help/anjuta-manual/C/figures/configure_dlg.png -share/gnome/help/anjuta-manual/C/figures/display_macro.png -share/gnome/help/anjuta-manual/C/figures/editor_guides.png -share/gnome/help/anjuta-manual/C/figures/editor_margins.png -share/gnome/help/anjuta-manual/C/figures/editor_markers.png -share/gnome/help/anjuta-manual/C/figures/file_menu.png -share/gnome/help/anjuta-manual/C/figures/insert_text.png -share/gnome/help/anjuta-manual/C/figures/keyword_macro.png -share/gnome/help/anjuta-manual/C/figures/local_variables.png -share/gnome/help/anjuta-manual/C/figures/menubar.png -share/gnome/help/anjuta-manual/C/figures/message_win.png -share/gnome/help/anjuta-manual/C/figures/new_file_wizard.png -share/gnome/help/anjuta-manual/C/figures/open_file.png -share/gnome/help/anjuta-manual/C/figures/open_file_multiple.png -share/gnome/help/anjuta-manual/C/figures/prefs_print.png -share/gnome/help/anjuta-manual/C/figures/print_dlg.png -share/gnome/help/anjuta-manual/C/figures/print_preview.png -share/gnome/help/anjuta-manual/C/figures/project-window.png -share/gnome/help/anjuta-manual/C/figures/project_group.png -share/gnome/help/anjuta-manual/C/figures/project_info.png -share/gnome/help/anjuta-manual/C/figures/project_target.png -share/gnome/help/anjuta-manual/C/figures/project_target_details.png -share/gnome/help/anjuta-manual/C/figures/registers.png -share/gnome/help/anjuta-manual/C/figures/save_as_file.png -share/gnome/help/anjuta-manual/C/figures/search_expr.png -share/gnome/help/anjuta-manual/C/figures/search_expr_basic.png -share/gnome/help/anjuta-manual/C/figures/search_file_pattern.png -share/gnome/help/anjuta-manual/C/figures/search_replace.png -share/gnome/help/anjuta-manual/C/figures/search_setting.png -share/gnome/help/anjuta-manual/C/figures/search_target.png -share/gnome/help/anjuta-manual/C/figures/search_target_action.png -share/gnome/help/anjuta-manual/C/figures/search_target_in.png -share/gnome/help/anjuta-manual/C/figures/sharedlibs.png -share/gnome/help/anjuta-manual/C/figures/signals.png -share/gnome/help/anjuta-manual/C/figures/stack.png -share/gnome/help/anjuta-manual/C/figures/symbol_browser.png -share/gnome/help/anjuta-manual/C/figures/tool-editor.png -share/gnome/help/anjuta-manual/C/fileoperations.xml -share/gnome/help/anjuta-manual/C/glade.xml -share/gnome/help/anjuta-manual/C/interface.xml -share/gnome/help/anjuta-manual/C/introduction.xml -share/gnome/help/anjuta-manual/C/legal.xml -share/gnome/help/anjuta-manual/C/license.xml -share/gnome/help/anjuta-manual/C/preferences.xml -share/gnome/help/anjuta-manual/C/projects.xml -share/gnome/help/anjuta-manual/C/template.xml -share/gnome/help/anjuta-manual/C/tools.xml -share/gnome/help/anjuta-manual/de/anjuta-manual.xml -share/gnome/help/anjuta-manual/de/figures/add_edit_macro.png -share/gnome/help/anjuta-manual/de/figures/anjuta-in-action.png -share/gnome/help/anjuta-manual/de/figures/attach.png -share/gnome/help/anjuta-manual/de/figures/brk_add.png -share/gnome/help/anjuta-manual/de/figures/brk_dlg.png -share/gnome/help/anjuta-manual/de/figures/configure_dlg.png -share/gnome/help/anjuta-manual/de/figures/display_macro.png -share/gnome/help/anjuta-manual/de/figures/editor_guides.png -share/gnome/help/anjuta-manual/de/figures/editor_margins.png -share/gnome/help/anjuta-manual/de/figures/editor_markers.png -share/gnome/help/anjuta-manual/de/figures/file_menu.png -share/gnome/help/anjuta-manual/de/figures/insert_text.png -share/gnome/help/anjuta-manual/de/figures/keyword_macro.png -share/gnome/help/anjuta-manual/de/figures/local_variables.png -share/gnome/help/anjuta-manual/de/figures/menubar.png -share/gnome/help/anjuta-manual/de/figures/message_win.png -share/gnome/help/anjuta-manual/de/figures/new_file_wizard.png -share/gnome/help/anjuta-manual/de/figures/open_file.png -share/gnome/help/anjuta-manual/de/figures/open_file_multiple.png -share/gnome/help/anjuta-manual/de/figures/prefs_print.png -share/gnome/help/anjuta-manual/de/figures/print_dlg.png -share/gnome/help/anjuta-manual/de/figures/print_preview.png -share/gnome/help/anjuta-manual/de/figures/project-window.png -share/gnome/help/anjuta-manual/de/figures/project_group.png -share/gnome/help/anjuta-manual/de/figures/project_info.png -share/gnome/help/anjuta-manual/de/figures/project_target.png -share/gnome/help/anjuta-manual/de/figures/project_target_details.png -share/gnome/help/anjuta-manual/de/figures/registers.png -share/gnome/help/anjuta-manual/de/figures/save_as_file.png -share/gnome/help/anjuta-manual/de/figures/search_expr.png -share/gnome/help/anjuta-manual/de/figures/search_expr_basic.png -share/gnome/help/anjuta-manual/de/figures/search_file_pattern.png -share/gnome/help/anjuta-manual/de/figures/search_replace.png -share/gnome/help/anjuta-manual/de/figures/search_setting.png -share/gnome/help/anjuta-manual/de/figures/search_target.png -share/gnome/help/anjuta-manual/de/figures/search_target_action.png -share/gnome/help/anjuta-manual/de/figures/search_target_in.png -share/gnome/help/anjuta-manual/de/figures/sharedlibs.png -share/gnome/help/anjuta-manual/de/figures/signals.png -share/gnome/help/anjuta-manual/de/figures/stack.png -share/gnome/help/anjuta-manual/de/figures/symbol_browser.png -share/gnome/help/anjuta-manual/de/figures/tool-editor.png -share/gnome/help/anjuta-manual/el/anjuta-manual.xml -share/gnome/help/anjuta-manual/el/figures/add_edit_macro.png -share/gnome/help/anjuta-manual/el/figures/anjuta-in-action.png -share/gnome/help/anjuta-manual/el/figures/attach.png -share/gnome/help/anjuta-manual/el/figures/brk_add.png -share/gnome/help/anjuta-manual/el/figures/brk_dlg.png -share/gnome/help/anjuta-manual/el/figures/configure_dlg.png -share/gnome/help/anjuta-manual/el/figures/display_macro.png -share/gnome/help/anjuta-manual/el/figures/editor_guides.png -share/gnome/help/anjuta-manual/el/figures/editor_margins.png -share/gnome/help/anjuta-manual/el/figures/editor_markers.png -share/gnome/help/anjuta-manual/el/figures/file_menu.png -share/gnome/help/anjuta-manual/el/figures/insert_text.png -share/gnome/help/anjuta-manual/el/figures/keyword_macro.png -share/gnome/help/anjuta-manual/el/figures/local_variables.png -share/gnome/help/anjuta-manual/el/figures/menubar.png -share/gnome/help/anjuta-manual/el/figures/message_win.png -share/gnome/help/anjuta-manual/el/figures/new_file_wizard.png -share/gnome/help/anjuta-manual/el/figures/open_file.png -share/gnome/help/anjuta-manual/el/figures/open_file_multiple.png -share/gnome/help/anjuta-manual/el/figures/prefs_print.png -share/gnome/help/anjuta-manual/el/figures/print_dlg.png -share/gnome/help/anjuta-manual/el/figures/print_preview.png -share/gnome/help/anjuta-manual/el/figures/project-window.png -share/gnome/help/anjuta-manual/el/figures/project_group.png -share/gnome/help/anjuta-manual/el/figures/project_info.png -share/gnome/help/anjuta-manual/el/figures/project_target.png -share/gnome/help/anjuta-manual/el/figures/project_target_details.png -share/gnome/help/anjuta-manual/el/figures/registers.png -share/gnome/help/anjuta-manual/el/figures/save_as_file.png -share/gnome/help/anjuta-manual/el/figures/search_expr.png -share/gnome/help/anjuta-manual/el/figures/search_expr_basic.png -share/gnome/help/anjuta-manual/el/figures/search_file_pattern.png -share/gnome/help/anjuta-manual/el/figures/search_replace.png -share/gnome/help/anjuta-manual/el/figures/search_setting.png -share/gnome/help/anjuta-manual/el/figures/search_target.png -share/gnome/help/anjuta-manual/el/figures/search_target_action.png -share/gnome/help/anjuta-manual/el/figures/search_target_in.png -share/gnome/help/anjuta-manual/el/figures/sharedlibs.png -share/gnome/help/anjuta-manual/el/figures/signals.png -share/gnome/help/anjuta-manual/el/figures/stack.png -share/gnome/help/anjuta-manual/el/figures/symbol_browser.png -share/gnome/help/anjuta-manual/el/figures/tool-editor.png -share/gnome/help/anjuta-manual/es/anjuta-manual.xml -share/gnome/help/anjuta-manual/es/figures/add_edit_macro.png -share/gnome/help/anjuta-manual/es/figures/anjuta-in-action.png -share/gnome/help/anjuta-manual/es/figures/attach.png -share/gnome/help/anjuta-manual/es/figures/brk_add.png -share/gnome/help/anjuta-manual/es/figures/brk_dlg.png -share/gnome/help/anjuta-manual/es/figures/configure_dlg.png -share/gnome/help/anjuta-manual/es/figures/display_macro.png -share/gnome/help/anjuta-manual/es/figures/editor_guides.png -share/gnome/help/anjuta-manual/es/figures/editor_margins.png -share/gnome/help/anjuta-manual/es/figures/editor_markers.png -share/gnome/help/anjuta-manual/es/figures/file_menu.png -share/gnome/help/anjuta-manual/es/figures/insert_text.png -share/gnome/help/anjuta-manual/es/figures/keyword_macro.png -share/gnome/help/anjuta-manual/es/figures/local_variables.png -share/gnome/help/anjuta-manual/es/figures/menubar.png -share/gnome/help/anjuta-manual/es/figures/message_win.png -share/gnome/help/anjuta-manual/es/figures/new_file_wizard.png -share/gnome/help/anjuta-manual/es/figures/open_file.png -share/gnome/help/anjuta-manual/es/figures/open_file_multiple.png -share/gnome/help/anjuta-manual/es/figures/prefs_print.png -share/gnome/help/anjuta-manual/es/figures/print_dlg.png -share/gnome/help/anjuta-manual/es/figures/print_preview.png -share/gnome/help/anjuta-manual/es/figures/project-window.png -share/gnome/help/anjuta-manual/es/figures/project_group.png -share/gnome/help/anjuta-manual/es/figures/project_info.png -share/gnome/help/anjuta-manual/es/figures/project_target.png -share/gnome/help/anjuta-manual/es/figures/project_target_details.png -share/gnome/help/anjuta-manual/es/figures/registers.png -share/gnome/help/anjuta-manual/es/figures/save_as_file.png -share/gnome/help/anjuta-manual/es/figures/search_expr.png -share/gnome/help/anjuta-manual/es/figures/search_expr_basic.png -share/gnome/help/anjuta-manual/es/figures/search_file_pattern.png -share/gnome/help/anjuta-manual/es/figures/search_replace.png -share/gnome/help/anjuta-manual/es/figures/search_setting.png -share/gnome/help/anjuta-manual/es/figures/search_target.png -share/gnome/help/anjuta-manual/es/figures/search_target_action.png -share/gnome/help/anjuta-manual/es/figures/search_target_in.png -share/gnome/help/anjuta-manual/es/figures/sharedlibs.png -share/gnome/help/anjuta-manual/es/figures/signals.png -share/gnome/help/anjuta-manual/es/figures/stack.png -share/gnome/help/anjuta-manual/es/figures/symbol_browser.png -share/gnome/help/anjuta-manual/es/figures/tool-editor.png -share/gnome/help/anjuta-manual/eu/anjuta-manual.xml -share/gnome/help/anjuta-manual/eu/figures/add_edit_macro.png -share/gnome/help/anjuta-manual/eu/figures/anjuta-in-action.png -share/gnome/help/anjuta-manual/eu/figures/attach.png -share/gnome/help/anjuta-manual/eu/figures/brk_add.png -share/gnome/help/anjuta-manual/eu/figures/brk_dlg.png -share/gnome/help/anjuta-manual/eu/figures/configure_dlg.png -share/gnome/help/anjuta-manual/eu/figures/display_macro.png -share/gnome/help/anjuta-manual/eu/figures/editor_guides.png -share/gnome/help/anjuta-manual/eu/figures/editor_margins.png -share/gnome/help/anjuta-manual/eu/figures/editor_markers.png -share/gnome/help/anjuta-manual/eu/figures/file_menu.png -share/gnome/help/anjuta-manual/eu/figures/insert_text.png -share/gnome/help/anjuta-manual/eu/figures/keyword_macro.png -share/gnome/help/anjuta-manual/eu/figures/local_variables.png -share/gnome/help/anjuta-manual/eu/figures/menubar.png -share/gnome/help/anjuta-manual/eu/figures/message_win.png -share/gnome/help/anjuta-manual/eu/figures/new_file_wizard.png -share/gnome/help/anjuta-manual/eu/figures/open_file.png -share/gnome/help/anjuta-manual/eu/figures/open_file_multiple.png -share/gnome/help/anjuta-manual/eu/figures/prefs_print.png -share/gnome/help/anjuta-manual/eu/figures/print_dlg.png -share/gnome/help/anjuta-manual/eu/figures/print_preview.png -share/gnome/help/anjuta-manual/eu/figures/project-window.png -share/gnome/help/anjuta-manual/eu/figures/project_info.png -share/gnome/help/anjuta-manual/eu/figures/project_group.png -share/gnome/help/anjuta-manual/eu/figures/project_target.png -share/gnome/help/anjuta-manual/eu/figures/project_target_details.png -share/gnome/help/anjuta-manual/eu/figures/registers.png -share/gnome/help/anjuta-manual/eu/figures/save_as_file.png -share/gnome/help/anjuta-manual/eu/figures/search_expr.png -share/gnome/help/anjuta-manual/eu/figures/search_expr_basic.png -share/gnome/help/anjuta-manual/eu/figures/search_file_pattern.png -share/gnome/help/anjuta-manual/eu/figures/search_replace.png -share/gnome/help/anjuta-manual/eu/figures/search_setting.png -share/gnome/help/anjuta-manual/eu/figures/search_target.png -share/gnome/help/anjuta-manual/eu/figures/search_target_action.png -share/gnome/help/anjuta-manual/eu/figures/search_target_in.png -share/gnome/help/anjuta-manual/eu/figures/sharedlibs.png -share/gnome/help/anjuta-manual/eu/figures/signals.png -share/gnome/help/anjuta-manual/eu/figures/stack.png -share/gnome/help/anjuta-manual/eu/figures/symbol_browser.png -share/gnome/help/anjuta-manual/eu/figures/tool-editor.png -share/gnome/help/anjuta-manual/oc/anjuta-manual.xml -share/gnome/help/anjuta-manual/oc/figures/add_edit_macro.png -share/gnome/help/anjuta-manual/oc/figures/anjuta-in-action.png -share/gnome/help/anjuta-manual/oc/figures/attach.png -share/gnome/help/anjuta-manual/oc/figures/brk_add.png -share/gnome/help/anjuta-manual/oc/figures/brk_dlg.png -share/gnome/help/anjuta-manual/oc/figures/configure_dlg.png -share/gnome/help/anjuta-manual/oc/figures/display_macro.png -share/gnome/help/anjuta-manual/oc/figures/editor_guides.png -share/gnome/help/anjuta-manual/oc/figures/editor_margins.png -share/gnome/help/anjuta-manual/oc/figures/editor_markers.png -share/gnome/help/anjuta-manual/oc/figures/file_menu.png -share/gnome/help/anjuta-manual/oc/figures/insert_text.png -share/gnome/help/anjuta-manual/oc/figures/keyword_macro.png -share/gnome/help/anjuta-manual/oc/figures/local_variables.png -share/gnome/help/anjuta-manual/oc/figures/menubar.png -share/gnome/help/anjuta-manual/oc/figures/message_win.png -share/gnome/help/anjuta-manual/oc/figures/new_file_wizard.png -share/gnome/help/anjuta-manual/oc/figures/open_file.png -share/gnome/help/anjuta-manual/oc/figures/open_file_multiple.png -share/gnome/help/anjuta-manual/oc/figures/prefs_print.png -share/gnome/help/anjuta-manual/oc/figures/print_dlg.png -share/gnome/help/anjuta-manual/oc/figures/print_preview.png -share/gnome/help/anjuta-manual/oc/figures/project-window.png -share/gnome/help/anjuta-manual/oc/figures/project_info.png -share/gnome/help/anjuta-manual/oc/figures/project_group.png -share/gnome/help/anjuta-manual/oc/figures/project_target.png -share/gnome/help/anjuta-manual/oc/figures/project_target_details.png -share/gnome/help/anjuta-manual/oc/figures/registers.png -share/gnome/help/anjuta-manual/oc/figures/save_as_file.png -share/gnome/help/anjuta-manual/oc/figures/search_expr.png -share/gnome/help/anjuta-manual/oc/figures/search_expr_basic.png -share/gnome/help/anjuta-manual/oc/figures/search_file_pattern.png -share/gnome/help/anjuta-manual/oc/figures/search_replace.png -share/gnome/help/anjuta-manual/oc/figures/search_setting.png -share/gnome/help/anjuta-manual/oc/figures/search_target.png -share/gnome/help/anjuta-manual/oc/figures/search_target_action.png -share/gnome/help/anjuta-manual/oc/figures/search_target_in.png -share/gnome/help/anjuta-manual/oc/figures/sharedlibs.png -share/gnome/help/anjuta-manual/oc/figures/signals.png -share/gnome/help/anjuta-manual/oc/figures/stack.png -share/gnome/help/anjuta-manual/oc/figures/symbol_browser.png -share/gnome/help/anjuta-manual/oc/figures/tool-editor.png -share/gnome/help/anjuta-manual/sv/anjuta-manual.xml -share/gnome/help/anjuta-manual/sv/figures/add_edit_macro.png -share/gnome/help/anjuta-manual/sv/figures/anjuta-in-action.png -share/gnome/help/anjuta-manual/sv/figures/attach.png -share/gnome/help/anjuta-manual/sv/figures/brk_add.png -share/gnome/help/anjuta-manual/sv/figures/brk_dlg.png -share/gnome/help/anjuta-manual/sv/figures/configure_dlg.png -share/gnome/help/anjuta-manual/sv/figures/display_macro.png -share/gnome/help/anjuta-manual/sv/figures/editor_guides.png -share/gnome/help/anjuta-manual/sv/figures/editor_margins.png -share/gnome/help/anjuta-manual/sv/figures/editor_markers.png -share/gnome/help/anjuta-manual/sv/figures/file_menu.png -share/gnome/help/anjuta-manual/sv/figures/insert_text.png -share/gnome/help/anjuta-manual/sv/figures/keyword_macro.png -share/gnome/help/anjuta-manual/sv/figures/local_variables.png -share/gnome/help/anjuta-manual/sv/figures/menubar.png -share/gnome/help/anjuta-manual/sv/figures/message_win.png -share/gnome/help/anjuta-manual/sv/figures/new_file_wizard.png -share/gnome/help/anjuta-manual/sv/figures/open_file.png -share/gnome/help/anjuta-manual/sv/figures/open_file_multiple.png -share/gnome/help/anjuta-manual/sv/figures/prefs_print.png -share/gnome/help/anjuta-manual/sv/figures/print_dlg.png -share/gnome/help/anjuta-manual/sv/figures/print_preview.png -share/gnome/help/anjuta-manual/sv/figures/project-window.png -share/gnome/help/anjuta-manual/sv/figures/project_info.png -share/gnome/help/anjuta-manual/sv/figures/project_group.png -share/gnome/help/anjuta-manual/sv/figures/project_target.png -share/gnome/help/anjuta-manual/sv/figures/project_target_details.png -share/gnome/help/anjuta-manual/sv/figures/registers.png -share/gnome/help/anjuta-manual/sv/figures/save_as_file.png -share/gnome/help/anjuta-manual/sv/figures/search_expr.png -share/gnome/help/anjuta-manual/sv/figures/search_expr_basic.png -share/gnome/help/anjuta-manual/sv/figures/search_file_pattern.png -share/gnome/help/anjuta-manual/sv/figures/search_replace.png -share/gnome/help/anjuta-manual/sv/figures/search_setting.png -share/gnome/help/anjuta-manual/sv/figures/search_target.png -share/gnome/help/anjuta-manual/sv/figures/search_target_action.png -share/gnome/help/anjuta-manual/sv/figures/search_target_in.png -share/gnome/help/anjuta-manual/sv/figures/sharedlibs.png -share/gnome/help/anjuta-manual/sv/figures/signals.png -share/gnome/help/anjuta-manual/sv/figures/stack.png -share/gnome/help/anjuta-manual/sv/figures/symbol_browser.png -share/gnome/help/anjuta-manual/sv/figures/tool-editor.png -share/icons/gnome/48x48/mimetypes/gnome-mime-application-x-anjuta.png -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-anjuta.svg -share/icons/hicolor/48x48/apps/anjuta.png -share/icons/hicolor/scalable/apps/anjuta.svg -share/locale/ar/LC_MESSAGES/anjuta.mo -share/locale/az/LC_MESSAGES/anjuta.mo -share/locale/be/LC_MESSAGES/anjuta.mo -share/locale/be@latin/LC_MESSAGES/anjuta.mo -share/locale/bg/LC_MESSAGES/anjuta.mo -share/locale/ca/LC_MESSAGES/anjuta.mo -share/locale/cs/LC_MESSAGES/anjuta.mo -share/locale/da/LC_MESSAGES/anjuta.mo -share/locale/de/LC_MESSAGES/anjuta.mo -share/locale/dz/LC_MESSAGES/anjuta.mo -share/locale/el/LC_MESSAGES/anjuta.mo -share/locale/en_CA/LC_MESSAGES/anjuta.mo -share/locale/en_GB/LC_MESSAGES/anjuta.mo -share/locale/es/LC_MESSAGES/anjuta.mo -share/locale/eu/LC_MESSAGES/anjuta.mo -share/locale/fi/LC_MESSAGES/anjuta.mo -share/locale/fr/LC_MESSAGES/anjuta.mo -share/locale/ga/LC_MESSAGES/anjuta.mo -share/locale/gl/LC_MESSAGES/anjuta.mo -share/locale/gu/LC_MESSAGES/anjuta.mo -share/locale/he/LC_MESSAGES/anjuta.mo -share/locale/hi/LC_MESSAGES/anjuta.mo -share/locale/hr/LC_MESSAGES/anjuta.mo -share/locale/hu/LC_MESSAGES/anjuta.mo -share/locale/id/LC_MESSAGES/anjuta.mo -share/locale/it/LC_MESSAGES/anjuta.mo -share/locale/ja/LC_MESSAGES/anjuta.mo -share/locale/kn/LC_MESSAGES/anjuta.mo -share/locale/ko/LC_MESSAGES/anjuta.mo -share/locale/lt/LC_MESSAGES/anjuta.mo -share/locale/lv/LC_MESSAGES/anjuta.mo -share/locale/mk/LC_MESSAGES/anjuta.mo -share/locale/ml/LC_MESSAGES/anjuta.mo -share/locale/mr/LC_MESSAGES/anjuta.mo -share/locale/ms/LC_MESSAGES/anjuta.mo -share/locale/nb/LC_MESSAGES/anjuta.mo -share/locale/ne/LC_MESSAGES/anjuta.mo -share/locale/nl/LC_MESSAGES/anjuta.mo -share/locale/oc/LC_MESSAGES/anjuta.mo -share/locale/or/LC_MESSAGES/anjuta.mo -share/locale/pa/LC_MESSAGES/anjuta.mo -share/locale/pl/LC_MESSAGES/anjuta.mo -share/locale/pt/LC_MESSAGES/anjuta.mo -share/locale/pt_BR/LC_MESSAGES/anjuta.mo -share/locale/ru/LC_MESSAGES/anjuta.mo -share/locale/rw/LC_MESSAGES/anjuta.mo -share/locale/si/LC_MESSAGES/anjuta.mo -share/locale/sk/LC_MESSAGES/anjuta.mo -share/locale/sl/LC_MESSAGES/anjuta.mo -share/locale/sq/LC_MESSAGES/anjuta.mo -share/locale/sr/LC_MESSAGES/anjuta.mo -share/locale/sr@latin/LC_MESSAGES/anjuta.mo -share/locale/sv/LC_MESSAGES/anjuta.mo -share/locale/te/LC_MESSAGES/anjuta.mo -share/locale/th/LC_MESSAGES/anjuta.mo -share/locale/tr/LC_MESSAGES/anjuta.mo -share/locale/uk/LC_MESSAGES/anjuta.mo -share/locale/vi/LC_MESSAGES/anjuta.mo -share/locale/zh_CN/LC_MESSAGES/anjuta.mo -share/locale/zh_HK/LC_MESSAGES/anjuta.mo -share/locale/zh_TW/LC_MESSAGES/anjuta.mo -share/mime/application/x-anjuta.xml -share/mime/packages/anjuta.xml -share/omf/anjuta-manual/anjuta-manual-C.omf -share/omf/anjuta-manual/anjuta-manual-de.omf -share/omf/anjuta-manual/anjuta-manual-el.omf -share/omf/anjuta-manual/anjuta-manual-es.omf -share/omf/anjuta-manual/anjuta-manual-eu.omf -share/omf/anjuta-manual/anjuta-manual-oc.omf -share/omf/anjuta-manual/anjuta-manual-sv.omf -share/pixmaps/anjuta/anjuta-attach-16.png -share/pixmaps/anjuta/anjuta-attach-24.png -share/pixmaps/anjuta/anjuta-block-end-16.png -share/pixmaps/anjuta/anjuta-block-end-24.png -share/pixmaps/anjuta/anjuta-block-select-16.png -share/pixmaps/anjuta/anjuta-block-select-24.png -share/pixmaps/anjuta/anjuta-block-start-16.png -share/pixmaps/anjuta/anjuta-block-start-24.png -share/pixmaps/anjuta/anjuta-bookmark-16.png -share/pixmaps/anjuta/anjuta-bookmark-clear-16.png -share/pixmaps/anjuta/anjuta-bookmark-clear-24.png -share/pixmaps/anjuta/anjuta-bookmark-first-16.png -share/pixmaps/anjuta/anjuta-bookmark-first-24.png -share/pixmaps/anjuta/anjuta-bookmark-last-16.png -share/pixmaps/anjuta/anjuta-bookmark-last-24.png -share/pixmaps/anjuta/anjuta-bookmark-next-16.png -share/pixmaps/anjuta/anjuta-bookmark-next-24.png -share/pixmaps/anjuta/anjuta-bookmark-prev-16.png -share/pixmaps/anjuta/anjuta-bookmark-prev-24.png -share/pixmaps/anjuta/anjuta-bookmark-toggle-16.png -share/pixmaps/anjuta/anjuta-bookmark-toggle-24.png -share/pixmaps/anjuta/anjuta-breakpoint-clear-16.png -share/pixmaps/anjuta/anjuta-breakpoint-clear-24.png -share/pixmaps/anjuta/anjuta-breakpoint-disabled-16.png -share/pixmaps/anjuta/anjuta-breakpoint-enabled-16.png -share/pixmaps/anjuta/anjuta-breakpoint-toggle-16.png -share/pixmaps/anjuta/anjuta-breakpoint-toggle-24.png -share/pixmaps/anjuta/anjuta-build-16.png -share/pixmaps/anjuta/anjuta-build-24.png -share/pixmaps/anjuta/anjuta-build-basic-autotools-plugin-48.png -share/pixmaps/anjuta/anjuta-build-basic-autotools-plugin.svg -share/pixmaps/anjuta/anjuta-class-inheritance-plugin-48.png -share/pixmaps/anjuta/anjuta-class-inheritance-plugin.svg -share/pixmaps/anjuta/anjuta-complete-16.png -share/pixmaps/anjuta/anjuta-complete-24.png -share/pixmaps/anjuta/anjuta-complete-auto-16.png -share/pixmaps/anjuta/anjuta-complete-auto-24.png -share/pixmaps/anjuta/anjuta-cvs-plugin-48.png -share/pixmaps/anjuta/anjuta-cvs-plugin.svg -share/pixmaps/anjuta/anjuta-debug-manager-plugin-48.png -share/pixmaps/anjuta/anjuta-debug-manager-plugin.svg -%%DEVHELP%%share/pixmaps/anjuta/anjuta-devhelp-plugin-48.png -%%DEVHELP%%share/pixmaps/anjuta/anjuta-devhelp-plugin.svg -share/pixmaps/anjuta/anjuta-document-manager-plugin-48.png -share/pixmaps/anjuta/anjuta-document-manager-plugin.svg -share/pixmaps/anjuta/anjuta-editor-scintilla-plugin-48.png -share/pixmaps/anjuta/anjuta-editor-scintilla-plugin.svg -share/pixmaps/anjuta/element-class-16.png -share/pixmaps/anjuta/element-delegate-16.png -share/pixmaps/anjuta/element-enumeration-16.png -share/pixmaps/anjuta/element-event-16.png -share/pixmaps/anjuta/element-field-16.png -share/pixmaps/anjuta/element-interface-16.png -share/pixmaps/anjuta/element-interface-24.png -share/pixmaps/anjuta/element-literal-16.png -share/pixmaps/anjuta/element-method-16.png -share/pixmaps/anjuta/element-method-24.png -share/pixmaps/anjuta/element-namespace-16.png -share/pixmaps/anjuta/element-property-16.png -share/pixmaps/anjuta/element-structure-16.png -share/pixmaps/anjuta/anjuta-editor-sourceview-plugin-48.png -share/pixmaps/anjuta/anjuta-file-manager-plugin-48.png -share/pixmaps/anjuta/anjuta-file-manager-plugin.svg -share/pixmaps/anjuta/anjuta-file-wizard-plugin.png -share/pixmaps/anjuta/anjuta-fold-close-16.png -share/pixmaps/anjuta/anjuta-fold-close-24.png -share/pixmaps/anjuta/anjuta-fold-open-16.png -share/pixmaps/anjuta/anjuta-fold-open-24.png -share/pixmaps/anjuta/anjuta-fold-toggle-16.png -share/pixmaps/anjuta/anjuta-fold-toggle-24.png -share/pixmaps/anjuta/anjuta-gdb.plugin.png -share/pixmaps/anjuta/anjuta-git-plugin-48.png -share/pixmaps/anjuta/anjuta-glade-plugin-48.png -share/pixmaps/anjuta/anjuta-glade-plugin.svg -share/pixmaps/anjuta/anjuta-go-history-next-16.png -share/pixmaps/anjuta/anjuta-go-history-next-24.png -share/pixmaps/anjuta/anjuta-go-history-prev-16.png -share/pixmaps/anjuta/anjuta-go-history-prev-24.png -share/pixmaps/anjuta/anjuta-go-line-16.png -share/pixmaps/anjuta/anjuta-go-line-24.png -share/pixmaps/anjuta/anjuta-go-message-next-16.png -share/pixmaps/anjuta/anjuta-go-message-next-24.png -share/pixmaps/anjuta/anjuta-go-message-prev-16.png -share/pixmaps/anjuta/anjuta-go-message-prev-24.png -share/pixmaps/anjuta/anjuta-gtodo-plugin-48.png -share/pixmaps/anjuta/anjuta-gtodo-plugin.svg -share/pixmaps/anjuta/anjuta-indent-auto-16.png -share/pixmaps/anjuta/anjuta-indent-auto-24.png -share/pixmaps/anjuta/anjuta-indent-less-16.png -share/pixmaps/anjuta/anjuta-indent-less-24.png -share/pixmaps/anjuta/anjuta-indent-more-16.png -share/pixmaps/anjuta/anjuta-indent-more-24.png -share/pixmaps/anjuta/anjuta-language-cpp-java-plugin.png -share/pixmaps/anjuta/anjuta-language-manager-plugin-48.png -share/pixmaps/anjuta/anjuta-language-manager-plugin.svg -share/pixmaps/anjuta/anjuta-linemark-16.png -share/pixmaps/anjuta/anjuta-loader-plugin-48.png -share/pixmaps/anjuta/anjuta-loader-plugin.svg -share/pixmaps/anjuta/anjuta-macro.png -share/pixmaps/anjuta/anjuta-messages-plugin-48.png -share/pixmaps/anjuta/anjuta-messages-plugin.svg -share/pixmaps/anjuta/anjuta-patch-plugin-48.png -share/pixmaps/anjuta/anjuta-patch-plugin.svg -share/pixmaps/anjuta/anjuta-pcmark-16.png -share/pixmaps/anjuta/anjuta-preferences-general-48.png -share/pixmaps/anjuta/anjuta-preferences-general.svg -share/pixmaps/anjuta/anjuta-profiler-plugin-48.png -share/pixmaps/anjuta/anjuta-profiler-plugin.svg -share/pixmaps/anjuta/anjuta-project-import-plugin-48.png -share/pixmaps/anjuta/anjuta-project-import-plugin.svg -share/pixmaps/anjuta/anjuta-project-manager-plugin-48.png -share/pixmaps/anjuta/anjuta-project-manager-plugin.svg -share/pixmaps/anjuta/anjuta-project-wizard-plugin-48.png -share/pixmaps/anjuta/anjuta-project-wizard-plugin.svg -share/pixmaps/anjuta/anjuta-run-to-cursor-16.png -share/pixmaps/anjuta/anjuta-run-to-cursor-24.png -share/pixmaps/anjuta/anjuta-run-program-48.png -share/pixmaps/anjuta/anjuta-sample-plugin-48.png -share/pixmaps/anjuta/anjuta-sample-plugin.svg -share/pixmaps/anjuta/anjuta-scratchbox-48.png -share/pixmaps/anjuta/anjuta-search-plugin-48.png -share/pixmaps/anjuta/anjuta-search-plugin.svg -share/pixmaps/anjuta/anjuta-step-into-16.png -share/pixmaps/anjuta/anjuta-step-into-24.png -share/pixmaps/anjuta/anjuta-step-out-16.png -share/pixmaps/anjuta/anjuta-step-out-24.png -share/pixmaps/anjuta/anjuta-step-over-16.png -share/pixmaps/anjuta/anjuta-step-over-24.png -%%SVN%%share/pixmaps/anjuta/anjuta-subversion-plugin-48.png -%%SVN%%share/pixmaps/anjuta/anjuta-subversion-plugin.svg -share/pixmaps/anjuta/anjuta-swap-16.png -share/pixmaps/anjuta/anjuta-swap-24.png -share/pixmaps/anjuta/anjuta-symbol-db-plugin-48.png -share/pixmaps/anjuta/anjuta-terminal-plugin-48.png -share/pixmaps/anjuta/anjuta-terminal-plugin.svg -share/pixmaps/anjuta/anjuta-tools-plugin-48.png -share/pixmaps/anjuta/anjuta-tools-plugin.svg -share/pixmaps/anjuta/anjuta-watch-16.png -share/pixmaps/anjuta/anjuta-watch-24.png -share/pixmaps/anjuta/anjuta-watch.svg -share/pixmaps/anjuta/anjuta.png -share/pixmaps/anjuta/anjuta.svg -share/pixmaps/anjuta/anjuta_logo.png -share/pixmaps/anjuta/anjuta_splash.png -share/pixmaps/anjuta/breakpoint.png -share/pixmaps/anjuta/class_logo.xpm -share/pixmaps/anjuta/directory-accept.png -share/pixmaps/anjuta/directory.png -share/pixmaps/anjuta/gbf-am-plugin-48.png -share/pixmaps/anjuta/gbf-build.png -share/pixmaps/anjuta/gbf-install.png -share/pixmaps/anjuta/gbf-mkfile-plugin-48.png -share/pixmaps/anjuta/gtodo-about.png -share/pixmaps/anjuta/gtodo-edit.png -share/pixmaps/anjuta/locals.png -share/pixmaps/anjuta/madeinanjuta.xcf -share/pixmaps/anjuta/password.png -share/pixmaps/anjuta/pointer.png -share/pixmaps/anjuta/preferences-editor.png -share/pixmaps/anjuta/stack.png -share/pixmaps/anjuta/start-with-import.png -share/pixmaps/anjuta/starter_logo.png -share/pixmaps/anjuta/vcs-added.png -share/pixmaps/anjuta/vcs-conflict.png -share/pixmaps/anjuta/vcs-deleted.png -share/pixmaps/anjuta/vcs-ignored.png -share/pixmaps/anjuta/vcs-modified.png -share/pixmaps/anjuta/vcs-unversioned.png -share/pixmaps/anjuta/vcs-updated.png -@dirrm share/pixmaps/anjuta -@dirrm share/omf/anjuta-manual -@dirrm share/gnome/help/anjuta-manual/sv/figures -@dirrm share/gnome/help/anjuta-manual/sv -@dirrm share/gnome/help/anjuta-manual/oc/figures -@dirrm share/gnome/help/anjuta-manual/oc -@dirrm share/gnome/help/anjuta-manual/eu/figures -@dirrm share/gnome/help/anjuta-manual/eu -@dirrm share/gnome/help/anjuta-manual/es/figures -@dirrm share/gnome/help/anjuta-manual/es -@dirrm share/gnome/help/anjuta-manual/el/figures -@dirrm share/gnome/help/anjuta-manual/el -@dirrm share/gnome/help/anjuta-manual/de/figures -@dirrm share/gnome/help/anjuta-manual/de -@dirrm share/gnome/help/anjuta-manual/C/figures -@dirrm share/gnome/help/anjuta-manual/C -@dirrm share/gnome/help/anjuta-manual -@dirrm share/gnome/help/anjuta-faqs/C -@dirrm share/gnome/help/anjuta-faqs -@dirrm share/gnome/help/anjuta-build-tutorial/C/figures -@dirrm share/gnome/help/anjuta-build-tutorial/C -@dirrm share/gnome/help/anjuta-build-tutorial -@dirrmtry share/icons/gnome/48x48/mimetypes -@dirrm share/anjuta/ui -@dirrm share/anjuta/tools -@dirrm share/anjuta/properties -@dirrm share/anjuta/project/xlib/src -@dirrm share/anjuta/project/xlib/po -@dirrm share/anjuta/project/xlib-dock/src -@dirrm share/anjuta/project/xlib-dock/po -@dirrm share/anjuta/project/xlib-dock -@dirrm share/anjuta/project/xlib -@dirrm share/anjuta/project/wxwin/src -@dirrm share/anjuta/project/wxwin/po -@dirrm share/anjuta/project/wxwin -@dirrm share/anjuta/project/terminal/src -@dirrm share/anjuta/project/terminal/po -@dirrm share/anjuta/project/terminal -@dirrm share/anjuta/project/sdl/src -@dirrm share/anjuta/project/sdl/po -@dirrm share/anjuta/project/sdl -@dirrm share/anjuta/project/python/src -@dirrm share/anjuta/project/python/po -@dirrm share/anjuta/project/python -@dirrm share/anjuta/project/mkfile/src -@dirrm share/anjuta/project/mkfile/po -@dirrm share/anjuta/project/mkfile -@dirrm share/anjuta/project/minimal -@dirrm share/anjuta/project/m4 -@dirrm share/anjuta/project/licenses -@dirrm share/anjuta/project/java/src -@dirrm share/anjuta/project/java/po -@dirrm share/anjuta/project/java -@dirrm share/anjuta/project/gtkmm/src -@dirrm share/anjuta/project/gtkmm/po -@dirrm share/anjuta/project/gtkmm -@dirrm share/anjuta/project/gtk/src -@dirrm share/anjuta/project/gtk/po -@dirrm share/anjuta/project/gtk -@dirrm share/anjuta/project/gnome-applet/src -@dirrm share/anjuta/project/gnome-applet -@dirrm share/anjuta/project/gnome/po -@dirrm share/anjuta/project/gnome -@dirrm share/anjuta/project/gcj/src -@dirrm share/anjuta/project/gcj -@dirrm share/anjuta/project/cpp/src -@dirrm share/anjuta/project/cpp/po -@dirrm share/anjuta/project/cpp -@dirrm share/anjuta/project/anjuta-plugin-vala/src -@dirrm share/anjuta/project/anjuta-plugin-vala/po -@dirrm share/anjuta/project/anjuta-plugin-vala -@dirrm share/anjuta/project/anjuta-plugin/src -@dirrm share/anjuta/project/anjuta-plugin/po -@dirrm share/anjuta/project/anjuta-plugin -@dirrm share/anjuta/project -@dirrm share/anjuta/profiles -@dirrm share/anjuta/gtodo -@dirrm share/anjuta/glade -@dirrm share/anjuta/class-templates -@dirrm share/anjuta/build -@dirrm share/anjuta/GBF -@dirrm share/anjuta -@dirrm share/doc/libanjuta -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm lib/anjuta -@dirrm include/libanjuta-1.0/libanjuta/interfaces -@dirrm include/libanjuta-1.0/libanjuta -@dirrm include/libanjuta-1.0 -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/devel/bug-buddy/Makefile b/devel/bug-buddy/Makefile deleted file mode 100644 index af4e8cfaa..000000000 --- a/devel/bug-buddy/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: bugbuddy2 -# Date created: 14 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/bug-buddy/Makefile,v 1.73 2009/02/22 15:31:03 kwm Exp $ -# - -PORTNAME= bug-buddy -PORTVERSION= 2.26.0 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A bug reporting tool for GNOME 2 - -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \ - soup-2.4.1:${PORTSDIR}/devel/libsoup - -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomemenus \ - gnomedocutils evolutiondataserver -GNOME_DESKTOP_VERSION=2 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= bug-buddy.schemas - -MAN1= bug-buddy.1 - -post-patch: - @${REINPLACE_CMD} -e 's|applications.menu|gnome-applications.menu|' \ - ${WRKSRC}/src/bugzilla.c - @${REINPLACE_CMD} -e 's|libelf.h||g ; \ - s|gelf.h||g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/devel/bug-buddy/distinfo b/devel/bug-buddy/distinfo deleted file mode 100644 index a00a22b53..000000000 --- a/devel/bug-buddy/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/bug-buddy-2.26.0.tar.bz2) = f92663a1a819f83e3eb3004f9e8a687a -SHA256 (gnome2/bug-buddy-2.26.0.tar.bz2) = 91780659fb3f360ed2f2b0804ceb619d9cbc7754115bf50f442bdd2c7dca224c -SIZE (gnome2/bug-buddy-2.26.0.tar.bz2) = 1051956 diff --git a/devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc b/devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc deleted file mode 100644 index 7007a9101..000000000 --- a/devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc +++ /dev/null @@ -1,55 +0,0 @@ ---- gnome-breakpad/gnome-breakpad.cc.orig 2009-02-16 15:24:48.000000000 +0100 -+++ gnome-breakpad/gnome-breakpad.cc 2009-02-22 16:25:50.000000000 +0100 -@@ -25,8 +25,14 @@ - #include <cassert> - #include <cstring> - -+#ifdef __FreeBSD__ -+#include <sys/param.h> -+#endif -+ -+#if !defined(__FreeBSD__) || __FreeBSD_version > 700024 - #include <libelf.h> - #include <gelf.h> -+#endif - - #include <sys/types.h> - #include <sys/stat.h> -@@ -264,6 +270,7 @@ find_in_debug_path (const char *filename - } - - -+#if !defined(__FreeBSD__) || __FreeBSD_version > 700024 - static gboolean - elf_has_debug_symbols (const char *filename) - { -@@ -316,7 +323,7 @@ elf_has_debug_symbols (const char *filen - elf_end (elf); - return false; - } -- -+#endif - - - -@@ -429,11 +436,18 @@ check_if_gdb () - _exit (1); - _exit(0); - } -- -+ -+#if !defined(__FreeBSD__) - mypath = g_file_read_link ("/proc/self/exe", NULL); -+#else -+ mypath = g_file_read_link ("/proc/curproc/file", NULL); -+#endif - if (mypath) -+#if !defined(__FreeBSD__) || __FreeBSD_version > 700024 - has_debug_symbols = elf_has_debug_symbols (mypath); -- -+#else -+ has_debug_symbols = TRUE; -+#endif - g_free (mypath); - - if (bugbuddy && gdb && has_debug_symbols) { diff --git a/devel/bug-buddy/pkg-descr b/devel/bug-buddy/pkg-descr deleted file mode 100644 index 7268130ab..000000000 --- a/devel/bug-buddy/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -This is a bug reporting tool. It pops up automatically when a GNOME -app crashes under the GNOME desktop (via gnome_segv), and allows -the crash information to be sent to the app's developers. - -Jacob Berkman <jberkman@andrew.cmu.edu> - -WWW: http://www.gnome.org/ diff --git a/devel/bug-buddy/pkg-plist b/devel/bug-buddy/pkg-plist deleted file mode 100644 index 641480473..000000000 --- a/devel/bug-buddy/pkg-plist +++ /dev/null @@ -1,139 +0,0 @@ -bin/bug-buddy -lib/gtk-2.0/modules/libgnomebreakpad.la -lib/gtk-2.0/modules/libgnomebreakpad.so -share/applications/bug-buddy.desktop -%%DATADIR%%/bug-buddy.gtkbuilder -%%DATADIR%%/bug-buddy.menu -%%DATADIR%%/gdb-cmd -share/icons/HighContrastLargePrint/48x48/apps/bug-buddy.png -share/icons/hicolor/16x16/apps/bug-buddy.png -share/icons/hicolor/22x22/apps/bug-buddy.png -share/icons/hicolor/24x24/apps/bug-buddy.png -share/icons/hicolor/32x32/apps/bug-buddy.png -share/icons/hicolor/48x48/apps/bug-buddy.png -share/icons/hicolor/scalable/apps/bug-buddy.svg -share/locale/af/LC_MESSAGES/bug-buddy.mo -share/locale/am/LC_MESSAGES/bug-buddy.mo -share/locale/ar/LC_MESSAGES/bug-buddy.mo -share/locale/as/LC_MESSAGES/bug-buddy.mo -share/locale/az/LC_MESSAGES/bug-buddy.mo -share/locale/be/LC_MESSAGES/bug-buddy.mo -share/locale/be@latin/LC_MESSAGES/bug-buddy.mo -share/locale/bg/LC_MESSAGES/bug-buddy.mo -share/locale/bn/LC_MESSAGES/bug-buddy.mo -share/locale/bn_IN/LC_MESSAGES/bug-buddy.mo -share/locale/bs/LC_MESSAGES/bug-buddy.mo -share/locale/ca/LC_MESSAGES/bug-buddy.mo -share/locale/cs/LC_MESSAGES/bug-buddy.mo -share/locale/cy/LC_MESSAGES/bug-buddy.mo -share/locale/da/LC_MESSAGES/bug-buddy.mo -share/locale/de/LC_MESSAGES/bug-buddy.mo -share/locale/dz/LC_MESSAGES/bug-buddy.mo -share/locale/el/LC_MESSAGES/bug-buddy.mo -share/locale/en_CA/LC_MESSAGES/bug-buddy.mo -share/locale/en_GB/LC_MESSAGES/bug-buddy.mo -share/locale/es/LC_MESSAGES/bug-buddy.mo -share/locale/et/LC_MESSAGES/bug-buddy.mo -share/locale/eu/LC_MESSAGES/bug-buddy.mo -share/locale/fa/LC_MESSAGES/bug-buddy.mo -share/locale/fi/LC_MESSAGES/bug-buddy.mo -share/locale/fr/LC_MESSAGES/bug-buddy.mo -share/locale/ga/LC_MESSAGES/bug-buddy.mo -share/locale/gl/LC_MESSAGES/bug-buddy.mo -share/locale/gu/LC_MESSAGES/bug-buddy.mo -share/locale/he/LC_MESSAGES/bug-buddy.mo -share/locale/hi/LC_MESSAGES/bug-buddy.mo -share/locale/hr/LC_MESSAGES/bug-buddy.mo -share/locale/hu/LC_MESSAGES/bug-buddy.mo -share/locale/id/LC_MESSAGES/bug-buddy.mo -share/locale/is/LC_MESSAGES/bug-buddy.mo -share/locale/it/LC_MESSAGES/bug-buddy.mo -share/locale/ja/LC_MESSAGES/bug-buddy.mo -share/locale/ka/LC_MESSAGES/bug-buddy.mo -share/locale/kn/LC_MESSAGES/bug-buddy.mo -share/locale/ko/LC_MESSAGES/bug-buddy.mo -share/locale/ku/LC_MESSAGES/bug-buddy.mo -share/locale/ky/LC_MESSAGES/bug-buddy.mo -share/locale/lt/LC_MESSAGES/bug-buddy.mo -share/locale/lv/LC_MESSAGES/bug-buddy.mo -share/locale/mg/LC_MESSAGES/bug-buddy.mo -share/locale/mk/LC_MESSAGES/bug-buddy.mo -share/locale/ml/LC_MESSAGES/bug-buddy.mo -share/locale/mn/LC_MESSAGES/bug-buddy.mo -share/locale/mr/LC_MESSAGES/bug-buddy.mo -share/locale/ms/LC_MESSAGES/bug-buddy.mo -share/locale/nb/LC_MESSAGES/bug-buddy.mo -share/locale/ne/LC_MESSAGES/bug-buddy.mo -share/locale/nl/LC_MESSAGES/bug-buddy.mo -share/locale/nn/LC_MESSAGES/bug-buddy.mo -share/locale/oc/LC_MESSAGES/bug-buddy.mo -share/locale/or/LC_MESSAGES/bug-buddy.mo -share/locale/pa/LC_MESSAGES/bug-buddy.mo -share/locale/pl/LC_MESSAGES/bug-buddy.mo -share/locale/ps/LC_MESSAGES/bug-buddy.mo -share/locale/pt/LC_MESSAGES/bug-buddy.mo -share/locale/pt_BR/LC_MESSAGES/bug-buddy.mo -share/locale/ro/LC_MESSAGES/bug-buddy.mo -share/locale/ru/LC_MESSAGES/bug-buddy.mo -share/locale/rw/LC_MESSAGES/bug-buddy.mo -share/locale/si/LC_MESSAGES/bug-buddy.mo -share/locale/sk/LC_MESSAGES/bug-buddy.mo -share/locale/sl/LC_MESSAGES/bug-buddy.mo -share/locale/sq/LC_MESSAGES/bug-buddy.mo -share/locale/sr/LC_MESSAGES/bug-buddy.mo -share/locale/sr@latin/LC_MESSAGES/bug-buddy.mo -share/locale/sv/LC_MESSAGES/bug-buddy.mo -share/locale/ta/LC_MESSAGES/bug-buddy.mo -share/locale/te/LC_MESSAGES/bug-buddy.mo -share/locale/th/LC_MESSAGES/bug-buddy.mo -share/locale/tr/LC_MESSAGES/bug-buddy.mo -share/locale/ug/LC_MESSAGES/bug-buddy.mo -share/locale/uk/LC_MESSAGES/bug-buddy.mo -share/locale/uz@cyrillic/LC_MESSAGES/bug-buddy.mo -share/locale/vi/LC_MESSAGES/bug-buddy.mo -share/locale/wa/LC_MESSAGES/bug-buddy.mo -share/locale/xh/LC_MESSAGES/bug-buddy.mo -share/locale/zh_CN/LC_MESSAGES/bug-buddy.mo -share/locale/zh_HK/LC_MESSAGES/bug-buddy.mo -share/locale/zh_TW/LC_MESSAGES/bug-buddy.mo -@dirrmtry share/icons/HighContrastLargePrint/48x48/apps -@dirrmtry share/icons/HighContrastLargePrint/48x48 -@dirrmtry share/icons/HighContrastLargePrint -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/devel/devhelp/Makefile b/devel/devhelp/Makefile deleted file mode 100644 index 5a9a9d772..000000000 --- a/devel/devhelp/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: devhelp -# Date created: 29 May 2003 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/devhelp/Makefile,v 1.10 2009/01/09 22:20:28 kwm Exp $ - -PORTNAME= devhelp -PORTVERSION= 0.22 -PORTEPOCH= 1 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= kwm@FreeBSD.org -COMMENT= Developer help browser for GNOME 2 - -LIB_DEPENDS= webkit-1.0.1:${PORTSDIR}/www/webkit-gtk2 - -USE_BZIP2= yes -USE_XORG= x11 -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui libwnck -USE_AUTOTOOLS= libtool:15 -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -USE_LDCONFIG= yes -GCONF_SCHEMAS= devhelp.schemas -CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="${PTHREAD_LIBS} -L${LOCALBASE}/lib" - -OPTIONS= GEDIT "Enable GEdit plug-in support" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_GEDIT) -BUILD_DEPENDS+= gedit:${PORTSDIR}/editors/gedit -RUN_DEPENDS+= gedit:${PORTSDIR}/editors/gedit -PLIST_SUB+= GEDIT="" -.else -PLIST_SUB+= GEDIT="@comment " -.endif - -post-patch: -.if defined(WITHOUT_GEDIT) - @${REINPLACE_CMD} -e 's|gedit-plugin||' \ - ${WRKSRC}/misc/Makefile.in -.endif - -.include <bsd.port.post.mk> diff --git a/devel/devhelp/distinfo b/devel/devhelp/distinfo deleted file mode 100644 index 8c21dd82e..000000000 --- a/devel/devhelp/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/devhelp-0.22.tar.bz2) = 7cdd0688dba0184b6dd2688532af24cb -SHA256 (gnome2/devhelp-0.22.tar.bz2) = 1fa4b69c99b10de0e27374e18eea7988e3e8f9243020a22a47f79c9ccad92947 -SIZE (gnome2/devhelp-0.22.tar.bz2) = 517581 diff --git a/devel/devhelp/files/patch-src_dh-base.c b/devel/devhelp/files/patch-src_dh-base.c deleted file mode 100644 index 3dbf1c71c..000000000 --- a/devel/devhelp/files/patch-src_dh-base.c +++ /dev/null @@ -1,14 +0,0 @@ ---- src/dh-base.c.orig 2008-10-11 00:00:18.000000000 +0200 -+++ src/dh-base.c 2009-01-09 23:10:12.000000000 +0100 -@@ -214,6 +214,11 @@ base_add_books_in_data_dir (DhBase - dir = g_build_filename (data_dir, "devhelp", "books", NULL); - base_add_books (base, dir); - g_free (dir); -+ -+ dir = g_build_filename (data_dir, "doc", NULL); -+ base_add_books (base, dir); -+ g_free (dir); -+ - } - - static void diff --git a/devel/devhelp/pkg-descr b/devel/devhelp/pkg-descr deleted file mode 100644 index 2d617b391..000000000 --- a/devel/devhelp/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -devhelp is a developer's help browser for GNOME 2. It is a GUI -frontend to books about GNOME development, providing cross-referenced, -easily searchable information. Many books are available, and can -be found through the project's website. - -WWW: http://www.imendio.com/projects/devhelp/ - --Adam Weinberger <adamw@FreeBSD.org> diff --git a/devel/devhelp/pkg-plist b/devel/devhelp/pkg-plist deleted file mode 100644 index 83649fae2..000000000 --- a/devel/devhelp/pkg-plist +++ /dev/null @@ -1,127 +0,0 @@ -bin/devhelp -include/devhelp-1.0/devhelp/dh-assistant-view.h -include/devhelp-1.0/devhelp/dh-assistant.h -include/devhelp-1.0/devhelp/dh-base.h -include/devhelp-1.0/devhelp/dh-book-tree.h -include/devhelp-1.0/devhelp/dh-error.h -include/devhelp-1.0/devhelp/dh-keyword-model.h -include/devhelp-1.0/devhelp/dh-link.h -include/devhelp-1.0/devhelp/dh-search.h -include/devhelp-1.0/devhelp/dh-window.h -%%GEDIT%%lib/gedit-2/plugins/devhelp.gedit-plugin -%%GEDIT%%lib/gedit-2/plugins/devhelp/__init__.py -%%GEDIT%%lib/gedit-2/plugins/devhelp/__init__.pyc -%%GEDIT%%lib/gedit-2/plugins/devhelp/__init__.pyo -%%GEDIT%%lib/gedit-2/plugins/devhelp/devhelp.py -%%GEDIT%%lib/gedit-2/plugins/devhelp/devhelp.pyc -%%GEDIT%%lib/gedit-2/plugins/devhelp/devhelp.pyo -lib/libdevhelp-1.a -lib/libdevhelp-1.la -lib/libdevhelp-1.so -lib/libdevhelp-1.so.0 -libdata/pkgconfig/libdevhelp-1.0.pc -share/applications/devhelp.desktop -share/devhelp/assistant/assistant.css -share/devhelp/assistant/assistant.js -share/devhelp/devhelp.defaults -share/devhelp/dtd/devhelp-1.dtd -share/devhelp/ui/devhelp.builder -share/devhelp/ui/window.ui -share/icons/hicolor/16x16/apps/devhelp.png -share/icons/hicolor/22x22/apps/devhelp.png -share/icons/hicolor/24x24/apps/devhelp.png -share/icons/hicolor/32x32/apps/devhelp.png -share/icons/hicolor/48x48/apps/devhelp.png -share/icons/hicolor/scalable/apps/devhelp.svg -share/locale/am/LC_MESSAGES/devhelp.mo -share/locale/ar/LC_MESSAGES/devhelp.mo -share/locale/az/LC_MESSAGES/devhelp.mo -share/locale/be/LC_MESSAGES/devhelp.mo -share/locale/be@latin/LC_MESSAGES/devhelp.mo -share/locale/bg/LC_MESSAGES/devhelp.mo -share/locale/bn/LC_MESSAGES/devhelp.mo -share/locale/bn_IN/LC_MESSAGES/devhelp.mo -share/locale/ca/LC_MESSAGES/devhelp.mo -share/locale/cs/LC_MESSAGES/devhelp.mo -share/locale/da/LC_MESSAGES/devhelp.mo -share/locale/de/LC_MESSAGES/devhelp.mo -share/locale/dz/LC_MESSAGES/devhelp.mo -share/locale/el/LC_MESSAGES/devhelp.mo -share/locale/en_CA/LC_MESSAGES/devhelp.mo -share/locale/en_GB/LC_MESSAGES/devhelp.mo -share/locale/es/LC_MESSAGES/devhelp.mo -share/locale/et/LC_MESSAGES/devhelp.mo -share/locale/fi/LC_MESSAGES/devhelp.mo -share/locale/fr/LC_MESSAGES/devhelp.mo -share/locale/gl/LC_MESSAGES/devhelp.mo -share/locale/gu/LC_MESSAGES/devhelp.mo -share/locale/he/LC_MESSAGES/devhelp.mo -share/locale/hi/LC_MESSAGES/devhelp.mo -share/locale/hr/LC_MESSAGES/devhelp.mo -share/locale/hu/LC_MESSAGES/devhelp.mo -share/locale/is/LC_MESSAGES/devhelp.mo -share/locale/it/LC_MESSAGES/devhelp.mo -share/locale/ja/LC_MESSAGES/devhelp.mo -share/locale/kn/LC_MESSAGES/devhelp.mo -share/locale/ko/LC_MESSAGES/devhelp.mo -share/locale/lt/LC_MESSAGES/devhelp.mo -share/locale/lv/LC_MESSAGES/devhelp.mo -share/locale/mk/LC_MESSAGES/devhelp.mo -share/locale/ml/LC_MESSAGES/devhelp.mo -share/locale/ms/LC_MESSAGES/devhelp.mo -share/locale/nb/LC_MESSAGES/devhelp.mo -share/locale/ne/LC_MESSAGES/devhelp.mo -share/locale/nl/LC_MESSAGES/devhelp.mo -share/locale/nn/LC_MESSAGES/devhelp.mo -share/locale/oc/LC_MESSAGES/devhelp.mo -share/locale/or/LC_MESSAGES/devhelp.mo -share/locale/pa/LC_MESSAGES/devhelp.mo -share/locale/pl/LC_MESSAGES/devhelp.mo -share/locale/ps/LC_MESSAGES/devhelp.mo -share/locale/pt/LC_MESSAGES/devhelp.mo -share/locale/pt_BR/LC_MESSAGES/devhelp.mo -share/locale/ru/LC_MESSAGES/devhelp.mo -share/locale/rw/LC_MESSAGES/devhelp.mo -share/locale/sk/LC_MESSAGES/devhelp.mo -share/locale/sl/LC_MESSAGES/devhelp.mo -share/locale/sq/LC_MESSAGES/devhelp.mo -share/locale/sr/LC_MESSAGES/devhelp.mo -share/locale/sr@Latn/LC_MESSAGES/devhelp.mo -share/locale/sv/LC_MESSAGES/devhelp.mo -share/locale/ta/LC_MESSAGES/devhelp.mo -share/locale/te/LC_MESSAGES/devhelp.mo -share/locale/th/LC_MESSAGES/devhelp.mo -share/locale/tr/LC_MESSAGES/devhelp.mo -share/locale/uk/LC_MESSAGES/devhelp.mo -share/locale/vi/LC_MESSAGES/devhelp.mo -share/locale/zh_CN/LC_MESSAGES/devhelp.mo -share/locale/zh_HK/LC_MESSAGES/devhelp.mo -share/locale/zh_TW/LC_MESSAGES/devhelp.mo -@dirrm share/devhelp/ui -@dirrm share/devhelp/images -@dirrm share/devhelp/dtd -@dirrm share/devhelp/assistant -@dirrm share/devhelp -@dirrm include/devhelp-1.0/devhelp -@dirrm include/devhelp-1.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@Latn/LC_MESSAGES -@dirrmtry share/locale/sr@Latn -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/applications diff --git a/devel/gconf2/Makefile b/devel/gconf2/Makefile deleted file mode 100644 index 910eb3a52..000000000 --- a/devel/gconf2/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# New ports collection makefile for: gconf2 -# Date created: 28th June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/gconf2/Makefile,v 1.105 2009/03/06 22:17:01 marcus Exp $ -# - -PORTNAME= gconf2 -PORTVERSION= 2.26.0 -PORTREVISION?= 0 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/GConf/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTNAME= GConf-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A configuration database system for GNOME - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - polkit.2:${PORTSDIR}/sysutils/policykit - -USE_GMAKE= yes -USE_GETTEXT= yes -USE_GNOME= gnomehier gnomehack orbit2 gtk20 libxml2 ltverhack \ - referencehack intlhack -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ - --disable-gtk-doc -# --enable-gconf-source=${PREFIX}/etc/gconf/schemas \ - -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -MAN1= gconftool-2.1 - -.include <bsd.port.pre.mk> - -.if defined(WITH_LDAP) || exists(${LOCALBASE}/include/ldap.h) -USE_OPENLDAP= yes - -PLIST_SUB+= LDAP="" -.else -PLIST_SUB+= LDAP="@comment " -.endif - -pre-everything:: -.if !defined(WITH_LDAP) - @${ECHO_MSG} - @${ECHO_MSG} "You can enable ldap support by defining" - @${ECHO_MSG} "WITH_LDAP" - @${ECHO_MSG} -.endif - -.include <bsd.port.post.mk> - -.endif diff --git a/devel/gconf2/distinfo b/devel/gconf2/distinfo deleted file mode 100644 index 4330c8a58..000000000 --- a/devel/gconf2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/GConf-2.26.0.tar.bz2) = b010f0de356ea093c6a73778b13de956 -SHA256 (gnome2/GConf-2.26.0.tar.bz2) = 2b9fe741f84d78d7c4f18835728facce81f7db656c2c37f669ee61785911da10 -SIZE (gnome2/GConf-2.26.0.tar.bz2) = 1490741 diff --git a/devel/gconf2/files/patch-gconf_default.path.in b/devel/gconf2/files/patch-gconf_default.path.in deleted file mode 100644 index 0b60822c7..000000000 --- a/devel/gconf2/files/patch-gconf_default.path.in +++ /dev/null @@ -1,11 +0,0 @@ ---- gconf/default.path.in.orig 2009-03-06 17:10:54.000000000 -0500 -+++ gconf/default.path.in 2009-03-06 17:11:25.000000000 -0500 -@@ -21,7 +21,7 @@ include "$(HOME)/.gconf.path" - xml:readwrite:$(HOME)/.gconf - - # Location for system-wide settings that are set by the defaults mechanism --xml:readonly:/etc/gconf/gconf.xml.system -+xml:readonly:@sysgconfdir@/gconf.xml.system - - # To read in any defaults settings that the Sys Admin may have created - # prior to a desktop system upgrade. The SysAdmin can stick default values diff --git a/devel/gconf2/pkg-descr b/devel/gconf2/pkg-descr deleted file mode 100644 index 010cc810e..000000000 --- a/devel/gconf2/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -GConf extends the concept of a configuration registry. It provides -a simple way for applications and administrators to store data; -often GConf is used to store preferences for applications. - -Some of the features of GConf are: -GConf provides: - - * Documentation for each configuration key, so that administrators - can better modify the value. - - * Notifications to interested applications when configuration data - is changed. The notification service works across networks, - affecting all login sessions for a single user. - - * Proper locking so that configuration data doesn't get corrupted - when accessed by multiple applications at the same time. - -WWW: http://www.gnome.org/projects/gconf/ diff --git a/devel/gconf2/pkg-plist b/devel/gconf2/pkg-plist deleted file mode 100644 index 85be04736..000000000 --- a/devel/gconf2/pkg-plist +++ /dev/null @@ -1,153 +0,0 @@ -bin/gconf-merge-tree -bin/gconftool-2 -etc/dbus-1/system.d/org.gnome.GConf.Defaults.conf -%%LDAP%%etc/gconf/2/evoldap.conf -etc/gconf/2/path -include/gconf/2/gconf/gconf-changeset.h -include/gconf/2/gconf/gconf-client.h -include/gconf/2/gconf/gconf-engine.h -include/gconf/2/gconf/gconf-enum-types.h -include/gconf/2/gconf/gconf-error.h -include/gconf/2/gconf/gconf-listeners.h -include/gconf/2/gconf/gconf-schema.h -include/gconf/2/gconf/gconf-value.h -include/gconf/2/gconf/gconf.h -libexec/gconf-defaults-mechanism -%%LDAP%%lib/GConf/2/libgconfbackend-evoldap.a -%%LDAP%%lib/GConf/2/libgconfbackend-evoldap.la -%%LDAP%%lib/GConf/2/libgconfbackend-evoldap.so -lib/GConf/2/libgconfbackend-oldxml.a -lib/GConf/2/libgconfbackend-oldxml.la -lib/GConf/2/libgconfbackend-oldxml.so -lib/GConf/2/libgconfbackend-xml.a -lib/GConf/2/libgconfbackend-xml.la -lib/GConf/2/libgconfbackend-xml.so -lib/libgconf-2.a -lib/libgconf-2.la -lib/libgconf-2.so -lib/libgconf-2.so.4 -libdata/pkgconfig/gconf-2.0.pc -libexec/gconf-sanity-check-2 -libexec/gconfd-2 -%%LDAP%%share/GConf/schema/evoldap.schema -share/aclocal/gconf-2.m4 -share/PolicyKit/policy/org.gnome.gconf.defaults.policy -share/dbus-1/system-services/org.gnome.GConf.Defaults.service -share/dbus-1/services/org.gnome.GConf.service -share/locale/am/LC_MESSAGES/GConf2.mo -share/locale/ar/LC_MESSAGES/GConf2.mo -share/locale/as/LC_MESSAGES/GConf2.mo -share/locale/az/LC_MESSAGES/GConf2.mo -share/locale/be/LC_MESSAGES/GConf2.mo -share/locale/bg/LC_MESSAGES/GConf2.mo -share/locale/bn/LC_MESSAGES/GConf2.mo -share/locale/bn_IN/LC_MESSAGES/GConf2.mo -share/locale/bs/LC_MESSAGES/GConf2.mo -share/locale/ca/LC_MESSAGES/GConf2.mo -share/locale/cs/LC_MESSAGES/GConf2.mo -share/locale/cy/LC_MESSAGES/GConf2.mo -share/locale/da/LC_MESSAGES/GConf2.mo -share/locale/de/LC_MESSAGES/GConf2.mo -share/locale/dz/LC_MESSAGES/GConf2.mo -share/locale/el/LC_MESSAGES/GConf2.mo -share/locale/en_CA/LC_MESSAGES/GConf2.mo -share/locale/en_GB/LC_MESSAGES/GConf2.mo -share/locale/es/LC_MESSAGES/GConf2.mo -share/locale/et/LC_MESSAGES/GConf2.mo -share/locale/eu/LC_MESSAGES/GConf2.mo -share/locale/fa/LC_MESSAGES/GConf2.mo -share/locale/fi/LC_MESSAGES/GConf2.mo -share/locale/fr/LC_MESSAGES/GConf2.mo -share/locale/ga/LC_MESSAGES/GConf2.mo -share/locale/gl/LC_MESSAGES/GConf2.mo -share/locale/gu/LC_MESSAGES/GConf2.mo -share/locale/he/LC_MESSAGES/GConf2.mo -share/locale/hi/LC_MESSAGES/GConf2.mo -share/locale/hr/LC_MESSAGES/GConf2.mo -share/locale/hu/LC_MESSAGES/GConf2.mo -share/locale/id/LC_MESSAGES/GConf2.mo -share/locale/is/LC_MESSAGES/GConf2.mo -share/locale/it/LC_MESSAGES/GConf2.mo -share/locale/ja/LC_MESSAGES/GConf2.mo -share/locale/ka/LC_MESSAGES/GConf2.mo -share/locale/kn/LC_MESSAGES/GConf2.mo -share/locale/ko/LC_MESSAGES/GConf2.mo -share/locale/ku/LC_MESSAGES/GConf2.mo -share/locale/lt/LC_MESSAGES/GConf2.mo -share/locale/lv/LC_MESSAGES/GConf2.mo -share/locale/mai/LC_MESSAGES/GConf2.mo -share/locale/mg/LC_MESSAGES/GConf2.mo -share/locale/mk/LC_MESSAGES/GConf2.mo -share/locale/ml/LC_MESSAGES/GConf2.mo -share/locale/mn/LC_MESSAGES/GConf2.mo -share/locale/mr/LC_MESSAGES/GConf2.mo -share/locale/ms/LC_MESSAGES/GConf2.mo -share/locale/nb/LC_MESSAGES/GConf2.mo -share/locale/ne/LC_MESSAGES/GConf2.mo -share/locale/nl/LC_MESSAGES/GConf2.mo -share/locale/nn/LC_MESSAGES/GConf2.mo -share/locale/oc/LC_MESSAGES/GConf2.mo -share/locale/or/LC_MESSAGES/GConf2.mo -share/locale/pa/LC_MESSAGES/GConf2.mo -share/locale/pl/LC_MESSAGES/GConf2.mo -share/locale/pt/LC_MESSAGES/GConf2.mo -share/locale/pt_BR/LC_MESSAGES/GConf2.mo -share/locale/ro/LC_MESSAGES/GConf2.mo -share/locale/ru/LC_MESSAGES/GConf2.mo -share/locale/rw/LC_MESSAGES/GConf2.mo -share/locale/si/LC_MESSAGES/GConf2.mo -share/locale/sk/LC_MESSAGES/GConf2.mo -share/locale/sl/LC_MESSAGES/GConf2.mo -share/locale/sq/LC_MESSAGES/GConf2.mo -share/locale/sr/LC_MESSAGES/GConf2.mo -share/locale/sr@latin/LC_MESSAGES/GConf2.mo -share/locale/sv/LC_MESSAGES/GConf2.mo -share/locale/ta/LC_MESSAGES/GConf2.mo -share/locale/te/LC_MESSAGES/GConf2.mo -share/locale/th/LC_MESSAGES/GConf2.mo -share/locale/tr/LC_MESSAGES/GConf2.mo -share/locale/uk/LC_MESSAGES/GConf2.mo -share/locale/vi/LC_MESSAGES/GConf2.mo -share/locale/xh/LC_MESSAGES/GConf2.mo -share/locale/yi/LC_MESSAGES/GConf2.mo -share/locale/zh_CN/LC_MESSAGES/GConf2.mo -share/locale/zh_HK/LC_MESSAGES/GConf2.mo -share/locale/zh_TW/LC_MESSAGES/GConf2.mo -share/sgml/gconf/gconf-1.0.dtd -@dirrm share/sgml/gconf -%%LDAP%%@dirrm share/GConf/schema -%%LDAP%%@dirrm share/GConf -@dirrm lib/GConf/2 -@dirrm include/gconf/2/gconf -@dirrm include/gconf/2 -@dirrm etc/gconf/2 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/devel/gio-fam-backend/Makefile b/devel/gio-fam-backend/Makefile deleted file mode 100644 index 178be407d..000000000 --- a/devel/gio-fam-backend/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: gio-fam-backend -# Date Created: 22 December 2007 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/gio-fam-backend/Makefile,v 1.29 2009/03/13 15:15:11 kwm Exp $ -# - -PORTNAME= gio-fam-backend -PORTVERSION= 2.20.0 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/},} \ - ftp://ftp.gtk.org/pub/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/ \ - ftp://ftp.gimp.org/pub/%SUBDIR%/ \ - ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \ - http://www.ameth.org/gimp/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,} -MASTER_SITE_SUBDIR= gtk/v${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTNAME= glib-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= FAM backend for GLib's GIO library - -USE_BZIP2= yes -BUILD_WRKSRC= ${WRKSRC}/gio/fam -INSTALL_WRKSRC= ${BUILD_WRKSRC} -GNU_CONFIGURE= yes -USE_GNOME= gnomehack pkgconfig _glib20 -USE_FAM= yes -USE_GMAKE= yes -MAKE_JOBS_SAFE= yes -CONFIGURE_ARGS= --enable-static --with-libiconv=gnu -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lintl" \ - PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" - -.include <bsd.port.mk> diff --git a/devel/gio-fam-backend/distinfo b/devel/gio-fam-backend/distinfo deleted file mode 100644 index 975758280..000000000 --- a/devel/gio-fam-backend/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/glib-2.20.0.tar.bz2) = 05188e560dbd8bddd568e24ce10dd003 -SHA256 (gnome2/glib-2.20.0.tar.bz2) = 6fb4269a187bee6f7825c358fd6f0e0e99e6ad71f7f995ddcbfe9466ec8f6631 -SIZE (gnome2/glib-2.20.0.tar.bz2) = 4956969 diff --git a/devel/gio-fam-backend/files/patch-gio_fam_Makefile.in b/devel/gio-fam-backend/files/patch-gio_fam_Makefile.in deleted file mode 100644 index 0f6a9e25e..000000000 --- a/devel/gio-fam-backend/files/patch-gio_fam_Makefile.in +++ /dev/null @@ -1,27 +0,0 @@ ---- gio/fam/Makefile.in.orig 2008-01-07 19:40:38.000000000 -0500 -+++ gio/fam/Makefile.in 2008-01-07 19:41:53.000000000 -0500 -@@ -59,9 +59,8 @@ am__installdirs = "$(DESTDIR)$(giomodule - giomoduleLTLIBRARIES_INSTALL = $(INSTALL) - LTLIBRARIES = $(giomodule_LTLIBRARIES) - am__DEPENDENCIES_1 = --libgiofam_la_DEPENDENCIES = $(top_builddir)/gio/libgio-2.0.la \ -- $(top_builddir)/gobject/libgobject-2.0.la \ -- $(top_builddir)/glib/libglib-2.0.la $(am__DEPENDENCIES_1) \ -+libgiofam_la_DEPENDENCIES = \ -+ $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am__objects_1 = - am_libgiofam_la_OBJECTS = libgiofam_la-fam-helper.lo \ -@@ -321,9 +320,9 @@ libgiofam_la_CFLAGS = \ - - libgiofam_la_LDFLAGS = $(module_flags) - libgiofam_la_LIBADD = \ -- $(top_builddir)/gio/libgio-2.0.la \ -- $(top_builddir)/gobject/libgobject-2.0.la \ -- $(top_builddir)/glib/libglib-2.0.la \ -+ -lgio-2.0 \ -+ -lgobject-2.0 \ -+ -lglib-2.0 \ - $(GLIB_LIBS) \ - $(FAM_LIBS) \ - $(NULL) diff --git a/devel/gio-fam-backend/pkg-descr b/devel/gio-fam-backend/pkg-descr deleted file mode 100644 index b44b5d557..000000000 --- a/devel/gio-fam-backend/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -gio-fam-backend provides a file Alteration Monitor (FAM) backend module for -GLib's GIO subsystem. diff --git a/devel/gio-fam-backend/pkg-plist b/devel/gio-fam-backend/pkg-plist deleted file mode 100644 index 7e06d5a98..000000000 --- a/devel/gio-fam-backend/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -lib/gio/modules/libgiofam.a -lib/gio/modules/libgiofam.la -lib/gio/modules/libgiofam.so diff --git a/devel/glade3/Makefile b/devel/glade3/Makefile deleted file mode 100644 index 5d6d487cc..000000000 --- a/devel/glade3/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: glade3 -# Date created: Sun May 22 17:22:53 CEST 2005 -# Whom: Koop Mast <kwm@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/glade3/Makefile,v 1.41 2009/03/17 17:00:36 kwm Exp $ -# - -PORTNAME= glade3 -PORTVERSION= 3.6.1 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A user interface builder for GTK+/GNOME - -INSTALLS_ICONS= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnometarget gtk20 libxml2 gnomeprefix gnomehack \ - gnomedocutils desktopfileutils ltverhack -WANT_GNOME= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" - -DOCSDIR= ${PREFIX}/share/doc/gladeui - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mlibgnomeui}!="" -USE_GNOME+= libgnomeui -CONFIGURE_ARGS+=--enable-gnome -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gnome -.else -CONFIGURE_ARGS+=--disable-gnome -.endif - -#.if ${HAVE_GNOME:Mpygtk2}!="" -#USE_PYTHON= yes -#.include "${PORTSDIR}/Mk/bsd.python.mk" -#USE_GNOME+= pygtk2 -#PLIST_SUB+= PYTHON:="" -#CONFIGURE_ARGS+=--enable-python -#.else -CONFIGURE_ARGS+=--disable-python -PLIST_SUB+= PYTHON:="@comment " -#.endif - -post-install: - ${MKDIR} ${PREFIX}/lib/glade3/bindings - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/devel/glade3/distinfo b/devel/glade3/distinfo deleted file mode 100644 index b2f41be4d..000000000 --- a/devel/glade3/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/glade3-3.6.1.tar.bz2) = b145889e43319dabffe6ae4ac74b2d42 -SHA256 (gnome2/glade3-3.6.1.tar.bz2) = e105d09e8098a0d6d541a7a84a841f8b28b48828236ebed1af6963bf1270feba -SIZE (gnome2/glade3-3.6.1.tar.bz2) = 2265057 diff --git a/devel/glade3/pkg-descr b/devel/glade3/pkg-descr deleted file mode 100644 index b74a7247c..000000000 --- a/devel/glade3/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Glade is a RAD tool to enable quick & easy development of user interfaces -for GTK+/GNOME. It can generate the C source code needed to create -the interfaces designed within Glade's interface editor. - -WWW: http://glade.gnome.org/ diff --git a/devel/glade3/pkg-plist b/devel/glade3/pkg-plist deleted file mode 100644 index 4a1793fc1..000000000 --- a/devel/glade3/pkg-plist +++ /dev/null @@ -1,568 +0,0 @@ -bin/glade-3 -include/libgladeui-1.0/gladeui/glade-accels.h -include/libgladeui-1.0/gladeui/glade-activatable-editor.h -include/libgladeui-1.0/gladeui/glade-app.h -include/libgladeui-1.0/gladeui/glade-attributes.h -include/libgladeui-1.0/gladeui/glade-base-editor.h -include/libgladeui-1.0/gladeui/glade-builtins.h -include/libgladeui-1.0/gladeui/glade-button-editor.h -include/libgladeui-1.0/gladeui/glade-catalog.h -include/libgladeui-1.0/gladeui/glade-cell-renderer-button.h -include/libgladeui-1.0/gladeui/glade-cell-renderer-editor.h -include/libgladeui-1.0/gladeui/glade-clipboard-view.h -include/libgladeui-1.0/gladeui/glade-clipboard.h -include/libgladeui-1.0/gladeui/glade-column-types.h -include/libgladeui-1.0/gladeui/glade-command.h -include/libgladeui-1.0/gladeui/glade-cursor.h -include/libgladeui-1.0/gladeui/glade-custom.h -include/libgladeui-1.0/gladeui/glade-debug.h -include/libgladeui-1.0/gladeui/glade-design-layout.h -include/libgladeui-1.0/gladeui/glade-design-view.h -include/libgladeui-1.0/gladeui/glade-displayable-values.h -include/libgladeui-1.0/gladeui/glade-editable.h -include/libgladeui-1.0/gladeui/glade-editor-property.h -include/libgladeui-1.0/gladeui/glade-editor-table.h -include/libgladeui-1.0/gladeui/glade-editor.h -include/libgladeui-1.0/gladeui/glade-entry-editor.h -include/libgladeui-1.0/gladeui/glade-fixed.h -include/libgladeui-1.0/gladeui/glade-gtk.h -include/libgladeui-1.0/gladeui/glade-icon-factory-editor.h -include/libgladeui-1.0/gladeui/glade-icon-sources.h -include/libgladeui-1.0/gladeui/glade-image-editor.h -include/libgladeui-1.0/gladeui/glade-image-item-editor.h -include/libgladeui-1.0/gladeui/glade-inspector.h -include/libgladeui-1.0/gladeui/glade-label-editor.h -include/libgladeui-1.0/gladeui/glade-model-data.h -include/libgladeui-1.0/gladeui/glade-name-context.h -include/libgladeui-1.0/gladeui/glade-palette-item.h -include/libgladeui-1.0/gladeui/glade-palette.h -include/libgladeui-1.0/gladeui/glade-parameter.h -include/libgladeui-1.0/gladeui/glade-placeholder.h -include/libgladeui-1.0/gladeui/glade-project.h -include/libgladeui-1.0/gladeui/glade-property-class.h -include/libgladeui-1.0/gladeui/glade-property.h -include/libgladeui-1.0/gladeui/glade-signal-editor.h -include/libgladeui-1.0/gladeui/glade-signal.h -include/libgladeui-1.0/gladeui/glade-store-editor.h -include/libgladeui-1.0/gladeui/glade-text-button.h -include/libgladeui-1.0/gladeui/glade-tool-button-editor.h -include/libgladeui-1.0/gladeui/glade-treeview-editor.h -include/libgladeui-1.0/gladeui/glade-utils.h -include/libgladeui-1.0/gladeui/glade-widget-action.h -include/libgladeui-1.0/gladeui/glade-widget-adaptor.h -include/libgladeui-1.0/gladeui/glade-widget.h -include/libgladeui-1.0/gladeui/glade-xml-utils.h -include/libgladeui-1.0/gladeui/glade.h -%%GNOME:%%lib/glade3/modules/libgladegnome.a -%%GNOME:%%lib/glade3/modules/libgladegnome.la -%%GNOME:%%lib/glade3/modules/libgladegnome.so -lib/glade3/modules/libgladegtk.a -lib/glade3/modules/libgladegtk.la -lib/glade3/modules/libgladegtk.so -lib/libgladeui-1.a -lib/libgladeui-1.la -lib/libgladeui-1.so -lib/libgladeui-1.so.9 -libdata/pkgconfig/gladeui-1.0.pc -share/applications/glade-3.desktop -%%DOCSDIR%%/GladeApp.html -share/doc/gladeui/GladeBaseEditor.html -%%DOCSDIR%%/GladeClipboard.html -%%DOCSDIR%%/GladeClipboardView.html -%%DOCSDIR%%/GladeCommand.html -share/doc/gladeui/GladeDesignView.html -%%DOCSDIR%%/GladeEditor.html -%%DOCSDIR%%/GladeEditorProperty.html -%%DOCSDIR%%/GladeFixed.html -%%DOCSDIR%%/GladeInspector.html -%%DOCSDIR%%/GladePalette.html -%%DOCSDIR%%/GladePlaceholder.html -%%DOCSDIR%%/GladeProject.html -%%DOCSDIR%%/GladeWidget.html -share/doc/gladeui/GladeWidgetAction.html -%%DOCSDIR%%/catalog.html -%%DOCSDIR%%/catalogintro.html -%%DOCSDIR%%/core.html -%%DOCSDIR%%/dockables.html -%%DOCSDIR%%/gladeui-GladePropertyClass.html -%%DOCSDIR%%/gladeui-GladeWidgetAdaptor.html -%%DOCSDIR%%/gladeui-glade-parameter.html -%%DOCSDIR%%/gladeui-glade-property.html -%%DOCSDIR%%/gladeui-glade-signal-editor.html -%%DOCSDIR%%/gladeui-glade-utils.html -share/doc/gladeui/gladeui-glade-xml-utils.html -%%DOCSDIR%%/gladeui.devhelp -%%DOCSDIR%%/gladeui.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/ix01.html -%%DOCSDIR%%/left.png -%%DOCSDIR%%/misc.html -%%DOCSDIR%%/properties.html -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%DOCSDIR%%/widgetclasses.html -%%GNOME:%%%%DATADIR%%/catalogs/bonobo.xml -%%GNOME:%%%%DATADIR%%/catalogs/bonobo.xml.in -%%GNOME:%%%%DATADIR%%/catalogs/canvas.xml -%%GNOME:%%%%DATADIR%%/catalogs/canvas.xml.in -%%DATADIR%%/catalogs/glade-catalog.dtd -%%GNOME:%%%%DATADIR%%/catalogs/gnome.xml -%%GNOME:%%%%DATADIR%%/catalogs/gnome.xml.in -%%DATADIR%%/catalogs/gtk+.xml -%%DATADIR%%/catalogs/gtk+.xml.in -%%DATADIR%%/catalogs/gtkunixprint.xml -%%DATADIR%%/catalogs/gtkunixprint.xml.in -%%DATADIR%%/pixmaps/atk.png -%%DATADIR%%/pixmaps/devhelp.png -%%DATADIR%%/pixmaps/drag-resize.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-bonobo-dock.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-bonobo-dockitem.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-about.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-app.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-appbar.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-canvas.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-colorpicker.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-dateedit.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-dialog.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-druid.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-druidpageedge.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-druidpagestandard.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-entry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-fileentry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-fontpicker.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-href.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-iconentry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-iconlist.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-iconselection.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-messagebox.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-pixmap.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-pixmapentry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gnome-propertybox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-aboutdialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-accellabel.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-action.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-actiongroup.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-alignment.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-arrow.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-aspectframe.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-assistant.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-button.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-calendar.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-cellrendereraccel.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-cellrenderercombo.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-cellrendererpixbuf.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-cellrendererprogress.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-cellrendererspin.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-cellrenderertext.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-cellrenderertoggle.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-checkbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-checkmenuitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-clist.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-colorbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-colorselection.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-colorselectiondialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-combo.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-combobox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-comboboxentry.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-curve.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-custom.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-default.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-dialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-drawingarea.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-entry.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-entrycompletion.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-eventbox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-expander.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-filechooserbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-filechooserdialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-filechooserwidget.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-fileselection.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-fixed.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-fontbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-fontselection.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-fontselectiondialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-frame.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-gammacurve.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-handlebox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-hbox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-hbuttonbox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-hpaned.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-hruler.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-hscale.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-hscrollbar.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-hseparator.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-iconfactory.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-iconview.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-image.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-imagemenuitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-inputdialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-label.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-layout.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-linkbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-list.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-listitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-liststore.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-menu.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-menubar.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-menuitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-menutoolbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-messagedialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-notebook.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-optionmenu.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-pagesetupdialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-printdialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-progressbar.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-radioaction.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-radiobutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-radiomenuitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-radiotoolbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-recentaction.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-recentchooser.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-recentchooserdialog.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-ruler.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-scalebutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-scrolledwindow.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-separatormenuitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-separatortoolitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-spinbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-statusbar.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-table.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-textview.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-toggleaction.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-togglebutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-toggletoolbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-toolbar.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-toolbutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-toolitem.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-treestore.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-treeview.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-treeviewcolumn.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-vbox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-vbuttonbox.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-viewport.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-volumebutton.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-vpaned.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-vruler.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-vscale.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-vscrollbar.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-vseparator.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-window.png -%%DATADIR%%/pixmaps/hicolor/16x16/actions/widget-gtk-windowgroup.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-bonobo-dock.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-bonobo-dockitem.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-about.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-app.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-appbar.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-canvas.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-colorpicker.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-dateedit.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-dialog.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-druid.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-druidpageedge.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-druidpagestandard.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-entry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-fileentry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-fontpicker.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-href.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-iconentry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-iconlist.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-iconselection.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-messagebox.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-pixmap.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-pixmapentry.png -%%GNOME:%%%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gnome-propertybox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-aboutdialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-accellabel.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-action.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-actiongroup.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-alignment.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-arrow.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-aspectframe.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-assistant.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-button.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-calendar.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-cellrendereraccel.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-cellrenderercombo.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-cellrendererpixbuf.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-cellrendererprogress.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-cellrendererspin.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-cellrenderertext.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-cellrenderertoggle.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-checkbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-checkmenuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-clist.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-colorbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-colorselection.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-colorselectiondialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-combo.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-combobox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-comboboxentry.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-curve.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-custom.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-default.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-dialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-drawingarea.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-entry.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-entrycompletion.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-eventbox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-expander.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-filechooserbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-filechooserdialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-filechooserwidget.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-fileselection.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-fixed.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-fontbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-fontselection.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-fontselectiondialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-frame.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-gammacurve.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-handlebox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-hbox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-hbuttonbox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-hpaned.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-hruler.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-hscale.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-hscrollbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-hseparator.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-iconfactory.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-iconview.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-image.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-imagemenuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-inputdialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-label.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-layout.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-linkbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-list.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-listitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-liststore.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-menu.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-menubar.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-menuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-menutoolbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-messagedialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-notebook.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-optionmenu.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-pagesetupdialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-printdialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-progressbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-radioaction.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-radiobutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-radiomenuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-radiotoolbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-recentaction.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-recentchooser.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-recentchooserdialog.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-ruler.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-scalebutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-scrolledwindow.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-separatormenuitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-separatortoolitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-spinbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-statusbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-table.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-textview.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-toggleaction.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-togglebutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-toggletoolbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-toolbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-toolbutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-toolitem.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-treestore.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-treeview.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-vbox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-vbuttonbox.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-viewport.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-volumebutton.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-vpaned.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-vruler.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-vscale.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-vscrollbar.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-vseparator.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-window.png -%%DATADIR%%/pixmaps/hicolor/22x22/actions/widget-gtk-windowgroup.png -%%DATADIR%%/pixmaps/plus.png -%%DATADIR%%/pixmaps/selector.png -share/gnome/help/glade/C/figures/main-window.png -share/gnome/help/glade/C/glade.xml -share/gnome/help/glade/C/legal.xml -share/gnome/help/glade/bg/figures/main-window.png -share/gnome/help/glade/bg/glade.xml -share/gnome/help/glade/bg/legal.xml -share/gnome/help/glade/de/figures/main-window.png -share/gnome/help/glade/de/glade.xml -share/gnome/help/glade/de/legal.xml -share/gnome/help/glade/el/figures/main-window.png -share/gnome/help/glade/el/glade.xml -share/gnome/help/glade/el/legal.xml -share/gnome/help/glade/en_GB/figures/main-window.png -share/gnome/help/glade/en_GB/glade.xml -share/gnome/help/glade/en_GB/legal.xml -share/gnome/help/glade/eu/figures/main-window.png -share/gnome/help/glade/eu/glade.xml -share/gnome/help/glade/eu/legal.xml -share/gnome/help/glade/es/figures/main-window.png -share/gnome/help/glade/es/glade.xml -share/gnome/help/glade/es/legal.xml -share/gnome/help/glade/fr/figures/main-window.png -share/gnome/help/glade/fr/glade.xml -share/gnome/help/glade/fr/legal.xml -share/gnome/help/glade/hi/figures/main-window.png -share/gnome/help/glade/hi/glade.xml -share/gnome/help/glade/hi/legal.xml -share/gnome/help/glade/it/figures/main-window.png -share/gnome/help/glade/it/glade.xml -share/gnome/help/glade/it/legal.xml -share/gnome/help/glade/oc/figures/main-window.png -share/gnome/help/glade/oc/glade.xml -share/gnome/help/glade/oc/legal.xml -share/gnome/help/glade/pt_BR/figures/main-window.png -share/gnome/help/glade/pt_BR/glade.xml -share/gnome/help/glade/pt_BR/legal.xml -share/gnome/help/glade/ru/figures/main-window.png -share/gnome/help/glade/ru/glade.xml -share/gnome/help/glade/ru/legal.xml -share/gnome/help/glade/sv/figures/main-window.png -share/gnome/help/glade/sv/glade.xml -share/gnome/help/glade/sv/legal.xml -share/icons/hicolor/16x16/apps/glade-3.png -share/icons/hicolor/22x22/apps/glade-3.png -share/icons/hicolor/24x24/apps/glade-3.png -share/icons/hicolor/32x32/apps/glade-3.png -share/icons/hicolor/48x48/apps/glade-3.png -share/icons/hicolor/scalable/apps/glade-3.svg -share/locale/ar/LC_MESSAGES/glade3.mo -share/locale/az/LC_MESSAGES/glade3.mo -share/locale/bg/LC_MESSAGES/glade3.mo -share/locale/bn/LC_MESSAGES/glade3.mo -share/locale/bn_IN/LC_MESSAGES/glade3.mo -share/locale/ca/LC_MESSAGES/glade3.mo -share/locale/cs/LC_MESSAGES/glade3.mo -share/locale/da/LC_MESSAGES/glade3.mo -share/locale/de/LC_MESSAGES/glade3.mo -share/locale/el/LC_MESSAGES/glade3.mo -share/locale/en_CA/LC_MESSAGES/glade3.mo -share/locale/en_GB/LC_MESSAGES/glade3.mo -share/locale/es/LC_MESSAGES/glade3.mo -share/locale/et/LC_MESSAGES/glade3.mo -share/locale/eu/LC_MESSAGES/glade3.mo -share/locale/fi/LC_MESSAGES/glade3.mo -share/locale/fr/LC_MESSAGES/glade3.mo -share/locale/gl/LC_MESSAGES/glade3.mo -share/locale/gu/LC_MESSAGES/glade3.mo -share/locale/he/LC_MESSAGES/glade3.mo -share/locale/hi/LC_MESSAGES/glade3.mo -share/locale/hu/LC_MESSAGES/glade3.mo -share/locale/it/LC_MESSAGES/glade3.mo -share/locale/ja/LC_MESSAGES/glade3.mo -share/locale/ko/LC_MESSAGES/glade3.mo -share/locale/lt/LC_MESSAGES/glade3.mo -share/locale/lv/LC_MESSAGES/glade3.mo -share/locale/mai/LC_MESSAGES/glade3.mo -share/locale/mk/LC_MESSAGES/glade3.mo -share/locale/ml/LC_MESSAGES/glade3.mo -share/locale/mr/LC_MESSAGES/glade3.mo -share/locale/ms/LC_MESSAGES/glade3.mo -share/locale/nb/LC_MESSAGES/glade3.mo -share/locale/nl/LC_MESSAGES/glade3.mo -share/locale/nn/LC_MESSAGES/glade3.mo -share/locale/oc/LC_MESSAGES/glade3.mo -share/locale/or/LC_MESSAGES/glade3.mo -share/locale/pa/LC_MESSAGES/glade3.mo -share/locale/pl/LC_MESSAGES/glade3.mo -share/locale/pt/LC_MESSAGES/glade3.mo -share/locale/pt_BR/LC_MESSAGES/glade3.mo -share/locale/ru/LC_MESSAGES/glade3.mo -share/locale/si/LC_MESSAGES/glade3.mo -share/locale/sk/LC_MESSAGES/glade3.mo -share/locale/sl/LC_MESSAGES/glade3.mo -share/locale/sq/LC_MESSAGES/glade3.mo -share/locale/sv/LC_MESSAGES/glade3.mo -share/locale/ta/LC_MESSAGES/glade3.mo -share/locale/te/LC_MESSAGES/glade3.mo -share/locale/th/LC_MESSAGES/glade3.mo -share/locale/tr/LC_MESSAGES/glade3.mo -share/locale/uk/LC_MESSAGES/glade3.mo -share/locale/vi/LC_MESSAGES/glade3.mo -share/locale/zh_CN/LC_MESSAGES/glade3.mo -share/locale/zh_HK/LC_MESSAGES/glade3.mo -share/locale/zh_TW/LC_MESSAGES/glade3.mo -share/omf/glade/glade-C.omf -share/omf/glade/glade-bg.omf -share/omf/glade/glade-de.omf -share/omf/glade/glade-el.omf -share/omf/glade/glade-en_GB.omf -share/omf/glade/glade-eu.omf -share/omf/glade/glade-es.omf -share/omf/glade/glade-fr.omf -share/omf/glade/glade-hi.omf -share/omf/glade/glade-it.omf -share/omf/glade/glade-oc.omf -share/omf/glade/glade-pt_BR.omf -share/omf/glade/glade-ru.omf -share/omf/glade/glade-sv.omf -@dirrm share/omf/glade -@dirrm share/gnome/help/glade/sv/figures -@dirrm share/gnome/help/glade/sv -@dirrm share/gnome/help/glade/ru/figures -@dirrm share/gnome/help/glade/ru -@dirrm share/gnome/help/glade/pt_BR/figures -@dirrm share/gnome/help/glade/pt_BR -@dirrm share/gnome/help/glade/oc/figures -@dirrm share/gnome/help/glade/oc -@dirrm share/gnome/help/glade/it/figures -@dirrm share/gnome/help/glade/it -@dirrm share/gnome/help/glade/hi/figures -@dirrm share/gnome/help/glade/hi -@dirrm share/gnome/help/glade/fr/figures -@dirrm share/gnome/help/glade/fr -@dirrm share/gnome/help/glade/es/figures -@dirrm share/gnome/help/glade/es -@dirrm share/gnome/help/glade/eu/figures -@dirrm share/gnome/help/glade/eu -@dirrm share/gnome/help/glade/en_GB/figures -@dirrm share/gnome/help/glade/en_GB -@dirrm share/gnome/help/glade/el/figures -@dirrm share/gnome/help/glade/el -@dirrm share/gnome/help/glade/de/figures -@dirrm share/gnome/help/glade/de -@dirrm share/gnome/help/glade/bg/figures -@dirrm share/gnome/help/glade/bg -@dirrm share/gnome/help/glade/C/figures -@dirrm share/gnome/help/glade/C -@dirrm share/gnome/help/glade -@dirrm %%DATADIR%%/pixmaps/hicolor/22x22/actions -@dirrm %%DATADIR%%/pixmaps/hicolor/22x22 -@dirrm %%DATADIR%%/pixmaps/hicolor/16x16/actions -@dirrm %%DATADIR%%/pixmaps/hicolor/16x16 -@dirrm %%DATADIR%%/pixmaps/hicolor -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/catalogs -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@dirrm lib/glade3/modules -@dirrm lib/glade3/bindings -@dirrm lib/glade3 -@dirrm include/libgladeui-1.0/gladeui -@dirrm include/libgladeui-1.0 -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/cs/LC_MESSAGES -@dirrmtry share/locale/cs -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/devel/glib20/Makefile b/devel/glib20/Makefile deleted file mode 100644 index cf8ae24bd..000000000 --- a/devel/glib20/Makefile +++ /dev/null @@ -1,78 +0,0 @@ -# New ports collection makefile for: glib13 -# Date Created: 28 July 1998 -# Whom: Vanilla I. Shu <vanilla@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/glib20/Makefile,v 1.142 2009/03/13 15:15:11 kwm Exp $ -# -# !! DON'T FORGET ABOUT devel/gio-fam-backend !! - -PORTNAME= glib -PORTVERSION= 2.20.0 -PORTREVISION?= 0 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/},} \ - ftp://ftp.gtk.org/pub/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/ \ - ftp://ftp.gimp.org/pub/%SUBDIR%/ \ - ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \ - http://www.ameth.org/gimp/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,} -MASTER_SITE_SUBDIR= gtk/v${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Some useful routines of C programming (current stable version) - -LATEST_LINK= glib20 - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre - -USE_GETTEXT= yes -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -USE_GNOME= gnomehack pkgconfig ltverhack -USE_GMAKE= yes -MAKE_JOBS_SAFE= yes -USE_PYTHON= yes -USE_PERL5= yes -CONFIGURE_ARGS= --enable-static --with-libiconv=gnu \ - --disable-gtk-doc --with-html-dir=${PREFIX}/share/doc \ - --disable-man --without-xml-catalog \ - --with-pcre=system \ - --disable-fam -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lintl" \ - PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" - -OPTIONS= COLLATION_FIX "fix string collation" off - -.include <bsd.port.pre.mk> - -# Let glib use asm code for implementing atomic ops on i386 and amd64. -.if ${ARCH} == "i386" -GLIB_ARCH= i486 -.elif ${ARCH} == "amd64" -GLIB_ARCH= x86_64 -.else -GLIB_ARCH= ${ARCH} -.endif -CONFIGURE_TARGET=${GLIB_ARCH}-portbld-freebsd${OSREL} - -.if defined(WITH_COLLATION_FIX) -LIB_DEPENDS+= icui18n:${PORTSDIR}/devel/icu -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-glib_Makefile.in \ - ${FILESDIR}/extra-patch-glib_gunicollate.c -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/glib/gutils.c - -.include <bsd.port.post.mk> - -.endif diff --git a/devel/glib20/distinfo b/devel/glib20/distinfo deleted file mode 100644 index 975758280..000000000 --- a/devel/glib20/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/glib-2.20.0.tar.bz2) = 05188e560dbd8bddd568e24ce10dd003 -SHA256 (gnome2/glib-2.20.0.tar.bz2) = 6fb4269a187bee6f7825c358fd6f0e0e99e6ad71f7f995ddcbfe9466ec8f6631 -SIZE (gnome2/glib-2.20.0.tar.bz2) = 4956969 diff --git a/devel/glib20/files/extra-patch-glib_Makefile.in b/devel/glib20/files/extra-patch-glib_Makefile.in deleted file mode 100644 index 4791780e2..000000000 --- a/devel/glib20/files/extra-patch-glib_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- glib/Makefile.in.orig 2008-12-01 16:15:34.000000000 -0500 -+++ glib/Makefile.in 2008-12-01 16:16:03.000000000 -0500 -@@ -272,7 +272,7 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_P - INSTOBJEXT = @INSTOBJEXT@ - INTLLIBS = @INTLLIBS@ - LD = @LD@ --LDFLAGS = @LDFLAGS@ -+LDFLAGS = @LDFLAGS@ -licui18n - LIBOBJS = @LIBOBJS@ - LIBS = @LIBS@ - LIBTOOL = @LIBTOOL@ diff --git a/devel/glib20/files/extra-patch-glib_gunicollate.c b/devel/glib20/files/extra-patch-glib_gunicollate.c deleted file mode 100644 index dfcb99209..000000000 --- a/devel/glib20/files/extra-patch-glib_gunicollate.c +++ /dev/null @@ -1,116 +0,0 @@ ---- glib/gunicollate.c.orig Thu Jun 8 17:24:10 2006 -+++ glib/gunicollate.c Thu Oct 19 20:12:50 2006 -@@ -26,10 +26,57 @@ - #include <wchar.h> - #endif - -+#include <unicode/umachine.h> -+#include <unicode/ustring.h> -+#include <unicode/ucol.h> -+ - #include "glib.h" - #include "gunicodeprivate.h" - #include "galias.h" - -+static gboolean icu_collator_initialized = FALSE; -+static UCollator *icu_collator = NULL; -+G_LOCK_DEFINE_STATIC(icu_collator); -+ -+static void -+init_icu_collator (void) -+{ -+ G_LOCK(icu_collator); -+ if (! icu_collator_initialized) -+ { -+ UErrorCode error = U_ZERO_ERROR; -+ -+ icu_collator = ucol_open(NULL, &error); -+ if (icu_collator == NULL) -+ g_warning("unable to initialize the ICU collator (%s), FreeBSD collation routines will be used", u_errorName(error)); -+ -+ icu_collator_initialized = TRUE; -+ } -+ G_UNLOCK(icu_collator); -+} -+ -+static UChar * -+utf8_to_uchar (const char *str, int32_t len, int32_t *result_len) -+{ -+ UErrorCode error = U_ZERO_ERROR; -+ UChar *result = NULL; -+ -+ u_strFromUTF8(NULL, 0, result_len, str, len, &error); -+ if (error <= U_ZERO_ERROR || error == U_BUFFER_OVERFLOW_ERROR) -+ { -+ error = U_ZERO_ERROR; -+ result = g_new(UChar, *result_len); -+ u_strFromUTF8(result, *result_len, NULL, str, len, &error); -+ if (error > U_ZERO_ERROR) -+ { -+ g_free(result); -+ result = NULL; -+ } -+ } -+ -+ return result; -+} -+ - #ifdef _MSC_VER - /* Workaround for bug in MSVCR80.DLL */ - static size_t -@@ -94,6 +141,28 @@ - g_return_val_if_fail (str1 != NULL, 0); - g_return_val_if_fail (str2 != NULL, 0); - -+ init_icu_collator(); -+ if (icu_collator != NULL) -+ { -+ int32_t wstr1_len; -+ UChar *wstr1 = utf8_to_uchar(str1, -1, &wstr1_len); -+ if (wstr1 != NULL) -+ { -+ int32_t wstr2_len; -+ UChar *wstr2 = utf8_to_uchar(str2, -1, &wstr2_len); -+ if (wstr2 != NULL) -+ { -+ result = ucol_strcoll(icu_collator, wstr1, wstr1_len, wstr2, wstr2_len); -+ -+ g_free(wstr1); -+ g_free(wstr2); -+ -+ return result; -+ } -+ g_free(wstr1); -+ } -+ } -+ - str1_norm = g_utf8_normalize (str1, -1, G_NORMALIZE_ALL_COMPOSE); - str2_norm = g_utf8_normalize (str2, -1, G_NORMALIZE_ALL_COMPOSE); - -@@ -235,6 +304,26 @@ - gchar *str_norm; - - g_return_val_if_fail (str != NULL, NULL); -+ -+ init_icu_collator(); -+ if (icu_collator != NULL) -+ { -+ int32_t wstr_len; -+ UChar *wstr = utf8_to_uchar(str, len, &wstr_len); -+ if (wstr != NULL) -+ { -+ int32_t result_len; -+ -+ /* get size of result */ -+ result_len = ucol_getSortKey(icu_collator, wstr, wstr_len, NULL, 0); -+ -+ result = g_new(char, result_len); -+ ucol_getSortKey(icu_collator, wstr, wstr_len, result, result_len); -+ g_free(wstr); -+ -+ return result; -+ } -+ } - - str_norm = g_utf8_normalize (str, len, G_NORMALIZE_ALL_COMPOSE); - diff --git a/devel/glib20/files/patch-ae b/devel/glib20/files/patch-ae deleted file mode 100644 index 0345b8acd..000000000 --- a/devel/glib20/files/patch-ae +++ /dev/null @@ -1,33 +0,0 @@ ---- configure.orig 2008-11-24 13:44:42.000000000 -0600 -+++ configure 2008-11-24 13:50:51.000000000 -0600 -@@ -29576,6 +29576,12 @@ - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - $ac_includes_default -+#ifdef HAVE_SYS_PARAM_H -+#include <sys/param.h> -+#endif -+#ifdef HAVE_SYS_MOUNT_H -+#include <sys/mount.h> -+#endif - int - main () - { -@@ -31407,7 +31413,7 @@ - - - --for ac_func in chown lchown fchmod fchown link statvfs statfs utimes getgrgid getpwuid -+for ac_func in chown lchown fchmod fchown link statvfs statfs utimes getgrgid getpwuid sysctlbyname - do - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` - { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 -@@ -36810,6 +36816,8 @@ - ;; - esac - fi -+ G_THREAD_CFLAGS="${PTHREAD_CFLAGS}" -+ G_THREAD_LIBS="${PTHREAD_LIBS}" - - if test x"$G_THREAD_CFLAGS" = x; then - diff --git a/devel/glib20/files/patch-ag b/devel/glib20/files/patch-ag deleted file mode 100644 index 5ee7fe3d5..000000000 --- a/devel/glib20/files/patch-ag +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.in.orig 2008-02-12 00:16:23.000000000 +0100 -+++ Makefile.in 2008-02-12 00:16:23.000000000 +0100 -@@ -338,7 +338,7 @@ EXTRA_DIST = ChangeLog.pre-2-14 ChangeLo - gio-2.0-uninstalled.pc.in gio-unix-2.0-uninstalled.pc.in - TEST_PROGS = - AUTOMAKE_OPTIONS = 1.7 --SUBDIRS = . m4macros glib gmodule gthread gobject gio tests po docs -+SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs - DIST_SUBDIRS = $(SUBDIRS) build - bin_SCRIPTS = glib-gettextize - AM_CPPFLAGS = \ -@@ -356,7 +356,8 @@ BUILT_EXTRA_DIST = \ - config.h.win32 \ - gtk-doc.make - --configexecincludedir = $(libdir)/glib-2.0/include -+glibincludedir = $(includedir)/glib-2.0 -+configexecincludedir = $(glibincludedir) - configexecinclude_DATA = glibconfig.h - CONFIGURE_DEPENDENCIES = acglib.m4 - BUILT_SOURCES = stamp-gc-h #note: not glibconfig.h diff --git a/devel/glib20/files/patch-ah b/devel/glib20/files/patch-ah deleted file mode 100644 index 3784d16b8..000000000 --- a/devel/glib20/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- docs/reference/Makefile.in.orig 2007-12-21 16:54:10.000000000 -0500 -+++ docs/reference/Makefile.in 2007-12-21 16:54:40.000000000 -0500 -@@ -268,7 +268,7 @@ GTESTER_REPORT = $(top_builddir)/glib/gt - # initialize variables for unconditional += appending - EXTRA_DIST = - TEST_PROGS = --SUBDIRS = glib gobject gio -+SUBDIRS = #glib gobject gio - all: all-recursive - - .SUFFIXES: diff --git a/devel/glib20/files/patch-config.h.in b/devel/glib20/files/patch-config.h.in deleted file mode 100644 index 3c2bc5d26..000000000 --- a/devel/glib20/files/patch-config.h.in +++ /dev/null @@ -1,12 +0,0 @@ ---- config.h.in.orig 2008-03-18 18:24:24.000000000 -0400 -+++ config.h.in 2008-03-18 18:24:59.000000000 -0400 -@@ -197,6 +197,9 @@ - /* Define to 1 if you have the `getpwuid' function. */ - #undef HAVE_GETPWUID - -+/* Define to 1 if you have the `sysctlbyname' function. */ -+#undef HAVE_SYSCTLBYNAME -+ - /* Define if the GNU gettext() function is already present or preinstalled. */ - #undef HAVE_GETTEXT - diff --git a/devel/glib20/files/patch-gio_gunixmount.c b/devel/glib20/files/patch-gio_gunixmount.c deleted file mode 100644 index b9bfe143e..000000000 --- a/devel/glib20/files/patch-gio_gunixmount.c +++ /dev/null @@ -1,21 +0,0 @@ ---- gio/gunixmount.c.orig 2007-12-23 15:53:50.000000000 -0500 -+++ gio/gunixmount.c 2007-12-23 15:52:52.000000000 -0500 -@@ -372,12 +372,18 @@ g_unix_mount_eject (GMount * - gpointer user_data) - { - GUnixMount *unix_mount = G_UNIX_MOUNT (mount); -+#ifndef __FreeBSD__ - char *argv[] = {"eject", NULL, NULL}; - - if (unix_mount->mount_path != NULL) - argv[1] = unix_mount->mount_path; - else - argv[1] = unix_mount->device_path; -+#else -+ char *argv[] = {"cdcontrol", "-f", NULL, "eject", NULL}; -+ -+ argv[2] = unix_mount->device_path; -+#endif - - return eject_unmount_do (mount, cancellable, callback, user_data, argv); - } diff --git a/devel/glib20/files/patch-gio_gunixmounts.c b/devel/glib20/files/patch-gio_gunixmounts.c deleted file mode 100644 index 9b6fa2df3..000000000 --- a/devel/glib20/files/patch-gio_gunixmounts.c +++ /dev/null @@ -1,148 +0,0 @@ ---- ggio/unixmounts.c.orig 2008-03-10 20:31:58.000000000 -0400 -+++ gio/gunixmounts.c 2008-03-19 22:31:23.000000000 -0400 -@@ -128,6 +128,9 @@ struct _GUnixMountMonitor { - - GFileMonitor *fstab_monitor; - GFileMonitor *mtab_monitor; -+ -+ guint mount_poller_source; -+ GList *mount_poller_mounts; - }; - - struct _GUnixMountMonitorClass { -@@ -139,6 +142,8 @@ static GUnixMountMonitor *the_mount_moni - static GList *_g_get_unix_mounts (void); - static GList *_g_get_unix_mount_points (void); - -+static guint64 mount_poller_time = 0; -+ - G_DEFINE_TYPE (GUnixMountMonitor, g_unix_mount_monitor, G_TYPE_OBJECT); - - #define MOUNT_POLL_INTERVAL 4000 -@@ -165,6 +170,7 @@ G_DEFINE_TYPE (GUnixMountMonitor, g_unix - #endif - - #if defined(HAVE_GETMNTINFO) && defined(HAVE_FSTAB_H) && defined(HAVE_SYS_MOUNT_H) -+#include <sys/param.h> - #include <sys/ucred.h> - #include <sys/mount.h> - #include <fstab.h> -@@ -215,20 +221,28 @@ g_unix_is_mount_path_system_internal (co - "/", /* we already have "Filesystem root" in Nautilus */ - "/bin", - "/boot", -+ "/compat/linux/proc", -+ "/compat/linux/sys", - "/dev", - "/etc", - "/home", - "/lib", - "/lib64", -+ "/libexec", - "/media", - "/mnt", - "/opt", -+ "/rescue", - "/root", - "/sbin", - "/srv", - "/tmp", - "/usr", -+ "/usr/X11R6", - "/usr/local", -+ "/usr/obj", -+ "/usr/ports", -+ "/usr/src", - "/var", - "/var/log/audit", /* https://bugzilla.redhat.com/show_bug.cgi?id=333041 */ - "/var/tmp", /* https://bugzilla.redhat.com/show_bug.cgi?id=335241 */ -@@ -988,6 +1002,10 @@ get_mounts_timestamp (void) - if (stat (monitor_file, &buf) == 0) - return (guint64)buf.st_mtime; - } -+ else -+ { -+ return mount_poller_time; -+ } - return 0; - } - -@@ -1129,6 +1147,13 @@ g_unix_mount_monitor_finalize (GObject * - g_object_unref (monitor->mtab_monitor); - } - -+ if (monitor->mount_poller_source > 0) -+ { -+ g_source_remove (monitor->mount_poller_source); -+ g_list_foreach (monitor->mount_poller_mounts, (GFunc)g_unix_mount_free, NULL); -+ g_list_free (monitor->mount_poller_mounts); -+ } -+ - the_mount_monitor = NULL; - - if (G_OBJECT_CLASS (g_unix_mount_monitor_parent_class)->finalize) -@@ -1206,6 +1231,51 @@ mtab_file_changed (GFileMonitor *mo - g_signal_emit (mount_monitor, signals[MOUNTS_CHANGED], 0); - } - -+static gboolean -+mount_change_poller (gpointer user_data) -+{ -+ GUnixMountMonitor *mount_monitor; -+ GList *current_mounts; -+ gboolean has_changed = FALSE; -+ -+ mount_monitor = user_data; -+ current_mounts = _g_get_unix_mounts (); -+ -+ if (g_list_length (current_mounts) != g_list_length (mount_monitor->mount_poller_mounts)) -+ { -+ g_list_foreach (mount_monitor->mount_poller_mounts, (GFunc)g_unix_mount_free, NULL); -+ has_changed = TRUE; -+ } -+ else -+ { -+ int i; -+ -+ for (i = 0; i < g_list_length (current_mounts); i++) -+ { -+ GUnixMountEntry *m1; -+ GUnixMountEntry *m2; -+ -+ m1 = (GUnixMountEntry *)g_list_nth_data (current_mounts, i); -+ m2 = (GUnixMountEntry *)g_list_nth_data (mount_monitor->mount_poller_mounts, i); -+ if (! has_changed && g_unix_mount_compare (m1, m2) != 0) -+ has_changed = TRUE; -+ -+ g_unix_mount_free (m2); -+ } -+ } -+ -+ g_list_free (mount_monitor->mount_poller_mounts); -+ mount_monitor->mount_poller_mounts = current_mounts; -+ -+ if (has_changed) -+ { -+ mount_poller_time = (guint64)time (NULL); -+ g_signal_emit (mount_monitor, signals[MOUNTS_CHANGED], 0); -+ } -+ -+ return TRUE; -+} -+ - static void - g_unix_mount_monitor_init (GUnixMountMonitor *monitor) - { -@@ -1228,6 +1298,12 @@ g_unix_mount_monitor_init (GUnixMountMon - - g_signal_connect (monitor->mtab_monitor, "changed", (GCallback)mtab_file_changed, monitor); - } -+ else -+ { -+ monitor->mount_poller_mounts = _g_get_unix_mounts (); -+ mount_poller_time = (guint64)time (NULL); -+ monitor->mount_poller_source = g_timeout_add_seconds (3, (GSourceFunc)mount_change_poller, monitor); -+ } - } - - /** diff --git a/devel/glib20/files/patch-gio_gunixvolume.c b/devel/glib20/files/patch-gio_gunixvolume.c deleted file mode 100644 index 377a7d6b5..000000000 --- a/devel/glib20/files/patch-gio_gunixvolume.c +++ /dev/null @@ -1,17 +0,0 @@ ---- gio/gunixvolume.c.orig 2007-12-23 15:43:17.000000000 -0500 -+++ gio/gunixvolume.c 2007-12-23 15:47:08.000000000 -0500 -@@ -387,9 +387,13 @@ g_unix_volume_eject (GVolume *volume, - gpointer user_data) - { - GUnixVolume *unix_volume = G_UNIX_VOLUME (volume); -+#ifdef __FreeBSD__ -+ char *argv[] = {"cdcontrol", "-f", NULL, "eject", NULL}; -+ argv[2] = unix_volume->device_path; -+#else - char *argv[] = {"eject", NULL, NULL}; -- - argv[1] = unix_volume->device_path; -+#endif - - eject_mount_do (volume, cancellable, callback, user_data, argv); - } diff --git a/devel/glib20/files/patch-gio_xdgmime_xdgmime.c b/devel/glib20/files/patch-gio_xdgmime_xdgmime.c deleted file mode 100644 index 8c36dc5d8..000000000 --- a/devel/glib20/files/patch-gio_xdgmime_xdgmime.c +++ /dev/null @@ -1,11 +0,0 @@ ---- gio/xdgmime/xdgmime.c.orig Mon Nov 8 22:25:27 2004 -+++ gio/xdgmime/xdgmime.c Sat Nov 13 10:27:22 2004 -@@ -204,7 +204,7 @@ - - xdg_data_dirs = getenv ("XDG_DATA_DIRS"); - if (xdg_data_dirs == NULL) -- xdg_data_dirs = "/usr/local/share/:/usr/share/"; -+ xdg_data_dirs = "/usr/local/share/"; - - ptr = xdg_data_dirs; - diff --git a/devel/glib20/files/patch-gio_xdgmime_xdgmimecache.h b/devel/glib20/files/patch-gio_xdgmime_xdgmimecache.h deleted file mode 100644 index 039571d8b..000000000 --- a/devel/glib20/files/patch-gio_xdgmime_xdgmimecache.h +++ /dev/null @@ -1,12 +0,0 @@ ---- gio/xdgmime/xdgmimecache.h.orig 2008-06-12 10:25:40.000000000 -0400 -+++ gio/xdgmime/xdgmimecache.h 2008-06-14 00:49:59.000000000 -0400 -@@ -46,6 +46,9 @@ typedef struct _XdgMimeCache XdgMimeCach - #define _xdg_mime_cache_get_icon XDG_RESERVED_ENTRY(cache_get_icon) - #define _xdg_mime_cache_get_generic_icon XDG_RESERVED_ENTRY(cache_get_generic_icon) - #define _xdg_mime_cache_glob_dump XDG_RESERVED_ENTRY(cache_glob_dump) -+#define _xdg_mime_cache_is_valid_mime_type XDG_RESERVED_ENTRY(cache_is_valid_mime_type) -+#define _xdg_mime_cache_mime_type_equal XDG_RESERVED_ENTRY(cache_mime_type_equal) -+#define _xdg_mime_cache_media_type_equal XDG_RESERVED_ENTRY(cache_media_type_equal) - #endif - - extern XdgMimeCache **_caches; diff --git a/devel/glib20/files/patch-glib::libcharset::Makefile.in b/devel/glib20/files/patch-glib::libcharset::Makefile.in deleted file mode 100644 index 352c0cf60..000000000 --- a/devel/glib20/files/patch-glib::libcharset::Makefile.in +++ /dev/null @@ -1,31 +0,0 @@ ---- glib/libcharset/Makefile.in.orig 2008-06-04 00:03:14.000000000 +0200 -+++ glib/libcharset/Makefile.in 2008-06-04 00:05:58.000000000 +0200 -@@ -278,7 +278,7 @@ EXTRA_DIST = README config.charset ref-a - codeset.m4 update.sh make-patch.sh libcharset-glib.patch - TEST_PROGS = - INCLUDES = \ -- -DLIBDIR=\"$(libdir)\" -I$(top_srcdir) -+ -DLIBDIR=\"$(prefix)/libdata\" -I$(top_srcdir) - - noinst_LTLIBRARIES = libcharset.la - libcharset_la_SOURCES = \ -@@ -286,8 +286,8 @@ libcharset_la_SOURCES = \ - localcharset.h \ - localcharset.c - --charset_alias = $(DESTDIR)$(libdir)/charset.alias --charset_tmp = $(DESTDIR)$(libdir)/charset.tmp -+charset_alias = $(DESTDIR)$(prefix)/libdata/charset.alias -+charset_tmp = $(DESTDIR)$(prefix)/libdata/charset.tmp - SUFFIXES = .sed .sin - CLEANFILES = charset.alias ref-add.sed ref-del.sed - all: all-am -@@ -498,7 +498,7 @@ install-data-am: - - install-dvi: install-dvi-am - --install-exec-am: install-exec-local -+install-exec-am: # install-exec-local - - install-html: install-html-am - diff --git a/devel/glib20/files/patch-glib_gregex.c b/devel/glib20/files/patch-glib_gregex.c deleted file mode 100644 index ef7f0a87b..000000000 --- a/devel/glib20/files/patch-glib_gregex.c +++ /dev/null @@ -1,13 +0,0 @@ ---- glib/gregex.c.orig 2007-09-09 18:35:32.000000000 -0400 -+++ glib/gregex.c 2007-09-09 18:36:05.000000000 -0400 -@@ -164,8 +164,10 @@ match_error (gint errcode) - case PCRE_ERROR_DFA_RECURSE: - case PCRE_ERROR_RECURSIONLIMIT: - return _("recursion limit reached"); -+#ifdef PCRE_ERROR_NULLWSLIMIT - case PCRE_ERROR_NULLWSLIMIT: - return _("workspace limit for empty substrings reached"); -+#endif - case PCRE_ERROR_BADNEWLINE: - return _("invalid combination of newline flags"); - default: diff --git a/devel/glib20/files/patch-glib_gutils.c b/devel/glib20/files/patch-glib_gutils.c deleted file mode 100644 index 95a02e475..000000000 --- a/devel/glib20/files/patch-glib_gutils.c +++ /dev/null @@ -1,20 +0,0 @@ ---- glib/gutils.c.orig Wed Mar 23 09:55:02 2005 -+++ glib/gutils.c Thu Apr 7 01:06:16 2005 -@@ -1929,7 +1929,7 @@ g_get_system_data_dirs (void) - data_dirs = (gchar *) g_getenv ("XDG_DATA_DIRS"); - - if (!data_dirs || !data_dirs[0]) -- data_dirs = "/usr/local/share/:/usr/share/"; -+ data_dirs = "/usr/local/share/"; - - data_dir_vector = g_strsplit (data_dirs, G_SEARCHPATH_SEPARATOR_S, 0); - #endif -@@ -1983,7 +1983,7 @@ g_get_system_config_dirs (void) - conf_dirs = (gchar *) g_getenv ("XDG_CONFIG_DIRS"); - - if (!conf_dirs || !conf_dirs[0]) -- conf_dirs = "/etc/xdg"; -+ conf_dirs = "/usr/local/etc/xdg:/etc/xdg"; - - conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0); - #endif diff --git a/devel/glib20/files/patch-gmodule::gmodule-dl.c b/devel/glib20/files/patch-gmodule::gmodule-dl.c deleted file mode 100644 index 586d7f80b..000000000 --- a/devel/glib20/files/patch-gmodule::gmodule-dl.c +++ /dev/null @@ -1,20 +0,0 @@ ---- gmodule/gmodule-dl.c.orig Sat Feb 17 08:28:07 2001 -+++ gmodule/gmodule-dl.c Fri Jan 18 09:48:45 2002 -@@ -104,6 +104,7 @@ - static gpointer - _g_module_self (void) - { -+#ifndef __FreeBSD__ - gpointer handle; - - /* to query symbols from the program itself, special link options -@@ -115,6 +116,9 @@ - g_module_set_error (fetch_dlerror (TRUE)); - - return handle; -+#else -+ return RTLD_DEFAULT; -+#endif - } - - static void diff --git a/devel/glib20/files/patch-gthread_gthread-posix.c b/devel/glib20/files/patch-gthread_gthread-posix.c deleted file mode 100644 index 47c5ab8f1..000000000 --- a/devel/glib20/files/patch-gthread_gthread-posix.c +++ /dev/null @@ -1,21 +0,0 @@ ---- gthread/gthread-posix.c.orig Mon Nov 1 13:47:12 2004 -+++ gthread/gthread-posix.c Wed Mar 9 14:21:20 2005 -@@ -125,7 +129,8 @@ - g_thread_impl_init(void) - { - #ifdef _SC_THREAD_STACK_MIN -- g_thread_min_stack_size = MAX (sysconf (_SC_THREAD_STACK_MIN), 0); -+ g_thread_min_stack_size = MAX (sysconf (_SC_THREAD_STACK_MIN), -+ g_thread_min_stack_size); - #endif /* _SC_THREAD_STACK_MIN */ - #ifdef HAVE_PRIORITIES - # ifdef G_THREADS_IMPL_POSIX -@@ -176,7 +181,7 @@ - result = pthread_mutex_trylock ((pthread_mutex_t *) mutex); - - #ifdef G_THREADS_IMPL_POSIX -- if (result == EBUSY) -+ if ((result == EBUSY) || (result == EDEADLK)) - return FALSE; - #else /* G_THREADS_IMPL_DCE */ - if (result == 0) diff --git a/devel/glib20/pkg-descr b/devel/glib20/pkg-descr deleted file mode 100644 index 3b3059030..000000000 --- a/devel/glib20/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -GLib provides a simple, abstract, and highly portable set of C support -routines such as lists, trees, hashes, memory allocation, and much, much -more. It is a foundation for writing portable applications. - -WWW: http://www.gtk.org/ diff --git a/devel/glib20/pkg-plist b/devel/glib20/pkg-plist deleted file mode 100644 index 327137a63..000000000 --- a/devel/glib20/pkg-plist +++ /dev/null @@ -1,308 +0,0 @@ -bin/glib-genmarshal -bin/glib-gettextize -bin/glib-mkenums -bin/gobject-query -bin/gtester -bin/gtester-report -include/gio-unix-2.0/gio/gdesktopappinfo.h -include/gio-unix-2.0/gio/gunixinputstream.h -include/gio-unix-2.0/gio/gunixmounts.h -include/gio-unix-2.0/gio/gunixoutputstream.h -include/glib-2.0/gio/gappinfo.h -include/glib-2.0/gio/gasyncresult.h -include/glib-2.0/gio/gbufferedinputstream.h -include/glib-2.0/gio/gbufferedoutputstream.h -include/glib-2.0/gio/gcancellable.h -include/glib-2.0/gio/gcontenttype.h -include/glib-2.0/gio/gdatainputstream.h -include/glib-2.0/gio/gdataoutputstream.h -include/glib-2.0/gio/gdrive.h -include/glib-2.0/gio/gemblem.h -include/glib-2.0/gio/gemblemedicon.h -include/glib-2.0/gio/gfile.h -include/glib-2.0/gio/gfileattribute.h -include/glib-2.0/gio/gfileenumerator.h -include/glib-2.0/gio/gfileicon.h -include/glib-2.0/gio/gfileinfo.h -include/glib-2.0/gio/gfileinputstream.h -include/glib-2.0/gio/gfilemonitor.h -include/glib-2.0/gio/gfilenamecompleter.h -include/glib-2.0/gio/gfileoutputstream.h -include/glib-2.0/gio/gfilterinputstream.h -include/glib-2.0/gio/gfilteroutputstream.h -include/glib-2.0/gio/gicon.h -include/glib-2.0/gio/ginputstream.h -include/glib-2.0/gio/gio.h -include/glib-2.0/gio/gioenums.h -include/glib-2.0/gio/gioenumtypes.h -include/glib-2.0/gio/gioerror.h -include/glib-2.0/gio/giomodule.h -include/glib-2.0/gio/gioscheduler.h -include/glib-2.0/gio/giotypes.h -include/glib-2.0/gio/gloadableicon.h -include/glib-2.0/gio/gmemoryinputstream.h -include/glib-2.0/gio/gmemoryoutputstream.h -include/glib-2.0/gio/gmount.h -include/glib-2.0/gio/gmountoperation.h -include/glib-2.0/gio/gnativevolumemonitor.h -include/glib-2.0/gio/goutputstream.h -include/glib-2.0/gio/gseekable.h -include/glib-2.0/gio/gsimpleasyncresult.h -include/glib-2.0/gio/gthemedicon.h -include/glib-2.0/gio/gvfs.h -include/glib-2.0/gio/gvolume.h -include/glib-2.0/gio/gvolumemonitor.h -include/glib-2.0/glib-object.h -include/glib-2.0/glib.h -include/glib-2.0/glib/galloca.h -include/glib-2.0/glib/garray.h -include/glib-2.0/glib/gasyncqueue.h -include/glib-2.0/glib/gatomic.h -include/glib-2.0/glib/gbacktrace.h -include/glib-2.0/glib/gbase64.h -include/glib-2.0/glib/gbookmarkfile.h -include/glib-2.0/glib/gcache.h -include/glib-2.0/glib/gchecksum.h -include/glib-2.0/glib/gcompletion.h -include/glib-2.0/glib/gconvert.h -include/glib-2.0/glib/gdataset.h -include/glib-2.0/glib/gdate.h -include/glib-2.0/glib/gdir.h -include/glib-2.0/glib/gerror.h -include/glib-2.0/glib/gfileutils.h -include/glib-2.0/glib/ghash.h -include/glib-2.0/glib/ghook.h -include/glib-2.0/glib/gi18n-lib.h -include/glib-2.0/glib/gi18n.h -include/glib-2.0/glib/giochannel.h -include/glib-2.0/glib/gkeyfile.h -include/glib-2.0/glib/glist.h -include/glib-2.0/glib/gmacros.h -include/glib-2.0/glib/gmain.h -include/glib-2.0/glib/gmappedfile.h -include/glib-2.0/glib/gmarkup.h -include/glib-2.0/glib/gmem.h -include/glib-2.0/glib/gmessages.h -include/glib-2.0/glib/gnode.h -include/glib-2.0/glib/goption.h -include/glib-2.0/glib/gpattern.h -include/glib-2.0/glib/gpoll.h -include/glib-2.0/glib/gprimes.h -include/glib-2.0/glib/gprintf.h -include/glib-2.0/glib/gqsort.h -include/glib-2.0/glib/gquark.h -include/glib-2.0/glib/gqueue.h -include/glib-2.0/glib/grand.h -include/glib-2.0/glib/gregex.h -include/glib-2.0/glib/grel.h -include/glib-2.0/glib/gscanner.h -include/glib-2.0/glib/gsequence.h -include/glib-2.0/glib/gshell.h -include/glib-2.0/glib/gslice.h -include/glib-2.0/glib/gslist.h -include/glib-2.0/glib/gspawn.h -include/glib-2.0/glib/gstdio.h -include/glib-2.0/glib/gstrfuncs.h -include/glib-2.0/glib/gstring.h -include/glib-2.0/glib/gtestutils.h -include/glib-2.0/glib/gthread.h -include/glib-2.0/glib/gthreadpool.h -include/glib-2.0/glib/gtimer.h -include/glib-2.0/glib/gtree.h -include/glib-2.0/glib/gtypes.h -include/glib-2.0/glib/gunicode.h -include/glib-2.0/glib/gurifuncs.h -include/glib-2.0/glib/gutils.h -include/glib-2.0/glib/gwin32.h -include/glib-2.0/glibconfig.h -include/glib-2.0/gmodule.h -include/glib-2.0/gobject/gboxed.h -include/glib-2.0/gobject/gclosure.h -include/glib-2.0/gobject/genums.h -include/glib-2.0/gobject/gmarshal.h -include/glib-2.0/gobject/gobject.h -include/glib-2.0/gobject/gobjectnotifyqueue.c -include/glib-2.0/gobject/gparam.h -include/glib-2.0/gobject/gparamspecs.h -include/glib-2.0/gobject/gsignal.h -include/glib-2.0/gobject/gsourceclosure.h -include/glib-2.0/gobject/gtype.h -include/glib-2.0/gobject/gtypemodule.h -include/glib-2.0/gobject/gtypeplugin.h -include/glib-2.0/gobject/gvalue.h -include/glib-2.0/gobject/gvaluearray.h -include/glib-2.0/gobject/gvaluecollector.h -include/glib-2.0/gobject/gvaluetypes.h -lib/libgio-2.0.a -lib/libgio-2.0.la -lib/libgio-2.0.so -lib/libgio-2.0.so.0 -lib/libglib-2.0.a -lib/libglib-2.0.la -lib/libglib-2.0.so -lib/libglib-2.0.so.0 -lib/libgmodule-2.0.a -lib/libgmodule-2.0.la -lib/libgmodule-2.0.so -lib/libgmodule-2.0.so.0 -lib/libgobject-2.0.a -lib/libgobject-2.0.la -lib/libgobject-2.0.so -lib/libgobject-2.0.so.0 -lib/libgthread-2.0.a -lib/libgthread-2.0.la -lib/libgthread-2.0.so -lib/libgthread-2.0.so.0 -libdata/pkgconfig/gio-2.0.pc -libdata/pkgconfig/gio-unix-2.0.pc -libdata/pkgconfig/glib-2.0.pc -libdata/pkgconfig/gmodule-2.0.pc -libdata/pkgconfig/gmodule-export-2.0.pc -libdata/pkgconfig/gmodule-no-export-2.0.pc -libdata/pkgconfig/gobject-2.0.pc -libdata/pkgconfig/gthread-2.0.pc -share/aclocal/glib-2.0.m4 -share/aclocal/glib-gettext.m4 -share/glib-2.0/gettext/mkinstalldirs -share/glib-2.0/gettext/po/Makefile.in.in -share/locale/am/LC_MESSAGES/glib20.mo -share/locale/ar/LC_MESSAGES/glib20.mo -share/locale/as/LC_MESSAGES/glib20.mo -share/locale/az/LC_MESSAGES/glib20.mo -share/locale/be/LC_MESSAGES/glib20.mo -share/locale/be@latin/LC_MESSAGES/glib20.mo -share/locale/bg/LC_MESSAGES/glib20.mo -share/locale/bn/LC_MESSAGES/glib20.mo -share/locale/bn_IN/LC_MESSAGES/glib20.mo -share/locale/bs/LC_MESSAGES/glib20.mo -share/locale/ca/LC_MESSAGES/glib20.mo -share/locale/cs/LC_MESSAGES/glib20.mo -share/locale/cy/LC_MESSAGES/glib20.mo -share/locale/da/LC_MESSAGES/glib20.mo -share/locale/de/LC_MESSAGES/glib20.mo -share/locale/dz/LC_MESSAGES/glib20.mo -share/locale/el/LC_MESSAGES/glib20.mo -share/locale/en_CA/LC_MESSAGES/glib20.mo -share/locale/en_GB/LC_MESSAGES/glib20.mo -share/locale/eo/LC_MESSAGES/glib20.mo -share/locale/es/LC_MESSAGES/glib20.mo -share/locale/et/LC_MESSAGES/glib20.mo -share/locale/eu/LC_MESSAGES/glib20.mo -share/locale/fa/LC_MESSAGES/glib20.mo -share/locale/fi/LC_MESSAGES/glib20.mo -share/locale/fr/LC_MESSAGES/glib20.mo -share/locale/ga/LC_MESSAGES/glib20.mo -share/locale/gl/LC_MESSAGES/glib20.mo -share/locale/gu/LC_MESSAGES/glib20.mo -share/locale/he/LC_MESSAGES/glib20.mo -share/locale/hi/LC_MESSAGES/glib20.mo -share/locale/hr/LC_MESSAGES/glib20.mo -share/locale/hu/LC_MESSAGES/glib20.mo -share/locale/hy/LC_MESSAGES/glib20.mo -share/locale/id/LC_MESSAGES/glib20.mo -share/locale/is/LC_MESSAGES/glib20.mo -share/locale/it/LC_MESSAGES/glib20.mo -share/locale/ja/LC_MESSAGES/glib20.mo -share/locale/ka/LC_MESSAGES/glib20.mo -share/locale/kn/LC_MESSAGES/glib20.mo -share/locale/ko/LC_MESSAGES/glib20.mo -share/locale/ku/LC_MESSAGES/glib20.mo -share/locale/lt/LC_MESSAGES/glib20.mo -share/locale/lv/LC_MESSAGES/glib20.mo -share/locale/mai/LC_MESSAGES/glib20.mo -share/locale/mg/LC_MESSAGES/glib20.mo -share/locale/mk/LC_MESSAGES/glib20.mo -share/locale/ml/LC_MESSAGES/glib20.mo -share/locale/mn/LC_MESSAGES/glib20.mo -share/locale/mr/LC_MESSAGES/glib20.mo -share/locale/ms/LC_MESSAGES/glib20.mo -share/locale/nb/LC_MESSAGES/glib20.mo -share/locale/ne/LC_MESSAGES/glib20.mo -share/locale/nl/LC_MESSAGES/glib20.mo -share/locale/nn/LC_MESSAGES/glib20.mo -share/locale/oc/LC_MESSAGES/glib20.mo -share/locale/or/LC_MESSAGES/glib20.mo -share/locale/pa/LC_MESSAGES/glib20.mo -share/locale/pl/LC_MESSAGES/glib20.mo -share/locale/ps/LC_MESSAGES/glib20.mo -share/locale/pt/LC_MESSAGES/glib20.mo -share/locale/pt_BR/LC_MESSAGES/glib20.mo -share/locale/ro/LC_MESSAGES/glib20.mo -share/locale/ru/LC_MESSAGES/glib20.mo -share/locale/rw/LC_MESSAGES/glib20.mo -share/locale/si/LC_MESSAGES/glib20.mo -share/locale/sk/LC_MESSAGES/glib20.mo -share/locale/sl/LC_MESSAGES/glib20.mo -share/locale/sq/LC_MESSAGES/glib20.mo -share/locale/sr/LC_MESSAGES/glib20.mo -share/locale/sr@ije/LC_MESSAGES/glib20.mo -share/locale/sr@latin/LC_MESSAGES/glib20.mo -share/locale/sv/LC_MESSAGES/glib20.mo -share/locale/ta/LC_MESSAGES/glib20.mo -share/locale/te/LC_MESSAGES/glib20.mo -share/locale/th/LC_MESSAGES/glib20.mo -share/locale/tl/LC_MESSAGES/glib20.mo -share/locale/tr/LC_MESSAGES/glib20.mo -share/locale/tt/LC_MESSAGES/glib20.mo -share/locale/uk/LC_MESSAGES/glib20.mo -share/locale/vi/LC_MESSAGES/glib20.mo -share/locale/wa/LC_MESSAGES/glib20.mo -share/locale/xh/LC_MESSAGES/glib20.mo -share/locale/yi/LC_MESSAGES/glib20.mo -share/locale/zh_CN/LC_MESSAGES/glib20.mo -share/locale/zh_HK/LC_MESSAGES/glib20.mo -share/locale/zh_TW/LC_MESSAGES/glib20.mo -@dirrm share/glib-2.0/gettext/po -@dirrm share/glib-2.0/gettext -@dirrm share/glib-2.0 -@exec mkdir -p %D/lib/gio/modules -@dirrmtry lib/gio/modules -@dirrmtry lib/gio -@dirrm include/glib-2.0/gobject -@dirrm include/glib-2.0/glib -@dirrm include/glib-2.0/gio -@dirrm include/glib-2.0 -@dirrm include/gio-unix-2.0/gio -@dirrm include/gio-unix-2.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/tl/LC_MESSAGES -@dirrmtry share/locale/tl -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/devel/glibmm/Makefile b/devel/glibmm/Makefile deleted file mode 100644 index 6db9cc01d..000000000 --- a/devel/glibmm/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: glibmm -# Date created: 04 December 2003 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/glibmm/Makefile,v 1.71 2009/03/05 06:48:37 marcus Exp $ -# - -PORTNAME= glibmm -PORTVERSION= 2.20.0 -PORTREVISION?= 0 -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= C++ interfaces for glib2 - -USE_BZIP2= yes - -PLIST_SUB= VERSION="2.4" API_VERSION="2.4" - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= sigc-2.0.0:${PORTSDIR}/devel/libsigc++20 -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -USE_GMAKE= yes -USE_GNOME= gnomehack glib20 ltverhack -USE_PERL5= yes -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -post-patch: -.for d in docs examples tests - @${REINPLACE_CMD} -e '/^SUBDIRS = /s/${d}//' ${WRKSRC}/Makefile.in -.endfor - -post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/docs/reference/beautify_docs.pl \ - ${PREFIX}/lib/glibmm-2.4/proc - -.include <bsd.port.mk> - -.endif diff --git a/devel/glibmm/distinfo b/devel/glibmm/distinfo deleted file mode 100644 index f4b636d0b..000000000 --- a/devel/glibmm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/glibmm-2.20.0.tar.bz2) = 38fa409b531144c238b6e2532e351799 -SHA256 (gnome2/glibmm-2.20.0.tar.bz2) = 573ee090bc1eb0ddb8a014021ca284f127d609f8bd1abdbc24cbb5b8287380b0 -SIZE (gnome2/glibmm-2.20.0.tar.bz2) = 4345802 diff --git a/devel/glibmm/files/patch-docs::reference::beautify_docs.pl b/devel/glibmm/files/patch-docs::reference::beautify_docs.pl deleted file mode 100644 index bbb320452..000000000 --- a/devel/glibmm/files/patch-docs::reference::beautify_docs.pl +++ /dev/null @@ -1,20 +0,0 @@ ---- docs/reference/beautify_docs.pl.in.orig Thu Feb 12 02:52:02 2004 -+++ docs/reference/beautify_docs.pl.in Thu Feb 12 03:00:08 2004 -@@ -25,7 +25,7 @@ - my ($file) = @_; - my @outbuf; - -- open(FILE, '<', $file); -+ open(FILE, "<$file"); - - while(<FILE>) - { -@@ -71,7 +71,7 @@ - push(@outbuf, $_); - } - -- open(FILE, '>', $file); -+ open(FILE, ">$file"); - - # write the whole buffer back - print FILE "$_" foreach(@outbuf); diff --git a/devel/glibmm/pkg-descr b/devel/glibmm/pkg-descr deleted file mode 100644 index f689c4137..000000000 --- a/devel/glibmm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -C++ interfaces for glib20. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/devel/glibmm/pkg-plist b/devel/glibmm/pkg-plist deleted file mode 100644 index f059558d4..000000000 --- a/devel/glibmm/pkg-plist +++ /dev/null @@ -1,239 +0,0 @@ -include/giomm-%%API_VERSION%%/giomm.h -include/giomm-%%API_VERSION%%/giomm/appinfo.h -include/giomm-%%API_VERSION%%/giomm/asyncresult.h -include/giomm-%%API_VERSION%%/giomm/bufferedinputstream.h -include/giomm-%%API_VERSION%%/giomm/bufferedoutputstream.h -include/giomm-%%API_VERSION%%/giomm/cancellable.h -include/giomm-%%API_VERSION%%/giomm/contenttype.h -include/giomm-%%API_VERSION%%/giomm/datainputstream.h -include/giomm-%%API_VERSION%%/giomm/dataoutputstream.h -include/giomm-%%API_VERSION%%/giomm/desktopappinfo.h -include/giomm-%%API_VERSION%%/giomm/drive.h -include/giomm-%%API_VERSION%%/giomm/emblem.h -include/giomm-%%API_VERSION%%/giomm/emblemedicon.h -include/giomm-%%API_VERSION%%/giomm/enums.h -include/giomm-%%API_VERSION%%/giomm/error.h -include/giomm-%%API_VERSION%%/giomm/file.h -include/giomm-%%API_VERSION%%/giomm/fileattributeinfo.h -include/giomm-%%API_VERSION%%/giomm/fileattributeinfolist.h -include/giomm-%%API_VERSION%%/giomm/fileenumerator.h -include/giomm-%%API_VERSION%%/giomm/fileicon.h -include/giomm-%%API_VERSION%%/giomm/fileinfo.h -include/giomm-%%API_VERSION%%/giomm/fileinputstream.h -include/giomm-%%API_VERSION%%/giomm/filemonitor.h -include/giomm-%%API_VERSION%%/giomm/filenamecompleter.h -include/giomm-%%API_VERSION%%/giomm/fileoutputstream.h -include/giomm-%%API_VERSION%%/giomm/filterinputstream.h -include/giomm-%%API_VERSION%%/giomm/filteroutputstream.h -include/giomm-%%API_VERSION%%/giomm/icon.h -include/giomm-%%API_VERSION%%/giomm/init.h -include/giomm-%%API_VERSION%%/giomm/inputstream.h -include/giomm-%%API_VERSION%%/giomm/loadableicon.h -include/giomm-%%API_VERSION%%/giomm/memoryinputstream.h -include/giomm-%%API_VERSION%%/giomm/memoryoutputstream.h -include/giomm-%%API_VERSION%%/giomm/mount.h -include/giomm-%%API_VERSION%%/giomm/mountoperation.h -include/giomm-%%API_VERSION%%/giomm/outputstream.h -include/giomm-%%API_VERSION%%/giomm/private/appinfo_p.h -include/giomm-%%API_VERSION%%/giomm/private/asyncresult_p.h -include/giomm-%%API_VERSION%%/giomm/private/bufferedinputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/bufferedoutputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/cancellable_p.h -include/giomm-%%API_VERSION%%/giomm/private/datainputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/dataoutputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/desktopappinfo_p.h -include/giomm-%%API_VERSION%%/giomm/private/drive_p.h -include/giomm-%%API_VERSION%%/giomm/private/emblem_p.h -include/giomm-%%API_VERSION%%/giomm/private/emblemedicon_p.h -include/giomm-%%API_VERSION%%/giomm/private/enums_p.h -include/giomm-%%API_VERSION%%/giomm/private/error_p.h -include/giomm-%%API_VERSION%%/giomm/private/file_p.h -include/giomm-%%API_VERSION%%/giomm/private/fileattributeinfo_p.h -include/giomm-%%API_VERSION%%/giomm/private/fileattributeinfolist_p.h -include/giomm-%%API_VERSION%%/giomm/private/fileenumerator_p.h -include/giomm-%%API_VERSION%%/giomm/private/fileicon_p.h -include/giomm-%%API_VERSION%%/giomm/private/fileinfo_p.h -include/giomm-%%API_VERSION%%/giomm/private/fileinputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/filemonitor_p.h -include/giomm-%%API_VERSION%%/giomm/private/filenamecompleter_p.h -include/giomm-%%API_VERSION%%/giomm/private/fileoutputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/filterinputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/filteroutputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/icon_p.h -include/giomm-%%API_VERSION%%/giomm/private/inputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/loadableicon_p.h -include/giomm-%%API_VERSION%%/giomm/private/memoryinputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/memoryoutputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/mount_p.h -include/giomm-%%API_VERSION%%/giomm/private/mountoperation_p.h -include/giomm-%%API_VERSION%%/giomm/private/outputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/seekable_p.h -include/giomm-%%API_VERSION%%/giomm/private/themedicon_p.h -include/giomm-%%API_VERSION%%/giomm/private/unixinputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/unixoutputstream_p.h -include/giomm-%%API_VERSION%%/giomm/private/volume_p.h -include/giomm-%%API_VERSION%%/giomm/private/volumemonitor_p.h -include/giomm-%%API_VERSION%%/giomm/seekable.h -include/giomm-%%API_VERSION%%/giomm/themedicon.h -include/giomm-%%API_VERSION%%/giomm/unixinputstream.h -include/giomm-%%API_VERSION%%/giomm/unixoutputstream.h -include/giomm-%%API_VERSION%%/giomm/volume.h -include/giomm-%%API_VERSION%%/giomm/volumemonitor.h -include/giomm-%%API_VERSION%%/giomm/wrap_init.h -include/glibmm-%%API_VERSION%%/glibmm.h -include/glibmm-%%API_VERSION%%/glibmm/arrayhandle.h -include/glibmm-%%API_VERSION%%/glibmm/checksum.h -include/glibmm-%%API_VERSION%%/glibmm/class.h -include/glibmm-%%API_VERSION%%/glibmm/containerhandle_shared.h -include/glibmm-%%API_VERSION%%/glibmm/containers.h -include/glibmm-%%API_VERSION%%/glibmm/convert.h -include/glibmm-%%API_VERSION%%/glibmm/date.h -include/glibmm-%%API_VERSION%%/glibmm/debug.h -include/glibmm-%%API_VERSION%%/glibmm/dispatcher.h -include/glibmm-%%API_VERSION%%/glibmm/error.h -include/glibmm-%%API_VERSION%%/glibmm/exception.h -include/glibmm-%%API_VERSION%%/glibmm/exceptionhandler.h -include/glibmm-%%API_VERSION%%/glibmm/fileutils.h -include/glibmm-%%API_VERSION%%/glibmm/helperlist.h -include/glibmm-%%API_VERSION%%/glibmm/i18n-lib.h -include/glibmm-%%API_VERSION%%/glibmm/i18n.h -include/glibmm-%%API_VERSION%%/glibmm/init.h -include/glibmm-%%API_VERSION%%/glibmm/interface.h -include/glibmm-%%API_VERSION%%/glibmm/iochannel.h -include/glibmm-%%API_VERSION%%/glibmm/keyfile.h -include/glibmm-%%API_VERSION%%/glibmm/listhandle.h -include/glibmm-%%API_VERSION%%/glibmm/main.h -include/glibmm-%%API_VERSION%%/glibmm/markup.h -include/glibmm-%%API_VERSION%%/glibmm/miscutils.h -include/glibmm-%%API_VERSION%%/glibmm/module.h -include/glibmm-%%API_VERSION%%/glibmm/nodetree.h -include/glibmm-%%API_VERSION%%/glibmm/object.h -include/glibmm-%%API_VERSION%%/glibmm/objectbase.h -include/glibmm-%%API_VERSION%%/glibmm/optioncontext.h -include/glibmm-%%API_VERSION%%/glibmm/optionentry.h -include/glibmm-%%API_VERSION%%/glibmm/optiongroup.h -include/glibmm-%%API_VERSION%%/glibmm/pattern.h -include/glibmm-%%API_VERSION%%/glibmm/priorities.h -include/glibmm-%%API_VERSION%%/glibmm/private/checksum_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/convert_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/date_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/fileutils_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/interface_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/iochannel_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/keyfile_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/markup_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/module_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/nodetree_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/object_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/optioncontext_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/optionentry_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/optiongroup_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/regex_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/shell_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/spawn_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/thread_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/unicode_p.h -include/glibmm-%%API_VERSION%%/glibmm/private/uriutils_p.h -include/glibmm-%%API_VERSION%%/glibmm/property.h -include/glibmm-%%API_VERSION%%/glibmm/propertyproxy.h -include/glibmm-%%API_VERSION%%/glibmm/propertyproxy_base.h -include/glibmm-%%API_VERSION%%/glibmm/quark.h -include/glibmm-%%API_VERSION%%/glibmm/random.h -include/glibmm-%%API_VERSION%%/glibmm/refptr.h -include/glibmm-%%API_VERSION%%/glibmm/regex.h -include/glibmm-%%API_VERSION%%/glibmm/sarray.h -include/glibmm-%%API_VERSION%%/glibmm/shell.h -include/glibmm-%%API_VERSION%%/glibmm/signalproxy.h -include/glibmm-%%API_VERSION%%/glibmm/signalproxy_connectionnode.h -include/glibmm-%%API_VERSION%%/glibmm/slisthandle.h -include/glibmm-%%API_VERSION%%/glibmm/spawn.h -include/glibmm-%%API_VERSION%%/glibmm/streamiochannel.h -include/glibmm-%%API_VERSION%%/glibmm/stringutils.h -include/glibmm-%%API_VERSION%%/glibmm/thread.h -include/glibmm-%%API_VERSION%%/glibmm/threadpool.h -include/glibmm-%%API_VERSION%%/glibmm/timer.h -include/glibmm-%%API_VERSION%%/glibmm/timeval.h -include/glibmm-%%API_VERSION%%/glibmm/unicode.h -include/glibmm-%%API_VERSION%%/glibmm/uriutils.h -include/glibmm-%%API_VERSION%%/glibmm/ustring.h -include/glibmm-%%API_VERSION%%/glibmm/utility.h -include/glibmm-%%API_VERSION%%/glibmm/value.h -include/glibmm-%%API_VERSION%%/glibmm/value_basictypes.h -include/glibmm-%%API_VERSION%%/glibmm/value_custom.h -include/glibmm-%%API_VERSION%%/glibmm/wrap.h -include/glibmm-%%API_VERSION%%/glibmm/wrap_init.h -include/glibmm-%%API_VERSION%%/glibmm_generate_extra_defs/generate_extra_defs.h -lib/giomm-%%API_VERSION%%/include/giommconfig.h -lib/glibmm-%%API_VERSION%%/include/glibmmconfig.h -lib/glibmm-%%API_VERSION%%/proc/beautify_docs.pl -lib/glibmm-%%API_VERSION%%/proc/generate_wrap_init.pl -lib/glibmm-%%API_VERSION%%/proc/gmmproc -lib/glibmm-%%API_VERSION%%/proc/m4/base.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_boxedtype.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_boxedtype_static.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_generic.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_gobject.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_gtkobject.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_interface.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_opaque_copyable.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_opaque_refcounted.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/class_shared.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/compare.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_atk.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_base.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_gdk.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_gio.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_glib.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_gtk.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_gtkmm.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/convert_pango.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/ctor.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/doc.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/enum.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/gerror.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/list.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/member.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/method.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/property.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/signal.m4 -lib/glibmm-%%API_VERSION%%/proc/m4/vfunc.m4 -lib/glibmm-%%API_VERSION%%/proc/pm/DocsParser.pm -lib/glibmm-%%API_VERSION%%/proc/pm/Enum.pm -lib/glibmm-%%API_VERSION%%/proc/pm/Function.pm -lib/glibmm-%%API_VERSION%%/proc/pm/FunctionBase.pm -lib/glibmm-%%API_VERSION%%/proc/pm/GtkDefs.pm -lib/glibmm-%%API_VERSION%%/proc/pm/Object.pm -lib/glibmm-%%API_VERSION%%/proc/pm/Output.pm -lib/glibmm-%%API_VERSION%%/proc/pm/Property.pm -lib/glibmm-%%API_VERSION%%/proc/pm/Util.pm -lib/glibmm-%%API_VERSION%%/proc/pm/WrapParser.pm -lib/libgiomm-%%VERSION%%.a -lib/libgiomm-%%VERSION%%.la -lib/libgiomm-%%VERSION%%.so -lib/libgiomm-%%VERSION%%.so.1 -lib/libglibmm-%%VERSION%%.a -lib/libglibmm-%%VERSION%%.la -lib/libglibmm-%%VERSION%%.so -lib/libglibmm-%%VERSION%%.so.1 -lib/libglibmm_generate_extra_defs-%%VERSION%%.a -lib/libglibmm_generate_extra_defs-%%VERSION%%.la -lib/libglibmm_generate_extra_defs-%%VERSION%%.so -lib/libglibmm_generate_extra_defs-%%VERSION%%.so.1 -libdata/pkgconfig/giomm-%%API_VERSION%%.pc -libdata/pkgconfig/glibmm-%%API_VERSION%%.pc -share/aclocal/glibmm_check_perl.m4 -@dirrm lib/glibmm-%%API_VERSION%%/proc/pm -@dirrm lib/glibmm-%%API_VERSION%%/proc/m4 -@dirrm lib/glibmm-%%API_VERSION%%/proc -@dirrm lib/glibmm-%%API_VERSION%%/include -@dirrm lib/glibmm-%%API_VERSION%% -@dirrm lib/giomm-%%API_VERSION%%/include -@dirrm lib/giomm-%%API_VERSION%% -@dirrm include/glibmm-%%API_VERSION%%/glibmm_generate_extra_defs -@dirrm include/glibmm-%%API_VERSION%%/glibmm/private -@dirrm include/glibmm-%%API_VERSION%%/glibmm -@dirrm include/glibmm-%%API_VERSION%% -@dirrm include/giomm-%%API_VERSION%%/giomm/private -@dirrm include/giomm-%%API_VERSION%%/giomm -@dirrm include/giomm-%%API_VERSION%% diff --git a/devel/gnome-common/Makefile b/devel/gnome-common/Makefile deleted file mode 100644 index cd469a64f..000000000 --- a/devel/gnome-common/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: gnomecommon -# Date created: 04 April 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= gnome-common -PORTVERSION= 2.26.0 -CATEGORIES= devel -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Common automake macros for GNOME and GNOME 2 - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= pkgconfig -GNU_CONFIGURE= yes - -.include <bsd.port.mk> diff --git a/devel/gnome-common/distinfo b/devel/gnome-common/distinfo deleted file mode 100644 index e580c92f4..000000000 --- a/devel/gnome-common/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-common-2.26.0.tar.bz2) = 196daa38cb21d91da1d6ec085f1e158b -SHA256 (gnome2/gnome-common-2.26.0.tar.bz2) = f6233ee73886c5ac31890c1a9b9f216e5f14558467dea7b0a61ef3c4cf51d84d -SIZE (gnome2/gnome-common-2.26.0.tar.bz2) = 69278 diff --git a/devel/gnome-common/pkg-descr b/devel/gnome-common/pkg-descr deleted file mode 100644 index 4cf03f1e9..000000000 --- a/devel/gnome-common/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This is a collection of automake macros used for developing new GNOME -or GNOME 2.0 applications. - -WWW: http://www.gnome.org/ diff --git a/devel/gnome-common/pkg-plist b/devel/gnome-common/pkg-plist deleted file mode 100644 index 081a3d75e..000000000 --- a/devel/gnome-common/pkg-plist +++ /dev/null @@ -1,8 +0,0 @@ -bin/gnome-autogen.sh -bin/gnome-doc-common -share/aclocal/gnome-common.m4 -share/aclocal/gnome-compiler-flags.m4 -%%DATADIR%%/data/omf.make -%%DATADIR%%/data/xmldocs.make -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% diff --git a/devel/gnome-vfsmm/Makefile b/devel/gnome-vfsmm/Makefile deleted file mode 100644 index 3041a1480..000000000 --- a/devel/gnome-vfsmm/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: gnome-vfsmm -# Date created: 22 May 2003 -# Whom: Alexander Nedotsukov <bland@mail.ru> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= gnome-vfsmm -PORTVERSION= 2.26.0 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for gnomevfs2 library - -LIB_DEPENDS= glibmm-2.4.1:${PORTSDIR}/devel/glibmm -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnomevfs2 -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples// ; \ - /^SUBDIRS =/s/docs//' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e "s|\(-lglibmm\)|-L\$$(GMM_PROCDIR)/../.. \1|" \ - ${WRKSRC}/tools/extra_defs_gen/Makefile.in - -.include <bsd.port.mk> diff --git a/devel/gnome-vfsmm/distinfo b/devel/gnome-vfsmm/distinfo deleted file mode 100644 index 9521614dd..000000000 --- a/devel/gnome-vfsmm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-vfsmm-2.26.0.tar.bz2) = d27d34b6a8722c557366729071c1baab -SHA256 (gnome2/gnome-vfsmm-2.26.0.tar.bz2) = d6a89fc82238bbfd6d3f7e44bcaee73dc197be98635be482a2d2df38ec0446d3 -SIZE (gnome2/gnome-vfsmm-2.26.0.tar.bz2) = 628670 diff --git a/devel/gnome-vfsmm/pkg-descr b/devel/gnome-vfsmm/pkg-descr deleted file mode 100644 index da03091b1..000000000 --- a/devel/gnome-vfsmm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a set of thin C++ wrappers for GnomeVFS v2 library. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/devel/gnome-vfsmm/pkg-plist b/devel/gnome-vfsmm/pkg-plist deleted file mode 100644 index a117076e4..000000000 --- a/devel/gnome-vfsmm/pkg-plist +++ /dev/null @@ -1,62 +0,0 @@ -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/address.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/application-registry.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/async-2.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/async-handle-2.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/async-handle.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/async.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/directory-handle.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/dns-sd.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/drive.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/enums.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/exception.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/file-info.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/handle.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/init.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-action.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-application.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-handlers.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/mime-monitor.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/monitor-handle.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/address_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/async-handle-2_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/async-handle_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/drive_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/enums_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/file-info_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/mime-action_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/mime-application_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/mime-monitor_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/resolve-handle_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/transfer-progress-2_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/transfer-progress_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/uri_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/volume-monitor_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private/volume_p.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/resolve-handle.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/transfer-2.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/transfer-progress-2.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/transfer-progress.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/transfer.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/types.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/uri.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/utils.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/volume-monitor.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/volume.h -include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/wrap_init.h -lib/gnome-vfsmm-%%API_VERSION%%/include/libgnomevfsmmconfig.h -lib/gnome-vfsmm-%%API_VERSION%%/proc/m4/convert.m4 -lib/gnome-vfsmm-%%API_VERSION%%/proc/m4/convert_gnome_vfsmm.m4 -lib/libgnomevfsmm-%%VERSION%%.a -lib/libgnomevfsmm-%%VERSION%%.la -lib/libgnomevfsmm-%%VERSION%%.so -lib/libgnomevfsmm-%%VERSION%%.so.1 -libdata/pkgconfig/gnome-vfsmm-%%API_VERSION%%.pc -@dirrm lib/gnome-vfsmm-%%API_VERSION%%/proc/m4 -@dirrm lib/gnome-vfsmm-%%API_VERSION%%/proc -@dirrm lib/gnome-vfsmm-%%API_VERSION%%/include -@dirrm lib/gnome-vfsmm-%%API_VERSION%% -@dirrm include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm/private -@dirrm include/gnome-vfsmm-%%API_VERSION%%/libgnomevfsmm -@dirrm include/gnome-vfsmm-%%API_VERSION%% diff --git a/devel/gnome2-hacker-tools/Makefile b/devel/gnome2-hacker-tools/Makefile deleted file mode 100644 index 657608644..000000000 --- a/devel/gnome2-hacker-tools/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: gnome2-hacker-tools -# Date created: 07 January 2004 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/gnome2-hacker-tools/Makefile,v 1.45 2007/09/19 23:27:28 marcus Exp $ -# - -PORTREVISION= 0 -CATEGORIES= devel gnome -PKGNAMESUFFIX= -hacker-tools - -COMMENT= GNOME 2 development tools - -RUN_DEPENDS= mlview:${PORTSDIR}/editors/mlview \ - gnome-autogen.sh:${PORTSDIR}/devel/gnome-common \ - glade-3:${PORTSDIR}/devel/glade3 \ - ghex2:${PORTSDIR}/editors/ghex \ - gob2:${PORTSDIR}/devel/gob2 \ - conglomerate:${PORTSDIR}/editors/conglomerate \ - meld:${PORTSDIR}/textproc/meld \ - gtranslator:${PORTSDIR}/devel/gtranslator \ - regexxer:${PORTSDIR}/devel/regexxer \ - anjuta:${PORTSDIR}/devel/anjuta \ - accerciser:${PORTSDIR}/accessibility/accerciser \ - valac:${PORTSDIR}/lang/vala - -MASTERDIR= ${.CURDIR}/../../x11/gnome2 -GNOME_SLAVE= yes - -DESCR= ${.CURDIR}/pkg-descr - -.include "${MASTERDIR}/Makefile" diff --git a/devel/gnome2-hacker-tools/pkg-descr b/devel/gnome2-hacker-tools/pkg-descr deleted file mode 100644 index 4c88310c8..000000000 --- a/devel/gnome2-hacker-tools/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -GNOME 2 Hacker Tools - -The Hackers Tools are a collection of GNOME development applications. -This suite includes IDEs, interface builders, "hacker" editors, and other -applications to build and maintain GNOME (and other) code. - -WWW: http://www.FreeBSD.org/gnome/ diff --git a/devel/gvfs/Makefile b/devel/gvfs/Makefile deleted file mode 100644 index 634f70055..000000000 --- a/devel/gvfs/Makefile +++ /dev/null @@ -1,81 +0,0 @@ -# New ports collection makefile for: gvfs -# Date created: 2007-11-06 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/gvfs/Makefile,v 1.42 2009/03/17 13:45:11 kwm Exp $ -# - -PORTNAME= gvfs -PORTVERSION= 1.2.1 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME virtual file system - -LIB_DEPENDS= dbus-1.3:${PORTSDIR}/devel/dbus \ - hal.1:${PORTSDIR}/sysutils/hal \ - soup-2.4.1:${PORTSDIR}/devel/libsoup \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring \ - avahi-client.3:${PORTSDIR}/net/avahi-app -RUN_DEPENDS= gnome-mount:${PORTSDIR}/sysutils/gnome-mount - -USE_BZIP2= yes -USE_GNOME= glib20 gnomehack gnomeprefix intlhack gconf2 -USE_GMAKE= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-obexftp -OPTIONS= FUSE "Enable fuse" on \ - SAMBA "Enable Samba" on \ - GPHOTO2 "Enable Gphoto 2 camera support" on \ - CDDA "Enable CDDA" on - -.include <bsd.port.pre.mk> - -.if defined(WITH_FUSE) -LIB_DEPENDS+= fuse.2:${PORTSDIR}/sysutils/fusefs-libs -RUN_DEPENDS+= mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod -PLIST_SUB+= FUSE="" -.else -CONFIGURE_ARGS+= --disable-fuse -PLIST_SUB+= FUSE="@comment " -.endif - -.if defined(WITH_SAMBA) -LIB_DEPENDS+= smbclient.0:${PORTSDIR}/net/samba-libsmbclient -PLIST_SUB+= SMB="" -.else -CONFIGURE_ARGS+= --disable-samba -PLIST_SUB+= SMB="@comment " -.endif - -.if defined(WITH_CDDA) -LIB_DEPENDS+= cdio_paranoia.0:${PORTSDIR}/sysutils/libcdio -PLIST_SUB+= CDDA="" -.else -CONFIGURE_ARGS+= --disable-cdda -PLIST_SUB+= CDDA="@comment " -.endif - -.if defined(WITH_GPHOTO2) -LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 -PLIST_SUB+= GPHOTO2="" -.else -CONFIGURE_ARGS+= --disable-gphoto2 -PLIST_SUB+= GPHOTO2="@comment " -.endif - -.if ${OSVERSION} < 602112 -CONFIGURE_ARGS+= --disable-archive -PLIST_SUB+= ARCHIVE="@comment " -.else -PLIST_SUB+= ARCHIVE="" -.endif - -.include <bsd.port.post.mk> diff --git a/devel/gvfs/distinfo b/devel/gvfs/distinfo deleted file mode 100644 index 5aa52eec0..000000000 --- a/devel/gvfs/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gvfs-1.2.1.tar.bz2) = df8f624587adfabe7009838ce6d8d5fd -SHA256 (gnome2/gvfs-1.2.1.tar.bz2) = 0e3c3469721ff1d4296bf4af7e1f131201d2dc6a36c772d99e1630f8cce31da2 -SIZE (gnome2/gvfs-1.2.1.tar.bz2) = 1048427 diff --git a/devel/gvfs/files/patch-Makefile.in b/devel/gvfs/files/patch-Makefile.in deleted file mode 100644 index 658cccd6a..000000000 --- a/devel/gvfs/files/patch-Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile.in.orig 2008-07-22 23:17:58.000000000 -0400 -+++ Makefile.in 2008-07-22 23:18:24.000000000 -0400 -@@ -269,7 +269,6 @@ SUBDIRS = \ - gconf \ - po \ - programs \ -- test \ - $(NULL) - - EXTRA_DIST = \ diff --git a/devel/gvfs/files/patch-client_Makefile.in b/devel/gvfs/files/patch-client_Makefile.in deleted file mode 100644 index ffbfd5878..000000000 --- a/devel/gvfs/files/patch-client_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- client/Makefile.in.orig 2008-02-11 20:05:14.000000000 -0500 -+++ client/Makefile.in 2008-02-11 20:05:42.000000000 -0500 -@@ -152,7 +152,7 @@ EXEEXT = @EXEEXT@ - F77 = @F77@ - FFLAGS = @FFLAGS@ - FUSE_CFLAGS = @FUSE_CFLAGS@ --FUSE_LIBS = @FUSE_LIBS@ -+FUSE_LIBS = @FUSE_LIBS@ -lfuse - GCONF_CFLAGS = @GCONF_CFLAGS@ - GCONF_LIBS = @GCONF_LIBS@ - GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ diff --git a/devel/gvfs/files/patch-client_gvfsfusedaemon.c b/devel/gvfs/files/patch-client_gvfsfusedaemon.c deleted file mode 100644 index 3733aa7e3..000000000 --- a/devel/gvfs/files/patch-client_gvfsfusedaemon.c +++ /dev/null @@ -1,12 +0,0 @@ ---- client/gvfsfusedaemon.c.orig 2007-11-06 18:06:41.000000000 -0500 -+++ client/gvfsfusedaemon.c 2007-11-06 18:07:30.000000000 -0500 -@@ -28,7 +28,9 @@ - #include <sys/types.h> - #include <sys/socket.h> - #include <sys/un.h> -+#ifdef __linux__ - #include <sys/vfs.h> -+#endif - #include <sys/time.h> - #include <unistd.h> - #include <stdlib.h> diff --git a/devel/gvfs/files/patch-configure b/devel/gvfs/files/patch-configure deleted file mode 100644 index a707a133b..000000000 --- a/devel/gvfs/files/patch-configure +++ /dev/null @@ -1,12 +0,0 @@ ---- configure.orig 2009-03-02 17:50:05.000000000 -0500 -+++ configure 2009-03-02 17:50:44.000000000 -0500 -@@ -26973,6 +26973,9 @@ fi - *-linux*) - use_gphoto2=yes - ;; -+ *-freebsd*) -+ use_gphoto2=yes -+ ;; - *) - use_gphoto2=no - ;; diff --git a/devel/gvfs/files/patch-daemon_gvfswritechannel.c b/devel/gvfs/files/patch-daemon_gvfswritechannel.c deleted file mode 100644 index 54c421687..000000000 --- a/devel/gvfs/files/patch-daemon_gvfswritechannel.c +++ /dev/null @@ -1,10 +0,0 @@ ---- daemon/gvfswritechannel.c.orig 2007-12-22 18:50:10.000000000 -0500 -+++ daemon/gvfswritechannel.c 2007-12-22 18:50:20.000000000 -0500 -@@ -30,6 +30,7 @@ - #include <sys/un.h> - #include <unistd.h> - #include <fcntl.h> -+#include <string.h> - - #include <glib.h> - #include <glib-object.h> diff --git a/devel/gvfs/files/patch-monitor_gphoto2_ggphoto2volume.c b/devel/gvfs/files/patch-monitor_gphoto2_ggphoto2volume.c deleted file mode 100644 index 6686b28ae..000000000 --- a/devel/gvfs/files/patch-monitor_gphoto2_ggphoto2volume.c +++ /dev/null @@ -1,14 +0,0 @@ ---- monitor/gphoto2/ggphoto2volume.c.orig 2008-07-22 09:29:19.000000000 -0400 -+++ monitor/gphoto2/ggphoto2volume.c 2008-07-22 23:22:30.000000000 -0400 -@@ -277,7 +277,11 @@ g_gphoto2_volume_new (GVolumeMonitor * - return NULL; - - /* TODO: other OS'es? Will address this with DK aka HAL 2.0 */ -+#ifdef __FreeBSD__ -+ device_path = hal_device_get_property_string (drive_device, "freebsd.device_file"); -+#else - device_path = hal_device_get_property_string (drive_device, "linux.device_file"); -+#endif - if (strlen (device_path) == 0) - device_path = NULL; - diff --git a/devel/gvfs/pkg-descr b/devel/gvfs/pkg-descr deleted file mode 100644 index f6ea31130..000000000 --- a/devel/gvfs/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -GVFS allows applications and users to treat any number of file system -concepts as a part of the local filesystem. With GVFS, filesystems across -the internet, on connected devices, and in multiple formats are as simple -to access (and write code for) as any directory on the local machine. - -WWW: http://www.gnome.org/ diff --git a/devel/gvfs/pkg-plist b/devel/gvfs/pkg-plist deleted file mode 100644 index a10939f60..000000000 --- a/devel/gvfs/pkg-plist +++ /dev/null @@ -1,150 +0,0 @@ -bin/gvfs-cat -bin/gvfs-copy -bin/gvfs-info -bin/gvfs-less -bin/gvfs-ls -bin/gvfs-mkdir -bin/gvfs-monitor-dir -bin/gvfs-monitor-file -bin/gvfs-mount -bin/gvfs-move -bin/gvfs-open -bin/gvfs-rename -bin/gvfs-rm -bin/gvfs-save -bin/gvfs-trash -bin/gvfs-tree -etc/profile.d/gvfs-bash-completion.sh -include/gvfs-client/gvfs/gvfsurimapper.h -include/gvfs-client/gvfs/gvfsuriutils.h -lib/gio/modules/libgiogconf.la -lib/gio/modules/libgiogconf.so -lib/gio/modules/libgioremote-volume-monitor.la -lib/gio/modules/libgioremote-volume-monitor.so -lib/gio/modules/libgvfsdbus.la -lib/gio/modules/libgvfsdbus.so -lib/libgvfscommon-dnssd.la -lib/libgvfscommon-dnssd.so -lib/libgvfscommon-dnssd.so.0 -lib/libgvfscommon.la -lib/libgvfscommon.so -lib/libgvfscommon.so.0 -%%FUSE%%libexec/gvfs-fuse-daemon -%%GPHOTO2%%libexec/gvfs-gphoto2-volume-monitor -libexec/gvfs-hal-volume-monitor -libexec/gvfsd -%%ARCHIVE%%libexec/gvfsd-archive -libexec/gvfsd-burn -%%CDDA%%libexec/gvfsd-cdda -libexec/gvfsd-computer -libexec/gvfsd-dav -libexec/gvfsd-dnssd -libexec/gvfsd-ftp -%%GPHOTO2%%libexec/gvfsd-gphoto2 -libexec/gvfsd-http -libexec/gvfsd-localtest -libexec/gvfsd-network -libexec/gvfsd-sftp -%%SMB%%libexec/gvfsd-smb -%%SMB%%libexec/gvfsd-smb-browse -libexec/gvfsd-trash -share/dbus-1/services/gvfs-daemon.service -%%GPHOTO2%%share/dbus-1/services/org.gtk.Private.GPhoto2VolumeMonitor.service -share/dbus-1/services/org.gtk.Private.HalVolumeMonitor.service -%%ARCHIVE%%share/gvfs/mounts/archive.mount -share/gvfs/mounts/burn.mount -%%CDDA%%share/gvfs/mounts/cdda.mount -share/gvfs/mounts/computer.mount -share/gvfs/mounts/dav.mount -share/gvfs/mounts/dav+sd.mount -share/gvfs/mounts/dns-sd.mount -share/gvfs/mounts/ftp.mount -%%GPHOTO2%%share/gvfs/mounts/gphoto2.mount -share/gvfs/mounts/http.mount -share/gvfs/mounts/localtest.mount -share/gvfs/mounts/network.mount -share/gvfs/mounts/sftp.mount -%%SMB%%share/gvfs/mounts/smb-browse.mount -%%SMB%%share/gvfs/mounts/smb.mount -share/gvfs/mounts/trash.mount -%%GPHOTO2%%share/gvfs/remote-volume-monitors/gphoto2.monitor -share/gvfs/remote-volume-monitors/hal.monitor -share/locale/ar/LC_MESSAGES/gvfs.mo -share/locale/as/LC_MESSAGES/gvfs.mo -share/locale/be@latin/LC_MESSAGES/gvfs.mo -share/locale/bg/LC_MESSAGES/gvfs.mo -share/locale/bn_IN/LC_MESSAGES/gvfs.mo -share/locale/ca/LC_MESSAGES/gvfs.mo -share/locale/cs/LC_MESSAGES/gvfs.mo -share/locale/da/LC_MESSAGES/gvfs.mo -share/locale/de/LC_MESSAGES/gvfs.mo -share/locale/el/LC_MESSAGES/gvfs.mo -share/locale/en_GB/LC_MESSAGES/gvfs.mo -share/locale/es/LC_MESSAGES/gvfs.mo -share/locale/et/LC_MESSAGES/gvfs.mo -share/locale/eu/LC_MESSAGES/gvfs.mo -share/locale/fi/LC_MESSAGES/gvfs.mo -share/locale/fr/LC_MESSAGES/gvfs.mo -share/locale/ga/LC_MESSAGES/gvfs.mo -share/locale/gl/LC_MESSAGES/gvfs.mo -share/locale/gu/LC_MESSAGES/gvfs.mo -share/locale/he/LC_MESSAGES/gvfs.mo -share/locale/hi/LC_MESSAGES/gvfs.mo -share/locale/hu/LC_MESSAGES/gvfs.mo -share/locale/it/LC_MESSAGES/gvfs.mo -share/locale/ja/LC_MESSAGES/gvfs.mo -share/locale/kn/LC_MESSAGES/gvfs.mo -share/locale/ko/LC_MESSAGES/gvfs.mo -share/locale/ku/LC_MESSAGES/gvfs.mo -share/locale/lt/LC_MESSAGES/gvfs.mo -share/locale/lv/LC_MESSAGES/gvfs.mo -share/locale/mk/LC_MESSAGES/gvfs.mo -share/locale/ml/LC_MESSAGES/gvfs.mo -share/locale/mr/LC_MESSAGES/gvfs.mo -share/locale/nb/LC_MESSAGES/gvfs.mo -share/locale/nl/LC_MESSAGES/gvfs.mo -share/locale/nn/LC_MESSAGES/gvfs.mo -share/locale/or/LC_MESSAGES/gvfs.mo -share/locale/pa/LC_MESSAGES/gvfs.mo -share/locale/pl/LC_MESSAGES/gvfs.mo -share/locale/pt/LC_MESSAGES/gvfs.mo -share/locale/pt_BR/LC_MESSAGES/gvfs.mo -share/locale/ro/LC_MESSAGES/gvfs.mo -share/locale/ru/LC_MESSAGES/gvfs.mo -share/locale/sk/LC_MESSAGES/gvfs.mo -share/locale/sl/LC_MESSAGES/gvfs.mo -share/locale/sq/LC_MESSAGES/gvfs.mo -share/locale/sr/LC_MESSAGES/gvfs.mo -share/locale/sr@latin/LC_MESSAGES/gvfs.mo -share/locale/sv/LC_MESSAGES/gvfs.mo -share/locale/ta/LC_MESSAGES/gvfs.mo -share/locale/te/LC_MESSAGES/gvfs.mo -share/locale/th/LC_MESSAGES/gvfs.mo -share/locale/tr/LC_MESSAGES/gvfs.mo -share/locale/uk/LC_MESSAGES/gvfs.mo -share/locale/vi/LC_MESSAGES/gvfs.mo -share/locale/zh_CN/LC_MESSAGES/gvfs.mo -share/locale/zh_HK/LC_MESSAGES/gvfs.mo -share/locale/zh_TW/LC_MESSAGES/gvfs.mo -@dirrm share/gvfs/remote-volume-monitors -@dirrm share/gvfs/mounts -@dirrm share/gvfs -@dirrm include/gvfs-client/gvfs -@dirrm include/gvfs-client -@dirrmtry etc/profile.d -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/devel/libgtop/Makefile b/devel/libgtop/Makefile deleted file mode 100644 index 5ba509199..000000000 --- a/devel/libgtop/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: libgtop2 -# Date Created: 29 April 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/libgtop/Makefile,v 1.45 2009/01/10 01:59:21 mezz Exp $ -# - -PORTNAME= libgtop -PORTVERSION= 2.26.0 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 top library - -USE_BZIP2= yes -USE_PERL5_BUILD=yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomehack glib20 ltverhack intlhack -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --disable-gtk-doc \ - --with-html-dir=${PREFIX}/share/doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -INFO= libgtop2 - -PKGMESSAGE= ${FILESDIR}/pkg-message - -.include <bsd.port.pre.mk> - -.if ( ${OSVERSION} >= 800000 && ${OSVERSION} < 800019 ) || \ - ${OSVERSION} < 700104 -RUN_DEPENDS+= lsof:${PORTSDIR}/sysutils/lsof -.endif - -post-patch: - @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} -f - -post-install: - @${CHGRP} kmem ${PREFIX}/bin/libgtop_server2 - @${CHMOD} 2555 ${PREFIX}/bin/libgtop_server2 - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/devel/libgtop/distinfo b/devel/libgtop/distinfo deleted file mode 100644 index 6bcefcbda..000000000 --- a/devel/libgtop/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgtop-2.26.0.tar.bz2) = a51ff49eddcce4573f7385e4be33158a -SHA256 (gnome2/libgtop-2.26.0.tar.bz2) = acc11d54614722a752a44237b5e11e9d6508da82c6d7ad25bf97156f5e28a7fd -SIZE (gnome2/libgtop-2.26.0.tar.bz2) = 791512 diff --git a/devel/libgtop/files/patch-config.h.in b/devel/libgtop/files/patch-config.h.in deleted file mode 100644 index 8fc4a10b1..000000000 --- a/devel/libgtop/files/patch-config.h.in +++ /dev/null @@ -1,12 +0,0 @@ ---- config.h.in.orig 2008-12-06 16:05:23.000000000 -0500 -+++ config.h.in 2008-12-06 16:05:27.000000000 -0500 -@@ -115,6 +115,9 @@ - /* defined if you have linux/isdn.h */ - #undef HAVE_ISDN_H - -+/* Define if you have the kinfo_getfile function */ -+#undef HAVE_KINFO_GETFILE -+ - /* Define to 1 if you have the `lchown' function. */ - #undef HAVE_LCHOWN - diff --git a/devel/libgtop/files/patch-configure b/devel/libgtop/files/patch-configure deleted file mode 100644 index 800116d44..000000000 --- a/devel/libgtop/files/patch-configure +++ /dev/null @@ -1,81 +0,0 @@ ---- configure.orig 2009-01-13 01:39:39.000000000 -0500 -+++ configure 2009-01-13 01:45:25.000000000 -0500 -@@ -21745,6 +21745,78 @@ fi - if test -n "${osreldate}" && test ${osreldate} -ge 600000 ; then - EXTRA_SYSDEPS_LIBS="-lgeom -ldevstat" - fi -+ { echo "$as_me:$LINENO: checking for kinfo_getfile in -lutil" >&5 -+echo $ECHO_N "checking for kinfo_getfile in -lutil... $ECHO_C" >&6; } -+if test "${ac_cv_lib_util_kinfo_getfile+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lutil $LIBS" -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char kinfo_getfile (); -+int -+main () -+{ -+return kinfo_getfile (); -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ ac_cv_lib_util_kinfo_getfile=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_cv_lib_util_kinfo_getfile=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_lib_util_kinfo_getfile" >&5 -+echo "${ECHO_T}$ac_cv_lib_util_kinfo_getfile" >&6; } -+if test $ac_cv_lib_util_kinfo_getfile = yes; then -+ EXTRA_SYSDEPS_LIBS="${EXTRA_SYSDEPS_LIBS} -lutil" -+ -+cat >>confdefs.h <<\_ACEOF -+#define HAVE_KINFO_GETFILE 1 -+_ACEOF -+ -+else -+ : -+fi -+ - ;; - esac - diff --git a/devel/libgtop/files/patch-libgtop-sysdeps.m4 b/devel/libgtop/files/patch-libgtop-sysdeps.m4 deleted file mode 100644 index 1805da02a..000000000 --- a/devel/libgtop/files/patch-libgtop-sysdeps.m4 +++ /dev/null @@ -1,12 +0,0 @@ ---- libgtop-sysdeps.m4.orig 2008-04-21 14:58:38.000000000 -0400 -+++ libgtop-sysdeps.m4 2008-12-06 16:16:00.000000000 -0500 -@@ -158,6 +160,9 @@ AC_DEFUN([GNOME_LIBGTOP_SYSDEPS],[ - if test -n "${osreldate}" && test ${osreldate} -ge 600000 ; then - EXTRA_SYSDEPS_LIBS="-lgeom -ldevstat" - fi -+ AC_CHECK_LIB(util, kinfo_getfile, -+ [EXTRA_SYSDEPS_LIBS="${EXTRA_SYSDEPS_LIBS} -lutil" -+ AC_DEFINE(HAVE_KINFO_GETFILE, 1, [Define if you have the kinfo_getfile function])], [:]) - ;; - esac - diff --git a/devel/libgtop/files/patch-src_daemon_server.c b/devel/libgtop/files/patch-src_daemon_server.c deleted file mode 100644 index bf0bba5c7..000000000 --- a/devel/libgtop/files/patch-src_daemon_server.c +++ /dev/null @@ -1,17 +0,0 @@ ---- src/daemon/server.c.orig Mon Feb 17 15:22:19 2003 -+++ src/daemon/server.c Mon Feb 17 15:23:31 2003 -@@ -88,11 +88,12 @@ - if (strcmp (uts.sysname, LIBGTOP_COMPILE_SYSTEM) || - strcmp (uts.release, LIBGTOP_COMPILE_RELEASE) || - strcmp (uts.machine, LIBGTOP_COMPILE_MACHINE)) { -- fprintf (stderr, "Can only run on %s %s %s\n", -+ fprintf (stderr, "This libgtop was compiled on %s %s %s\n", - LIBGTOP_COMPILE_SYSTEM, - LIBGTOP_COMPILE_RELEASE, - LIBGTOP_COMPILE_MACHINE); -- _exit (1); -+ fprintf (stderr, "If you see strange problems caused by it,\n"); -+ fprintf (stderr, "you should recompile libgtop and dependent applications\n"); - } - #endif - diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_Makefile.am b/devel/libgtop/files/patch-sysdeps_freebsd_Makefile.am deleted file mode 100644 index 25ec1f7d7..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_Makefile.am +++ /dev/null @@ -1,17 +0,0 @@ ---- sysdeps/freebsd/Makefile.am.orig 2008-09-29 17:21:56.000000000 -0400 -+++ sysdeps/freebsd/Makefile.am 2008-09-29 17:22:07.000000000 -0400 -@@ -7,12 +7,12 @@ libgtop_sysdeps_2_0_la_SOURCES = nosuid. - cpu.c msg_limits.c sem_limits.c loadavg.c \ - uptime.c netlist.c fsusage.c mem.c \ - mountlist.c procopenfiles.c procwd.c \ -- procaffinity.c glibtop_private.c -+ procaffinity.c glibtop_private.c open.c - - libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO) - - libgtop_sysdeps_suid_2_0_la_LIBADD = $(KVM_LIBS) $(EXTRA_SYSDEPS_LIBS) --libgtop_sysdeps_suid_2_0_la_SOURCES = open.c close.c swap.c \ -+libgtop_sysdeps_suid_2_0_la_SOURCES = suid_open.c close.c swap.c \ - proclist.c procstate.c procuid.c \ - proctime.c procmem.c procsignal.c \ - prockernel.c procsegment.c procargs.c \ diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_Makefile.in b/devel/libgtop/files/patch-sysdeps_freebsd_Makefile.in deleted file mode 100644 index d60fe782e..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_Makefile.in +++ /dev/null @@ -1,43 +0,0 @@ ---- sysdeps/freebsd/Makefile.in.orig 2009-01-13 01:49:02.172092000 -0500 -+++ sysdeps/freebsd/Makefile.in 2009-01-13 01:53:30.000000000 -0500 -@@ -50,7 +50,8 @@ libgtop_sysdeps_2_0_la_LIBADD = - am_libgtop_sysdeps_2_0_la_OBJECTS = nosuid.lo siglist.lo sysinfo.lo \ - shm_limits.lo cpu.lo msg_limits.lo sem_limits.lo loadavg.lo \ - uptime.lo netlist.lo fsusage.lo mem.lo mountlist.lo \ -- procopenfiles.lo procwd.lo procaffinity.lo glibtop_private.lo -+ procopenfiles.lo procwd.lo procaffinity.lo glibtop_private.lo \ -+ open.lo - libgtop_sysdeps_2_0_la_OBJECTS = $(am_libgtop_sysdeps_2_0_la_OBJECTS) - libgtop_sysdeps_2_0_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -@@ -58,7 +59,7 @@ libgtop_sysdeps_2_0_la_LINK = $(LIBTOOL) - am__DEPENDENCIES_1 = - libgtop_sysdeps_suid_2_0_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) --am_libgtop_sysdeps_suid_2_0_la_OBJECTS = open.lo close.lo swap.lo \ -+am_libgtop_sysdeps_suid_2_0_la_OBJECTS = suid_open.lo close.lo swap.lo \ - proclist.lo procstate.lo procuid.lo proctime.lo procmem.lo \ - procsignal.lo prockernel.lo procsegment.lo procargs.lo \ - procmap.lo netload.lo ppp.lo -@@ -296,11 +297,11 @@ libgtop_sysdeps_2_0_la_SOURCES = nosuid. - cpu.c msg_limits.c sem_limits.c loadavg.c \ - uptime.c netlist.c fsusage.c mem.c \ - mountlist.c procopenfiles.c procwd.c \ -- procaffinity.c glibtop_private.c -+ procaffinity.c glibtop_private.c open.c - - libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO) - libgtop_sysdeps_suid_2_0_la_LIBADD = $(KVM_LIBS) $(EXTRA_SYSDEPS_LIBS) --libgtop_sysdeps_suid_2_0_la_SOURCES = open.c close.c swap.c \ -+libgtop_sysdeps_suid_2_0_la_SOURCES = suid_open.c close.c swap.c \ - proclist.c procstate.c procuid.c \ - proctime.c procmem.c procsignal.c \ - prockernel.c procsegment.c procargs.c \ -@@ -375,6 +376,7 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netlist.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netload.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nosuid.Plo@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/suid_open.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/open.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppp.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/procaffinity.Plo@am__quote@ diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_nosuid.c b/devel/libgtop/files/patch-sysdeps_freebsd_nosuid.c deleted file mode 100644 index acb327f98..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_nosuid.c +++ /dev/null @@ -1,19 +0,0 @@ ---- sysdeps/freebsd/nosuid.c.orig 2008-09-29 17:28:31.000000000 -0400 -+++ sysdeps/freebsd/nosuid.c 2008-09-29 17:28:39.000000000 -0400 -@@ -21,16 +21,8 @@ - - #include <config.h> - #include <glibtop.h> --#include <glibtop/open.h> - #include <glibtop/close.h> - - void --glibtop_open_s (glibtop *server, -- const char *program_name, -- const unsigned long features, -- const unsigned flags) --{ } -- --void - glibtop_close_s (glibtop *server) - { } diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_open.c b/devel/libgtop/files/patch-sysdeps_freebsd_open.c deleted file mode 100644 index f7bf0e3b1..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_open.c +++ /dev/null @@ -1,91 +0,0 @@ ---- sysdeps/freebsd/open.c.orig 2008-05-23 18:13:23.000000000 -0400 -+++ sysdeps/freebsd/open.c 2008-09-29 17:23:22.000000000 -0400 -@@ -20,76 +20,33 @@ - */ - - #include <config.h> -+#include <sys/types.h> -+#include <sys/sysctl.h> - #include <glibtop.h> --#include <glibtop/error.h> - #include <glibtop/open.h> --#include <glibtop/init_hooks.h> -- --/* !!! THIS FUNCTION RUNS SUID ROOT - CHANGE WITH CAUTION !!! */ -- --void --glibtop_init_p (glibtop *server, const unsigned long features, -- const unsigned flags) --{ -- const _glibtop_init_func_t *init_fkt; -- -- if (server == NULL) -- glibtop_error_r (NULL, "glibtop_init_p (server == NULL)"); -- -- /* Do the initialization, but only if not already initialized. */ -- -- if ((server->flags & _GLIBTOP_INIT_STATE_SYSDEPS) == 0) { -- glibtop_open_p (server, "glibtop", features, flags); -+#include <glibtop/cpu.h> -+#include <glibtop/error.h> - -- for (init_fkt = _glibtop_init_hook_p; *init_fkt; init_fkt++) -- (*init_fkt) (server); -+#include <glibtop_private.h> - -- server->flags |= _GLIBTOP_INIT_STATE_SYSDEPS; -- } --} - - void --glibtop_open_p (glibtop *server, const char *program_name, -+glibtop_open_s (glibtop *server, const char *program_name, - const unsigned long features, - const unsigned flags) - { --#ifdef DEBUG -- fprintf (stderr, "DEBUG (%d): glibtop_open_p ()\n", getpid ()); --#endif -+ int ncpus; -+ size_t len; - -- /* !!! WE ARE ROOT HERE - CHANGE WITH CAUTION !!! */ -+ len = sizeof (ncpus); -+ sysctlbyname ("hw.ncpu", &ncpus, &len, NULL, 0); -+ server->real_ncpu = ncpus - 1; -+ server->ncpu = MIN(GLIBTOP_NCPU - 1, server->real_ncpu); - -- server->machine.uid = getuid (); -- server->machine.euid = geteuid (); -- server->machine.gid = getgid (); -- server->machine.egid = getegid (); - #if defined(__FreeBSD_kernel__) - server->os_version_code = __FreeBSD_kernel_version; - #else - server->os_version_code = __FreeBSD_version; - #endif -- /* Setup machine-specific data */ -- server->machine.kd = kvm_open (NULL, NULL, NULL, O_RDONLY, "kvm_open"); -- -- if (server->machine.kd == NULL) -- glibtop_error_io_r (server, "kvm_open"); -- -- /* Drop priviledges. */ -- -- if (setreuid (server->machine.euid, server->machine.uid)) -- _exit (1); -- -- if (setregid (server->machine.egid, server->machine.gid)) -- _exit (1); -- -- /* !!! END OF SUID ROOT PART !!! */ -- -- /* Our effective uid is now those of the user invoking the server, -- * so we do no longer have any priviledges. */ - -- /* NOTE: On FreeBSD, we do not need to be suid root, we just need to -- * be sgid kmem. -- * -- * The server will only use setegid() to get back it's priviledges, -- * so it will fail if it is suid root and not sgid kmem. */ - } diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_procopenfiles.c b/devel/libgtop/files/patch-sysdeps_freebsd_procopenfiles.c deleted file mode 100644 index e14dd39bd..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_procopenfiles.c +++ /dev/null @@ -1,59 +0,0 @@ ---- sysdeps/freebsd/procopenfiles.c.orig 2008-08-18 11:23:36.000000000 -0400 -+++ sysdeps/freebsd/procopenfiles.c 2008-12-07 00:17:26.000000000 -0500 -@@ -35,6 +35,9 @@ - #include <sys/user.h> - #include <netinet/in.h> - #include <arpa/inet.h> -+#ifdef HAVE_KINFO_PROC -+#include <libutil.h> -+#endif - #include <string.h> - #include <stdlib.h> - -@@ -263,8 +266,12 @@ glibtop_get_proc_open_files_s (glibtop * - { - #if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) - struct kinfo_file *freep, *kif; -+#ifndef HAVE_KINFO_GETFILE - int name[4]; - size_t len; -+#else -+ int cnt; -+#endif - size_t i; - #else - char *output; -@@ -274,6 +281,7 @@ glibtop_get_proc_open_files_s (glibtop * - memset(buf, 0, sizeof (glibtop_proc_open_files)); - - #if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) -+#ifndef HAVE_KINFO_GETFILE - name[0] = CTL_KERN; - name[1] = KERN_PROC; - name[2] = KERN_PROC_FILEDESC; -@@ -287,12 +295,25 @@ glibtop_get_proc_open_files_s (glibtop * - g_free(freep); - return NULL; - } -+#else -+ freep = kinfo_getfile(pid, &cnt); -+#endif - - entries = g_array_new(FALSE, FALSE, sizeof(glibtop_open_files_entry)); - -+#ifndef HAVE_KINFO_GETFILE - for (i = 0; i < len / sizeof(*kif); i++, kif++) { - glibtop_open_files_entry entry = {0}; - -+ if (kif->kf_structsize != sizeof(*kif)) -+ continue; -+#else -+ for (i = 0; i < cnt; i++) { -+ glibtop_open_files_entry entry = {0}; -+ -+ kif = &freep[i]; -+#endif -+ - if (kif->kf_fd < 0) - continue; - diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_procwd.c b/devel/libgtop/files/patch-sysdeps_freebsd_procwd.c deleted file mode 100644 index 731fec120..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_procwd.c +++ /dev/null @@ -1,58 +0,0 @@ ---- sysdeps/freebsd/procwd.c.orig 2008-08-18 11:23:36.000000000 -0400 -+++ sysdeps/freebsd/procwd.c 2008-12-07 00:19:44.000000000 -0500 -@@ -27,6 +27,9 @@ - #include <sys/sysctl.h> - #include <sys/param.h> - #include <sys/user.h> -+#ifdef HAVE_KINFO_GETFILE -+#include <libutil.h> -+#endif - #include <string.h> - - static const unsigned long _glibtop_sysdeps_proc_wd = -@@ -101,10 +104,14 @@ glibtop_get_proc_wd_s(glibtop *server, g - #if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) - struct kinfo_file *freep, *kif; - GPtrArray *dirs; -+#ifndef HAVE_KINFO_GETFILE - size_t len; -- int i; - int name[4]; - #else -+ int cnt; -+#endif -+ int i; -+#else - char *output; - #endif - -@@ -115,6 +122,7 @@ glibtop_get_proc_wd_s(glibtop *server, g - buf->flags |= (1 << GLIBTOP_PROC_WD_EXE); - - #if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) -+#ifndef HAVE_KINFO_GETFILE - name[0] = CTL_KERN; - name[1] = KERN_PROC; - name[2] = KERN_PROC_FILEDESC; -@@ -127,10 +135,21 @@ glibtop_get_proc_wd_s(glibtop *server, g - g_free(freep); - return NULL; - } -+#else -+ freep = kinfo_getfile(pid, &cnt); -+#endif - - dirs = g_ptr_array_sized_new(1); - -+#ifndef HAVE_KINFO_GETFILE - for (i = 0; i < len / sizeof(*kif); i++, kif++) { -+ if (kif->kf_structsize != sizeof(*kif)) -+ continue; -+#else -+ for (i = 0; i < cnt; i++) { -+ kif = &freep[i]; -+#endif -+ - switch (kif->kf_fd) { - case KF_FD_TYPE_ROOT: - g_strlcpy(buf->root, kif->kf_path, diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_suid_open.c b/devel/libgtop/files/patch-sysdeps_freebsd_suid_open.c deleted file mode 100644 index a188b364c..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_suid_open.c +++ /dev/null @@ -1,94 +0,0 @@ ---- sysdeps/freebsd/suid_open.c.orig 2008-09-29 17:22:12.000000000 -0400 -+++ sysdeps/freebsd/suid_open.c 2008-09-29 17:23:35.000000000 -0400 -@@ -0,0 +1,91 @@ -+/* Copyright (C) 1998 Joshua Sled -+ This file is part of LibGTop 1.0. -+ -+ Contributed by Joshua Sled <jsled@xcf.berkeley.edu>, July 1998. -+ -+ LibGTop is free software; you can redistribute it and/or modify it -+ under the terms of the GNU General Public License as published by -+ the Free Software Foundation; either version 2 of the License, -+ or (at your option) any later version. -+ -+ LibGTop is distributed in the hope that it will be useful, but WITHOUT -+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -+ for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with LibGTop; see the file COPYING. If not, write to the -+ Free Software Foundation, Inc., 59 Temple Place - Suite 330, -+ Boston, MA 02111-1307, USA. -+*/ -+ -+#include <config.h> -+#include <glibtop.h> -+#include <glibtop/error.h> -+#include <glibtop/cpu.h> -+#include <glibtop/open.h> -+#include <glibtop/init_hooks.h> -+ -+ -+/* !!! THIS FUNCTION RUNS SUID ROOT - CHANGE WITH CAUTION !!! */ -+ -+void -+glibtop_init_p (glibtop *server, const unsigned long features, -+ const unsigned flags) -+{ -+ const _glibtop_init_func_t *init_fkt; -+ -+ if (server == NULL) -+ glibtop_error_r (NULL, "glibtop_init_p (server == NULL)"); -+ -+ /* Do the initialization, but only if not already initialized. */ -+ -+ if ((server->flags & _GLIBTOP_INIT_STATE_SYSDEPS) == 0) { -+ glibtop_open_p (server, "glibtop", features, flags); -+ -+ for (init_fkt = _glibtop_init_hook_p; *init_fkt; init_fkt++) -+ (*init_fkt) (server); -+ -+ server->flags |= _GLIBTOP_INIT_STATE_SYSDEPS; -+ } -+} -+ -+void -+glibtop_open_p (glibtop *server, const char *program_name, -+ const unsigned long features, -+ const unsigned flags) -+{ -+#ifdef DEBUG -+ fprintf (stderr, "DEBUG (%d): glibtop_open_p ()\n", getpid ()); -+#endif -+ -+ /* !!! WE ARE ROOT HERE - CHANGE WITH CAUTION !!! */ -+ server->machine.uid = getuid (); -+ server->machine.euid = geteuid (); -+ server->machine.gid = getgid (); -+ server->machine.egid = getegid (); -+ /* Setup machine-specific data */ -+ server->machine.kd = kvm_open (NULL, NULL, NULL, O_RDONLY, "kvm_open"); -+ -+ if (server->machine.kd == NULL) -+ glibtop_error_io_r (server, "kvm_open"); -+ -+ /* Drop priviledges. */ -+ -+ if (setreuid (server->machine.euid, server->machine.uid)) -+ _exit (1); -+ -+ if (setregid (server->machine.egid, server->machine.gid)) -+ _exit (1); -+ -+ /* !!! END OF SUID ROOT PART !!! */ -+ -+ /* Our effective uid is now those of the user invoking the server, -+ * so we do no longer have any priviledges. */ -+ -+ /* NOTE: On FreeBSD, we do not need to be suid root, we just need to -+ * be sgid kmem. -+ * -+ * The server will only use setegid() to get back it's priviledges, -+ * so it will fail if it is suid root and not sgid kmem. */ -+} diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_sysinfo.c b/devel/libgtop/files/patch-sysdeps_freebsd_sysinfo.c deleted file mode 100644 index ab5fdd66d..000000000 --- a/devel/libgtop/files/patch-sysdeps_freebsd_sysinfo.c +++ /dev/null @@ -1,13 +0,0 @@ ---- sysdeps/freebsd/sysinfo.c.orig 2008-05-23 18:13:23.000000000 -0400 -+++ sysdeps/freebsd/sysinfo.c 2008-09-29 14:35:25.000000000 -0400 -@@ -45,8 +45,8 @@ init_sysinfo (glibtop *server) - - glibtop_init_s (&server, GLIBTOP_SYSDEPS_CPU, 0); - -- len = sizeof (ncpus); -- sysctlbyname ("hw.ncpu", &ncpus, &len, NULL, 0); -+ ncpus = server->ncpu + 1; -+ - len = 0; - sysctlbyname ("hw.model", NULL, &len, NULL, 0); - model = g_malloc (len); diff --git a/devel/libgtop/files/pkg-message b/devel/libgtop/files/pkg-message deleted file mode 100644 index dacaf62a9..000000000 --- a/devel/libgtop/files/pkg-message +++ /dev/null @@ -1,13 +0,0 @@ -=============================================================================== - -In order to use the File System read/write monitor, you must chmod -/dev/devstat so that all users can open it read-only. For example: - -# chmod 0444 /dev/devstat - -In order for this to persist across reboots, add the following to -/etc/devfs.conf: - -perm devstat 0444 - -=============================================================================== diff --git a/devel/libgtop/pkg-descr b/devel/libgtop/pkg-descr deleted file mode 100644 index f263f1127..000000000 --- a/devel/libgtop/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This library provides the backend for gtop2, a GNOME 2.0 version -of top(1) that allows display and manipulation of running -processes. diff --git a/devel/libgtop/pkg-plist b/devel/libgtop/pkg-plist deleted file mode 100644 index cbba908c8..000000000 --- a/devel/libgtop/pkg-plist +++ /dev/null @@ -1,205 +0,0 @@ -bin/libgtop_daemon2 -bin/libgtop_server2 -include/libgtop-2.0/glibtop.h -include/libgtop-2.0/glibtop/close.h -include/libgtop-2.0/glibtop/command.h -include/libgtop-2.0/glibtop/cpu.h -include/libgtop-2.0/glibtop/fsusage.h -include/libgtop-2.0/glibtop/global.h -include/libgtop-2.0/glibtop/gnuserv.h -include/libgtop-2.0/glibtop/loadavg.h -include/libgtop-2.0/glibtop/mem.h -include/libgtop-2.0/glibtop/mountlist.h -include/libgtop-2.0/glibtop/msg_limits.h -include/libgtop-2.0/glibtop/netlist.h -include/libgtop-2.0/glibtop/netload.h -include/libgtop-2.0/glibtop/open.h -include/libgtop-2.0/glibtop/parameter.h -include/libgtop-2.0/glibtop/ppp.h -include/libgtop-2.0/glibtop/procaffinity.h -include/libgtop-2.0/glibtop/procargs.h -include/libgtop-2.0/glibtop/prockernel.h -include/libgtop-2.0/glibtop/proclist.h -include/libgtop-2.0/glibtop/procmap.h -include/libgtop-2.0/glibtop/procmem.h -include/libgtop-2.0/glibtop/procopenfiles.h -include/libgtop-2.0/glibtop/procsegment.h -include/libgtop-2.0/glibtop/procsignal.h -include/libgtop-2.0/glibtop/procstate.h -include/libgtop-2.0/glibtop/proctime.h -include/libgtop-2.0/glibtop/procuid.h -include/libgtop-2.0/glibtop/procwd.h -include/libgtop-2.0/glibtop/sem_limits.h -include/libgtop-2.0/glibtop/shm_limits.h -include/libgtop-2.0/glibtop/signal.h -include/libgtop-2.0/glibtop/swap.h -include/libgtop-2.0/glibtop/sysdeps.h -include/libgtop-2.0/glibtop/sysinfo.h -include/libgtop-2.0/glibtop/union.h -include/libgtop-2.0/glibtop/uptime.h -include/libgtop-2.0/glibtop/version.h -include/libgtop-2.0/glibtop_machine.h -include/libgtop-2.0/glibtop_private.h -include/libgtop-2.0/glibtop_server.h -include/libgtop-2.0/glibtop_suid.h -include/libgtop-2.0/libgtopconfig.h -lib/libgtop-2.0.a -lib/libgtop-2.0.la -lib/libgtop-2.0.so -lib/libgtop-2.0.so.7 -libdata/pkgconfig/libgtop-2.0.pc -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/libgtop-Close.html -%%DOCSDIR%%/libgtop-Command.html -%%DOCSDIR%%/libgtop-GlibTop-Server.html -%%DOCSDIR%%/libgtop-GlibTop.html -%%DOCSDIR%%/libgtop-Net-List.html -%%DOCSDIR%%/libgtop-Net-Load.html -%%DOCSDIR%%/libgtop-PPP.html -%%DOCSDIR%%/libgtop-Shared-Memory-Limits.html -%%DOCSDIR%%/libgtop-Uptime.html -%%DOCSDIR%%/libgtop-cpu.html -%%DOCSDIR%%/libgtop-fsusage.html -%%DOCSDIR%%/libgtop-lib.html -%%DOCSDIR%%/libgtop-loadavg.html -%%DOCSDIR%%/libgtop-mem.html -%%DOCSDIR%%/libgtop-mountlist.html -%%DOCSDIR%%/libgtop-msg-limits.html -%%DOCSDIR%%/libgtop-open.html -%%DOCSDIR%%/libgtop-parameter.html -%%DOCSDIR%%/libgtop-procargs.html -%%DOCSDIR%%/libgtop-prockernel.html -%%DOCSDIR%%/libgtop-proclist.html -%%DOCSDIR%%/libgtop-procmap.html -%%DOCSDIR%%/libgtop-procmem.html -%%DOCSDIR%%/libgtop-procopenfiles.html -%%DOCSDIR%%/libgtop-procsegment.html -%%DOCSDIR%%/libgtop-procsignal.html -%%DOCSDIR%%/libgtop-procstate.html -%%DOCSDIR%%/libgtop-proctime.html -%%DOCSDIR%%/libgtop-procuid.html -%%DOCSDIR%%/libgtop-sem-limits.html -%%DOCSDIR%%/libgtop-signal.html -%%DOCSDIR%%/libgtop-swap.html -%%DOCSDIR%%/libgtop-sysdeps.html -%%DOCSDIR%%/libgtop-sysinfo.html -%%DOCSDIR%%/libgtop-union.html -%%DOCSDIR%%/libgtop-version.html -%%DOCSDIR%%/libgtop-white-paper-overview.html -%%DOCSDIR%%/libgtop-white-paper.html -%%DOCSDIR%%/libgtop.devhelp -%%DOCSDIR%%/libgtop.devhelp2 -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/locale/am/LC_MESSAGES/libgtop-2.0.mo -share/locale/ar/LC_MESSAGES/libgtop-2.0.mo -share/locale/az/LC_MESSAGES/libgtop-2.0.mo -share/locale/be/LC_MESSAGES/libgtop-2.0.mo -share/locale/bg/LC_MESSAGES/libgtop-2.0.mo -share/locale/bn/LC_MESSAGES/libgtop-2.0.mo -share/locale/bn_IN/LC_MESSAGES/libgtop-2.0.mo -share/locale/bs/LC_MESSAGES/libgtop-2.0.mo -share/locale/ca/LC_MESSAGES/libgtop-2.0.mo -share/locale/cs/LC_MESSAGES/libgtop-2.0.mo -share/locale/cy/LC_MESSAGES/libgtop-2.0.mo -share/locale/da/LC_MESSAGES/libgtop-2.0.mo -share/locale/de/LC_MESSAGES/libgtop-2.0.mo -share/locale/dz/LC_MESSAGES/libgtop-2.0.mo -share/locale/el/LC_MESSAGES/libgtop-2.0.mo -share/locale/en_CA/LC_MESSAGES/libgtop-2.0.mo -share/locale/en_GB/LC_MESSAGES/libgtop-2.0.mo -share/locale/eo/LC_MESSAGES/libgtop-2.0.mo -share/locale/es/LC_MESSAGES/libgtop-2.0.mo -share/locale/et/LC_MESSAGES/libgtop-2.0.mo -share/locale/eu/LC_MESSAGES/libgtop-2.0.mo -share/locale/fa/LC_MESSAGES/libgtop-2.0.mo -share/locale/fi/LC_MESSAGES/libgtop-2.0.mo -share/locale/fr/LC_MESSAGES/libgtop-2.0.mo -share/locale/ga/LC_MESSAGES/libgtop-2.0.mo -share/locale/gl/LC_MESSAGES/libgtop-2.0.mo -share/locale/gu/LC_MESSAGES/libgtop-2.0.mo -share/locale/he/LC_MESSAGES/libgtop-2.0.mo -share/locale/hi/LC_MESSAGES/libgtop-2.0.mo -share/locale/hr/LC_MESSAGES/libgtop-2.0.mo -share/locale/hu/LC_MESSAGES/libgtop-2.0.mo -share/locale/id/LC_MESSAGES/libgtop-2.0.mo -share/locale/it/LC_MESSAGES/libgtop-2.0.mo -share/locale/ja/LC_MESSAGES/libgtop-2.0.mo -share/locale/ka/LC_MESSAGES/libgtop-2.0.mo -share/locale/ko/LC_MESSAGES/libgtop-2.0.mo -share/locale/ku/LC_MESSAGES/libgtop-2.0.mo -share/locale/ky/LC_MESSAGES/libgtop-2.0.mo -share/locale/la/LC_MESSAGES/libgtop-2.0.mo -share/locale/lt/LC_MESSAGES/libgtop-2.0.mo -share/locale/lv/LC_MESSAGES/libgtop-2.0.mo -share/locale/mg/LC_MESSAGES/libgtop-2.0.mo -share/locale/mi/LC_MESSAGES/libgtop-2.0.mo -share/locale/mk/LC_MESSAGES/libgtop-2.0.mo -share/locale/ml/LC_MESSAGES/libgtop-2.0.mo -share/locale/mn/LC_MESSAGES/libgtop-2.0.mo -share/locale/mr/LC_MESSAGES/libgtop-2.0.mo -share/locale/ms/LC_MESSAGES/libgtop-2.0.mo -share/locale/nb/LC_MESSAGES/libgtop-2.0.mo -share/locale/ne/LC_MESSAGES/libgtop-2.0.mo -share/locale/nl/LC_MESSAGES/libgtop-2.0.mo -share/locale/nn/LC_MESSAGES/libgtop-2.0.mo -share/locale/oc/LC_MESSAGES/libgtop-2.0.mo -share/locale/or/LC_MESSAGES/libgtop-2.0.mo -share/locale/pa/LC_MESSAGES/libgtop-2.0.mo -share/locale/pl/LC_MESSAGES/libgtop-2.0.mo -share/locale/pt/LC_MESSAGES/libgtop-2.0.mo -share/locale/pt_BR/LC_MESSAGES/libgtop-2.0.mo -share/locale/ro/LC_MESSAGES/libgtop-2.0.mo -share/locale/ru/LC_MESSAGES/libgtop-2.0.mo -share/locale/rw/LC_MESSAGES/libgtop-2.0.mo -share/locale/sk/LC_MESSAGES/libgtop-2.0.mo -share/locale/sl/LC_MESSAGES/libgtop-2.0.mo -share/locale/sq/LC_MESSAGES/libgtop-2.0.mo -share/locale/sr/LC_MESSAGES/libgtop-2.0.mo -share/locale/sr@latin/LC_MESSAGES/libgtop-2.0.mo -share/locale/sv/LC_MESSAGES/libgtop-2.0.mo -share/locale/ta/LC_MESSAGES/libgtop-2.0.mo -share/locale/te/LC_MESSAGES/libgtop-2.0.mo -share/locale/th/LC_MESSAGES/libgtop-2.0.mo -share/locale/tr/LC_MESSAGES/libgtop-2.0.mo -share/locale/uk/LC_MESSAGES/libgtop-2.0.mo -share/locale/vi/LC_MESSAGES/libgtop-2.0.mo -share/locale/xh/LC_MESSAGES/libgtop-2.0.mo -share/locale/zh_CN/LC_MESSAGES/libgtop-2.0.mo -share/locale/zh_HK/LC_MESSAGES/libgtop-2.0.mo -share/locale/zh_TW/LC_MESSAGES/libgtop-2.0.mo -@dirrm %%DOCSDIR%% -@dirrm include/libgtop-2.0/glibtop -@dirrm include/libgtop-2.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/la/LC_MESSAGES -@dirrmtry share/locale/la -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/devel/libical/Makefile b/devel/libical/Makefile deleted file mode 100644 index 4da57bc26..000000000 --- a/devel/libical/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: libical -# Date created: 8 November 2002 -# Whom: Joe Kelsey -# -# $FreeBSD$ -# - -PORTNAME= libical -PORTVERSION= 0.43 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= freeassociation - -MAINTAINER= joe@zircon.seattle.wa.us -COMMENT= An implementation of the IETF's Calendaring and Scheduling protocols - -USE_GNOME= gnomehack -USE_AUTOTOOLS= libtool:15 -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_PERL5_BUILD=yes -USE_LDCONFIG= yes -CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" - -.if !defined(WITHOUT_PYTHON) -CONFIGURE_ARGS= --enable-python=yes -USE_PYTHON= yes -.else -CONFIGURE_ARGS= --enable-python=no -.endif - -.include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" || ${ARCH} == "ia64" -CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC" -.endif -.include <bsd.port.post.mk> diff --git a/devel/libical/distinfo b/devel/libical/distinfo deleted file mode 100644 index de9dfdee2..000000000 --- a/devel/libical/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libical-0.43.tar.gz) = 5f0a1feb60894d0be537aefea5647474 -SHA256 (libical-0.43.tar.gz) = 099f3e29a864de324477983eefaf17a4ef3b4ec8f075f95384db1ac67b6663a6 -SIZE (libical-0.43.tar.gz) = 1145724 diff --git a/devel/libical/pkg-descr b/devel/libical/pkg-descr deleted file mode 100644 index 3049d48d8..000000000 --- a/devel/libical/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Libical is an Open Source implementation of the IETF's iCalendar -Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It -parses iCal components and provides a C API for manipulating the -component properties, parameters, and subcomponents. - -WWW: http://freeassociation.sourceforge.net/ - -/Joe Kelsey -joe@zircon.seattle.wa.us diff --git a/devel/libical/pkg-plist b/devel/libical/pkg-plist deleted file mode 100644 index e944e299a..000000000 --- a/devel/libical/pkg-plist +++ /dev/null @@ -1,474 +0,0 @@ -include/ical.h -include/libical/ical.h -include/libical/icalarray.h -include/libical/icalattach.h -include/libical/icalcalendar.h -include/libical/icalclassify.h -include/libical/icalcluster.h -include/libical/icalcomponent.h -include/libical/icalderivedparameter.h -include/libical/icalderivedproperty.h -include/libical/icalderivedvalue.h -include/libical/icaldirset.h -include/libical/icaldirsetimpl.h -include/libical/icalduration.h -include/libical/icalenums.h -include/libical/icalerror.h -include/libical/icalfileset.h -include/libical/icalfilesetimpl.h -include/libical/icalgauge.h -include/libical/icalgaugeimpl.h -include/libical/icallangbind.h -include/libical/icalmemory.h -include/libical/icalmessage.h -include/libical/icalmime.h -include/libical/icalparameter.h -include/libical/icalparser.h -include/libical/icalperiod.h -include/libical/icalproperty.h -include/libical/icalrecur.h -include/libical/icalrestriction.h -include/libical/icalset.h -include/libical/icalspanlist.h -include/libical/icalss.h -include/libical/icalssyacc.h -include/libical/icaltime.h -include/libical/icaltimezone.h -include/libical/icaltypes.h -include/libical/icaltz-util.h -include/libical/icalvalue.h -include/libical/icalvcal.h -include/libical/port.h -include/libical/pvl.h -include/libical/sspm.h -include/libical/vcaltmp.h -include/libical/vcc.h -include/libical/vobject.h -lib/libical.a -lib/libical.la -lib/libical.so -lib/libical.so.43 -lib/libicalss.a -lib/libicalss.la -lib/libicalss.so -lib/libicalss.so.43 -lib/libicalvcal.a -lib/libicalvcal.la -lib/libicalvcal.so -lib/libicalvcal.so.43 -libdata/pkgconfig/libical.pc -share/libical/zoneinfo/Africa/Abidjan.ics -share/libical/zoneinfo/Africa/Accra.ics -share/libical/zoneinfo/Africa/Addis_Ababa.ics -share/libical/zoneinfo/Africa/Algiers.ics -share/libical/zoneinfo/Africa/Asmara.ics -share/libical/zoneinfo/Africa/Bamako.ics -share/libical/zoneinfo/Africa/Bangui.ics -share/libical/zoneinfo/Africa/Banjul.ics -share/libical/zoneinfo/Africa/Bissau.ics -share/libical/zoneinfo/Africa/Blantyre.ics -share/libical/zoneinfo/Africa/Brazzaville.ics -share/libical/zoneinfo/Africa/Bujumbura.ics -share/libical/zoneinfo/Africa/Cairo.ics -share/libical/zoneinfo/Africa/Casablanca.ics -share/libical/zoneinfo/Africa/Ceuta.ics -share/libical/zoneinfo/Africa/Conakry.ics -share/libical/zoneinfo/Africa/Dakar.ics -share/libical/zoneinfo/Africa/Dar_es_Salaam.ics -share/libical/zoneinfo/Africa/Djibouti.ics -share/libical/zoneinfo/Africa/Douala.ics -share/libical/zoneinfo/Africa/El_Aaiun.ics -share/libical/zoneinfo/Africa/Freetown.ics -share/libical/zoneinfo/Africa/Gaborone.ics -share/libical/zoneinfo/Africa/Harare.ics -share/libical/zoneinfo/Africa/Johannesburg.ics -share/libical/zoneinfo/Africa/Kampala.ics -share/libical/zoneinfo/Africa/Khartoum.ics -share/libical/zoneinfo/Africa/Kigali.ics -share/libical/zoneinfo/Africa/Kinshasa.ics -share/libical/zoneinfo/Africa/Lagos.ics -share/libical/zoneinfo/Africa/Libreville.ics -share/libical/zoneinfo/Africa/Lome.ics -share/libical/zoneinfo/Africa/Luanda.ics -share/libical/zoneinfo/Africa/Lubumbashi.ics -share/libical/zoneinfo/Africa/Lusaka.ics -share/libical/zoneinfo/Africa/Malabo.ics -share/libical/zoneinfo/Africa/Maputo.ics -share/libical/zoneinfo/Africa/Maseru.ics -share/libical/zoneinfo/Africa/Mbabane.ics -share/libical/zoneinfo/Africa/Mogadishu.ics -share/libical/zoneinfo/Africa/Monrovia.ics -share/libical/zoneinfo/Africa/Nairobi.ics -share/libical/zoneinfo/Africa/Ndjamena.ics -share/libical/zoneinfo/Africa/Niamey.ics -share/libical/zoneinfo/Africa/Nouakchott.ics -share/libical/zoneinfo/Africa/Ouagadougou.ics -share/libical/zoneinfo/Africa/Porto-Novo.ics -share/libical/zoneinfo/Africa/Sao_Tome.ics -share/libical/zoneinfo/Africa/Tripoli.ics -share/libical/zoneinfo/Africa/Tunis.ics -share/libical/zoneinfo/Africa/Windhoek.ics -share/libical/zoneinfo/America/Adak.ics -share/libical/zoneinfo/America/Anchorage.ics -share/libical/zoneinfo/America/Anguilla.ics -share/libical/zoneinfo/America/Antigua.ics -share/libical/zoneinfo/America/Araguaina.ics -share/libical/zoneinfo/America/Argentina/Buenos_Aires.ics -share/libical/zoneinfo/America/Argentina/Catamarca.ics -share/libical/zoneinfo/America/Argentina/Cordoba.ics -share/libical/zoneinfo/America/Argentina/Jujuy.ics -share/libical/zoneinfo/America/Argentina/La_Rioja.ics -share/libical/zoneinfo/America/Argentina/Mendoza.ics -share/libical/zoneinfo/America/Argentina/Rio_Gallegos.ics -share/libical/zoneinfo/America/Argentina/San_Juan.ics -share/libical/zoneinfo/America/Argentina/Tucuman.ics -share/libical/zoneinfo/America/Argentina/Ushuaia.ics -share/libical/zoneinfo/America/Aruba.ics -share/libical/zoneinfo/America/Asuncion.ics -share/libical/zoneinfo/America/Atikokan.ics -share/libical/zoneinfo/America/Bahia.ics -share/libical/zoneinfo/America/Barbados.ics -share/libical/zoneinfo/America/Belem.ics -share/libical/zoneinfo/America/Belize.ics -share/libical/zoneinfo/America/Blanc-Sablon.ics -share/libical/zoneinfo/America/Boa_Vista.ics -share/libical/zoneinfo/America/Bogota.ics -share/libical/zoneinfo/America/Boise.ics -share/libical/zoneinfo/America/Cambridge_Bay.ics -share/libical/zoneinfo/America/Campo_Grande.ics -share/libical/zoneinfo/America/Cancun.ics -share/libical/zoneinfo/America/Caracas.ics -share/libical/zoneinfo/America/Cayenne.ics -share/libical/zoneinfo/America/Cayman.ics -share/libical/zoneinfo/America/Chicago.ics -share/libical/zoneinfo/America/Chihuahua.ics -share/libical/zoneinfo/America/Costa_Rica.ics -share/libical/zoneinfo/America/Cuiaba.ics -share/libical/zoneinfo/America/Curacao.ics -share/libical/zoneinfo/America/Danmarkshavn.ics -share/libical/zoneinfo/America/Dawson.ics -share/libical/zoneinfo/America/Dawson_Creek.ics -share/libical/zoneinfo/America/Denver.ics -share/libical/zoneinfo/America/Detroit.ics -share/libical/zoneinfo/America/Dominica.ics -share/libical/zoneinfo/America/Edmonton.ics -share/libical/zoneinfo/America/Eirunepe.ics -share/libical/zoneinfo/America/El_Salvador.ics -share/libical/zoneinfo/America/Fortaleza.ics -share/libical/zoneinfo/America/Glace_Bay.ics -share/libical/zoneinfo/America/Godthab.ics -share/libical/zoneinfo/America/Goose_Bay.ics -share/libical/zoneinfo/America/Grand_Turk.ics -share/libical/zoneinfo/America/Grenada.ics -share/libical/zoneinfo/America/Guadeloupe.ics -share/libical/zoneinfo/America/Guatemala.ics -share/libical/zoneinfo/America/Guayaquil.ics -share/libical/zoneinfo/America/Guyana.ics -share/libical/zoneinfo/America/Halifax.ics -share/libical/zoneinfo/America/Havana.ics -share/libical/zoneinfo/America/Hermosillo.ics -share/libical/zoneinfo/America/Indiana/Indianapolis.ics -share/libical/zoneinfo/America/Indiana/Knox.ics -share/libical/zoneinfo/America/Indiana/Marengo.ics -share/libical/zoneinfo/America/Indiana/Petersburg.ics -share/libical/zoneinfo/America/Indiana/Vevay.ics -share/libical/zoneinfo/America/Indiana/Vincennes.ics -share/libical/zoneinfo/America/Indiana/Winamac.ics -share/libical/zoneinfo/America/Inuvik.ics -share/libical/zoneinfo/America/Iqaluit.ics -share/libical/zoneinfo/America/Jamaica.ics -share/libical/zoneinfo/America/Juneau.ics -share/libical/zoneinfo/America/Kentucky/Louisville.ics -share/libical/zoneinfo/America/Kentucky/Monticello.ics -share/libical/zoneinfo/America/La_Paz.ics -share/libical/zoneinfo/America/Lima.ics -share/libical/zoneinfo/America/Los_Angeles.ics -share/libical/zoneinfo/America/Maceio.ics -share/libical/zoneinfo/America/Managua.ics -share/libical/zoneinfo/America/Manaus.ics -share/libical/zoneinfo/America/Martinique.ics -share/libical/zoneinfo/America/Mazatlan.ics -share/libical/zoneinfo/America/Menominee.ics -share/libical/zoneinfo/America/Merida.ics -share/libical/zoneinfo/America/Mexico_City.ics -share/libical/zoneinfo/America/Miquelon.ics -share/libical/zoneinfo/America/Moncton.ics -share/libical/zoneinfo/America/Monterrey.ics -share/libical/zoneinfo/America/Montevideo.ics -share/libical/zoneinfo/America/Montreal.ics -share/libical/zoneinfo/America/Montserrat.ics -share/libical/zoneinfo/America/Nassau.ics -share/libical/zoneinfo/America/New_York.ics -share/libical/zoneinfo/America/Nipigon.ics -share/libical/zoneinfo/America/Nome.ics -share/libical/zoneinfo/America/Noronha.ics -share/libical/zoneinfo/America/North_Dakota/Center.ics -share/libical/zoneinfo/America/North_Dakota/New_Salem.ics -share/libical/zoneinfo/America/Panama.ics -share/libical/zoneinfo/America/Pangnirtung.ics -share/libical/zoneinfo/America/Paramaribo.ics -share/libical/zoneinfo/America/Phoenix.ics -share/libical/zoneinfo/America/Port-au-Prince.ics -share/libical/zoneinfo/America/Port_of_Spain.ics -share/libical/zoneinfo/America/Porto_Velho.ics -share/libical/zoneinfo/America/Puerto_Rico.ics -share/libical/zoneinfo/America/Rainy_River.ics -share/libical/zoneinfo/America/Rankin_Inlet.ics -share/libical/zoneinfo/America/Recife.ics -share/libical/zoneinfo/America/Regina.ics -share/libical/zoneinfo/America/Rio_Branco.ics -share/libical/zoneinfo/America/Santiago.ics -share/libical/zoneinfo/America/Santo_Domingo.ics -share/libical/zoneinfo/America/Sao_Paulo.ics -share/libical/zoneinfo/America/Scoresbysund.ics -share/libical/zoneinfo/America/Shiprock.ics -share/libical/zoneinfo/America/St_Johns.ics -share/libical/zoneinfo/America/St_Kitts.ics -share/libical/zoneinfo/America/St_Lucia.ics -share/libical/zoneinfo/America/St_Thomas.ics -share/libical/zoneinfo/America/St_Vincent.ics -share/libical/zoneinfo/America/Swift_Current.ics -share/libical/zoneinfo/America/Tegucigalpa.ics -share/libical/zoneinfo/America/Thule.ics -share/libical/zoneinfo/America/Thunder_Bay.ics -share/libical/zoneinfo/America/Tijuana.ics -share/libical/zoneinfo/America/Toronto.ics -share/libical/zoneinfo/America/Tortola.ics -share/libical/zoneinfo/America/Vancouver.ics -share/libical/zoneinfo/America/Whitehorse.ics -share/libical/zoneinfo/America/Winnipeg.ics -share/libical/zoneinfo/America/Yakutat.ics -share/libical/zoneinfo/America/Yellowknife.ics -share/libical/zoneinfo/Antarctica/Casey.ics -share/libical/zoneinfo/Antarctica/Davis.ics -share/libical/zoneinfo/Antarctica/DumontDUrville.ics -share/libical/zoneinfo/Antarctica/Mawson.ics -share/libical/zoneinfo/Antarctica/McMurdo.ics -share/libical/zoneinfo/Antarctica/Palmer.ics -share/libical/zoneinfo/Antarctica/Rothera.ics -share/libical/zoneinfo/Antarctica/South_Pole.ics -share/libical/zoneinfo/Antarctica/Syowa.ics -share/libical/zoneinfo/Antarctica/Vostok.ics -share/libical/zoneinfo/Arctic/Longyearbyen.ics -share/libical/zoneinfo/Asia/Aden.ics -share/libical/zoneinfo/Asia/Almaty.ics -share/libical/zoneinfo/Asia/Amman.ics -share/libical/zoneinfo/Asia/Anadyr.ics -share/libical/zoneinfo/Asia/Aqtau.ics -share/libical/zoneinfo/Asia/Aqtobe.ics -share/libical/zoneinfo/Asia/Ashgabat.ics -share/libical/zoneinfo/Asia/Baghdad.ics -share/libical/zoneinfo/Asia/Bahrain.ics -share/libical/zoneinfo/Asia/Baku.ics -share/libical/zoneinfo/Asia/Bangkok.ics -share/libical/zoneinfo/Asia/Beirut.ics -share/libical/zoneinfo/Asia/Bishkek.ics -share/libical/zoneinfo/Asia/Brunei.ics -share/libical/zoneinfo/Asia/Calcutta.ics -share/libical/zoneinfo/Asia/Choibalsan.ics -share/libical/zoneinfo/Asia/Chongqing.ics -share/libical/zoneinfo/Asia/Colombo.ics -share/libical/zoneinfo/Asia/Damascus.ics -share/libical/zoneinfo/Asia/Dhaka.ics -share/libical/zoneinfo/Asia/Dili.ics -share/libical/zoneinfo/Asia/Dubai.ics -share/libical/zoneinfo/Asia/Dushanbe.ics -share/libical/zoneinfo/Asia/Gaza.ics -share/libical/zoneinfo/Asia/Harbin.ics -share/libical/zoneinfo/Asia/Hong_Kong.ics -share/libical/zoneinfo/Asia/Hovd.ics -share/libical/zoneinfo/Asia/Irkutsk.ics -share/libical/zoneinfo/Asia/Istanbul.ics -share/libical/zoneinfo/Asia/Jakarta.ics -share/libical/zoneinfo/Asia/Jayapura.ics -share/libical/zoneinfo/Asia/Jerusalem.ics -share/libical/zoneinfo/Asia/Kabul.ics -share/libical/zoneinfo/Asia/Kamchatka.ics -share/libical/zoneinfo/Asia/Karachi.ics -share/libical/zoneinfo/Asia/Kashgar.ics -share/libical/zoneinfo/Asia/Katmandu.ics -share/libical/zoneinfo/Asia/Krasnoyarsk.ics -share/libical/zoneinfo/Asia/Kuala_Lumpur.ics -share/libical/zoneinfo/Asia/Kuching.ics -share/libical/zoneinfo/Asia/Kuwait.ics -share/libical/zoneinfo/Asia/Macau.ics -share/libical/zoneinfo/Asia/Magadan.ics -share/libical/zoneinfo/Asia/Makassar.ics -share/libical/zoneinfo/Asia/Manila.ics -share/libical/zoneinfo/Asia/Muscat.ics -share/libical/zoneinfo/Asia/Nicosia.ics -share/libical/zoneinfo/Asia/Novosibirsk.ics -share/libical/zoneinfo/Asia/Omsk.ics -share/libical/zoneinfo/Asia/Oral.ics -share/libical/zoneinfo/Asia/Phnom_Penh.ics -share/libical/zoneinfo/Asia/Pontianak.ics -share/libical/zoneinfo/Asia/Pyongyang.ics -share/libical/zoneinfo/Asia/Qatar.ics -share/libical/zoneinfo/Asia/Qyzylorda.ics -share/libical/zoneinfo/Asia/Rangoon.ics -share/libical/zoneinfo/Asia/Riyadh.ics -share/libical/zoneinfo/Asia/Saigon.ics -share/libical/zoneinfo/Asia/Sakhalin.ics -share/libical/zoneinfo/Asia/Samarkand.ics -share/libical/zoneinfo/Asia/Seoul.ics -share/libical/zoneinfo/Asia/Shanghai.ics -share/libical/zoneinfo/Asia/Singapore.ics -share/libical/zoneinfo/Asia/Taipei.ics -share/libical/zoneinfo/Asia/Tashkent.ics -share/libical/zoneinfo/Asia/Tbilisi.ics -share/libical/zoneinfo/Asia/Tehran.ics -share/libical/zoneinfo/Asia/Thimphu.ics -share/libical/zoneinfo/Asia/Tokyo.ics -share/libical/zoneinfo/Asia/Ulaanbaatar.ics -share/libical/zoneinfo/Asia/Urumqi.ics -share/libical/zoneinfo/Asia/Vientiane.ics -share/libical/zoneinfo/Asia/Vladivostok.ics -share/libical/zoneinfo/Asia/Yakutsk.ics -share/libical/zoneinfo/Asia/Yekaterinburg.ics -share/libical/zoneinfo/Asia/Yerevan.ics -share/libical/zoneinfo/Atlantic/Azores.ics -share/libical/zoneinfo/Atlantic/Bermuda.ics -share/libical/zoneinfo/Atlantic/Canary.ics -share/libical/zoneinfo/Atlantic/Cape_Verde.ics -share/libical/zoneinfo/Atlantic/Faroe.ics -share/libical/zoneinfo/Atlantic/Jan_Mayen.ics -share/libical/zoneinfo/Atlantic/Madeira.ics -share/libical/zoneinfo/Atlantic/Reykjavik.ics -share/libical/zoneinfo/Atlantic/South_Georgia.ics -share/libical/zoneinfo/Atlantic/St_Helena.ics -share/libical/zoneinfo/Atlantic/Stanley.ics -share/libical/zoneinfo/Australia/Adelaide.ics -share/libical/zoneinfo/Australia/Brisbane.ics -share/libical/zoneinfo/Australia/Broken_Hill.ics -share/libical/zoneinfo/Australia/Currie.ics -share/libical/zoneinfo/Australia/Darwin.ics -share/libical/zoneinfo/Australia/Eucla.ics -share/libical/zoneinfo/Australia/Hobart.ics -share/libical/zoneinfo/Australia/Lindeman.ics -share/libical/zoneinfo/Australia/Lord_Howe.ics -share/libical/zoneinfo/Australia/Melbourne.ics -share/libical/zoneinfo/Australia/Perth.ics -share/libical/zoneinfo/Australia/Sydney.ics -share/libical/zoneinfo/Europe/Amsterdam.ics -share/libical/zoneinfo/Europe/Andorra.ics -share/libical/zoneinfo/Europe/Athens.ics -share/libical/zoneinfo/Europe/Belgrade.ics -share/libical/zoneinfo/Europe/Berlin.ics -share/libical/zoneinfo/Europe/Bratislava.ics -share/libical/zoneinfo/Europe/Brussels.ics -share/libical/zoneinfo/Europe/Bucharest.ics -share/libical/zoneinfo/Europe/Budapest.ics -share/libical/zoneinfo/Europe/Chisinau.ics -share/libical/zoneinfo/Europe/Copenhagen.ics -share/libical/zoneinfo/Europe/Dublin.ics -share/libical/zoneinfo/Europe/Gibraltar.ics -share/libical/zoneinfo/Europe/Guernsey.ics -share/libical/zoneinfo/Europe/Helsinki.ics -share/libical/zoneinfo/Europe/Isle_of_Man.ics -share/libical/zoneinfo/Europe/Istanbul.ics -share/libical/zoneinfo/Europe/Jersey.ics -share/libical/zoneinfo/Europe/Kaliningrad.ics -share/libical/zoneinfo/Europe/Kiev.ics -share/libical/zoneinfo/Europe/Lisbon.ics -share/libical/zoneinfo/Europe/Ljubljana.ics -share/libical/zoneinfo/Europe/London.ics -share/libical/zoneinfo/Europe/Luxembourg.ics -share/libical/zoneinfo/Europe/Madrid.ics -share/libical/zoneinfo/Europe/Malta.ics -share/libical/zoneinfo/Europe/Mariehamn.ics -share/libical/zoneinfo/Europe/Minsk.ics -share/libical/zoneinfo/Europe/Monaco.ics -share/libical/zoneinfo/Europe/Moscow.ics -share/libical/zoneinfo/Europe/Nicosia.ics -share/libical/zoneinfo/Europe/Oslo.ics -share/libical/zoneinfo/Europe/Paris.ics -share/libical/zoneinfo/Europe/Podgorica.ics -share/libical/zoneinfo/Europe/Prague.ics -share/libical/zoneinfo/Europe/Riga.ics -share/libical/zoneinfo/Europe/Rome.ics -share/libical/zoneinfo/Europe/Samara.ics -share/libical/zoneinfo/Europe/San_Marino.ics -share/libical/zoneinfo/Europe/Sarajevo.ics -share/libical/zoneinfo/Europe/Simferopol.ics -share/libical/zoneinfo/Europe/Skopje.ics -share/libical/zoneinfo/Europe/Sofia.ics -share/libical/zoneinfo/Europe/Stockholm.ics -share/libical/zoneinfo/Europe/Tallinn.ics -share/libical/zoneinfo/Europe/Tirane.ics -share/libical/zoneinfo/Europe/Uzhgorod.ics -share/libical/zoneinfo/Europe/Vaduz.ics -share/libical/zoneinfo/Europe/Vatican.ics -share/libical/zoneinfo/Europe/Vienna.ics -share/libical/zoneinfo/Europe/Vilnius.ics -share/libical/zoneinfo/Europe/Volgograd.ics -share/libical/zoneinfo/Europe/Warsaw.ics -share/libical/zoneinfo/Europe/Zagreb.ics -share/libical/zoneinfo/Europe/Zaporozhye.ics -share/libical/zoneinfo/Europe/Zurich.ics -share/libical/zoneinfo/Indian/Antananarivo.ics -share/libical/zoneinfo/Indian/Chagos.ics -share/libical/zoneinfo/Indian/Christmas.ics -share/libical/zoneinfo/Indian/Cocos.ics -share/libical/zoneinfo/Indian/Comoro.ics -share/libical/zoneinfo/Indian/Kerguelen.ics -share/libical/zoneinfo/Indian/Mahe.ics -share/libical/zoneinfo/Indian/Maldives.ics -share/libical/zoneinfo/Indian/Mauritius.ics -share/libical/zoneinfo/Indian/Mayotte.ics -share/libical/zoneinfo/Indian/Reunion.ics -share/libical/zoneinfo/Pacific/Apia.ics -share/libical/zoneinfo/Pacific/Auckland.ics -share/libical/zoneinfo/Pacific/Chatham.ics -share/libical/zoneinfo/Pacific/Easter.ics -share/libical/zoneinfo/Pacific/Efate.ics -share/libical/zoneinfo/Pacific/Enderbury.ics -share/libical/zoneinfo/Pacific/Fakaofo.ics -share/libical/zoneinfo/Pacific/Fiji.ics -share/libical/zoneinfo/Pacific/Funafuti.ics -share/libical/zoneinfo/Pacific/Galapagos.ics -share/libical/zoneinfo/Pacific/Gambier.ics -share/libical/zoneinfo/Pacific/Guadalcanal.ics -share/libical/zoneinfo/Pacific/Guam.ics -share/libical/zoneinfo/Pacific/Honolulu.ics -share/libical/zoneinfo/Pacific/Johnston.ics -share/libical/zoneinfo/Pacific/Kiritimati.ics -share/libical/zoneinfo/Pacific/Kosrae.ics -share/libical/zoneinfo/Pacific/Kwajalein.ics -share/libical/zoneinfo/Pacific/Majuro.ics -share/libical/zoneinfo/Pacific/Marquesas.ics -share/libical/zoneinfo/Pacific/Midway.ics -share/libical/zoneinfo/Pacific/Nauru.ics -share/libical/zoneinfo/Pacific/Niue.ics -share/libical/zoneinfo/Pacific/Norfolk.ics -share/libical/zoneinfo/Pacific/Noumea.ics -share/libical/zoneinfo/Pacific/Pago_Pago.ics -share/libical/zoneinfo/Pacific/Palau.ics -share/libical/zoneinfo/Pacific/Pitcairn.ics -share/libical/zoneinfo/Pacific/Ponape.ics -share/libical/zoneinfo/Pacific/Port_Moresby.ics -share/libical/zoneinfo/Pacific/Rarotonga.ics -share/libical/zoneinfo/Pacific/Saipan.ics -share/libical/zoneinfo/Pacific/Tahiti.ics -share/libical/zoneinfo/Pacific/Tarawa.ics -share/libical/zoneinfo/Pacific/Tongatapu.ics -share/libical/zoneinfo/Pacific/Truk.ics -share/libical/zoneinfo/Pacific/Wake.ics -share/libical/zoneinfo/Pacific/Wallis.ics -share/libical/zoneinfo/zones.tab -@dirrm share/libical/zoneinfo/Pacific -@dirrm share/libical/zoneinfo/Indian -@dirrm share/libical/zoneinfo/Europe -@dirrm share/libical/zoneinfo/Australia -@dirrm share/libical/zoneinfo/Atlantic -@dirrm share/libical/zoneinfo/Asia -@dirrm share/libical/zoneinfo/Arctic -@dirrm share/libical/zoneinfo/Antarctica -@dirrm share/libical/zoneinfo/America/North_Dakota -@dirrm share/libical/zoneinfo/America/Kentucky -@dirrm share/libical/zoneinfo/America/Indiana -@dirrm share/libical/zoneinfo/America/Argentina -@dirrm share/libical/zoneinfo/America -@dirrm share/libical/zoneinfo/Africa -@dirrm share/libical/zoneinfo -@dirrm share/libical -@dirrm include/libical diff --git a/devel/libsoup/Makefile b/devel/libsoup/Makefile deleted file mode 100644 index 6285345e8..000000000 --- a/devel/libsoup/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -# New ports collection makefile for: libsoup -# Date created: 12 March 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/libsoup/Makefile,v 1.57 2009/03/17 14:10:46 kwm Exp $ -# - -PORTNAME= libsoup -PORTVERSION= 2.26.0 -PORTREVISION= 1 -PORTREVISION?= 0 -CATEGORIES= devel gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A SOAP (Simple Object Access Protocol) implementation in C - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - proxy.0:${PORTSDIR}/net/libproxy \ - sqlite3.8:${PORTSDIR}/databases/sqlite3 - -USE_GNOME= gnomehack glib20 libxml2 ltverhack referencehack gconf2 -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GMAKE= yes -CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ - --disable-gtk-doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -PLIST_SUB= VERSION="2.4" - -.if !defined(WITHOUT_SSL) -LIB_DEPENDS+= gnutls.26:${PORTSDIR}/security/gnutls -.else -CONFIGURE_ARGS+=--disable-ssl -.endif - -.include <bsd.port.pre.mk> - -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "libsoup has the following configurable option(s):" - @${ECHO_MSG} " WITHOUT_SSL Disable GnuTLS SSL support" - @${ECHO_MSG} "" - -post-patch: - @${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \ - ${WRKSRC}/configure - -.include <bsd.port.post.mk> - -.endif diff --git a/devel/libsoup/distinfo b/devel/libsoup/distinfo deleted file mode 100644 index a34d4ff80..000000000 --- a/devel/libsoup/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libsoup-2.26.0.tar.bz2) = 9df9d2b3304213641d3214a774d75ee1 -SHA256 (gnome2/libsoup-2.26.0.tar.bz2) = 47b749b20717df24393c83adcce9a3a10f0690517c18da8d0a1ddcb410a0ac1d -SIZE (gnome2/libsoup-2.26.0.tar.bz2) = 736527 diff --git a/devel/libsoup/pkg-descr b/devel/libsoup/pkg-descr deleted file mode 100644 index 1ec2bfea4..000000000 --- a/devel/libsoup/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -Soup is a SOAP (Simple Object Access Protocol) implementation in C. - -It provides a queued asynchronous callback-based mechanism for sending and -servicing SOAP requests, and a WSDL (Web Service Definition Language) for C -compilers which generates client stubs and server skeletons for easily -calling and implementing SOAP methods. It uses GLib and is designed to work -well with GTK applications. - -Features: - * Completely Asynchronous - * Connection cache - * HTTP chunked transfer and persistent connections - * Authenticated HTTP, SOCKS4, and SOCKS5 proxy support - * SSL Support using OpenSSL - * Apache module server support - * Client digest authentication diff --git a/devel/libsoup/pkg-plist b/devel/libsoup/pkg-plist deleted file mode 100644 index 7d6d2a3ed..000000000 --- a/devel/libsoup/pkg-plist +++ /dev/null @@ -1,50 +0,0 @@ -include/libsoup-%%VERSION%%/libsoup/soup-address.h -include/libsoup-%%VERSION%%/libsoup/soup-auth-domain-basic.h -include/libsoup-%%VERSION%%/libsoup/soup-auth-domain-digest.h -include/libsoup-%%VERSION%%/libsoup/soup-auth-domain.h -include/libsoup-%%VERSION%%/libsoup/soup-auth.h -include/libsoup-%%VERSION%%/libsoup/soup-cookie-jar-text.h -include/libsoup-%%VERSION%%/libsoup/soup-cookie-jar.h -include/libsoup-%%VERSION%%/libsoup/soup-cookie.h -include/libsoup-%%VERSION%%/libsoup/soup-date.h -include/libsoup-%%VERSION%%/libsoup/soup-enum-types.h -include/libsoup-%%VERSION%%/libsoup/soup-form.h -include/libsoup-%%VERSION%%/libsoup/soup-headers.h -include/libsoup-%%VERSION%%/libsoup/soup-logger.h -include/libsoup-%%VERSION%%/libsoup/soup-message-body.h -include/libsoup-%%VERSION%%/libsoup/soup-message-headers.h -include/libsoup-%%VERSION%%/libsoup/soup-message.h -include/libsoup-%%VERSION%%/libsoup/soup-method.h -include/libsoup-%%VERSION%%/libsoup/soup-misc.h -include/libsoup-%%VERSION%%/libsoup/soup-multipart.h -include/libsoup-%%VERSION%%/libsoup/soup-portability.h -include/libsoup-%%VERSION%%/libsoup/soup-proxy-resolver.h -include/libsoup-%%VERSION%%/libsoup/soup-server.h -include/libsoup-%%VERSION%%/libsoup/soup-session-async.h -include/libsoup-%%VERSION%%/libsoup/soup-session-feature.h -include/libsoup-%%VERSION%%/libsoup/soup-session-sync.h -include/libsoup-%%VERSION%%/libsoup/soup-session.h -include/libsoup-%%VERSION%%/libsoup/soup-socket.h -include/libsoup-%%VERSION%%/libsoup/soup-status.h -include/libsoup-%%VERSION%%/libsoup/soup-types.h -include/libsoup-%%VERSION%%/libsoup/soup-uri.h -include/libsoup-%%VERSION%%/libsoup/soup-value-utils.h -include/libsoup-%%VERSION%%/libsoup/soup-xmlrpc.h -include/libsoup-%%VERSION%%/libsoup/soup.h -include/libsoup-gnome-%%VERSION%%/libsoup/soup-cookie-jar-sqlite.h -include/libsoup-gnome-%%VERSION%%/libsoup/soup-gnome-features.h -include/libsoup-gnome-%%VERSION%%/libsoup/soup-gnome.h -lib/libsoup-%%VERSION%%.a -lib/libsoup-%%VERSION%%.la -lib/libsoup-%%VERSION%%.so -lib/libsoup-%%VERSION%%.so.1 -lib/libsoup-gnome-%%VERSION%%.a -lib/libsoup-gnome-%%VERSION%%.la -lib/libsoup-gnome-%%VERSION%%.so -lib/libsoup-gnome-%%VERSION%%.so.1 -libdata/pkgconfig/libsoup-%%VERSION%%.pc -libdata/pkgconfig/libsoup-gnome-%%VERSION%%.pc -@dirrm include/libsoup-gnome-%%VERSION%%/libsoup -@dirrm include/libsoup-gnome-%%VERSION%% -@dirrm include/libsoup-%%VERSION%%/libsoup -@dirrm include/libsoup-%%VERSION%% diff --git a/editors/gedit-plugins/Makefile b/editors/gedit-plugins/Makefile deleted file mode 100644 index 1f2d47d0f..000000000 --- a/editors/gedit-plugins/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# New ports collection makefile for: gedit-plugins -# Date created: 19 September 2003 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/editors/gedit-plugins/Makefile,v 1.35 2009/02/24 20:07:48 kwm Exp $ -# - -PORTNAME= gedit-plugins -PORTVERSION= 2.26.0 -CATEGORIES= editors gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Plugins for GEdit 2 - -BUILD_DEPENDS= gedit:${PORTSDIR}/editors/gedit \ - gucharmap:${PORTSDIR}/deskutils/gucharmap -RUN_DEPENDS= gedit:${PORTSDIR}/editors/gedit \ - gucharmap:${PORTSDIR}/deskutils/gucharmap - -USE_LDCONFIG= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETTEXT= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomehack gnomeprefix intlhack gnomevfs2 -WANT_GNOME= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gedit-show-tabbar-plugin.schemas - -OPTIONS= PYTHON "Build plugins that depend on python" off - -.if defined(PACKAGE_BUILDING) -.undef WITHOUT_GNOME -WITH_GNOME= yes -.endif - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mpygtksourceview}!="" && ${ARCH}!="sparc64" || defined(WITH_PYTHON) -USE_PYTHON= yes -.include "${PORTSDIR}/Mk/bsd.python.mk" -USE_GNOME+= pygtksourceview -BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte -CONFIGURE_ARGS+=--enable-python -PLIST_SUB+= PYTHON="" -.else -CONFIGURE_ARGS+=--disable-python -PLIST_SUB+= PYTHON="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's| \\t\\r\\n\\f|[:space:]|g' \ - ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/editors/gedit-plugins/distinfo b/editors/gedit-plugins/distinfo deleted file mode 100644 index 89472e658..000000000 --- a/editors/gedit-plugins/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gedit-plugins-2.26.0.tar.bz2) = 9549182efbc98f7601b281fd217061ec -SHA256 (gnome2/gedit-plugins-2.26.0.tar.bz2) = 548c1570195118d31eaf1ef96ddf39e80e5e29621540e4e6863b8ed1285a4d80 -SIZE (gnome2/gedit-plugins-2.26.0.tar.bz2) = 546291 diff --git a/editors/gedit-plugins/pkg-descr b/editors/gedit-plugins/pkg-descr deleted file mode 100644 index f4eabb23d..000000000 --- a/editors/gedit-plugins/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Various additional plug-ins for GEdit 2. diff --git a/editors/gedit-plugins/pkg-plist b/editors/gedit-plugins/pkg-plist deleted file mode 100644 index fac2fa52f..000000000 --- a/editors/gedit-plugins/pkg-plist +++ /dev/null @@ -1,135 +0,0 @@ -lib/gedit-2/plugins/bookmarks.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/bracketcompletion.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/bracketcompletion.py -%%PYTHON%%lib/gedit-2/plugins/bracketcompletion.pyc -%%PYTHON%%lib/gedit-2/plugins/bracketcompletion.pyo -lib/gedit-2/plugins/charmap.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/codecomment.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/codecomment.py -%%PYTHON%%lib/gedit-2/plugins/codecomment.pyc -%%PYTHON%%lib/gedit-2/plugins/codecomment.pyo -%%PYTHON%%lib/gedit-2/plugins/colorpicker.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/colorpicker.py -%%PYTHON%%lib/gedit-2/plugins/colorpicker.pyc -%%PYTHON%%lib/gedit-2/plugins/colorpicker.pyo -lib/gedit-2/plugins/drawspaces.gedit-plugin -lib/gedit-2/plugins/gpdefs.py -lib/gedit-2/plugins/gpdefs.pyc -lib/gedit-2/plugins/gpdefs.pyo -%%PYTHON%%lib/gedit-2/plugins/joinlines.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/joinlines.py -%%PYTHON%%lib/gedit-2/plugins/joinlines.pyc -%%PYTHON%%lib/gedit-2/plugins/joinlines.pyo -lib/gedit-2/plugins/libbookmarks.a -lib/gedit-2/plugins/libbookmarks.la -lib/gedit-2/plugins/libbookmarks.so -lib/gedit-2/plugins/libcharmap.a -lib/gedit-2/plugins/libcharmap.la -lib/gedit-2/plugins/libcharmap.so -lib/gedit-2/plugins/libdrawspaces.a -lib/gedit-2/plugins/libdrawspaces.la -lib/gedit-2/plugins/libdrawspaces.so -lib/gedit-2/plugins/libshowtabbar.a -lib/gedit-2/plugins/libshowtabbar.la -lib/gedit-2/plugins/libshowtabbar.so -%%PYTHON%%lib/gedit-2/plugins/sessionsaver.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/__init__.py -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/__init__.pyc -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/__init__.pyo -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/dialogs.py -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/dialogs.pyc -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/dialogs.pyo -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/store.py -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/store.pyc -%%PYTHON%%lib/gedit-2/plugins/sessionsaver/store.pyo -lib/gedit-2/plugins/showtabbar.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/smartspaces.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/smartspaces.py -%%PYTHON%%lib/gedit-2/plugins/smartspaces.pyc -%%PYTHON%%lib/gedit-2/plugins/smartspaces.pyo -%%PYTHON%%lib/gedit-2/plugins/terminal.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/terminal.py -%%PYTHON%%lib/gedit-2/plugins/terminal.pyc -%%PYTHON%%lib/gedit-2/plugins/terminal.pyo -share/gedit-2/plugins/bookmarks/bookmark.png -share/gedit-2/plugins/drawspaces/drawspaces.ui -%%PYTHON%%share/gedit-2/plugins/sessionsaver/sessionsaver.ui -share/locale/ar/LC_MESSAGES/gedit-plugins.mo -share/locale/az/LC_MESSAGES/gedit-plugins.mo -share/locale/be/LC_MESSAGES/gedit-plugins.mo -share/locale/be@latin/LC_MESSAGES/gedit-plugins.mo -share/locale/bg/LC_MESSAGES/gedit-plugins.mo -share/locale/ca/LC_MESSAGES/gedit-plugins.mo -share/locale/cs/LC_MESSAGES/gedit-plugins.mo -share/locale/da/LC_MESSAGES/gedit-plugins.mo -share/locale/de/LC_MESSAGES/gedit-plugins.mo -share/locale/dz/LC_MESSAGES/gedit-plugins.mo -share/locale/el/LC_MESSAGES/gedit-plugins.mo -share/locale/en_CA/LC_MESSAGES/gedit-plugins.mo -share/locale/en_GB/LC_MESSAGES/gedit-plugins.mo -share/locale/es/LC_MESSAGES/gedit-plugins.mo -share/locale/et/LC_MESSAGES/gedit-plugins.mo -share/locale/eu/LC_MESSAGES/gedit-plugins.mo -share/locale/fi/LC_MESSAGES/gedit-plugins.mo -share/locale/fr/LC_MESSAGES/gedit-plugins.mo -share/locale/ga/LC_MESSAGES/gedit-plugins.mo -share/locale/gl/LC_MESSAGES/gedit-plugins.mo -share/locale/gu/LC_MESSAGES/gedit-plugins.mo -share/locale/he/LC_MESSAGES/gedit-plugins.mo -share/locale/hi/LC_MESSAGES/gedit-plugins.mo -share/locale/hr/LC_MESSAGES/gedit-plugins.mo -share/locale/hu/LC_MESSAGES/gedit-plugins.mo -share/locale/it/LC_MESSAGES/gedit-plugins.mo -share/locale/ja/LC_MESSAGES/gedit-plugins.mo -share/locale/kn/LC_MESSAGES/gedit-plugins.mo -share/locale/ko/LC_MESSAGES/gedit-plugins.mo -share/locale/lt/LC_MESSAGES/gedit-plugins.mo -share/locale/lv/LC_MESSAGES/gedit-plugins.mo -share/locale/mk/LC_MESSAGES/gedit-plugins.mo -share/locale/ml/LC_MESSAGES/gedit-plugins.mo -share/locale/mn/LC_MESSAGES/gedit-plugins.mo -share/locale/ms/LC_MESSAGES/gedit-plugins.mo -share/locale/nb/LC_MESSAGES/gedit-plugins.mo -share/locale/ne/LC_MESSAGES/gedit-plugins.mo -share/locale/nl/LC_MESSAGES/gedit-plugins.mo -share/locale/nn/LC_MESSAGES/gedit-plugins.mo -share/locale/oc/LC_MESSAGES/gedit-plugins.mo -share/locale/or/LC_MESSAGES/gedit-plugins.mo -share/locale/pa/LC_MESSAGES/gedit-plugins.mo -share/locale/pl/LC_MESSAGES/gedit-plugins.mo -share/locale/pt/LC_MESSAGES/gedit-plugins.mo -share/locale/pt_BR/LC_MESSAGES/gedit-plugins.mo -share/locale/ro/LC_MESSAGES/gedit-plugins.mo -share/locale/ru/LC_MESSAGES/gedit-plugins.mo -share/locale/rw/LC_MESSAGES/gedit-plugins.mo -share/locale/sk/LC_MESSAGES/gedit-plugins.mo -share/locale/sl/LC_MESSAGES/gedit-plugins.mo -share/locale/sq/LC_MESSAGES/gedit-plugins.mo -share/locale/sr/LC_MESSAGES/gedit-plugins.mo -share/locale/sr@Latn/LC_MESSAGES/gedit-plugins.mo -share/locale/sv/LC_MESSAGES/gedit-plugins.mo -share/locale/ta/LC_MESSAGES/gedit-plugins.mo -share/locale/th/LC_MESSAGES/gedit-plugins.mo -share/locale/tr/LC_MESSAGES/gedit-plugins.mo -share/locale/uk/LC_MESSAGES/gedit-plugins.mo -share/locale/vi/LC_MESSAGES/gedit-plugins.mo -share/locale/wa/LC_MESSAGES/gedit-plugins.mo -share/locale/zh_CN/LC_MESSAGES/gedit-plugins.mo -share/locale/zh_HK/LC_MESSAGES/gedit-plugins.mo -share/locale/zh_TW/LC_MESSAGES/gedit-plugins.mo -%%PYTHON%%@dirrm lib/gedit-2/plugins/sessionsaver -@dirrm share/gedit-2/plugins/sessionsaver -@dirrm share/gedit-2/plugins/drawspaces -@dirrm share/gedit-2/plugins/bookmarks -@dirrm share/gedit-2/plugins -@dirrm share/gedit-2 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/editors/gedit/Makefile b/editors/gedit/Makefile deleted file mode 100644 index 07b76758f..000000000 --- a/editors/gedit/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -# New ports collection makefile for: gedit2 -# Date created: 14 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/editors/gedit/Makefile,v 1.96 2009/03/15 06:13:05 marcus Exp $ -# - -PORTNAME= gedit -PORTVERSION= 2.26.0 -CATEGORIES= editors gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A small but powerful text editor for GNOME 2 Desktop Environment - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes -LIB_DEPENDS= enchant.1:${PORTSDIR}/textproc/enchant -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes - -USE_XORG= sm -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomeprefix gnomehack intlhack gconf2 gtksourceview2 \ - desktopfileutils gnomedocutils ltasneededhack -WANT_GNOME= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -PLIST_SUB= VERSION="2.20" - -MAN1= gedit.1 -GCONF_SCHEMAS= gedit.schemas gedit-file-browser.schemas - -.if defined(PACKAGE_BUILDING) -.undef WITHOUT_GNOME -WITH_GNOME= yes -.endif - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mpygtksourceview}!="" -USE_PYTHON= yes -.include "${PORTSDIR}/Mk/bsd.python.mk" -USE_GNOME+= pygtksourceview -CONFIGURE_ARGS+=--enable-python -PLIST_SUB+= PYTHON="" -.else -CONFIGURE_ARGS+=--disable-python -PLIST_SUB+= PYTHON="@comment " -.endif - -#pre-build: -# ${MKDIR} ${WRKSRC}/bindings/python/.deps -#.for ff in gedit_la-gedit.Plo gedit_la-geditcommands.Plo gedit_la-geditutils.Plo -# ${TOUCH} ${WRKSRC}/bindings/python/.deps/${ff} -#.endfor - -post-install: - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/editors/gedit/distinfo b/editors/gedit/distinfo deleted file mode 100644 index 14b1f2704..000000000 --- a/editors/gedit/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gedit-2.26.0.tar.bz2) = 577b30e6f17f6dce0af7be3e522d6058 -SHA256 (gnome2/gedit-2.26.0.tar.bz2) = c1fde28ba54e2b6b9457b7a21e40f88989428838d2ef6e9fbd496955442d3552 -SIZE (gnome2/gedit-2.26.0.tar.bz2) = 4198506 diff --git a/editors/gedit/pkg-descr b/editors/gedit/pkg-descr deleted file mode 100644 index 29135d79f..000000000 --- a/editors/gedit/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -gEdit is a Gtk+-2 text editor. Its features include: - - * Complete integration with the GNOME Environment, including GnomeMDI - * Global Search and Replace - * Dynamically loaded fonts - * Splitscreen Mode - * Printing support - * Configurable Plugins system - * Unlimited Undo/Redo - -WWW: http://www.gnome.org/projects/gedit/ diff --git a/editors/gedit/pkg-plist b/editors/gedit/pkg-plist deleted file mode 100644 index 156f54593..000000000 --- a/editors/gedit/pkg-plist +++ /dev/null @@ -1,625 +0,0 @@ -bin/gedit -bin/gnome-text-editor -include/gedit-%%VERSION%%/gedit/gedit-app.h -include/gedit-%%VERSION%%/gedit/gedit-convert.h -include/gedit-%%VERSION%%/gedit/gedit-debug.h -include/gedit-%%VERSION%%/gedit/gedit-document.h -include/gedit-%%VERSION%%/gedit/gedit-encodings-option-menu.h -include/gedit-%%VERSION%%/gedit/gedit-encodings.h -include/gedit-%%VERSION%%/gedit/gedit-file-chooser-dialog.h -include/gedit-%%VERSION%%/gedit/gedit-help.h -include/gedit-%%VERSION%%/gedit/gedit-message-area.h -include/gedit-%%VERSION%%/gedit/gedit-message-bus.h -include/gedit-%%VERSION%%/gedit/gedit-message-type.h -include/gedit-%%VERSION%%/gedit/gedit-message.h -include/gedit-%%VERSION%%/gedit/gedit-metadata-manager.h -include/gedit-%%VERSION%%/gedit/gedit-notebook.h -include/gedit-%%VERSION%%/gedit/gedit-panel.h -include/gedit-%%VERSION%%/gedit/gedit-plugin-loader.h -include/gedit-%%VERSION%%/gedit/gedit-plugin.h -include/gedit-%%VERSION%%/gedit/gedit-prefs-manager-app.h -include/gedit-%%VERSION%%/gedit/gedit-prefs-manager.h -include/gedit-%%VERSION%%/gedit/gedit-progress-message-area.h -include/gedit-%%VERSION%%/gedit/gedit-statusbar.h -include/gedit-%%VERSION%%/gedit/gedit-status-combo-box.h -include/gedit-%%VERSION%%/gedit/gedit-tab.h -include/gedit-%%VERSION%%/gedit/gedit-utils.h -include/gedit-%%VERSION%%/gedit/gedit-view.h -include/gedit-%%VERSION%%/gedit/gedit-window.h -lib/gedit-2/plugin-loaders/libcloader.a -lib/gedit-2/plugin-loaders/libcloader.la -lib/gedit-2/plugin-loaders/libcloader.so -%%PYTHON%%lib/gedit-2/plugin-loaders/libpythonloader.a -%%PYTHON%%lib/gedit-2/plugin-loaders/libpythonloader.la -%%PYTHON%%lib/gedit-2/plugin-loaders/libpythonloader.so -lib/gedit-2/plugins/changecase.gedit-plugin -lib/gedit-2/plugins/docinfo.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/externaltools.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/externaltools/ElementTree.py -%%PYTHON%%lib/gedit-2/plugins/externaltools/ElementTree.pyc -%%PYTHON%%lib/gedit-2/plugins/externaltools/ElementTree.pyo -%%PYTHON%%lib/gedit-2/plugins/externaltools/__init__.py -%%PYTHON%%lib/gedit-2/plugins/externaltools/__init__.pyc -%%PYTHON%%lib/gedit-2/plugins/externaltools/__init__.pyo -%%PYTHON%%lib/gedit-2/plugins/externaltools/capture.py -%%PYTHON%%lib/gedit-2/plugins/externaltools/capture.pyc -%%PYTHON%%lib/gedit-2/plugins/externaltools/capture.pyo -%%PYTHON%%lib/gedit-2/plugins/externaltools/functions.py -%%PYTHON%%lib/gedit-2/plugins/externaltools/functions.pyc -%%PYTHON%%lib/gedit-2/plugins/externaltools/functions.pyo -%%PYTHON%%lib/gedit-2/plugins/externaltools/library.py -%%PYTHON%%lib/gedit-2/plugins/externaltools/library.pyc -%%PYTHON%%lib/gedit-2/plugins/externaltools/library.pyo -%%PYTHON%%lib/gedit-2/plugins/externaltools/manager.py -%%PYTHON%%lib/gedit-2/plugins/externaltools/manager.pyc -%%PYTHON%%lib/gedit-2/plugins/externaltools/manager.pyo -%%PYTHON%%lib/gedit-2/plugins/externaltools/outputpanel.py -%%PYTHON%%lib/gedit-2/plugins/externaltools/outputpanel.pyc -%%PYTHON%%lib/gedit-2/plugins/externaltools/outputpanel.pyo -lib/gedit-2/plugins/filebrowser.gedit-plugin -lib/gedit-2/plugins/indent.gedit-plugin -lib/gedit-2/plugins/libchangecase.a -lib/gedit-2/plugins/libchangecase.la -lib/gedit-2/plugins/libchangecase.so -lib/gedit-2/plugins/libdocinfo.a -lib/gedit-2/plugins/libdocinfo.la -lib/gedit-2/plugins/libdocinfo.so -lib/gedit-2/plugins/libfilebrowser.a -lib/gedit-2/plugins/libfilebrowser.la -lib/gedit-2/plugins/libfilebrowser.so -lib/gedit-2/plugins/libindent.a -lib/gedit-2/plugins/libindent.la -lib/gedit-2/plugins/libindent.so -lib/gedit-2/plugins/libmodelines.a -lib/gedit-2/plugins/libmodelines.la -lib/gedit-2/plugins/libmodelines.so -lib/gedit-2/plugins/libsample.a -lib/gedit-2/plugins/libsample.la -lib/gedit-2/plugins/libsample.so -lib/gedit-2/plugins/libsort.a -lib/gedit-2/plugins/libsort.la -lib/gedit-2/plugins/libsort.so -lib/gedit-2/plugins/libspell.a -lib/gedit-2/plugins/libspell.la -lib/gedit-2/plugins/libspell.so -lib/gedit-2/plugins/libtaglist.a -lib/gedit-2/plugins/libtaglist.la -lib/gedit-2/plugins/libtaglist.so -lib/gedit-2/plugins/libtime.a -lib/gedit-2/plugins/libtime.la -lib/gedit-2/plugins/libtime.so -lib/gedit-2/plugins/modelines.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/pythonconsole.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/__init__.py -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/__init__.pyc -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/__init__.pyo -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/config.py -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/config.pyc -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/config.pyo -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/console.py -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/console.pyc -%%PYTHON%%lib/gedit-2/plugins/pythonconsole/console.pyo -lib/gedit-2/plugins/sample.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/snippets.gedit-plugin -%%PYTHON%%lib/gedit-2/plugins/snippets/Document.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Document.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Document.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/ElementTree.py -%%PYTHON%%lib/gedit-2/plugins/snippets/ElementTree.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/ElementTree.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Exporter.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Exporter.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Exporter.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Helper.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Helper.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Helper.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Importer.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Importer.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Importer.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Library.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Library.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Library.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Manager.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Manager.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Manager.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Parser.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Parser.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Parser.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Placeholder.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Placeholder.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Placeholder.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/Snippet.py -%%PYTHON%%lib/gedit-2/plugins/snippets/Snippet.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/Snippet.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/SnippetComplete.py -%%PYTHON%%lib/gedit-2/plugins/snippets/SnippetComplete.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/SnippetComplete.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/SubstitutionParser.py -%%PYTHON%%lib/gedit-2/plugins/snippets/SubstitutionParser.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/SubstitutionParser.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/WindowHelper.py -%%PYTHON%%lib/gedit-2/plugins/snippets/WindowHelper.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/WindowHelper.pyo -%%PYTHON%%lib/gedit-2/plugins/snippets/__init__.py -%%PYTHON%%lib/gedit-2/plugins/snippets/__init__.pyc -%%PYTHON%%lib/gedit-2/plugins/snippets/__init__.pyo -lib/gedit-2/plugins/sort.gedit-plugin -lib/gedit-2/plugins/spell.gedit-plugin -lib/gedit-2/plugins/taglist.gedit-plugin -lib/gedit-2/plugins/time.gedit-plugin -libdata/pkgconfig/gedit-%%VERSION%%.pc -libexec/gedit-2/gedit-bugreport.sh -share/applications/gedit.desktop -%%DOCSDIR%%/GeditApp.html -%%DOCSDIR%%/GeditDocument.html -%%DOCSDIR%%/GeditEncodingsOptionMenu.html -%%DOCSDIR%%/GeditFileChooserDialog.html -%%DOCSDIR%%/GeditMessage.html -%%DOCSDIR%%/GeditMessageArea.html -%%DOCSDIR%%/GeditMessageBus.html -%%DOCSDIR%%/GeditNotebook.html -%%DOCSDIR%%/GeditPanel.html -%%DOCSDIR%%/GeditPlugin.html -%%DOCSDIR%%/GeditProgressMessageArea.html -%%DOCSDIR%%/GeditStatusbar.html -%%DOCSDIR%%/GeditTab.html -%%DOCSDIR%%/GeditView.html -%%DOCSDIR%%/GeditWindow.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/gedit-GeditMessageType.html -%%DOCSDIR%%/gedit-GeditPrintJob.html -%%DOCSDIR%%/gedit-GeditPrintJobPreview.html -%%DOCSDIR%%/gedit-gedit-convert.html -%%DOCSDIR%%/gedit-gedit-debug.html -%%DOCSDIR%%/gedit-gedit-encodings.html -%%DOCSDIR%%/gedit-gedit-help.html -%%DOCSDIR%%/gedit-gedit-metadata-manager.html -%%DOCSDIR%%/gedit-gedit-prefs-manager-app.html -%%DOCSDIR%%/gedit-gedit-prefs-manager.html -%%DOCSDIR%%/gedit-gedit-utils.html -%%DOCSDIR%%/gedit.devhelp -%%DOCSDIR%%/gedit.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/gedit-2/icons/gedit-plugin.png -share/gedit-2/logo/gedit-logo.png -@exec mkdir -p %D/share/gedit-2/plugins/changecase -share/gedit-2/plugins/docinfo/docinfo.ui -%%PYTHON%%share/gedit-2/plugins/externaltools/ui/tools.ui -%%PYTHON%%share/gedit-2/plugins/externaltools/ui/outputpanel.ui -share/gedit-2/plugins/filebrowser/gedit-file-browser-widget-ui.xml -@exec mkdir -p %D/share/gedit-2/plugins/indent -share/gedit-2/plugins/modelines/language-mappings -%%PYTHON%%share/gedit-2/plugins/pythonconsole/ui/config.ui -@exec mkdir -p %D/share/gedit-2/plugins/sample -%%PYTHON%%share/gedit-2/plugins/snippets/c.xml -%%PYTHON%%share/gedit-2/plugins/snippets/chdr.xml -%%PYTHON%%share/gedit-2/plugins/snippets/cpp.xml -%%PYTHON%%share/gedit-2/plugins/snippets/css.xml -%%PYTHON%%share/gedit-2/plugins/snippets/docbook.xml -%%PYTHON%%share/gedit-2/plugins/snippets/global.xml -%%PYTHON%%share/gedit-2/plugins/snippets/haskell.xml -%%PYTHON%%share/gedit-2/plugins/snippets/html.xml -%%PYTHON%%share/gedit-2/plugins/snippets/idl.xml -%%PYTHON%%share/gedit-2/plugins/snippets/java.xml -%%PYTHON%%share/gedit-2/plugins/snippets/javascript.xml -%%PYTHON%%share/gedit-2/plugins/snippets/lang/snippets.lang -%%PYTHON%%share/gedit-2/plugins/snippets/latex.xml -%%PYTHON%%share/gedit-2/plugins/snippets/perl.xml -%%PYTHON%%share/gedit-2/plugins/snippets/php.xml -%%PYTHON%%share/gedit-2/plugins/snippets/python.xml -%%PYTHON%%share/gedit-2/plugins/snippets/ruby.xml -%%PYTHON%%share/gedit-2/plugins/snippets/sh.xml -%%PYTHON%%share/gedit-2/plugins/snippets/snippets.xml -%%PYTHON%%share/gedit-2/plugins/snippets/tcl.xml -%%PYTHON%%share/gedit-2/plugins/snippets/ui/snippets.ui -%%PYTHON%%share/gedit-2/plugins/snippets/xml.xml -share/gedit-2/plugins/sort/sort.ui -share/gedit-2/plugins/spell/languages-dialog.ui -share/gedit-2/plugins/spell/spell-checker.ui -share/gedit-2/plugins/taglist/HTML.tags.gz -share/gedit-2/plugins/taglist/Latex.tags.gz -share/gedit-2/plugins/taglist/XSLT.tags.gz -share/gedit-2/plugins/taglist/XUL.tags.gz -share/gedit-2/plugins/time/time.ui -%%PYTHON%%share/gedit-2/plugins/tools/build -%%PYTHON%%share/gedit-2/plugins/tools/open-terminal-here -%%PYTHON%%share/gedit-2/plugins/tools/remove-trailing-spaces -%%PYTHON%%share/gedit-2/plugins/tools/run-command -share/gedit-2/ui/gedit-encodings-dialog.ui -share/gedit-2/ui/gedit-open-location-dialog.ui -share/gedit-2/ui/gedit-preferences-dialog.ui -share/gedit-2/ui/gedit-print-preferences.ui -share/gedit-2/ui/gedit-search-dialog.ui -share/gedit-2/ui/gedit-ui.xml -share/gnome/help/gedit/C/figures/gedit_format_bold.png -share/gnome/help/gedit/C/figures/gedit_format_italic.png -share/gnome/help/gedit/C/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/C/figures/gedit_format_underline.png -share/gnome/help/gedit/C/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/C/figures/gedit_window.png -share/gnome/help/gedit/C/gedit.xml -share/gnome/help/gedit/C/legal.xml -share/gnome/help/gedit/bg/figures/gedit_format_bold.png -share/gnome/help/gedit/bg/figures/gedit_format_italic.png -share/gnome/help/gedit/bg/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/bg/figures/gedit_format_underline.png -share/gnome/help/gedit/bg/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/bg/figures/gedit_window.png -share/gnome/help/gedit/bg/gedit.xml -share/gnome/help/gedit/bg/legal.xml -share/gnome/help/gedit/da/figures/gedit_format_bold.png -share/gnome/help/gedit/da/figures/gedit_format_italic.png -share/gnome/help/gedit/da/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/da/figures/gedit_format_underline.png -share/gnome/help/gedit/da/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/da/figures/gedit_window.png -share/gnome/help/gedit/da/gedit.xml -share/gnome/help/gedit/da/legal.xml -share/gnome/help/gedit/de/figures/gedit_format_bold.png -share/gnome/help/gedit/de/figures/gedit_format_italic.png -share/gnome/help/gedit/de/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/de/figures/gedit_format_underline.png -share/gnome/help/gedit/de/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/de/figures/gedit_window.png -share/gnome/help/gedit/de/gedit.xml -share/gnome/help/gedit/de/legal.xml -share/gnome/help/gedit/es/figures/gedit_format_bold.png -share/gnome/help/gedit/es/figures/gedit_format_italic.png -share/gnome/help/gedit/es/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/es/figures/gedit_format_underline.png -share/gnome/help/gedit/es/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/es/figures/gedit_window.png -share/gnome/help/gedit/es/gedit.xml -share/gnome/help/gedit/es/legal.xml -share/gnome/help/gedit/fi/figures/gedit_format_bold.png -share/gnome/help/gedit/fi/figures/gedit_format_italic.png -share/gnome/help/gedit/fi/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/fi/figures/gedit_format_underline.png -share/gnome/help/gedit/fi/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/fi/figures/gedit_window.png -share/gnome/help/gedit/fi/gedit.xml -share/gnome/help/gedit/fi/legal.xml -share/gnome/help/gedit/fr/figures/gedit_format_bold.png -share/gnome/help/gedit/fr/figures/gedit_format_italic.png -share/gnome/help/gedit/fr/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/fr/figures/gedit_format_underline.png -share/gnome/help/gedit/fr/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/fr/figures/gedit_window.png -share/gnome/help/gedit/fr/gedit.xml -share/gnome/help/gedit/fr/legal.xml -share/gnome/help/gedit/hu/figures/gedit_format_bold.png -share/gnome/help/gedit/hu/figures/gedit_format_italic.png -share/gnome/help/gedit/hu/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/hu/figures/gedit_format_underline.png -share/gnome/help/gedit/hu/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/hu/figures/gedit_window.png -share/gnome/help/gedit/hu/gedit.xml -share/gnome/help/gedit/hu/legal.xml -share/gnome/help/gedit/it/figures/gedit_format_bold.png -share/gnome/help/gedit/it/figures/gedit_format_italic.png -share/gnome/help/gedit/it/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/it/figures/gedit_format_underline.png -share/gnome/help/gedit/it/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/it/figures/gedit_window.png -share/gnome/help/gedit/it/gedit.xml -share/gnome/help/gedit/it/legal.xml -share/gnome/help/gedit/ja/figures/gedit_format_bold.png -share/gnome/help/gedit/ja/figures/gedit_format_italic.png -share/gnome/help/gedit/ja/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/ja/figures/gedit_format_underline.png -share/gnome/help/gedit/ja/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/ja/figures/gedit_window.png -share/gnome/help/gedit/ja/gedit.xml -share/gnome/help/gedit/ja/legal.xml -share/gnome/help/gedit/ko/figures/gedit_format_bold.png -share/gnome/help/gedit/ko/figures/gedit_format_italic.png -share/gnome/help/gedit/ko/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/ko/figures/gedit_format_underline.png -share/gnome/help/gedit/ko/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/ko/figures/gedit_window.png -share/gnome/help/gedit/ko/gedit.xml -share/gnome/help/gedit/ko/legal.xml -share/gnome/help/gedit/oc/figures/gedit_format_bold.png -share/gnome/help/gedit/oc/figures/gedit_format_italic.png -share/gnome/help/gedit/oc/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/oc/figures/gedit_format_underline.png -share/gnome/help/gedit/oc/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/oc/figures/gedit_window.png -share/gnome/help/gedit/oc/gedit.xml -share/gnome/help/gedit/oc/legal.xml -share/gnome/help/gedit/pt_BR/figures/gedit_format_bold.png -share/gnome/help/gedit/pt_BR/figures/gedit_format_italic.png -share/gnome/help/gedit/pt_BR/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/pt_BR/figures/gedit_format_underline.png -share/gnome/help/gedit/pt_BR/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/pt_BR/figures/gedit_window.png -share/gnome/help/gedit/pt_BR/gedit.xml -share/gnome/help/gedit/pt_BR/legal.xml -share/gnome/help/gedit/ru/figures/gedit_format_bold.png -share/gnome/help/gedit/ru/figures/gedit_format_italic.png -share/gnome/help/gedit/ru/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/ru/figures/gedit_format_underline.png -share/gnome/help/gedit/ru/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/ru/figures/gedit_window.png -share/gnome/help/gedit/ru/gedit.xml -share/gnome/help/gedit/ru/legal.xml -share/gnome/help/gedit/sv/figures/gedit_format_bold.png -share/gnome/help/gedit/sv/figures/gedit_format_italic.png -share/gnome/help/gedit/sv/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/sv/figures/gedit_format_underline.png -share/gnome/help/gedit/sv/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/sv/figures/gedit_window.png -share/gnome/help/gedit/sv/gedit.xml -share/gnome/help/gedit/sv/legal.xml -share/gnome/help/gedit/th/figures/gedit_format_bold.png -share/gnome/help/gedit/th/figures/gedit_format_italic.png -share/gnome/help/gedit/th/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/th/figures/gedit_format_underline.png -share/gnome/help/gedit/th/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/th/figures/gedit_window.png -share/gnome/help/gedit/th/gedit.xml -share/gnome/help/gedit/th/legal.xml -share/gnome/help/gedit/uk/figures/gedit_format_bold.png -share/gnome/help/gedit/uk/figures/gedit_format_italic.png -share/gnome/help/gedit/uk/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/uk/figures/gedit_format_underline.png -share/gnome/help/gedit/uk/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/uk/figures/gedit_window.png -share/gnome/help/gedit/uk/gedit.xml -share/gnome/help/gedit/uk/legal.xml -share/gnome/help/gedit/zh_CN/figures/gedit_format_bold.png -share/gnome/help/gedit/zh_CN/figures/gedit_format_italic.png -share/gnome/help/gedit/zh_CN/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/zh_CN/figures/gedit_format_underline.png -share/gnome/help/gedit/zh_CN/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/zh_CN/figures/gedit_window.png -share/gnome/help/gedit/zh_CN/gedit.xml -share/gnome/help/gedit/zh_CN/legal.xml -share/gnome/help/gedit/zh_HK/figures/gedit_format_bold.png -share/gnome/help/gedit/zh_HK/figures/gedit_format_italic.png -share/gnome/help/gedit/zh_HK/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/zh_HK/figures/gedit_format_underline.png -share/gnome/help/gedit/zh_HK/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/zh_HK/figures/gedit_window.png -share/gnome/help/gedit/zh_HK/gedit.xml -share/gnome/help/gedit/zh_HK/legal.xml -share/gnome/help/gedit/zh_TW/figures/gedit_format_bold.png -share/gnome/help/gedit/zh_TW/figures/gedit_format_italic.png -share/gnome/help/gedit/zh_TW/figures/gedit_format_strikethrough.png -share/gnome/help/gedit/zh_TW/figures/gedit_format_underline.png -share/gnome/help/gedit/zh_TW/figures/gedit_recent_files_menu_icon.png -share/gnome/help/gedit/zh_TW/figures/gedit_window.png -share/gnome/help/gedit/zh_TW/gedit.xml -share/gnome/help/gedit/zh_TW/legal.xml -share/locale/af/LC_MESSAGES/gedit.mo -share/locale/am/LC_MESSAGES/gedit.mo -share/locale/ar/LC_MESSAGES/gedit.mo -share/locale/as/LC_MESSAGES/gedit.mo -share/locale/ast/LC_MESSAGES/gedit.mo -share/locale/az/LC_MESSAGES/gedit.mo -share/locale/be/LC_MESSAGES/gedit.mo -share/locale/be@latin/LC_MESSAGES/gedit.mo -share/locale/bg/LC_MESSAGES/gedit.mo -share/locale/bn/LC_MESSAGES/gedit.mo -share/locale/bn_IN/LC_MESSAGES/gedit.mo -share/locale/br/LC_MESSAGES/gedit.mo -share/locale/bs/LC_MESSAGES/gedit.mo -share/locale/ca/LC_MESSAGES/gedit.mo -share/locale/cs/LC_MESSAGES/gedit.mo -share/locale/cy/LC_MESSAGES/gedit.mo -share/locale/da/LC_MESSAGES/gedit.mo -share/locale/de/LC_MESSAGES/gedit.mo -share/locale/dz/LC_MESSAGES/gedit.mo -share/locale/el/LC_MESSAGES/gedit.mo -share/locale/en_CA/LC_MESSAGES/gedit.mo -share/locale/en_GB/LC_MESSAGES/gedit.mo -share/locale/es/LC_MESSAGES/gedit.mo -share/locale/et/LC_MESSAGES/gedit.mo -share/locale/eu/LC_MESSAGES/gedit.mo -share/locale/fa/LC_MESSAGES/gedit.mo -share/locale/fi/LC_MESSAGES/gedit.mo -share/locale/fr/LC_MESSAGES/gedit.mo -share/locale/ga/LC_MESSAGES/gedit.mo -share/locale/gl/LC_MESSAGES/gedit.mo -share/locale/gu/LC_MESSAGES/gedit.mo -share/locale/he/LC_MESSAGES/gedit.mo -share/locale/hi/LC_MESSAGES/gedit.mo -share/locale/hr/LC_MESSAGES/gedit.mo -share/locale/hu/LC_MESSAGES/gedit.mo -share/locale/hy/LC_MESSAGES/gedit.mo -share/locale/id/LC_MESSAGES/gedit.mo -share/locale/is/LC_MESSAGES/gedit.mo -share/locale/it/LC_MESSAGES/gedit.mo -share/locale/ja/LC_MESSAGES/gedit.mo -share/locale/ka/LC_MESSAGES/gedit.mo -share/locale/kn/LC_MESSAGES/gedit.mo -share/locale/ko/LC_MESSAGES/gedit.mo -share/locale/ku/LC_MESSAGES/gedit.mo -share/locale/la/LC_MESSAGES/gedit.mo -share/locale/lt/LC_MESSAGES/gedit.mo -share/locale/lv/LC_MESSAGES/gedit.mo -share/locale/mai/LC_MESSAGES/gedit.mo -share/locale/mg/LC_MESSAGES/gedit.mo -share/locale/mi/LC_MESSAGES/gedit.mo -share/locale/mk/LC_MESSAGES/gedit.mo -share/locale/ml/LC_MESSAGES/gedit.mo -share/locale/mn/LC_MESSAGES/gedit.mo -share/locale/mr/LC_MESSAGES/gedit.mo -share/locale/ms/LC_MESSAGES/gedit.mo -share/locale/nb/LC_MESSAGES/gedit.mo -share/locale/ne/LC_MESSAGES/gedit.mo -share/locale/nl/LC_MESSAGES/gedit.mo -share/locale/nn/LC_MESSAGES/gedit.mo -share/locale/oc/LC_MESSAGES/gedit.mo -share/locale/or/LC_MESSAGES/gedit.mo -share/locale/pa/LC_MESSAGES/gedit.mo -share/locale/pl/LC_MESSAGES/gedit.mo -share/locale/ps/LC_MESSAGES/gedit.mo -share/locale/pt/LC_MESSAGES/gedit.mo -share/locale/pt_BR/LC_MESSAGES/gedit.mo -share/locale/ro/LC_MESSAGES/gedit.mo -share/locale/ru/LC_MESSAGES/gedit.mo -share/locale/rw/LC_MESSAGES/gedit.mo -share/locale/si/LC_MESSAGES/gedit.mo -share/locale/sk/LC_MESSAGES/gedit.mo -share/locale/sl/LC_MESSAGES/gedit.mo -share/locale/sq/LC_MESSAGES/gedit.mo -share/locale/sr/LC_MESSAGES/gedit.mo -share/locale/sr@latin/LC_MESSAGES/gedit.mo -share/locale/sv/LC_MESSAGES/gedit.mo -share/locale/ta/LC_MESSAGES/gedit.mo -share/locale/te/LC_MESSAGES/gedit.mo -share/locale/th/LC_MESSAGES/gedit.mo -share/locale/tk/LC_MESSAGES/gedit.mo -share/locale/tr/LC_MESSAGES/gedit.mo -share/locale/uk/LC_MESSAGES/gedit.mo -share/locale/vi/LC_MESSAGES/gedit.mo -share/locale/wa/LC_MESSAGES/gedit.mo -share/locale/xh/LC_MESSAGES/gedit.mo -share/locale/zh_CN/LC_MESSAGES/gedit.mo -share/locale/zh_HK/LC_MESSAGES/gedit.mo -share/locale/zh_TW/LC_MESSAGES/gedit.mo -share/omf/gedit/gedit-C.omf -share/omf/gedit/gedit-bg.omf -share/omf/gedit/gedit-da.omf -share/omf/gedit/gedit-de.omf -share/omf/gedit/gedit-es.omf -share/omf/gedit/gedit-fi.omf -share/omf/gedit/gedit-fr.omf -share/omf/gedit/gedit-hu.omf -share/omf/gedit/gedit-it.omf -share/omf/gedit/gedit-ja.omf -share/omf/gedit/gedit-ko.omf -share/omf/gedit/gedit-oc.omf -share/omf/gedit/gedit-pt_BR.omf -share/omf/gedit/gedit-ru.omf -share/omf/gedit/gedit-sv.omf -share/omf/gedit/gedit-th.omf -share/omf/gedit/gedit-uk.omf -share/omf/gedit/gedit-zh_CN.omf -share/omf/gedit/gedit-zh_HK.omf -share/omf/gedit/gedit-zh_TW.omf -@dirrm share/omf/gedit -@dirrm share/gnome/help/gedit/zh_TW/figures -@dirrm share/gnome/help/gedit/zh_TW -@dirrm share/gnome/help/gedit/zh_HK/figures -@dirrm share/gnome/help/gedit/zh_HK -@dirrm share/gnome/help/gedit/zh_CN/figures -@dirrm share/gnome/help/gedit/zh_CN -@dirrm share/gnome/help/gedit/uk/figures -@dirrm share/gnome/help/gedit/uk -@dirrm share/gnome/help/gedit/th/figures -@dirrm share/gnome/help/gedit/th -@dirrm share/gnome/help/gedit/sv/figures -@dirrm share/gnome/help/gedit/sv -@dirrm share/gnome/help/gedit/ru/figures -@dirrm share/gnome/help/gedit/ru -@dirrm share/gnome/help/gedit/pt_BR/figures -@dirrm share/gnome/help/gedit/pt_BR -@dirrm share/gnome/help/gedit/oc/figures -@dirrm share/gnome/help/gedit/oc -@dirrm share/gnome/help/gedit/ko/figures -@dirrm share/gnome/help/gedit/ko -@dirrm share/gnome/help/gedit/ja/figures -@dirrm share/gnome/help/gedit/ja -@dirrm share/gnome/help/gedit/it/figures -@dirrm share/gnome/help/gedit/it -@dirrm share/gnome/help/gedit/hu/figures -@dirrm share/gnome/help/gedit/hu -@dirrm share/gnome/help/gedit/fr/figures -@dirrm share/gnome/help/gedit/fr -@dirrm share/gnome/help/gedit/fi/figures -@dirrm share/gnome/help/gedit/fi -@dirrm share/gnome/help/gedit/es/figures -@dirrm share/gnome/help/gedit/es -@dirrm share/gnome/help/gedit/de/figures -@dirrm share/gnome/help/gedit/de -@dirrm share/gnome/help/gedit/da/figures -@dirrm share/gnome/help/gedit/da -@dirrm share/gnome/help/gedit/bg/figures -@dirrm share/gnome/help/gedit/bg -@dirrm share/gnome/help/gedit/C/figures -@dirrm share/gnome/help/gedit/C -@dirrm share/gnome/help/gedit -@dirrm share/gedit-2/ui -%%PYTHON%%@dirrm share/gedit-2/plugins/tools -@dirrm share/gedit-2/plugins/time -@dirrm share/gedit-2/plugins/taglist -@dirrm share/gedit-2/plugins/spell -@dirrm share/gedit-2/plugins/sort -%%PYTHON%%@dirrm share/gedit-2/plugins/snippets/ui -%%PYTHON%%@dirrm share/gedit-2/plugins/snippets/lang -%%PYTHON%%@dirrm share/gedit-2/plugins/snippets -@dirrm share/gedit-2/plugins/sample -%%PYTHON%%@dirrm share/gedit-2/plugins/pythonconsole/ui -%%PYTHON%%@dirrm share/gedit-2/plugins/pythonconsole -@dirrm share/gedit-2/plugins/modelines -@dirrm share/gedit-2/plugins/indent -@dirrm share/gedit-2/plugins/filebrowser -%%PYTHON%%@dirrm share/gedit-2/plugins/externaltools/ui -%%PYTHON%%@dirrm share/gedit-2/plugins/externaltools -@dirrm share/gedit-2/plugins/docinfo -@dirrm share/gedit-2/plugins/changecase -@dirrm share/gedit-2/plugins -@dirrm share/gedit-2/logo -@dirrm share/gedit-2/icons -@dirrm share/gedit-2 -@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@dirrmtry libexec/gedit-2 -%%PYTHON%%@dirrm lib/gedit-2/plugins/snippets -%%PYTHON%%@dirrm lib/gedit-2/plugins/pythonconsole -%%PYTHON%%@dirrm lib/gedit-2/plugins/externaltools -@dirrmtry lib/gedit-2/plugins -@dirrmtry lib/gedit-2/plugin-loaders -@dirrmtry lib/gedit-2 -@dirrm include/gedit-%%VERSION%%/gedit -@dirrm include/gedit-%%VERSION%% -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/la/LC_MESSAGES -@dirrmtry share/locale/la -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/editors/mlview/Makefile b/editors/mlview/Makefile deleted file mode 100644 index ba5108007..000000000 --- a/editors/mlview/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# Ports collection Makefile for: mlview -# Date created: 24 September 2003 -# Whom: Simon Barner <barner@gmx.de> -# -# $FreeBSD$ -# - -PORTNAME= mlview -PORTVERSION= 0.8 -PORTREVISION= 8 -CATEGORIES= editors gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= ports@FreeBSD.org -COMMENT= A tree oriented XML editor for Gnome - -USE_BZIP2= yes -USE_AUTOTOOLS= autoconf:262 libtool:15 -USE_GNOME= eel2 gnomehack gnomeprefix gtksourceview -USE_GMAKE= yes -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags gnome-vfs-2.0 libgnomeui-2.0`" LIBS="-L${LOCALBASE}/lib `pkg-config --libs gnome-vfs-2.0 libgnomeui-2.0`" - -GCONF_SCHEMAS= mlview.schemas - -.include <bsd.port.pre.mk> - -# Autodetect dbus -.if exists (${LOCALBASE}/lib/libdbus-1.so.3) -WITH_DBUS= yes -.endif - -.if defined (WITH_DBUS) -LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus -CONFIGURE_ARGS+="--enable-dbus=yes" -.endif - -pre-everything:: -.if !defined (WITH_DBUS) - @${ECHO_CMD} - @${ECHO_CMD} Re-run with -DWITH_DBUS in order to enable dbus support! - @${ECHO_CMD} -.endif - -.include <bsd.port.post.mk> diff --git a/editors/mlview/distinfo b/editors/mlview/distinfo deleted file mode 100644 index f401ab110..000000000 --- a/editors/mlview/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/mlview-0.8.tar.bz2) = ffbf4dbbe32d8312ca516633bf57b921 -SHA256 (gnome2/mlview-0.8.tar.bz2) = 5e27abcac30b00136470abb6eb7c2551b4ae1920267e796ab5131e9a41b1ee51 -SIZE (gnome2/mlview-0.8.tar.bz2) = 728600 diff --git a/editors/mlview/files/patch-configure.in b/editors/mlview/files/patch-configure.in deleted file mode 100644 index 46ba9f2cf..000000000 --- a/editors/mlview/files/patch-configure.in +++ /dev/null @@ -1,14 +0,0 @@ ---- configure.in.orig 2005-07-03 17:17:49.000000000 +0000 -+++ configure.in 2008-08-04 13:30:02.000000000 +0000 -@@ -69,6 +69,5 @@ - --MLVIEW_EXE=$prefix/bin/mlv -+MLVIEW_EXE=$prefix/bin/mlview - AC_SUBST(MLVIEW_VERSION_NUMBER) - AC_SUBST(MLVIEW_VERSION) --AC_SUBST(AC_PACKAGE_VERSION) - AC_SUBST(LIBMLVIEW_VERSION_NUMBER) -@@ -76,3 +75,2 @@ - AC_SUBST(LIBMLVIEW_VERSION) --AC_SUBST(AC_PACKAGE_VERSION) - AC_SUBST(MLVIEW_EXE) diff --git a/editors/mlview/files/patch-desktop.in b/editors/mlview/files/patch-desktop.in deleted file mode 100644 index 4dfbe32c7..000000000 --- a/editors/mlview/files/patch-desktop.in +++ /dev/null @@ -1,19 +0,0 @@ ---- mlview.desktop.in.orig Sat Jun 25 14:57:05 2005 -+++ mlview.desktop.in Sat Jul 23 13:02:57 2005 -@@ -1,13 +1,13 @@ - [Desktop Entry] --Version=0.9.4 -+Version=0.8.0 - Encoding=UTF-8 - Type=Application - Name=MlView XML Editor - GenericName=MlView Generic XML Editor - Categories=Application;Development; - Comment=A generic simple XML editor for GNOME --Icon=mlview-app-icon.xpm --TryExec=mlv -+Icon=mlview-app-icon.xpm -+TryExec=mlview - Exec=@MLVIEW_EXE@ %F - Terminal=false - diff --git a/editors/mlview/files/patch-src_mlview-app-context.c b/editors/mlview/files/patch-src_mlview-app-context.c deleted file mode 100644 index 3265da17e..000000000 --- a/editors/mlview/files/patch-src_mlview-app-context.c +++ /dev/null @@ -1,18 +0,0 @@ ---- src/mlview-app-context.c.orig Tue Jan 11 09:37:44 2005 -+++ src/mlview-app-context.c Tue Jan 11 09:38:02 2005 -@@ -1348,13 +1348,14 @@ - mlview_app_context_get_file_chooser (MlViewAppContext *a_this, - const gchar *a_title, MlViewFileChooserMode a_mode) - { -+ GtkWidget * parent_window = NULL ; -+ - g_return_val_if_fail (a_this - && MLVIEW_IS_APP_CONTEXT (a_this) - && PRIVATE (a_this), - NULL) ; - - /*if (!PRIVATE (a_this)->file_chooser) {*/ -- GtkWidget * parent_window = NULL ; - - parent_window = mlview_app_context_get_element (a_this, - "MlViewMainWindow") ; diff --git a/editors/mlview/files/patch-src_mlview-editor-dbc.c b/editors/mlview/files/patch-src_mlview-editor-dbc.c deleted file mode 100644 index c95ef6817..000000000 --- a/editors/mlview/files/patch-src_mlview-editor-dbc.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/mlview-editor-dbc.c.orig Mon Sep 5 12:55:40 2005 -+++ src/mlview-editor-dbc.c Mon Sep 5 12:56:44 2005 -@@ -168,13 +168,16 @@ - 0, - (GInstanceInitFunc)mlview_editor_dbc_init - } ; -- type = g_type_register_static (G_TYPE_OBJECT, -- "MlViewEditorDBC", -- &type_info, 0) ; -+ - static const GInterfaceInfo idbc_info = { - (GInterfaceInitFunc) mlview_editor_dbc_idbc_init, - NULL, NULL - } ; -+ -+ type = g_type_register_static (G_TYPE_OBJECT, -+ "MlViewEditorDBC", -+ &type_info, 0) ; -+ - g_type_add_interface_static (type, MLVIEW_TYPE_IDBC, - &idbc_info) ; - } diff --git a/editors/mlview/files/patch-src_mlview-editor-dbo.c b/editors/mlview/files/patch-src_mlview-editor-dbo.c deleted file mode 100644 index 853d30d25..000000000 --- a/editors/mlview/files/patch-src_mlview-editor-dbo.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/mlview-editor-dbo.c.orig Mon Sep 5 12:50:28 2005 -+++ src/mlview-editor-dbo.c Mon Sep 5 12:51:41 2005 -@@ -303,14 +303,16 @@ - 0, - (GInstanceInitFunc) mlview_editor_dbo_init - } ; -- type = g_type_register_static (G_TYPE_OBJECT, -- "MlViewEditorDBO", -- &type_info, 0) ; - - static const GInterfaceInfo idbo_info = { - (GInterfaceInitFunc) mlview_editor_dbo_idbo_init, - NULL, NULL - } ; -+ -+ type = g_type_register_static (G_TYPE_OBJECT, -+ "MlViewEditorDBO", -+ &type_info, 0) ; -+ - g_type_add_interface_static (type, MLVIEW_TYPE_IDBO, - &idbo_info) ; - } diff --git a/editors/mlview/files/patch-src_mlview-ping-dbc.c b/editors/mlview/files/patch-src_mlview-ping-dbc.c deleted file mode 100644 index 8d5b65506..000000000 --- a/editors/mlview/files/patch-src_mlview-ping-dbc.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/mlview-ping-dbc.c.orig Mon Sep 5 12:57:39 2005 -+++ src/mlview-ping-dbc.c Mon Sep 5 12:58:35 2005 -@@ -166,14 +166,16 @@ - 0, - (GInstanceInitFunc) mlview_ping_dbc_init - } ; -- type = g_type_register_static (G_TYPE_OBJECT, -- "MlViewPingDBC", -- &type_info, 0) ; - - static const GInterfaceInfo idbc_info = { - (GInterfaceInitFunc) mlview_ping_dbc_idbc_init, - NULL, NULL - } ; -+ -+ type = g_type_register_static (G_TYPE_OBJECT, -+ "MlViewPingDBC", -+ &type_info, 0) ; -+ - g_type_add_interface_static (type, MLVIEW_TYPE_IDBC, - &idbc_info) ; - } diff --git a/editors/mlview/files/patch-src_mlview-ping-dbo.c b/editors/mlview/files/patch-src_mlview-ping-dbo.c deleted file mode 100644 index 72dd45a7c..000000000 --- a/editors/mlview/files/patch-src_mlview-ping-dbo.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/mlview-ping-dbo.c.orig Mon Sep 5 12:52:49 2005 -+++ src/mlview-ping-dbo.c Mon Sep 5 12:53:50 2005 -@@ -362,13 +362,16 @@ - 0, - (GInstanceInitFunc) mlview_ping_dbo_init - } ; -- type = g_type_register_static (G_TYPE_OBJECT, -- "MlViewPingDBO", -- &type_info, 0) ; -+ - static const GInterfaceInfo idbo_info = { - (GInterfaceInitFunc) mlview_ping_dbo_idbo_init, - NULL, NULL - } ; -+ -+ type = g_type_register_static (G_TYPE_OBJECT, -+ "MlViewPingDBO", -+ &type_info, 0) ; -+ - g_type_add_interface_static (type, MLVIEW_TYPE_IDBO, - &idbo_info) ; - } diff --git a/editors/mlview/files/patch-src_mlview-service.c b/editors/mlview/files/patch-src_mlview-service.c deleted file mode 100644 index c9bdba8f2..000000000 --- a/editors/mlview/files/patch-src_mlview-service.c +++ /dev/null @@ -1,39 +0,0 @@ ---- src/mlview-service.c.orig Sat Jul 23 12:10:16 2005 -+++ src/mlview-service.c Sat Jul 23 12:23:14 2005 -@@ -282,23 +282,23 @@ - service_name = g_strdup_printf ("%s.%s", - PRIVATE (a_this)->name, - tab) ; -- service_result = dbus_bus_acquire_service -+ service_result = dbus_bus_request_name - (dbus_connection, - service_name, 0, &dbus_error) ; - - switch (service_result) { -- case DBUS_SERVICE_REPLY_PRIMARY_OWNER: -+ case DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER: - /*we started the service, OK*/ - mlview_utils_trace_debug - ("Service name: %s registered\n", - service_name) ; - status = register_dbus_objects (a_this) ; - break ; -- case DBUS_SERVICE_REPLY_ALREADY_OWNER: -+ case DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER: - /*we were already started as service. OK still*/ - status = MLVIEW_OK ; - break ; -- case DBUS_SERVICE_REPLY_SERVICE_EXISTS: -+ case DBUS_REQUEST_NAME_REPLY_EXISTS: - /* - * an other process has been registered under - * with the same service name. So we can't be registered -@@ -312,7 +312,7 @@ - "moment") ; - } - goto try_service_name ; -- case DBUS_SERVICE_REPLY_IN_QUEUE: -+ case DBUS_REQUEST_NAME_REPLY_IN_QUEUE: - /* - * our request is queued. (bus overcrowded ?) KO - */ diff --git a/editors/mlview/files/patch-src_mlview-source-view.c b/editors/mlview/files/patch-src_mlview-source-view.c deleted file mode 100644 index 82cc65126..000000000 --- a/editors/mlview/files/patch-src_mlview-source-view.c +++ /dev/null @@ -1,23 +0,0 @@ ---- src/mlview-source-view.c.orig Mon Sep 5 12:24:55 2005 -+++ src/mlview-source-view.c Mon Sep 5 12:25:47 2005 -@@ -1321,15 +1321,17 @@ - (GInstanceInitFunc) - mlview_source_view_init - } ; -- type = g_type_register_static -- (MLVIEW_TYPE_VIEW_ADAPTER, -- "MlViewSourceView", &type_info, 0); - - static const GInterfaceInfo iview_info = { - (GInterfaceInitFunc) mlview_source_view_iview_init, - NULL, - NULL - } ; -+ -+ type = g_type_register_static -+ (MLVIEW_TYPE_VIEW_ADAPTER, -+ "MlViewSourceView", &type_info, 0); -+ - g_type_add_interface_static (type, MLVIEW_TYPE_IVIEW, - &iview_info) ; - } diff --git a/editors/mlview/files/patch-src_mlview-tree-view.c b/editors/mlview/files/patch-src_mlview-tree-view.c deleted file mode 100644 index d3811f82c..000000000 --- a/editors/mlview/files/patch-src_mlview-tree-view.c +++ /dev/null @@ -1,23 +0,0 @@ ---- src/mlview-tree-view.c.orig Mon Sep 5 12:22:34 2005 -+++ src/mlview-tree-view.c Mon Sep 5 12:24:10 2005 -@@ -2628,15 +2628,17 @@ - (GInstanceInitFunc) - mlview_tree_view_init - }; -- type = g_type_register_static -- (MLVIEW_TYPE_VIEW_ADAPTER, -- "MlViewTreeView", &type_info, 0); - - static const GInterfaceInfo iview_info = { - (GInterfaceInitFunc) mlview_tree_view_iview_init, - NULL, - NULL - } ; -+ -+ type = g_type_register_static -+ (MLVIEW_TYPE_VIEW_ADAPTER, -+ "MlViewTreeView", &type_info, 0); -+ - g_type_add_interface_static (type, MLVIEW_TYPE_IVIEW, &iview_info) ; - } - return type; diff --git a/editors/mlview/files/patch-src_mlview-view-adapter.c b/editors/mlview/files/patch-src_mlview-view-adapter.c deleted file mode 100644 index 4dac738f4..000000000 --- a/editors/mlview/files/patch-src_mlview-view-adapter.c +++ /dev/null @@ -1,23 +0,0 @@ ---- src/mlview-view-adapter.c.orig Mon Sep 5 12:19:12 2005 -+++ src/mlview-view-adapter.c Mon Sep 5 12:21:26 2005 -@@ -865,14 +865,17 @@ - (GInstanceInitFunc) - mlview_view_adapter_init - }; -- type_id = g_type_register_static (GTK_TYPE_VBOX, -- "MlViewViewAdapter", -- &type_info, 0); -+ - static const GInterfaceInfo iview_info = { - (GInterfaceInitFunc) mlview_view_adapter_iview_init, - NULL, - NULL - } ; -+ -+ type_id = g_type_register_static (GTK_TYPE_VBOX, -+ "MlViewViewAdapter", -+ &type_info, 0); -+ - g_type_add_interface_static (type_id, MLVIEW_TYPE_IVIEW, - &iview_info) ; - } diff --git a/editors/mlview/pkg-descr b/editors/mlview/pkg-descr deleted file mode 100644 index d570c2d48..000000000 --- a/editors/mlview/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -A tree oriented xml editor for gnome. It is an attempt to ease editing -xml documents with or without validation by focusing on their tree view. - -WWW: http://www.freespiders.org/projects/gmlview/ diff --git a/editors/mlview/pkg-plist b/editors/mlview/pkg-plist deleted file mode 100644 index 070393de5..000000000 --- a/editors/mlview/pkg-plist +++ /dev/null @@ -1,66 +0,0 @@ -bin/mlview -bin/mlviewctl -lib/libmlview.a -lib/libmlview.la -lib/libmlview.so -lib/libmlview.so.8 -lib/libmlviewdbusclient.a -lib/libmlviewdbusclient.la -lib/libmlviewdbusclient.so.8 -lib/libmlviewdbusclient.so -share/applications/mlview.desktop -share/application-registry/mlview.applications -share/mime-info/mlview.keys -share/mlview/main-menu-bar.xml -share/mlview/main-toolbar.xml -share/mlview/mlview-css-picker.glade -share/mlview/mlview-dtd-schema.png -share/mlview/mlview-dtd-choice-dtd-not-resolved.glade -share/mlview/mlview-dtd-choice.glade -share/mlview/mlview-main-app-win.glade -share/mlview/mlview-main-app-win2.glade -share/mlview/mlview-new-document.glade -share/mlview/mlview-node-editor.glade -share/mlview/mlview-preferences.glade -share/mlview/mlview-rng-schema.png -share/mlview/mlview-schemas-window.glade -share/mlview/mlview-search-box.glade -share/mlview/mlview-search-node.glade -share/mlview/mlview-uri-dialog.glade -share/mlview/mlview-validation-report.glade -share/mlview/mlview-xsd-schema.png -share/mlview/source-view-edit-menu.xml -share/mlview/tree-view-edit-menu.xml -share/mlview/xml-comment-node.png -share/mlview/xml-element-node-open.png -share/mlview/xml-element-node.png -share/mlview/xml-entity-ref-node.png -share/mlview/xml-pi-node.png -share/mlview/xml-root-open.png -share/mlview/xml-root.png -share/mlview/xml-text-node.png -share/pixmaps/mlview-app-icon.png -share/pixmaps/mlview-app-icon.xpm -share/locale/az/LC_MESSAGES/mlview.mo -share/locale/ca/LC_MESSAGES/mlview.mo -share/locale/cs/LC_MESSAGES/mlview.mo -share/locale/de/LC_MESSAGES/mlview.mo -share/locale/en_CA/LC_MESSAGES/mlview.mo -share/locale/en_GB/LC_MESSAGES/mlview.mo -share/locale/es/LC_MESSAGES/mlview.mo -share/locale/fr/LC_MESSAGES/mlview.mo -share/locale/hr/LC_MESSAGES/mlview.mo -share/locale/ja/LC_MESSAGES/mlview.mo -share/locale/ml/LC_MESSAGES/mlview.mo -share/locale/ms/LC_MESSAGES/mlview.mo -share/locale/nl/LC_MESSAGES/mlview.mo -share/locale/no/LC_MESSAGES/mlview.mo -share/locale/pl/LC_MESSAGES/mlview.mo -share/locale/pt/LC_MESSAGES/mlview.mo -share/locale/pt_BR/LC_MESSAGES/mlview.mo -share/locale/ru/LC_MESSAGES/mlview.mo -share/locale/sr/LC_MESSAGES/mlview.mo -share/locale/sr@Latn/LC_MESSAGES/mlview.mo -share/locale/sv/LC_MESSAGES/mlview.mo -@dirrm share/mlview -@dirrmtry share/applications diff --git a/games/gnome-games-extra-data/Makefile b/games/gnome-games-extra-data/Makefile deleted file mode 100644 index 11d789d8e..000000000 --- a/games/gnome-games-extra-data/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: gnomegames2-extra-data -# Date created: 16 August 2004 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= gnome-games-extra-data -PORTVERSION= 2.26.0 -CATEGORIES= games gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Themes and artwork for the gnome-games package - -RUN_DEPENDS= ${LOCALBASE}/bin/sol:${PORTSDIR}/games/gnome-games - -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_GNOME= gnomehack gnomeprefix -CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> diff --git a/games/gnome-games-extra-data/distinfo b/games/gnome-games-extra-data/distinfo deleted file mode 100644 index e819c72f1..000000000 --- a/games/gnome-games-extra-data/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-games-extra-data-2.26.0.tar.bz2) = fbcfebfeefd3de4b6883c39a4ce3e0f4 -SHA256 (gnome2/gnome-games-extra-data-2.26.0.tar.bz2) = dcf5a8e8127d7e4d4747cc00d16868d57b1e48bc36883f71afddc744caaf6115 -SIZE (gnome2/gnome-games-extra-data-2.26.0.tar.bz2) = 4089840 diff --git a/games/gnome-games-extra-data/pkg-descr b/games/gnome-games-extra-data/pkg-descr deleted file mode 100644 index 992c00ea9..000000000 --- a/games/gnome-games-extra-data/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This package contains extra data files for the gnome-games package. At -the moment this is almost entirely extra themes and artwork for the -games. diff --git a/games/gnome-games-extra-data/pkg-plist b/games/gnome-games-extra-data/pkg-plist deleted file mode 100644 index 81c06ae58..000000000 --- a/games/gnome-games-extra-data/pkg-plist +++ /dev/null @@ -1,38 +0,0 @@ -share/gnome-games-common/cards/anglo.svg -share/gnome-games-common/cards/anglo_bitmap.svg -share/gnome-games-common/cards/bellot.svg -share/gnome-games-common/cards/bonded.svg -share/gnome-games-common/cards/dondorf.svg -share/gnome-games-common/cards/gnomangelo.svg -share/gnome-games-common/cards/ornamental.svg -share/gnome-games-common/cards/paris.svg -share/gnome-games-common/cards/tango.svg -share/gnome-games/glines/pixmaps/classic.png -share/gnome-games/glines/pixmaps/dots.png -share/gnome-games/glines/pixmaps/gumball.png -share/gnome-games/glines/pixmaps/pulse.png -share/gnome-games/gnobots2/pixmaps/cows.png -share/gnome-games/gnobots2/pixmaps/eggs.png -share/gnome-games/gnobots2/pixmaps/mice.png -share/gnome-games/gnometris/pixmaps/5blocks-tig.png -share/gnome-games/gnometris/pixmaps/5blocks-tim.png -share/gnome-games/gnometris/pixmaps/5blocks.png -share/gnome-games/gnometris/pixmaps/7blocks.png -share/gnome-games/gnometris/pixmaps/7stones-gn.png -share/gnome-games/gnometris/pixmaps/7stones2-gn.png -share/gnome-games/iagno/pixmaps/blend.png -share/gnome-games/iagno/pixmaps/flipblend.png -share/gnome-games/iagno/pixmaps/metal.png -share/gnome-games/iagno/pixmaps/metal2.png -share/gnome-games/iagno/pixmaps/shrink.png -share/gnome-games/iagno/pixmaps/sunmoon.png -share/gnome-games/mahjongg/pixmaps/default.png -share/gnome-games/mahjongg/pixmaps/default2.png -share/gnome-games/mahjongg/pixmaps/greek-letters.png -share/gnome-games/mahjongg/pixmaps/maya.png -share/gnome-games/mahjongg/pixmaps/seta.png -share/gnome-games/same-gnome/themes/2.10/blink.png -share/gnome-games/same-gnome/themes/2.10/glass.png -share/gnome-games/same-gnome/themes/2.10/marbles.png -share/gnome-games/same-gnome/themes/2.10/matrix.png -share/gnome-games/same-gnome/themes/2.10/rotate.svg diff --git a/games/gnome-games/Makefile b/games/gnome-games/Makefile deleted file mode 100644 index 883899642..000000000 --- a/games/gnome-games/Makefile +++ /dev/null @@ -1,76 +0,0 @@ -# New ports collection makefile for: gnomegames2 -# Date created: 08 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/games/gnome-games/Makefile,v 1.191 2009/03/14 20:57:20 marcus Exp $ -# - -PORTNAME= gnome-games -PORTVERSION= 2.26.0 -CATEGORIES= games gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= The game applications package for the GNOME 2 Desktop Environment - -LIB_DEPENDS= guile.20:${PORTSDIR}/lang/guile \ - ggzmod.5:${PORTSDIR}/games/ggz-client-libs - -USE_BZIP2= yes -USE_PYTHON= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui \ - librsvg2 desktopfileutils pygnomedesktop gnomedocutils -USE_GSTREAMER= vorbis ogg -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-sound=gstreamer -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= aisleriot.schemas blackjack.schemas glchess.schemas \ - glines.schemas gnect.schemas gnibbles.schemas \ - gnobots2.schemas gnometris.schemas gnomine.schemas \ - gnotravex.schemas gnotski.schemas gtali.schemas \ - iagno.schemas mahjongg.schemas same-gnome.schemas - -CONFLICTS= sol-1.0.* glchess-[0-9]* gnomesudoku-[0-9]* - -DSC_FILES= iagno/iagno-client.dsc gnect/data/gnect-client.dsc \ - gnibbles/gnibbles-client.dsc - -OPTIONS= CLUTTER "Enable clutter compositing support" on - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/lib/libavahi-client.a) || defined(WITH_MDNS) -LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app -.endif - -.if !defined(WITHOUT_CLUTTER) -LIB_DEPENDS+= clutter-gtk-0.8.0:${PORTSDIR}/graphics/clutter-gtk \ - clutter-cairo-0.8.0:${PORTSDIR}/graphics/clutter-cairo -CONFIGURE_ARGS+=--enable-clutter -PLIST_SUB+= CLUTTER="" -.else -CONFIGURE_ARGS+=--disable-clutter -PLIST_SUB+= CLUTTER="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' \ - ${WRKSRC}/gnome-sudoku/src/lib/defaults.py.in \ - ${WRKSRC}/glchess/src/lib/defaults.py.in - -post-install: - ${MKDIR} ${PREFIX}/share/ggz/gnome-games -.for dsc in ${DSC_FILES} - ${INSTALL_DATA} ${WRKSRC}/${dsc} ${PREFIX}/share/ggz/gnome-games/${dsc:T} -.endfor - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/games/gnome-games/distinfo b/games/gnome-games/distinfo deleted file mode 100644 index 8933fab7a..000000000 --- a/games/gnome-games/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-games-2.26.0.tar.bz2) = 77e03e0caa57daec39e7cf8e09c87598 -SHA256 (gnome2/gnome-games-2.26.0.tar.bz2) = e7578f0f8fb612cd3afc7016ee9828ae6972b03ff746a396842c96d08081bbe1 -SIZE (gnome2/gnome-games-2.26.0.tar.bz2) = 21575301 diff --git a/games/gnome-games/files/patch-blackjack_src_game.cpp b/games/gnome-games/files/patch-blackjack_src_game.cpp deleted file mode 100644 index e99798100..000000000 --- a/games/gnome-games/files/patch-blackjack_src_game.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- blackjack/src/game.cpp.orig Wed Apr 13 15:44:11 2005 -+++ blackjack/src/game.cpp Wed Apr 13 15:45:24 2005 -@@ -24,6 +24,7 @@ - - #include <stdlib.h> - #include <string.h> -+#include <ctype.h> - #include <glib/gi18n.h> - #include <glib/gstdio.h> - #include <libxml/tree.h> diff --git a/games/gnome-games/files/patch-blackjack_src_player.cpp b/games/gnome-games/files/patch-blackjack_src_player.cpp deleted file mode 100644 index 0a2d1ac3b..000000000 --- a/games/gnome-games/files/patch-blackjack_src_player.cpp +++ /dev/null @@ -1,75 +0,0 @@ ---- blackjack/src/player.cpp.orig Tue Jul 6 12:56:50 2004 -+++ blackjack/src/player.cpp Tue Jul 6 12:59:29 2004 -@@ -262,8 +262,8 @@ - // Player can always stand. - - bestValue = value = getValueStand (*lplayer, upCard); -- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n", -- _("Stand"), value * 100); -+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n", -+ _("Stand"), (long double)(value * 100)); - bestOption = KEY_S; - bestOptionNumber = num_options; - -@@ -271,8 +271,8 @@ - if (bj_hand_can_be_hit ()) { - value = getValueHit (*lplayer, upCard); - -- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n", -- _("Hit"), value * 100); -+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n", -+ _("Hit"), (long double)(value * 100)); - if (value > bestValue) { - bestValue = value; - bestOption = KEY_H; -@@ -282,8 +282,8 @@ - // Check if player can double down. - if (bj_hand_can_be_doubled ()) { - value = getValueDoubleDown (*lplayer, upCard); -- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n", -- _("Double"), value * 100); -+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n", -+ _("Double"), (long double)(value * 100)); - if (value > bestValue) { - bestValue = value; - bestOption = KEY_D; -@@ -296,8 +296,8 @@ - - if (bj_hand_can_be_split ()) { - value = getValueSplit(lplayer->cards[0].value (), upCard); -- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n", -- _("Split"), value * 100); -+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n", -+ _("Split"), (long double)(value * 100)); - if (value > bestValue) { - bestValue = value; - bestOption = KEY_P; -@@ -308,8 +308,8 @@ - // Check if player can surrender. - if (bj_hand_can_be_surrendered ()) { - value = -0.5; -- mark_list[num_options++] = g_strdup_printf (" %s %8.2lf%%\n", -- _("Surrender"), value * 100); -+ mark_list[num_options++] = g_strdup_printf (" %s %8.2Lf%%\n", -+ _("Surrender"), (long double)(value * 100)); - if (value > bestValue) { - bestValue = value; - bestOption = KEY_R; -@@ -439,12 +439,12 @@ - reset (); - - mark_list[0] = g_strdup_printf ("<b>%s</b>\n", _("Dealer hand probabilities")); -- mark_list[1] = g_strdup_printf (" %s %5.2lf%%\n", _("Bust"), -- getProbabilityBust (lupCard) * 100.0 / notBlackjack); -+ mark_list[1] = g_strdup_printf (" %s %5.2Lf%%\n", _("Bust"), -+ (long double)(getProbabilityBust (lupCard) * 100.0 / notBlackjack)); - for (int count = 17; count <= 21; count++) { -- mark_list[count-15] = g_strdup_printf (" %2d %5.2lf%%\n", count, -- getProbabilityCount (count, lupCard) -- * 100.0 / notBlackjack); -+ mark_list[count-15] = g_strdup_printf (" %2d %5.2Lf%%\n", count, -+ (long double)(getProbabilityCount (count, lupCard) -+ * 100.0 / notBlackjack)); - } - - markup = g_strconcat ("<span size=\"small\" font_family=\"monospace\" foreground=\"#eaeac1\">", diff --git a/games/gnome-games/pkg-descr b/games/gnome-games/pkg-descr deleted file mode 100644 index 0323c9ff4..000000000 --- a/games/gnome-games/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The GNOME Desktop Environment's games application package includes -card games (including a solitaire package which knows 69 distinct solitaire -variations); knockoffs of Minesweeper, Tetris, mahjongg, and Nibbles; action -games; puzzle games; and even more card games. - -This package uses the GNOME 2 libraries. - -WWW: http://www.gnome.org/projects/gnome-games/ diff --git a/games/gnome-games/pkg-install b/games/gnome-games/pkg-install deleted file mode 100644 index 71ccbbf10..000000000 --- a/games/gnome-games/pkg-install +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -PATH=/bin:/usr/bin:/usr/sbin - -case $2 in -POST-INSTALL) - mkdir -p ${PKG_PREFIX}/share/games - SCORES="glines.Large.scores glines.Medium.scores glines.Small.scores gnibbles.1.0.scores gnibbles.1.1.scores gnibbles.2.0.scores gnibbles.2.1.scores gnibbles.3.0.scores gnibbles.3.1.scores gnibbles.4.0.scores gnibbles.4.1.scores gnobots2.classic_robots-safe.scores gnobots2.classic_robots-super-safe.scores gnobots2.classic_robots.scores gnobots2.nightmare-safe.scores gnobots2.nightmare-super-safe.scores gnobots2.nightmare.scores gnobots2.robots2-safe.scores gnobots2.robots2-super-safe.scores gnobots2.robots2.scores gnobots2.robots2_easy-safe.scores gnobots2.robots2_easy-super-safe.scores gnobots2.robots2_easy.scores gnobots2.robots_with_safe_teleport-safe.scores gnobots2.robots_with_safe_teleport-super-safe.scores gnobots2.robots_with_safe_teleport.scores gnometris.scores gnomine.Custom.scores gnomine.Large.scores gnomine.Medium.scores gnomine.Small.scores gnotravex.2x2.scores gnotravex.3x3.scores gnotravex.4x4.scores gnotravex.5x5.scores gnotravex.6x6.scores gnotski.1.scores gnotski.10.scores gnotski.11.scores gnotski.12.scores gnotski.13.scores gnotski.14.scores gnotski.15.scores gnotski.16.scores gnotski.17.scores gnotski.18.scores gnotski.19.scores gnotski.2.scores gnotski.20.scores gnotski.21.scores gnotski.22.scores gnotski.23.scores gnotski.24.scores gnotski.25.scores gnotski.26.scores gnotski.27.scores gnotski.28.scores gnotski.29.scores gnotski.3.scores gnotski.30.scores gnotski.31.scores gnotski.32.scores gnotski.33.scores gnotski.34.scores gnotski.35.scores gnotski.36.scores gnotski.37.scores gnotski.4.scores gnotski.5.scores gnotski.6.scores gnotski.7.scores gnotski.8.scores gnotski.9.scores gtali.Colors.scores gtali.Regular.scores mahjongg.bridges.scores mahjongg.cloud.scores mahjongg.confounding.scores mahjongg.difficult.scores mahjongg.dragon.scores mahjongg.easy.scores mahjongg.pyramid.scores mahjongg.tictactoe.scores mahjongg.ziggurat.scores same-gnome.Large.scores same-gnome.Medium.scores same-gnome.Small.scores" - for i in ${SCORES}; do - if [ ! -f ${PKG_PREFIX}/share/games/${i} ]; then - touch -f ${PKG_PREFIX}/share/games/${i} - chown games:games ${PKG_PREFIX}/share/games/${i} - chmod 0666 ${PKG_PREFIX}/share/games/${i} - fi - done - if [ -f ${PKG_PREFIX}/share/games/same-gnome.scores ]; then - mv -f ${PKG_PREFIX}/share/games/same-gnome.scores \ - ${PKG_PREFIX}/share/games/same-gnome.Small.scores - ln -sf ${PKG_PREFIX}/share/games/same-gnome.Small.scores \ - ${PKG_PREFIX}/share/games/same-gnome.scores - fi - ;; -esac diff --git a/games/gnome-games/pkg-plist b/games/gnome-games/pkg-plist deleted file mode 100644 index 41403a823..000000000 --- a/games/gnome-games/pkg-plist +++ /dev/null @@ -1,2427 +0,0 @@ -bin/blackjack -bin/glchess -bin/glines -bin/gnect -bin/gnibbles -bin/gnobots2 -bin/gnome-gnuchess -bin/gnome-sudoku -bin/gnometris -bin/gnomine -bin/gnotravex -bin/gnotski -bin/gtali -bin/iagno -bin/mahjongg -bin/same-gnome -bin/sol -@unexec [ -s %D/share/games/glines.Large.scores ] || rm -f %D/share/games/glines.Large.scores -@unexec [ -s %D/share/games/glines.Medium.scores ] || rm -f %D/share/games/glines.Medium.scores -@unexec [ -s %D/share/games/glines.Small.scores ] || rm -f %D/share/games/glines.Small.scores -@unexec [ -s %D/share/games/gnibbles.1.0.scores ] || rm -f %D/share/games/gnibbles.1.0.scores -@unexec [ -s %D/share/games/gnibbles.1.1.scores ] || rm -f %D/share/games/gnibbles.1.1.scores -@unexec [ -s %D/share/games/gnibbles.2.0.scores ] || rm -f %D/share/games/gnibbles.2.0.scores -@unexec [ -s %D/share/games/gnibbles.2.1.scores ] || rm -f %D/share/games/gnibbles.2.1.scores -@unexec [ -s %D/share/games/gnibbles.3.0.scores ] || rm -f %D/share/games/gnibbles.3.0.scores -@unexec [ -s %D/share/games/gnibbles.3.1.scores ] || rm -f %D/share/games/gnibbles.3.1.scores -@unexec [ -s %D/share/games/gnibbles.4.0.scores ] || rm -f %D/share/games/gnibbles.4.0.scores -@unexec [ -s %D/share/games/gnibbles.4.1.scores ] || rm -f %D/share/games/gnibbles.4.1.scores -@unexec [ -s %D/share/games/gnobots2.classic_robots-safe.scores ] || rm -f %D/share/games/gnobots2.classic_robots-safe.scores -@unexec [ -s %D/share/games/gnobots2.classic_robots-super-safe.scores ] || rm -f %D/share/games/gnobots2.classic_robots-super-safe.scores -@unexec [ -s %D/share/games/gnobots2.classic_robots.scores ] || rm -f %D/share/games/gnobots2.classic_robots.scores -@unexec [ -s %D/share/games/gnobots2.nightmare-safe.scores ] || rm -f %D/share/games/gnobots2.nightmare-safe.scores -@unexec [ -s %D/share/games/gnobots2.nightmare-super-safe.scores ] || rm -f %D/share/games/gnobots2.nightmare-super-safe.scores -@unexec [ -s %D/share/games/gnobots2.nightmare.scores ] || rm -f %D/share/games/gnobots2.nightmare.scores -@unexec [ -s %D/share/games/gnobots2.robots2-safe.scores ] || rm -f %D/share/games/gnobots2.robots2-safe.scores -@unexec [ -s %D/share/games/gnobots2.robots2-super-safe.scores ] || rm -f %D/share/games/gnobots2.robots2-super-safe.scores -@unexec [ -s %D/share/games/gnobots2.robots2.scores ] || rm -f %D/share/games/gnobots2.robots2.scores -@unexec [ -s %D/share/games/gnobots2.robots2_easy-safe.scores ] || rm -f %D/share/games/gnobots2.robots2_easy-safe.scores -@unexec [ -s %D/share/games/gnobots2.robots2_easy-super-safe.scores ] || rm -f %D/share/games/gnobots2.robots2_easy-super-safe.scores -@unexec [ -s %D/share/games/gnobots2.robots2_easy.scores ] || rm -f %D/share/games/gnobots2.robots2_easy.scores -@unexec [ -s %D/share/games/gnobots2.robots_with_safe_teleport-safe.scores ] || rm -f %D/share/games/gnobots2.robots_with_safe_teleport-safe.scores -@unexec [ -s %D/share/games/gnobots2.robots_with_safe_teleport-super-safe.scores ] || rm -f %D/share/games/gnobots2.robots_with_safe_teleport-super-safe.scores -@unexec [ -s %D/share/games/gnobots2.robots_with_safe_teleport.scores ] || rm -f %D/share/games/gnobots2.robots_with_safe_teleport.scores -@unexec [ -s %D/share/games/gnometris.scores ] || rm -f %D/share/games/gnometris.scores -@unexec [ -s %D/share/games/gnomine.Custom.scores ] || rm -f %D/share/games/gnomine.Custom.scores -@unexec [ -s %D/share/games/gnomine.Large.scores ] || rm -f %D/share/games/gnomine.Large.scores -@unexec [ -s %D/share/games/gnomine.Medium.scores ] || rm -f %D/share/games/gnomine.Medium.scores -@unexec [ -s %D/share/games/gnomine.Small.scores ] || rm -f %D/share/games/gnomine.Small.scores -@unexec [ -s %D/share/games/gnotravex.2x2.scores ] || rm -f %D/share/games/gnotravex.2x2.scores -@unexec [ -s %D/share/games/gnotravex.3x3.scores ] || rm -f %D/share/games/gnotravex.3x3.scores -@unexec [ -s %D/share/games/gnotravex.4x4.scores ] || rm -f %D/share/games/gnotravex.4x4.scores -@unexec [ -s %D/share/games/gnotravex.5x5.scores ] || rm -f %D/share/games/gnotravex.5x5.scores -@unexec [ -s %D/share/games/gnotravex.6x6.scores ] || rm -f %D/share/games/gnotravex.6x6.scores -@unexec [ -s %D/share/games/gnotski.1.scores ] || rm -f %D/share/games/gnotski.1.scores -@unexec [ -s %D/share/games/gnotski.10.scores ] || rm -f %D/share/games/gnotski.10.scores -@unexec [ -s %D/share/games/gnotski.11.scores ] || rm -f %D/share/games/gnotski.11.scores -@unexec [ -s %D/share/games/gnotski.12.scores ] || rm -f %D/share/games/gnotski.12.scores -@unexec [ -s %D/share/games/gnotski.13.scores ] || rm -f %D/share/games/gnotski.13.scores -@unexec [ -s %D/share/games/gnotski.14.scores ] || rm -f %D/share/games/gnotski.14.scores -@unexec [ -s %D/share/games/gnotski.15.scores ] || rm -f %D/share/games/gnotski.15.scores -@unexec [ -s %D/share/games/gnotski.16.scores ] || rm -f %D/share/games/gnotski.16.scores -@unexec [ -s %D/share/games/gnotski.17.scores ] || rm -f %D/share/games/gnotski.17.scores -@unexec [ -s %D/share/games/gnotski.18.scores ] || rm -f %D/share/games/gnotski.18.scores -@unexec [ -s %D/share/games/gnotski.19.scores ] || rm -f %D/share/games/gnotski.19.scores -@unexec [ -s %D/share/games/gnotski.2.scores ] || rm -f %D/share/games/gnotski.2.scores -@unexec [ -s %D/share/games/gnotski.20.scores ] || rm -f %D/share/games/gnotski.20.scores -@unexec [ -s %D/share/games/gnotski.21.scores ] || rm -f %D/share/games/gnotski.21.scores -@unexec [ -s %D/share/games/gnotski.22.scores ] || rm -f %D/share/games/gnotski.22.scores -@unexec [ -s %D/share/games/gnotski.23.scores ] || rm -f %D/share/games/gnotski.23.scores -@unexec [ -s %D/share/games/gnotski.24.scores ] || rm -f %D/share/games/gnotski.24.scores -@unexec [ -s %D/share/games/gnotski.25.scores ] || rm -f %D/share/games/gnotski.25.scores -@unexec [ -s %D/share/games/gnotski.26.scores ] || rm -f %D/share/games/gnotski.26.scores -@unexec [ -s %D/share/games/gnotski.27.scores ] || rm -f %D/share/games/gnotski.27.scores -@unexec [ -s %D/share/games/gnotski.28.scores ] || rm -f %D/share/games/gnotski.28.scores -@unexec [ -s %D/share/games/gnotski.29.scores ] || rm -f %D/share/games/gnotski.29.scores -@unexec [ -s %D/share/games/gnotski.3.scores ] || rm -f %D/share/games/gnotski.3.scores -@unexec [ -s %D/share/games/gnotski.30.scores ] || rm -f %D/share/games/gnotski.30.scores -@unexec [ -s %D/share/games/gnotski.31.scores ] || rm -f %D/share/games/gnotski.31.scores -@unexec [ -s %D/share/games/gnotski.32.scores ] || rm -f %D/share/games/gnotski.32.scores -@unexec [ -s %D/share/games/gnotski.33.scores ] || rm -f %D/share/games/gnotski.33.scores -@unexec [ -s %D/share/games/gnotski.34.scores ] || rm -f %D/share/games/gnotski.34.scores -@unexec [ -s %D/share/games/gnotski.35.scores ] || rm -f %D/share/games/gnotski.35.scores -@unexec [ -s %D/share/games/gnotski.36.scores ] || rm -f %D/share/games/gnotski.36.scores -@unexec [ -s %D/share/games/gnotski.37.scores ] || rm -f %D/share/games/gnotski.37.scores -@unexec [ -s %D/share/games/gnotski.4.scores ] || rm -f %D/share/games/gnotski.4.scores -@unexec [ -s %D/share/games/gnotski.5.scores ] || rm -f %D/share/games/gnotski.5.scores -@unexec [ -s %D/share/games/gnotski.6.scores ] || rm -f %D/share/games/gnotski.6.scores -@unexec [ -s %D/share/games/gnotski.7.scores ] || rm -f %D/share/games/gnotski.7.scores -@unexec [ -s %D/share/games/gnotski.8.scores ] || rm -f %D/share/games/gnotski.8.scores -@unexec [ -s %D/share/games/gnotski.9.scores ] || rm -f %D/share/games/gnotski.9.scores -@unexec [ -s %D/share/games/gtali.Colors.scores ] || rm -f %D/share/games/gtali.Colors.scores -@unexec [ -s %D/share/games/gtali.Regular.scores ] || rm -f %D/share/games/gtali.Regular.scores -@unexec [ -s %D/share/games/mahjongg.bridges.scores ] || rm -f %D/share/games/mahjongg.bridges.scores -@unexec [ -s %D/share/games/mahjongg.cloud.scores ] || rm -f %D/share/games/mahjongg.cloud.scores -@unexec [ -s %D/share/games/mahjongg.confounding.scores ] || rm -f %D/share/games/mahjongg.confounding.scores -@unexec [ -s %D/share/games/mahjongg.difficult.scores ] || rm -f %D/share/games/mahjongg.difficult.scores -@unexec [ -s %D/share/games/mahjongg.dragon.scores ] || rm -f %D/share/games/mahjongg.dragon.scores -@unexec [ -s %D/share/games/mahjongg.easy.scores ] || rm -f %D/share/games/mahjongg.easy.scores -@unexec [ -s %D/share/games/mahjongg.pyramid.scores ] || rm -f %D/share/games/mahjongg.pyramid.scores -@unexec [ -s %D/share/games/mahjongg.tictactoe.scores ] || rm -f %D/share/games/mahjongg.tictactoe.scores -@unexec [ -s %D/share/games/mahjongg.ziggurat.scores ] || rm -f %D/share/games/mahjongg.ziggurat.scores -@unexec [ -s %D/share/games/same-gnome.Large.scores ] || rm -f %D/share/games/same-gnome.Large.scores -@unexec [ -s %D/share/games/same-gnome.Medium.scores ] || rm -f %D/share/games/same-gnome.Medium.scores -@unexec [ -s %D/share/games/same-gnome.Small.scores ] || rm -f %D/share/games/same-gnome.Small.scores -@unexec [ -L %D/share/games/same-gnome.scores ] || rm -f %D/share/games/same-gnome.scores -lib/gnome-games/gnome-games-render-cards -%%PYTHON_SITELIBDIR%%/glchess/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/ai.py -%%PYTHON_SITELIBDIR%%/glchess/ai.pyc -%%PYTHON_SITELIBDIR%%/glchess/ai.pyo -%%PYTHON_SITELIBDIR%%/glchess/cecp.py -%%PYTHON_SITELIBDIR%%/glchess/cecp.pyc -%%PYTHON_SITELIBDIR%%/glchess/cecp.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/chess/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/bitboard.py -%%PYTHON_SITELIBDIR%%/glchess/chess/bitboard.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/bitboard.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/board.py -%%PYTHON_SITELIBDIR%%/glchess/chess/board.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/board.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/client.py -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/client.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/client.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/server.py -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/server.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/server.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/style12.py -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/style12.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/style12.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/telnet.py -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/telnet.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/fics/telnet.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/lan.py -%%PYTHON_SITELIBDIR%%/glchess/chess/lan.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/lan.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/pgn.py -%%PYTHON_SITELIBDIR%%/glchess/chess/pgn.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/pgn.pyo -%%PYTHON_SITELIBDIR%%/glchess/chess/san.py -%%PYTHON_SITELIBDIR%%/glchess/chess/san.pyc -%%PYTHON_SITELIBDIR%%/glchess/chess/san.pyo -%%PYTHON_SITELIBDIR%%/glchess/config.py -%%PYTHON_SITELIBDIR%%/glchess/config.pyc -%%PYTHON_SITELIBDIR%%/glchess/config.pyo -%%PYTHON_SITELIBDIR%%/glchess/defaults.py -%%PYTHON_SITELIBDIR%%/glchess/defaults.pyc -%%PYTHON_SITELIBDIR%%/glchess/defaults.pyo -%%PYTHON_SITELIBDIR%%/glchess/display.py -%%PYTHON_SITELIBDIR%%/glchess/display.pyc -%%PYTHON_SITELIBDIR%%/glchess/display.pyo -%%PYTHON_SITELIBDIR%%/glchess/game.py -%%PYTHON_SITELIBDIR%%/glchess/game.pyc -%%PYTHON_SITELIBDIR%%/glchess/game.pyo -%%PYTHON_SITELIBDIR%%/glchess/ggz/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/ggz/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/ggz/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/ggz/chess.py -%%PYTHON_SITELIBDIR%%/glchess/ggz/chess.pyc -%%PYTHON_SITELIBDIR%%/glchess/ggz/chess.pyo -%%PYTHON_SITELIBDIR%%/glchess/ggz/client.py -%%PYTHON_SITELIBDIR%%/glchess/ggz/client.pyc -%%PYTHON_SITELIBDIR%%/glchess/ggz/client.pyo -%%PYTHON_SITELIBDIR%%/glchess/ggz/protocol.py -%%PYTHON_SITELIBDIR%%/glchess/ggz/protocol.pyc -%%PYTHON_SITELIBDIR%%/glchess/ggz/protocol.pyo -%%PYTHON_SITELIBDIR%%/glchess/glchess.py -%%PYTHON_SITELIBDIR%%/glchess/glchess.pyc -%%PYTHON_SITELIBDIR%%/glchess/glchess.pyo -%%PYTHON_SITELIBDIR%%/glchess/gtkui/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/gtkui/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/gtkui/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/gtkui/chessview.py -%%PYTHON_SITELIBDIR%%/glchess/gtkui/chessview.pyc -%%PYTHON_SITELIBDIR%%/glchess/gtkui/chessview.pyo -%%PYTHON_SITELIBDIR%%/glchess/gtkui/dialogs.py -%%PYTHON_SITELIBDIR%%/glchess/gtkui/dialogs.pyc -%%PYTHON_SITELIBDIR%%/glchess/gtkui/dialogs.pyo -%%PYTHON_SITELIBDIR%%/glchess/gtkui/gtkui.py -%%PYTHON_SITELIBDIR%%/glchess/gtkui/gtkui.pyc -%%PYTHON_SITELIBDIR%%/glchess/gtkui/gtkui.pyo -%%PYTHON_SITELIBDIR%%/glchess/gtkui/log.py -%%PYTHON_SITELIBDIR%%/glchess/gtkui/log.pyc -%%PYTHON_SITELIBDIR%%/glchess/gtkui/log.pyo -%%PYTHON_SITELIBDIR%%/glchess/gtkui/network.py -%%PYTHON_SITELIBDIR%%/glchess/gtkui/network.pyc -%%PYTHON_SITELIBDIR%%/glchess/gtkui/network.pyo -%%PYTHON_SITELIBDIR%%/glchess/history.py -%%PYTHON_SITELIBDIR%%/glchess/history.pyc -%%PYTHON_SITELIBDIR%%/glchess/history.pyo -%%PYTHON_SITELIBDIR%%/glchess/main.py -%%PYTHON_SITELIBDIR%%/glchess/main.pyc -%%PYTHON_SITELIBDIR%%/glchess/main.pyo -%%PYTHON_SITELIBDIR%%/glchess/network.py -%%PYTHON_SITELIBDIR%%/glchess/network.pyc -%%PYTHON_SITELIBDIR%%/glchess/network.pyo -%%PYTHON_SITELIBDIR%%/glchess/player.py -%%PYTHON_SITELIBDIR%%/glchess/player.pyc -%%PYTHON_SITELIBDIR%%/glchess/player.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/scene/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/cairo/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/scene/cairo/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/cairo/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/cairo/pieces.py -%%PYTHON_SITELIBDIR%%/glchess/scene/cairo/pieces.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/cairo/pieces.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/human.py -%%PYTHON_SITELIBDIR%%/glchess/scene/human.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/human.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/builtin_models.py -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/builtin_models.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/builtin_models.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/new_models.py -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/new_models.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/new_models.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/opengl.py -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/opengl.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/opengl.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/png.py -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/png.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/png.pyo -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/texture.py -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/texture.pyc -%%PYTHON_SITELIBDIR%%/glchess/scene/opengl/texture.pyo -%%PYTHON_SITELIBDIR%%/glchess/uci.py -%%PYTHON_SITELIBDIR%%/glchess/uci.pyc -%%PYTHON_SITELIBDIR%%/glchess/uci.pyo -%%PYTHON_SITELIBDIR%%/glchess/ui/__init__.py -%%PYTHON_SITELIBDIR%%/glchess/ui/__init__.pyc -%%PYTHON_SITELIBDIR%%/glchess/ui/__init__.pyo -%%PYTHON_SITELIBDIR%%/glchess/ui/ui.py -%%PYTHON_SITELIBDIR%%/glchess/ui/ui.pyc -%%PYTHON_SITELIBDIR%%/glchess/ui/ui.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/__init__.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/__init__.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/__init__.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/colors.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/colors.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/colors.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/defaults.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/defaults.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/defaults.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/dialog_swallower.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/dialog_swallower.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/dialog_swallower.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/game_selector.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/game_selector.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/game_selector.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gnome_sudoku.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gnome_sudoku.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gnome_sudoku.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gsudoku.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gsudoku.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gsudoku.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/Undo.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/Undo.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/Undo.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/__init__.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/__init__.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/__init__.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/dialog_extras.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/dialog_extras.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/dialog_extras.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/gconf_wrapper.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/gconf_wrapper.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/gconf_wrapper.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/image_extras.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/image_extras.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies/image_extras.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/main.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/main.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/main.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/pausable.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/pausable.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/pausable.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/printing.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/printing.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/printing.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/saver.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/saver.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/saver.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/simple_debug.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/simple_debug.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/simple_debug.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_generator_gui.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_generator_gui.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_generator_gui.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_maker.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_maker.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_maker.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_thumber.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_thumber.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/sudoku_thumber.pyo -%%PYTHON_SITELIBDIR%%/gnome_sudoku/timer.py -%%PYTHON_SITELIBDIR%%/gnome_sudoku/timer.pyc -%%PYTHON_SITELIBDIR%%/gnome_sudoku/timer.pyo -share/applications/blackjack.desktop -share/applications/freecell.desktop -share/applications/glchess.desktop -share/applications/glines.desktop -share/applications/gnect.desktop -share/applications/gnibbles.desktop -share/applications/gnobots2.desktop -share/applications/gnome-sudoku.desktop -share/applications/gnometris.desktop -share/applications/gnomine.desktop -share/applications/gnotravex.desktop -share/applications/gnotski.desktop -share/applications/gtali.desktop -share/applications/iagno.desktop -share/applications/mahjongg.desktop -share/applications/same-gnome.desktop -share/applications/sol.desktop -share/ggz/gnome-games/about_bg.png -share/ggz/gnome-games/ggz_gtk_admin.svg -share/ggz/gnome-games/ggz_gtk_bot.svg -share/ggz/gnome-games/ggz_gtk_guest.svg -share/ggz/gnome-games/ggz_gtk_lag0.svg -share/ggz/gnome-games/ggz_gtk_lag1.svg -share/ggz/gnome-games/ggz_gtk_lag2.svg -share/ggz/gnome-games/ggz_gtk_lag3.svg -share/ggz/gnome-games/ggz_gtk_lag4.svg -share/ggz/gnome-games/ggz_gtk_lag5.svg -share/ggz/gnome-games/ggz_gtk_registered.svg -@unexec %%LOCALBASE%%/bin/ggz-config -D --remove --modfile=%D/share/ggz/gnome-games/gnect-client.dsc -share/ggz/gnome-games/gnect-client.dsc -@exec %%LOCALBASE%%/bin/ggz-config -D --install --modfile=%D/share/ggz/gnome-games/gnect-client.dsc --force -@unexec %%LOCALBASE%%/bin/ggz-config -D --remove --modfile=%D/share/ggz/gnome-games/gnibbles-client.dsc -share/ggz/gnome-games/gnibbles-client.dsc -@exec %%LOCALBASE%%/bin/ggz-config -D --install --modfile=%D/share/ggz/gnome-games/gnibbles-client.dsc --force -@unexec %%LOCALBASE%%/bin/ggz-config -D --remove --modfile=%D/share/ggz/gnome-games/iagno-client.dsc -share/ggz/gnome-games/iagno-client.dsc -@exec %%LOCALBASE%%/bin/ggz-config -D --install --modfile=%D/share/ggz/gnome-games/iagno-client.dsc --force -share/glchess/ai.xml -share/glchess/chess_view.glade -share/glchess/glchess.glade -share/glchess/load_game.glade -share/glchess/log.glade -share/glchess/network_game.glade -share/glchess/new_game.glade -share/glchess/preferences.glade -share/glchess/save_game.glade -share/gnome-games-common/cards/gnomangelo_bitmap.svg -share/gnome-games-common/theme-install.ini -%%DATADIR%%/aisleriot/games/accordion.scm -%%DATADIR%%/aisleriot/games/agnes.scm -%%DATADIR%%/aisleriot/games/athena.scm -%%DATADIR%%/aisleriot/games/auld_lang_syne.scm -%%DATADIR%%/aisleriot/games/aunt_mary.scm -%%DATADIR%%/aisleriot/games/backbone.scm -%%DATADIR%%/aisleriot/games/bakers_dozen.scm -%%DATADIR%%/aisleriot/games/bakers_game.scm -%%DATADIR%%/aisleriot/games/beleaguered_castle.scm -%%DATADIR%%/aisleriot/games/block_ten.scm -%%DATADIR%%/aisleriot/games/bristol.scm -%%DATADIR%%/aisleriot/games/camelot.scm -%%DATADIR%%/aisleriot/games/canfield.scm -%%DATADIR%%/aisleriot/games/carpet.scm -%%DATADIR%%/aisleriot/games/chessboard.scm -%%DATADIR%%/aisleriot/games/clock.scm -%%DATADIR%%/aisleriot/games/cover.scm -%%DATADIR%%/aisleriot/games/cruel.scm -%%DATADIR%%/aisleriot/games/diamond_mine.scm -%%DATADIR%%/aisleriot/games/doublets.scm -%%DATADIR%%/aisleriot/games/eagle_wing.scm -%%DATADIR%%/aisleriot/games/easthaven.scm -%%DATADIR%%/aisleriot/games/eight_off.scm -%%DATADIR%%/aisleriot/games/elevator.scm -%%DATADIR%%/aisleriot/games/escalator.scm -%%DATADIR%%/aisleriot/games/first_law.scm -%%DATADIR%%/aisleriot/games/fortress.scm -%%DATADIR%%/aisleriot/games/fortunes.scm -%%DATADIR%%/aisleriot/games/forty_thieves.scm -%%DATADIR%%/aisleriot/games/fourteen.scm -%%DATADIR%%/aisleriot/games/freecell.scm -%%DATADIR%%/aisleriot/games/gaps.scm -%%DATADIR%%/aisleriot/games/gay_gordons.scm -%%DATADIR%%/aisleriot/games/glenwood.scm -%%DATADIR%%/aisleriot/games/gold_mine.scm -%%DATADIR%%/aisleriot/games/golf.scm -%%DATADIR%%/aisleriot/games/gypsy.scm -%%DATADIR%%/aisleriot/games/helsinki.scm -%%DATADIR%%/aisleriot/games/hopscotch.scm -%%DATADIR%%/aisleriot/games/isabel.scm -%%DATADIR%%/aisleriot/games/jamestown.scm -%%DATADIR%%/aisleriot/games/jumbo.scm -%%DATADIR%%/aisleriot/games/kansas.scm -%%DATADIR%%/aisleriot/games/king_albert.scm -%%DATADIR%%/aisleriot/games/kings_audience.scm -%%DATADIR%%/aisleriot/games/klondike.scm -%%DATADIR%%/aisleriot/games/labyrinth.scm -%%DATADIR%%/aisleriot/games/lady_jane.scm -%%DATADIR%%/aisleriot/games/maze.scm -%%DATADIR%%/aisleriot/games/monte_carlo.scm -%%DATADIR%%/aisleriot/games/napoleons_tomb.scm -%%DATADIR%%/aisleriot/games/neighbor.scm -%%DATADIR%%/aisleriot/games/odessa.scm -%%DATADIR%%/aisleriot/games/osmosis.scm -%%DATADIR%%/aisleriot/games/peek.scm -%%DATADIR%%/aisleriot/games/pileon.scm -%%DATADIR%%/aisleriot/games/plait.scm -%%DATADIR%%/aisleriot/games/poker.scm -%%DATADIR%%/aisleriot/games/quatorze.scm -%%DATADIR%%/aisleriot/games/royal_east.scm -%%DATADIR%%/aisleriot/games/saratoga.scm -%%DATADIR%%/aisleriot/games/scorpion.scm -%%DATADIR%%/aisleriot/games/scuffle.scm -%%DATADIR%%/aisleriot/games/seahaven.scm -%%DATADIR%%/aisleriot/games/sir_tommy.scm -%%DATADIR%%/aisleriot/games/sol.scm -%%DATADIR%%/aisleriot/games/spider.scm -%%DATADIR%%/aisleriot/games/spider_three_decks.scm -%%DATADIR%%/aisleriot/games/spiderette.scm -%%DATADIR%%/aisleriot/games/straight_up.scm -%%DATADIR%%/aisleriot/games/streets_and_alleys.scm -%%DATADIR%%/aisleriot/games/ten_across.scm -%%DATADIR%%/aisleriot/games/terrace.scm -%%DATADIR%%/aisleriot/games/thieves.scm -%%DATADIR%%/aisleriot/games/thirteen.scm -%%DATADIR%%/aisleriot/games/thumb_and_pouch.scm -%%DATADIR%%/aisleriot/games/treize.scm -%%DATADIR%%/aisleriot/games/triple_peaks.scm -%%DATADIR%%/aisleriot/games/union_square.scm -%%DATADIR%%/aisleriot/games/valentine.scm -%%DATADIR%%/aisleriot/games/westhaven.scm -%%DATADIR%%/aisleriot/games/whitehead.scm -%%DATADIR%%/aisleriot/games/will_o_the_wisp.scm -%%DATADIR%%/aisleriot/games/yield.scm -%%DATADIR%%/aisleriot/games/yukon.scm -%%DATADIR%%/aisleriot/games/zebra.scm -%%DATADIR%%/blackjack/games/Ameristar.rules -%%DATADIR%%/blackjack/games/Atlantic_City.rules -%%DATADIR%%/blackjack/games/Vegas_Downtown.rules -%%DATADIR%%/blackjack/games/Vegas_Strip.rules -%%DATADIR%%/blackjack/pixmaps/baize.png -%%DATADIR%%/blackjack/pixmaps/blackjack-splash.png -%%DATADIR%%/blackjack/pixmaps/chip-1.svg -%%DATADIR%%/blackjack/pixmaps/chip-100.svg -%%DATADIR%%/blackjack/pixmaps/chip-25.svg -%%DATADIR%%/blackjack/pixmaps/chip-5.svg -%%DATADIR%%/blackjack/pixmaps/white-outline.svg -%%DATADIR%%/glines/pixmaps/balls.svg -%%DATADIR%%/glines/pixmaps/shapes.svg -%%DATADIR%%/gnect/pixmaps/bg_grotty.jpg -%%DATADIR%%/gnect/pixmaps/bg_nightfall.jpg -%%DATADIR%%/gnect/pixmaps/bg_toplight.png -%%DATADIR%%/gnect/pixmaps/tileset_50x50_catseyes.png -%%DATADIR%%/gnect/pixmaps/tileset_50x50_glassy.png -%%DATADIR%%/gnect/pixmaps/tileset_50x50_hcinverse.svg -%%DATADIR%%/gnect/pixmaps/tileset_50x50_hcontrast.svg -%%DATADIR%%/gnect/pixmaps/tileset_50x50_square.png -%%DATADIR%%/gnect/pixmaps/tileset_50x50_sunspot.svg -%%DATADIR%%/gnect/white_ob.cn4.gz -%%DATADIR%%/gnibbles/games/level001.gnl -%%DATADIR%%/gnibbles/games/level002.gnl -%%DATADIR%%/gnibbles/games/level003.gnl -%%DATADIR%%/gnibbles/games/level004.gnl -%%DATADIR%%/gnibbles/games/level005.gnl -%%DATADIR%%/gnibbles/games/level006.gnl -%%DATADIR%%/gnibbles/games/level007.gnl -%%DATADIR%%/gnibbles/games/level008.gnl -%%DATADIR%%/gnibbles/games/level009.gnl -%%DATADIR%%/gnibbles/games/level010.gnl -%%DATADIR%%/gnibbles/games/level011.gnl -%%DATADIR%%/gnibbles/games/level012.gnl -%%DATADIR%%/gnibbles/games/level013.gnl -%%DATADIR%%/gnibbles/games/level014.gnl -%%DATADIR%%/gnibbles/games/level015.gnl -%%DATADIR%%/gnibbles/games/level016.gnl -%%DATADIR%%/gnibbles/games/level017.gnl -%%DATADIR%%/gnibbles/games/level018.gnl -%%DATADIR%%/gnibbles/games/level019.gnl -%%DATADIR%%/gnibbles/games/level020.gnl -%%DATADIR%%/gnibbles/games/level021.gnl -%%DATADIR%%/gnibbles/games/level022.gnl -%%DATADIR%%/gnibbles/games/level023.gnl -%%DATADIR%%/gnibbles/games/level024.gnl -%%DATADIR%%/gnibbles/games/level025.gnl -%%DATADIR%%/gnibbles/games/level026.gnl -%%DATADIR%%/gnibbles/pixmaps/blank.svg -%%DATADIR%%/gnibbles/pixmaps/bonus1.svg -%%DATADIR%%/gnibbles/pixmaps/bonus2.svg -%%DATADIR%%/gnibbles/pixmaps/bonus3.svg -%%DATADIR%%/gnibbles/pixmaps/bonus4.svg -%%DATADIR%%/gnibbles/pixmaps/bonus5.svg -%%DATADIR%%/gnibbles/pixmaps/diamond.svg -%%DATADIR%%/gnibbles/pixmaps/gnibbles-logo.svg -%%DATADIR%%/gnibbles/pixmaps/life.svg -%%DATADIR%%/gnibbles/pixmaps/questionmark.svg -%%DATADIR%%/gnibbles/pixmaps/snake-blue.svg -%%DATADIR%%/gnibbles/pixmaps/snake-cyan.svg -%%DATADIR%%/gnibbles/pixmaps/snake-green.svg -%%DATADIR%%/gnibbles/pixmaps/snake-grey.svg -%%DATADIR%%/gnibbles/pixmaps/snake-magenta.svg -%%DATADIR%%/gnibbles/pixmaps/snake-red.svg -%%DATADIR%%/gnibbles/pixmaps/snake-yellow.svg -%%DATADIR%%/gnibbles/pixmaps/wall-corner-bottom-left.svg -%%DATADIR%%/gnibbles/pixmaps/wall-corner-bottom-right.svg -%%DATADIR%%/gnibbles/pixmaps/wall-corner-top-left.svg -%%DATADIR%%/gnibbles/pixmaps/wall-corner-top-right.svg -%%DATADIR%%/gnibbles/pixmaps/wall-cross.svg -%%DATADIR%%/gnibbles/pixmaps/wall-empty.svg -%%DATADIR%%/gnibbles/pixmaps/wall-straight-side.svg -%%DATADIR%%/gnibbles/pixmaps/wall-straight-up.svg -%%DATADIR%%/gnibbles/pixmaps/wall-tee-down.svg -%%DATADIR%%/gnibbles/pixmaps/wall-tee-left.svg -%%DATADIR%%/gnibbles/pixmaps/wall-tee-right.svg -%%DATADIR%%/gnibbles/pixmaps/wall-tee-up.svg -%%DATADIR%%/gnobots2/games/classic_robots.cfg -%%DATADIR%%/gnobots2/games/nightmare.cfg -%%DATADIR%%/gnobots2/games/robots2.cfg -%%DATADIR%%/gnobots2/games/robots2_easy.cfg -%%DATADIR%%/gnobots2/games/robots_with_safe_teleport.cfg -%%DATADIR%%/gnobots2/pixmaps/aieee.png -%%DATADIR%%/gnobots2/pixmaps/boo.svg -%%DATADIR%%/gnobots2/pixmaps/gnomes.png -%%DATADIR%%/gnobots2/pixmaps/robots.svg -%%DATADIR%%/gnobots2/pixmaps/splat.png -%%DATADIR%%/gnobots2/pixmaps/ufo.svg -%%DATADIR%%/gnobots2/pixmaps/yahoo.png -%%DATADIR%%/gnometris/pixmaps/7blocks-gw.png -%%DATADIR%%/gnometris/pixmaps/7blocks-tig.png -%%DATADIR%%/gnometris/pixmaps/gnometris.svg -%%DATADIR%%/gnomine/pixmaps/bang.svg -%%DATADIR%%/gnomine/pixmaps/face-cool.svg -%%DATADIR%%/gnomine/pixmaps/face-sad.svg -%%DATADIR%%/gnomine/pixmaps/face-smile.svg -%%DATADIR%%/gnomine/pixmaps/face-win.svg -%%DATADIR%%/gnomine/pixmaps/face-worried.svg -%%DATADIR%%/gnomine/pixmaps/flag-question.svg -%%DATADIR%%/gnomine/pixmaps/flag.svg -%%DATADIR%%/gnomine/pixmaps/mine.svg -%%DATADIR%%/gnomine/pixmaps/warning.svg -%%DATADIR%%/gnotski/pixmaps/gnotski.svg -%%DATADIR%%/gtali/pixmaps/gnome-dice-1.svg -%%DATADIR%%/gtali/pixmaps/gnome-dice-2.svg -%%DATADIR%%/gtali/pixmaps/gnome-dice-3.svg -%%DATADIR%%/gtali/pixmaps/gnome-dice-4.svg -%%DATADIR%%/gtali/pixmaps/gnome-dice-5.svg -%%DATADIR%%/gtali/pixmaps/gnome-dice-6.svg -%%DATADIR%%/gtali/pixmaps/gnome-dice-none.svg -%%DATADIR%%/gtali/pixmaps/kismet-none.svg -%%DATADIR%%/gtali/pixmaps/kismet1.svg -%%DATADIR%%/gtali/pixmaps/kismet2.svg -%%DATADIR%%/gtali/pixmaps/kismet3.svg -%%DATADIR%%/gtali/pixmaps/kismet4.svg -%%DATADIR%%/gtali/pixmaps/kismet5.svg -%%DATADIR%%/gtali/pixmaps/kismet6.svg -%%DATADIR%%/iagno/pixmaps/classic.png -%%DATADIR%%/iagno/pixmaps/woodtrim.png -%%DATADIR%%/icons/hicolor/24x24/actions/teleport-random.png -%%DATADIR%%/icons/hicolor/24x24/actions/teleport.png -%%DATADIR%%/icons/hicolor/scalable/actions/cards-deal.svg -%%DATADIR%%/mahjongg/games/mahjongg.map -%%DATADIR%%/mahjongg/pixmaps/postmodern.svg -%%DATADIR%%/mahjongg/pixmaps/smooth.png -%%DATADIR%%/pixmaps/baize.png -%%DATADIR%%/pixmaps/slot.svg -%%DATADIR%%/same-gnome/themes/2.10/planets.png -%%DATADIR%%/same-gnome/themes/2.10/stones.png -%%DATADIR%%/sounds/appear.ogg -%%DATADIR%%/sounds/bad.ogg -%%DATADIR%%/sounds/bonus.ogg -%%DATADIR%%/sounds/click.ogg -%%DATADIR%%/sounds/crash.ogg -%%DATADIR%%/sounds/die.ogg -%%DATADIR%%/sounds/flip-piece.ogg -%%DATADIR%%/sounds/gameover.ogg -%%DATADIR%%/sounds/gnometris.ogg -%%DATADIR%%/sounds/gobble.ogg -%%DATADIR%%/sounds/land.ogg -%%DATADIR%%/sounds/laughter.ogg -%%DATADIR%%/sounds/life.ogg -%%DATADIR%%/sounds/lines1.ogg -%%DATADIR%%/sounds/lines2.ogg -%%DATADIR%%/sounds/lines3.ogg -%%DATADIR%%/sounds/pop.ogg -%%DATADIR%%/sounds/reverse.ogg -%%DATADIR%%/sounds/slide.ogg -%%DATADIR%%/sounds/splat.ogg -%%DATADIR%%/sounds/teleport.ogg -%%DATADIR%%/sounds/turn.ogg -%%DATADIR%%/sounds/victory.ogg -%%DATADIR%%/sounds/yahoo.ogg -share/gnome-sudoku/print_games.glade -share/gnome-sudoku/puzzle_generator.glade -share/gnome-sudoku/puzzles/easy -share/gnome-sudoku/puzzles/hard -share/gnome-sudoku/puzzles/medium -share/gnome-sudoku/puzzles/very_hard -share/gnome-sudoku/select_game.glade -share/gnome-sudoku/tracker.glade -share/gnome/help/aisleriot/C/accordion.xml -share/gnome/help/aisleriot/C/agnes.xml -share/gnome/help/aisleriot/C/aisleriot.xml -share/gnome/help/aisleriot/C/athena.xml -share/gnome/help/aisleriot/C/auld_lang_syne.xml -share/gnome/help/aisleriot/C/aunt_mary.xml -share/gnome/help/aisleriot/C/backbone.xml -share/gnome/help/aisleriot/C/bakers_dozen.xml -share/gnome/help/aisleriot/C/bakers_game.xml -share/gnome/help/aisleriot/C/beleaguered_castle.xml -share/gnome/help/aisleriot/C/block_ten.xml -share/gnome/help/aisleriot/C/bristol.xml -share/gnome/help/aisleriot/C/camelot.xml -share/gnome/help/aisleriot/C/canfield.xml -share/gnome/help/aisleriot/C/carpet.xml -share/gnome/help/aisleriot/C/chessboard.xml -share/gnome/help/aisleriot/C/clock.xml -share/gnome/help/aisleriot/C/cover.xml -share/gnome/help/aisleriot/C/cruel.xml -share/gnome/help/aisleriot/C/definitions.xml -share/gnome/help/aisleriot/C/diamond_mine.xml -share/gnome/help/aisleriot/C/doublets.xml -share/gnome/help/aisleriot/C/eagle-wing.xml -share/gnome/help/aisleriot/C/easthaven.xml -share/gnome/help/aisleriot/C/eight_off.xml -share/gnome/help/aisleriot/C/elevator.xml -share/gnome/help/aisleriot/C/escalator.xml -share/gnome/help/aisleriot/C/figures/camelot-goal.png -share/gnome/help/aisleriot/C/figures/clock-rules.png -share/gnome/help/aisleriot/C/first_law.xml -share/gnome/help/aisleriot/C/fortress.xml -share/gnome/help/aisleriot/C/fortunes.xml -share/gnome/help/aisleriot/C/forty_thieves.xml -share/gnome/help/aisleriot/C/fourteen.xml -share/gnome/help/aisleriot/C/freecell.xml -share/gnome/help/aisleriot/C/gaps.xml -share/gnome/help/aisleriot/C/gay_gordons.xml -share/gnome/help/aisleriot/C/glenwood.xml -share/gnome/help/aisleriot/C/gold_mine.xml -share/gnome/help/aisleriot/C/golf.xml -share/gnome/help/aisleriot/C/gypsy.xml -share/gnome/help/aisleriot/C/helsinki.xml -share/gnome/help/aisleriot/C/hopscotch.xml -share/gnome/help/aisleriot/C/isabel.xml -share/gnome/help/aisleriot/C/jamestown.xml -share/gnome/help/aisleriot/C/jumbo.xml -share/gnome/help/aisleriot/C/kansas.xml -share/gnome/help/aisleriot/C/king_albert.xml -share/gnome/help/aisleriot/C/kings_audience.xml -share/gnome/help/aisleriot/C/klondike.xml -share/gnome/help/aisleriot/C/labyrinth.xml -share/gnome/help/aisleriot/C/lady_jane.xml -share/gnome/help/aisleriot/C/legal.xml -share/gnome/help/aisleriot/C/maze.xml -share/gnome/help/aisleriot/C/monte_carlo.xml -share/gnome/help/aisleriot/C/napoleons_tomb.xml -share/gnome/help/aisleriot/C/neighbor.xml -share/gnome/help/aisleriot/C/odessa.xml -share/gnome/help/aisleriot/C/osmosis.xml -share/gnome/help/aisleriot/C/peek.xml -share/gnome/help/aisleriot/C/pileon.xml -share/gnome/help/aisleriot/C/plait.xml -share/gnome/help/aisleriot/C/poker.xml -share/gnome/help/aisleriot/C/quatorze.xml -share/gnome/help/aisleriot/C/royal_east.xml -share/gnome/help/aisleriot/C/saratoga.xml -share/gnome/help/aisleriot/C/scorpion.xml -share/gnome/help/aisleriot/C/scuffle.xml -share/gnome/help/aisleriot/C/seahaven.xml -share/gnome/help/aisleriot/C/sir_tommy.xml -share/gnome/help/aisleriot/C/spider.xml -share/gnome/help/aisleriot/C/spider_three_decks.xml -share/gnome/help/aisleriot/C/spiderette.xml -share/gnome/help/aisleriot/C/straight_up.xml -share/gnome/help/aisleriot/C/streets_and_alleys.xml -share/gnome/help/aisleriot/C/ten_across.xml -share/gnome/help/aisleriot/C/terrace.xml -share/gnome/help/aisleriot/C/thieves.xml -share/gnome/help/aisleriot/C/thirteen.xml -share/gnome/help/aisleriot/C/thumb_and_pouch.xml -share/gnome/help/aisleriot/C/treize.xml -share/gnome/help/aisleriot/C/triple_peaks.xml -share/gnome/help/aisleriot/C/union_square.xml -share/gnome/help/aisleriot/C/valentine.xml -share/gnome/help/aisleriot/C/westhaven.xml -share/gnome/help/aisleriot/C/whitehead.xml -share/gnome/help/aisleriot/C/will_o_the_wisp.xml -share/gnome/help/aisleriot/C/yield.xml -share/gnome/help/aisleriot/C/yukon.xml -share/gnome/help/aisleriot/C/zebra.xml -share/gnome/help/aisleriot/ca/aisleriot.xml -share/gnome/help/aisleriot/ca/figures/camelot-goal.png -share/gnome/help/aisleriot/ca/figures/clock-rules.png -share/gnome/help/aisleriot/de/aisleriot.xml -share/gnome/help/aisleriot/de/figures/camelot-goal.png -share/gnome/help/aisleriot/de/figures/clock-rules.png -share/gnome/help/aisleriot/es/aisleriot.xml -share/gnome/help/aisleriot/es/figures/camelot-goal.png -share/gnome/help/aisleriot/es/figures/clock-rules.png -share/gnome/help/aisleriot/eu/aisleriot.xml -share/gnome/help/aisleriot/eu/figures/camelot-goal.png -share/gnome/help/aisleriot/eu/figures/clock-rules.png -share/gnome/help/aisleriot/fr/aisleriot.xml -share/gnome/help/aisleriot/fr/figures/camelot-goal.png -share/gnome/help/aisleriot/fr/figures/clock-rules.png -share/gnome/help/aisleriot/oc/aisleriot.xml -share/gnome/help/aisleriot/oc/figures/camelot-goal.png -share/gnome/help/aisleriot/oc/figures/clock-rules.png -share/gnome/help/aisleriot/ru/aisleriot.xml -share/gnome/help/aisleriot/ru/figures/camelot-goal.png -share/gnome/help/aisleriot/ru/figures/clock-rules.png -share/gnome/help/aisleriot/sv/aisleriot.xml -share/gnome/help/aisleriot/sv/figures/camelot-goal.png -share/gnome/help/aisleriot/sv/figures/clock-rules.png -share/gnome/help/blackjack/C/blackjack.xml -share/gnome/help/blackjack/C/figures/blackjack_start_window.png -share/gnome/help/blackjack/C/figures/blackjack_win_window.png -share/gnome/help/blackjack/C/legal.xml -share/gnome/help/blackjack/ca/blackjack.xml -share/gnome/help/blackjack/ca/figures/blackjack_start_window.png -share/gnome/help/blackjack/ca/figures/blackjack_win_window.png -share/gnome/help/blackjack/de/blackjack.xml -share/gnome/help/blackjack/de/figures/blackjack_start_window.png -share/gnome/help/blackjack/de/figures/blackjack_win_window.png -share/gnome/help/blackjack/el/blackjack.xml -share/gnome/help/blackjack/el/figures/blackjack_start_window.png -share/gnome/help/blackjack/el/figures/blackjack_win_window.png -share/gnome/help/blackjack/en_GB/blackjack.xml -share/gnome/help/blackjack/en_GB/figures/blackjack_start_window.png -share/gnome/help/blackjack/en_GB/figures/blackjack_win_window.png -share/gnome/help/blackjack/es/blackjack.xml -share/gnome/help/blackjack/es/figures/blackjack_start_window.png -share/gnome/help/blackjack/es/figures/blackjack_win_window.png -share/gnome/help/blackjack/eu/blackjack.xml -share/gnome/help/blackjack/eu/figures/blackjack_start_window.png -share/gnome/help/blackjack/eu/figures/blackjack_win_window.png -share/gnome/help/blackjack/fr/blackjack.xml -share/gnome/help/blackjack/fr/figures/blackjack_start_window.png -share/gnome/help/blackjack/fr/figures/blackjack_win_window.png -share/gnome/help/blackjack/oc/blackjack.xml -share/gnome/help/blackjack/oc/figures/blackjack_start_window.png -share/gnome/help/blackjack/oc/figures/blackjack_win_window.png -share/gnome/help/blackjack/sv/blackjack.xml -share/gnome/help/blackjack/sv/figures/blackjack_start_window.png -share/gnome/help/blackjack/sv/figures/blackjack_win_window.png -share/gnome/help/glchess/C/figures/game.png -share/gnome/help/glchess/C/figures/new_game.png -share/gnome/help/glchess/C/figures/preferences_game.png -share/gnome/help/glchess/C/figures/preferences_view.png -share/gnome/help/glchess/C/glchess.xml -share/gnome/help/glchess/C/legal.xml -share/gnome/help/glchess/ca/figures/game.png -share/gnome/help/glchess/ca/figures/new_game.png -share/gnome/help/glchess/ca/figures/preferences_game.png -share/gnome/help/glchess/ca/figures/preferences_view.png -share/gnome/help/glchess/ca/glchess.xml -share/gnome/help/glchess/de/figures/game.png -share/gnome/help/glchess/de/figures/new_game.png -share/gnome/help/glchess/de/figures/preferences_game.png -share/gnome/help/glchess/de/figures/preferences_view.png -share/gnome/help/glchess/de/glchess.xml -share/gnome/help/glchess/el/figures/game.png -share/gnome/help/glchess/el/figures/new_game.png -share/gnome/help/glchess/el/figures/preferences_game.png -share/gnome/help/glchess/el/figures/preferences_view.png -share/gnome/help/glchess/el/glchess.xml -share/gnome/help/glchess/en_GB/figures/game.png -share/gnome/help/glchess/en_GB/figures/new_game.png -share/gnome/help/glchess/en_GB/figures/preferences_game.png -share/gnome/help/glchess/en_GB/figures/preferences_view.png -share/gnome/help/glchess/en_GB/glchess.xml -share/gnome/help/glchess/es/figures/game.png -share/gnome/help/glchess/es/figures/new_game.png -share/gnome/help/glchess/es/figures/preferences_game.png -share/gnome/help/glchess/es/figures/preferences_view.png -share/gnome/help/glchess/es/glchess.xml -share/gnome/help/glchess/eu/figures/game.png -share/gnome/help/glchess/eu/figures/new_game.png -share/gnome/help/glchess/eu/figures/preferences_game.png -share/gnome/help/glchess/eu/figures/preferences_view.png -share/gnome/help/glchess/eu/glchess.xml -share/gnome/help/glchess/fr/figures/game.png -share/gnome/help/glchess/fr/figures/new_game.png -share/gnome/help/glchess/fr/figures/preferences_game.png -share/gnome/help/glchess/fr/figures/preferences_view.png -share/gnome/help/glchess/fr/glchess.xml -share/gnome/help/glchess/oc/figures/game.png -share/gnome/help/glchess/oc/figures/new_game.png -share/gnome/help/glchess/oc/figures/preferences_game.png -share/gnome/help/glchess/oc/figures/preferences_view.png -share/gnome/help/glchess/oc/glchess.xml -share/gnome/help/glchess/pt_BR/figures/game.png -share/gnome/help/glchess/pt_BR/figures/new_game.png -share/gnome/help/glchess/pt_BR/figures/preferences_game.png -share/gnome/help/glchess/pt_BR/figures/preferences_view.png -share/gnome/help/glchess/pt_BR/glchess.xml -share/gnome/help/glchess/ru/figures/game.png -share/gnome/help/glchess/ru/figures/new_game.png -share/gnome/help/glchess/ru/figures/preferences_game.png -share/gnome/help/glchess/ru/figures/preferences_view.png -share/gnome/help/glchess/ru/glchess.xml -share/gnome/help/glchess/sv/figures/game.png -share/gnome/help/glchess/sv/figures/new_game.png -share/gnome/help/glchess/sv/figures/preferences_game.png -share/gnome/help/glchess/sv/figures/preferences_view.png -share/gnome/help/glchess/sv/glchess.xml -share/gnome/help/glines/C/figures/glines-gameover.png -share/gnome/help/glines/C/figures/glines-startgame.png -share/gnome/help/glines/C/figures/preferences.png -share/gnome/help/glines/C/glines.xml -share/gnome/help/glines/C/legal.xml -share/gnome/help/glines/ca/figures/glines-gameover.png -share/gnome/help/glines/ca/figures/glines-startgame.png -share/gnome/help/glines/ca/figures/preferences.png -share/gnome/help/glines/ca/glines.xml -share/gnome/help/glines/de/figures/glines-gameover.png -share/gnome/help/glines/de/figures/glines-startgame.png -share/gnome/help/glines/de/figures/preferences.png -share/gnome/help/glines/de/glines.xml -share/gnome/help/glines/en_GB/figures/glines-gameover.png -share/gnome/help/glines/en_GB/figures/glines-startgame.png -share/gnome/help/glines/en_GB/figures/preferences.png -share/gnome/help/glines/en_GB/glines.xml -share/gnome/help/glines/es/figures/glines-gameover.png -share/gnome/help/glines/es/figures/glines-startgame.png -share/gnome/help/glines/es/figures/preferences.png -share/gnome/help/glines/es/glines.xml -share/gnome/help/glines/eu/figures/glines-gameover.png -share/gnome/help/glines/eu/figures/glines-startgame.png -share/gnome/help/glines/eu/figures/preferences.png -share/gnome/help/glines/eu/glines.xml -share/gnome/help/glines/fr/figures/glines-gameover.png -share/gnome/help/glines/fr/figures/glines-startgame.png -share/gnome/help/glines/fr/figures/preferences.png -share/gnome/help/glines/fr/glines.xml -share/gnome/help/glines/it/figures/glines-gameover.png -share/gnome/help/glines/it/figures/glines-startgame.png -share/gnome/help/glines/it/figures/preferences.png -share/gnome/help/glines/it/glines.xml -share/gnome/help/glines/oc/figures/glines-gameover.png -share/gnome/help/glines/oc/figures/glines-startgame.png -share/gnome/help/glines/oc/figures/preferences.png -share/gnome/help/glines/oc/glines.xml -share/gnome/help/glines/ru/figures/glines-gameover.png -share/gnome/help/glines/ru/figures/glines-startgame.png -share/gnome/help/glines/ru/figures/preferences.png -share/gnome/help/glines/ru/glines.xml -share/gnome/help/glines/sv/figures/glines-gameover.png -share/gnome/help/glines/sv/figures/glines-startgame.png -share/gnome/help/glines/sv/figures/preferences.png -share/gnome/help/glines/sv/glines.xml -share/gnome/help/glines/tr/figures/glines-gameover.png -share/gnome/help/glines/tr/figures/glines-startgame.png -share/gnome/help/glines/tr/figures/preferences.png -share/gnome/help/glines/tr/glines.xml -share/gnome/help/gnect/C/figures/connect.png -share/gnome/help/gnect/C/figures/mainwindow.png -share/gnome/help/gnect/C/figures/tables.png -share/gnome/help/gnect/C/figures/tileset.png -share/gnome/help/gnect/C/gnect.xml -share/gnome/help/gnect/C/legal.xml -share/gnome/help/gnect/C/network-games.xml -share/gnome/help/gnect/ca/figures/connect.png -share/gnome/help/gnect/ca/figures/mainwindow.png -share/gnome/help/gnect/ca/figures/tables.png -share/gnome/help/gnect/ca/figures/tileset.png -share/gnome/help/gnect/ca/gnect.xml -share/gnome/help/gnect/de/figures/connect.png -share/gnome/help/gnect/de/figures/mainwindow.png -share/gnome/help/gnect/de/figures/tables.png -share/gnome/help/gnect/de/figures/tileset.png -share/gnome/help/gnect/de/gnect.xml -share/gnome/help/gnect/en_GB/figures/connect.png -share/gnome/help/gnect/en_GB/figures/mainwindow.png -share/gnome/help/gnect/en_GB/figures/tables.png -share/gnome/help/gnect/en_GB/figures/tileset.png -share/gnome/help/gnect/en_GB/gnect.xml -share/gnome/help/gnect/es/figures/connect.png -share/gnome/help/gnect/es/figures/mainwindow.png -share/gnome/help/gnect/es/figures/tables.png -share/gnome/help/gnect/es/figures/tileset.png -share/gnome/help/gnect/es/gnect.xml -share/gnome/help/gnect/eu/figures/connect.png -share/gnome/help/gnect/eu/figures/mainwindow.png -share/gnome/help/gnect/eu/figures/tables.png -share/gnome/help/gnect/eu/figures/tileset.png -share/gnome/help/gnect/eu/gnect.xml -share/gnome/help/gnect/fr/figures/connect.png -share/gnome/help/gnect/fr/figures/mainwindow.png -share/gnome/help/gnect/fr/figures/tables.png -share/gnome/help/gnect/fr/figures/tileset.png -share/gnome/help/gnect/fr/gnect.xml -share/gnome/help/gnect/it/figures/connect.png -share/gnome/help/gnect/it/figures/mainwindow.png -share/gnome/help/gnect/it/figures/tables.png -share/gnome/help/gnect/it/figures/tileset.png -share/gnome/help/gnect/it/gnect.xml -share/gnome/help/gnect/oc/figures/connect.png -share/gnome/help/gnect/oc/figures/mainwindow.png -share/gnome/help/gnect/oc/figures/tables.png -share/gnome/help/gnect/oc/figures/tileset.png -share/gnome/help/gnect/oc/gnect.xml -share/gnome/help/gnect/sv/figures/connect.png -share/gnome/help/gnect/sv/figures/mainwindow.png -share/gnome/help/gnect/sv/figures/tables.png -share/gnome/help/gnect/sv/figures/tileset.png -share/gnome/help/gnect/sv/gnect.xml -share/gnome/help/gnibbles/C/figures/connect.png -share/gnome/help/gnibbles/C/figures/game.png -share/gnome/help/gnibbles/C/figures/intro.png -share/gnome/help/gnibbles/C/figures/playing.png -share/gnome/help/gnibbles/C/figures/tables.png -share/gnome/help/gnibbles/C/figures/worm_op.png -share/gnome/help/gnibbles/C/gnibbles.xml -share/gnome/help/gnibbles/C/legal.xml -share/gnome/help/gnibbles/C/network-games.xml -share/gnome/help/gnibbles/ca/figures/connect.png -share/gnome/help/gnibbles/ca/figures/game.png -share/gnome/help/gnibbles/ca/figures/intro.png -share/gnome/help/gnibbles/ca/figures/playing.png -share/gnome/help/gnibbles/ca/figures/tables.png -share/gnome/help/gnibbles/ca/figures/worm_op.png -share/gnome/help/gnibbles/ca/gnibbles.xml -share/gnome/help/gnibbles/de/figures/connect.png -share/gnome/help/gnibbles/de/figures/game.png -share/gnome/help/gnibbles/de/figures/intro.png -share/gnome/help/gnibbles/de/figures/playing.png -share/gnome/help/gnibbles/de/figures/tables.png -share/gnome/help/gnibbles/de/figures/worm_op.png -share/gnome/help/gnibbles/de/gnibbles.xml -share/gnome/help/gnibbles/en_GB/figures/connect.png -share/gnome/help/gnibbles/en_GB/figures/game.png -share/gnome/help/gnibbles/en_GB/figures/intro.png -share/gnome/help/gnibbles/en_GB/figures/playing.png -share/gnome/help/gnibbles/en_GB/figures/tables.png -share/gnome/help/gnibbles/en_GB/figures/worm_op.png -share/gnome/help/gnibbles/en_GB/gnibbles.xml -share/gnome/help/gnibbles/es/figures/connect.png -share/gnome/help/gnibbles/es/figures/game.png -share/gnome/help/gnibbles/es/figures/intro.png -share/gnome/help/gnibbles/es/figures/playing.png -share/gnome/help/gnibbles/es/figures/tables.png -share/gnome/help/gnibbles/es/figures/worm_op.png -share/gnome/help/gnibbles/es/gnibbles.xml -share/gnome/help/gnibbles/eu/figures/connect.png -share/gnome/help/gnibbles/eu/figures/game.png -share/gnome/help/gnibbles/eu/figures/intro.png -share/gnome/help/gnibbles/eu/figures/playing.png -share/gnome/help/gnibbles/eu/figures/tables.png -share/gnome/help/gnibbles/eu/figures/worm_op.png -share/gnome/help/gnibbles/eu/gnibbles.xml -share/gnome/help/gnibbles/fr/figures/connect.png -share/gnome/help/gnibbles/fr/figures/game.png -share/gnome/help/gnibbles/fr/figures/intro.png -share/gnome/help/gnibbles/fr/figures/playing.png -share/gnome/help/gnibbles/fr/figures/tables.png -share/gnome/help/gnibbles/fr/figures/worm_op.png -share/gnome/help/gnibbles/fr/gnibbles.xml -share/gnome/help/gnibbles/it/figures/connect.png -share/gnome/help/gnibbles/it/figures/game.png -share/gnome/help/gnibbles/it/figures/intro.png -share/gnome/help/gnibbles/it/figures/playing.png -share/gnome/help/gnibbles/it/figures/tables.png -share/gnome/help/gnibbles/it/figures/worm_op.png -share/gnome/help/gnibbles/it/gnibbles.xml -share/gnome/help/gnibbles/oc/figures/connect.png -share/gnome/help/gnibbles/oc/figures/game.png -share/gnome/help/gnibbles/oc/figures/intro.png -share/gnome/help/gnibbles/oc/figures/playing.png -share/gnome/help/gnibbles/oc/figures/tables.png -share/gnome/help/gnibbles/oc/figures/worm_op.png -share/gnome/help/gnibbles/oc/gnibbles.xml -share/gnome/help/gnibbles/sv/figures/connect.png -share/gnome/help/gnibbles/sv/figures/game.png -share/gnome/help/gnibbles/sv/figures/intro.png -share/gnome/help/gnibbles/sv/figures/playing.png -share/gnome/help/gnibbles/sv/figures/tables.png -share/gnome/help/gnibbles/sv/figures/worm_op.png -share/gnome/help/gnibbles/sv/gnibbles.xml -share/gnome/help/gnobots2/C/figures/gnobots2-main.png -share/gnome/help/gnobots2/C/gnobots2.xml -share/gnome/help/gnobots2/C/legal.xml -share/gnome/help/gnobots2/ca/figures/gnobots2-main.png -share/gnome/help/gnobots2/ca/gnobots2.xml -share/gnome/help/gnobots2/da/gnobots2.xml -share/gnome/help/gnobots2/da/legal.xml -share/gnome/help/gnobots2/de/figures/gnobots2-main.png -share/gnome/help/gnobots2/de/gnobots2.xml -share/gnome/help/gnobots2/en_GB/figures/gnobots2-main.png -share/gnome/help/gnobots2/en_GB/gnobots2.xml -share/gnome/help/gnobots2/es/figures/gnobots2-main.png -share/gnome/help/gnobots2/es/gnobots2.xml -share/gnome/help/gnobots2/eu/figures/gnobots2-main.png -share/gnome/help/gnobots2/eu/gnobots2.xml -share/gnome/help/gnobots2/fr/figures/gnobots2-main.png -share/gnome/help/gnobots2/fr/gnobots2.xml -share/gnome/help/gnobots2/it/figures/gnobots2-main.png -share/gnome/help/gnobots2/it/gnobots2.xml -share/gnome/help/gnobots2/oc/figures/gnobots2-main.png -share/gnome/help/gnobots2/oc/gnobots2.xml -share/gnome/help/gnobots2/sv/figures/gnobots2-main.png -share/gnome/help/gnobots2/sv/gnobots2.xml -share/gnome/help/gnome-sudoku/C/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/C/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/C/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/C/figures/highlighting.png -share/gnome/help/gnome-sudoku/C/figures/hints.png -share/gnome/help/gnome-sudoku/C/figures/resuming.png -share/gnome/help/gnome-sudoku/C/figures/starting.png -share/gnome/help/gnome-sudoku/C/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/C/legal.xml -share/gnome/help/gnome-sudoku/ca/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/ca/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/ca/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/ca/figures/highlighting.png -share/gnome/help/gnome-sudoku/ca/figures/hints.png -share/gnome/help/gnome-sudoku/ca/figures/resuming.png -share/gnome/help/gnome-sudoku/ca/figures/starting.png -share/gnome/help/gnome-sudoku/ca/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/da/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/da/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/da/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/da/figures/highlighting.png -share/gnome/help/gnome-sudoku/da/figures/hints.png -share/gnome/help/gnome-sudoku/da/figures/resuming.png -share/gnome/help/gnome-sudoku/da/figures/starting.png -share/gnome/help/gnome-sudoku/da/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/de/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/de/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/de/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/de/figures/highlighting.png -share/gnome/help/gnome-sudoku/de/figures/hints.png -share/gnome/help/gnome-sudoku/de/figures/resuming.png -share/gnome/help/gnome-sudoku/de/figures/starting.png -share/gnome/help/gnome-sudoku/de/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/el/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/el/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/el/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/el/figures/highlighting.png -share/gnome/help/gnome-sudoku/el/figures/hints.png -share/gnome/help/gnome-sudoku/el/figures/resuming.png -share/gnome/help/gnome-sudoku/el/figures/starting.png -share/gnome/help/gnome-sudoku/el/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/en_GB/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/en_GB/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/en_GB/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/en_GB/figures/highlighting.png -share/gnome/help/gnome-sudoku/en_GB/figures/hints.png -share/gnome/help/gnome-sudoku/en_GB/figures/resuming.png -share/gnome/help/gnome-sudoku/en_GB/figures/starting.png -share/gnome/help/gnome-sudoku/en_GB/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/es/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/es/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/es/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/es/figures/highlighting.png -share/gnome/help/gnome-sudoku/es/figures/hints.png -share/gnome/help/gnome-sudoku/es/figures/resuming.png -share/gnome/help/gnome-sudoku/es/figures/starting.png -share/gnome/help/gnome-sudoku/es/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/eu/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/eu/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/eu/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/eu/figures/highlighting.png -share/gnome/help/gnome-sudoku/eu/figures/hints.png -share/gnome/help/gnome-sudoku/eu/figures/resuming.png -share/gnome/help/gnome-sudoku/eu/figures/starting.png -share/gnome/help/gnome-sudoku/eu/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/fr/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/fr/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/fr/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/fr/figures/highlighting.png -share/gnome/help/gnome-sudoku/fr/figures/hints.png -share/gnome/help/gnome-sudoku/fr/figures/resuming.png -share/gnome/help/gnome-sudoku/fr/figures/starting.png -share/gnome/help/gnome-sudoku/fr/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/it/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/it/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/it/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/it/figures/highlighting.png -share/gnome/help/gnome-sudoku/it/figures/hints.png -share/gnome/help/gnome-sudoku/it/figures/resuming.png -share/gnome/help/gnome-sudoku/it/figures/starting.png -share/gnome/help/gnome-sudoku/it/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/oc/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/oc/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/oc/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/oc/figures/highlighting.png -share/gnome/help/gnome-sudoku/oc/figures/hints.png -share/gnome/help/gnome-sudoku/oc/figures/resuming.png -share/gnome/help/gnome-sudoku/oc/figures/starting.png -share/gnome/help/gnome-sudoku/oc/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/pt_BR/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/pt_BR/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/pt_BR/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/pt_BR/figures/highlighting.png -share/gnome/help/gnome-sudoku/pt_BR/figures/hints.png -share/gnome/help/gnome-sudoku/pt_BR/figures/resuming.png -share/gnome/help/gnome-sudoku/pt_BR/figures/starting.png -share/gnome/help/gnome-sudoku/pt_BR/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/ru/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/ru/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/ru/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/ru/figures/highlighting.png -share/gnome/help/gnome-sudoku/ru/figures/hints.png -share/gnome/help/gnome-sudoku/ru/figures/resuming.png -share/gnome/help/gnome-sudoku/ru/figures/starting.png -share/gnome/help/gnome-sudoku/ru/gnome-sudoku.xml -share/gnome/help/gnome-sudoku/sv/figures/Print_Sudokus.png -share/gnome/help/gnome-sudoku/sv/figures/always_show_hint.png -share/gnome/help/gnome-sudoku/sv/figures/error_highlighting.png -share/gnome/help/gnome-sudoku/sv/figures/highlighting.png -share/gnome/help/gnome-sudoku/sv/figures/hints.png -share/gnome/help/gnome-sudoku/sv/figures/resuming.png -share/gnome/help/gnome-sudoku/sv/figures/starting.png -share/gnome/help/gnome-sudoku/sv/gnome-sudoku.xml -share/gnome/help/gnometris/C/gnometris.xml -share/gnome/help/gnometris/C/legal.xml -share/gnome/help/gnometris/ca/gnometris.xml -share/gnome/help/gnometris/de/gnometris.xml -share/gnome/help/gnometris/el/gnometris.xml -share/gnome/help/gnometris/en_GB/gnometris.xml -share/gnome/help/gnometris/es/gnometris.xml -share/gnome/help/gnometris/eu/gnometris.xml -share/gnome/help/gnometris/fi/gnometris.xml -share/gnome/help/gnometris/fr/gnometris.xml -share/gnome/help/gnometris/it/gnometris.xml -share/gnome/help/gnometris/oc/gnometris.xml -share/gnome/help/gnometris/sv/gnometris.xml -share/gnome/help/gnomine/C/figures/easy-hints-1.png -share/gnome/help/gnomine/C/figures/easy-hints-2.png -share/gnome/help/gnomine/C/figures/easy-hints-3.png -share/gnome/help/gnomine/C/figures/faces.png -share/gnome/help/gnomine/C/figures/flags.png -share/gnome/help/gnomine/C/figures/hard-hints-1.png -share/gnome/help/gnomine/C/figures/hard-hints-2.png -share/gnome/help/gnomine/C/figures/hard-hints-3.png -share/gnome/help/gnomine/C/figures/highscores.png -share/gnome/help/gnomine/C/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/C/figures/main-window.png -share/gnome/help/gnomine/C/figures/preferences.png -share/gnome/help/gnomine/C/figures/statusbar.png -share/gnome/help/gnomine/C/gnomine.xml -share/gnome/help/gnomine/C/legal.xml -share/gnome/help/gnomine/ca/figures/easy-hints-1.png -share/gnome/help/gnomine/ca/figures/easy-hints-2.png -share/gnome/help/gnomine/ca/figures/easy-hints-3.png -share/gnome/help/gnomine/ca/figures/faces.png -share/gnome/help/gnomine/ca/figures/flags.png -share/gnome/help/gnomine/ca/figures/hard-hints-1.png -share/gnome/help/gnomine/ca/figures/hard-hints-2.png -share/gnome/help/gnomine/ca/figures/hard-hints-3.png -share/gnome/help/gnomine/ca/figures/highscores.png -share/gnome/help/gnomine/ca/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/ca/figures/main-window.png -share/gnome/help/gnomine/ca/figures/preferences.png -share/gnome/help/gnomine/ca/figures/statusbar.png -share/gnome/help/gnomine/ca/gnomine.xml -share/gnome/help/gnomine/de/figures/easy-hints-1.png -share/gnome/help/gnomine/de/figures/easy-hints-2.png -share/gnome/help/gnomine/de/figures/easy-hints-3.png -share/gnome/help/gnomine/de/figures/faces.png -share/gnome/help/gnomine/de/figures/flags.png -share/gnome/help/gnomine/de/figures/hard-hints-1.png -share/gnome/help/gnomine/de/figures/hard-hints-2.png -share/gnome/help/gnomine/de/figures/hard-hints-3.png -share/gnome/help/gnomine/de/figures/highscores.png -share/gnome/help/gnomine/de/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/de/figures/main-window.png -share/gnome/help/gnomine/de/figures/preferences.png -share/gnome/help/gnomine/de/figures/statusbar.png -share/gnome/help/gnomine/de/gnomine.xml -share/gnome/help/gnomine/el/figures/easy-hints-1.png -share/gnome/help/gnomine/el/figures/easy-hints-2.png -share/gnome/help/gnomine/el/figures/easy-hints-3.png -share/gnome/help/gnomine/el/figures/faces.png -share/gnome/help/gnomine/el/figures/flags.png -share/gnome/help/gnomine/el/figures/hard-hints-1.png -share/gnome/help/gnomine/el/figures/hard-hints-2.png -share/gnome/help/gnomine/el/figures/hard-hints-3.png -share/gnome/help/gnomine/el/figures/highscores.png -share/gnome/help/gnomine/el/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/el/figures/main-window.png -share/gnome/help/gnomine/el/figures/preferences.png -share/gnome/help/gnomine/el/figures/statusbar.png -share/gnome/help/gnomine/el/gnomine.xml -share/gnome/help/gnomine/en_GB/figures/easy-hints-1.png -share/gnome/help/gnomine/en_GB/figures/easy-hints-2.png -share/gnome/help/gnomine/en_GB/figures/easy-hints-3.png -share/gnome/help/gnomine/en_GB/figures/faces.png -share/gnome/help/gnomine/en_GB/figures/flags.png -share/gnome/help/gnomine/en_GB/figures/hard-hints-1.png -share/gnome/help/gnomine/en_GB/figures/hard-hints-2.png -share/gnome/help/gnomine/en_GB/figures/hard-hints-3.png -share/gnome/help/gnomine/en_GB/figures/highscores.png -share/gnome/help/gnomine/en_GB/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/en_GB/figures/main-window.png -share/gnome/help/gnomine/en_GB/figures/preferences.png -share/gnome/help/gnomine/en_GB/figures/statusbar.png -share/gnome/help/gnomine/en_GB/gnomine.xml -share/gnome/help/gnomine/es/figures/easy-hints-1.png -share/gnome/help/gnomine/es/figures/easy-hints-2.png -share/gnome/help/gnomine/es/figures/easy-hints-3.png -share/gnome/help/gnomine/es/figures/faces.png -share/gnome/help/gnomine/es/figures/flags.png -share/gnome/help/gnomine/es/figures/hard-hints-1.png -share/gnome/help/gnomine/es/figures/hard-hints-2.png -share/gnome/help/gnomine/es/figures/hard-hints-3.png -share/gnome/help/gnomine/es/figures/highscores.png -share/gnome/help/gnomine/es/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/es/figures/main-window.png -share/gnome/help/gnomine/es/figures/preferences.png -share/gnome/help/gnomine/es/figures/statusbar.png -share/gnome/help/gnomine/es/gnomine.xml -share/gnome/help/gnomine/eu/figures/easy-hints-1.png -share/gnome/help/gnomine/eu/figures/easy-hints-2.png -share/gnome/help/gnomine/eu/figures/easy-hints-3.png -share/gnome/help/gnomine/eu/figures/faces.png -share/gnome/help/gnomine/eu/figures/flags.png -share/gnome/help/gnomine/eu/figures/hard-hints-1.png -share/gnome/help/gnomine/eu/figures/hard-hints-2.png -share/gnome/help/gnomine/eu/figures/hard-hints-3.png -share/gnome/help/gnomine/eu/figures/highscores.png -share/gnome/help/gnomine/eu/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/eu/figures/main-window.png -share/gnome/help/gnomine/eu/figures/preferences.png -share/gnome/help/gnomine/eu/figures/statusbar.png -share/gnome/help/gnomine/eu/gnomine.xml -share/gnome/help/gnomine/fr/figures/easy-hints-1.png -share/gnome/help/gnomine/fr/figures/easy-hints-2.png -share/gnome/help/gnomine/fr/figures/easy-hints-3.png -share/gnome/help/gnomine/fr/figures/faces.png -share/gnome/help/gnomine/fr/figures/flags.png -share/gnome/help/gnomine/fr/figures/hard-hints-1.png -share/gnome/help/gnomine/fr/figures/hard-hints-2.png -share/gnome/help/gnomine/fr/figures/hard-hints-3.png -share/gnome/help/gnomine/fr/figures/highscores.png -share/gnome/help/gnomine/fr/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/fr/figures/main-window.png -share/gnome/help/gnomine/fr/figures/preferences.png -share/gnome/help/gnomine/fr/figures/statusbar.png -share/gnome/help/gnomine/fr/gnomine.xml -share/gnome/help/gnomine/it/figures/easy-hints-1.png -share/gnome/help/gnomine/it/figures/easy-hints-2.png -share/gnome/help/gnomine/it/figures/easy-hints-3.png -share/gnome/help/gnomine/it/figures/faces.png -share/gnome/help/gnomine/it/figures/flags.png -share/gnome/help/gnomine/it/figures/hard-hints-1.png -share/gnome/help/gnomine/it/figures/hard-hints-2.png -share/gnome/help/gnomine/it/figures/hard-hints-3.png -share/gnome/help/gnomine/it/figures/highscores.png -share/gnome/help/gnomine/it/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/it/figures/main-window.png -share/gnome/help/gnomine/it/figures/preferences.png -share/gnome/help/gnomine/it/figures/statusbar.png -share/gnome/help/gnomine/it/gnomine.xml -share/gnome/help/gnomine/oc/figures/easy-hints-1.png -share/gnome/help/gnomine/oc/figures/easy-hints-2.png -share/gnome/help/gnomine/oc/figures/easy-hints-3.png -share/gnome/help/gnomine/oc/figures/faces.png -share/gnome/help/gnomine/oc/figures/flags.png -share/gnome/help/gnomine/oc/figures/hard-hints-1.png -share/gnome/help/gnomine/oc/figures/hard-hints-2.png -share/gnome/help/gnomine/oc/figures/hard-hints-3.png -share/gnome/help/gnomine/oc/figures/highscores.png -share/gnome/help/gnomine/oc/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/oc/figures/main-window.png -share/gnome/help/gnomine/oc/figures/preferences.png -share/gnome/help/gnomine/oc/figures/statusbar.png -share/gnome/help/gnomine/oc/gnomine.xml -share/gnome/help/gnomine/sv/figures/easy-hints-1.png -share/gnome/help/gnomine/sv/figures/easy-hints-2.png -share/gnome/help/gnomine/sv/figures/easy-hints-3.png -share/gnome/help/gnomine/sv/figures/faces.png -share/gnome/help/gnomine/sv/figures/flags.png -share/gnome/help/gnomine/sv/figures/hard-hints-1.png -share/gnome/help/gnomine/sv/figures/hard-hints-2.png -share/gnome/help/gnomine/sv/figures/hard-hints-3.png -share/gnome/help/gnomine/sv/figures/highscores.png -share/gnome/help/gnomine/sv/figures/imnotsureflagscheckbox.png -share/gnome/help/gnomine/sv/figures/main-window.png -share/gnome/help/gnomine/sv/figures/preferences.png -share/gnome/help/gnomine/sv/figures/statusbar.png -share/gnome/help/gnomine/sv/gnomine.xml -share/gnome/help/gnotravex/C/figures/gnotravex_game.png -share/gnome/help/gnotravex/C/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/C/gnotravex.xml -share/gnome/help/gnotravex/C/legal.xml -share/gnome/help/gnotravex/ca/figures/gnotravex_game.png -share/gnome/help/gnotravex/ca/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/ca/gnotravex.xml -share/gnome/help/gnotravex/de/figures/gnotravex_game.png -share/gnome/help/gnotravex/de/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/de/gnotravex.xml -share/gnome/help/gnotravex/el/figures/gnotravex_game.png -share/gnome/help/gnotravex/el/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/el/gnotravex.xml -share/gnome/help/gnotravex/en_GB/figures/gnotravex_game.png -share/gnome/help/gnotravex/en_GB/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/en_GB/gnotravex.xml -share/gnome/help/gnotravex/es/figures/gnotravex_game.png -share/gnome/help/gnotravex/es/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/es/gnotravex.xml -share/gnome/help/gnotravex/eu/figures/gnotravex_game.png -share/gnome/help/gnotravex/eu/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/eu/gnotravex.xml -share/gnome/help/gnotravex/fr/figures/gnotravex_game.png -share/gnome/help/gnotravex/fr/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/fr/gnotravex.xml -share/gnome/help/gnotravex/it/figures/gnotravex_game.png -share/gnome/help/gnotravex/it/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/it/gnotravex.xml -share/gnome/help/gnotravex/oc/figures/gnotravex_game.png -share/gnome/help/gnotravex/oc/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/oc/gnotravex.xml -share/gnome/help/gnotravex/ru/figures/gnotravex_game.png -share/gnome/help/gnotravex/ru/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/ru/gnotravex.xml -share/gnome/help/gnotravex/sv/figures/gnotravex_game.png -share/gnome/help/gnotravex/sv/figures/gnotravex_mainwindow.png -share/gnome/help/gnotravex/sv/gnotravex.xml -share/gnome/help/gnotski/C/figures/gnotski_start_window.png -share/gnome/help/gnotski/C/figures/gnotski_win.png -share/gnome/help/gnotski/C/gnotski.xml -share/gnome/help/gnotski/C/legal.xml -share/gnome/help/gnotski/ca/figures/gnotski_start_window.png -share/gnome/help/gnotski/ca/figures/gnotski_win.png -share/gnome/help/gnotski/ca/gnotski.xml -share/gnome/help/gnotski/de/figures/gnotski_start_window.png -share/gnome/help/gnotski/de/figures/gnotski_win.png -share/gnome/help/gnotski/de/gnotski.xml -share/gnome/help/gnotski/en_GB/figures/gnotski_start_window.png -share/gnome/help/gnotski/en_GB/figures/gnotski_win.png -share/gnome/help/gnotski/en_GB/gnotski.xml -share/gnome/help/gnotski/es/figures/gnotski_start_window.png -share/gnome/help/gnotski/es/figures/gnotski_win.png -share/gnome/help/gnotski/es/gnotski.xml -share/gnome/help/gnotski/eu/figures/gnotski_start_window.png -share/gnome/help/gnotski/eu/figures/gnotski_win.png -share/gnome/help/gnotski/eu/gnotski.xml -share/gnome/help/gnotski/fr/figures/gnotski_start_window.png -share/gnome/help/gnotski/fr/figures/gnotski_win.png -share/gnome/help/gnotski/fr/gnotski.xml -share/gnome/help/gnotski/it/figures/gnotski_start_window.png -share/gnome/help/gnotski/it/figures/gnotski_win.png -share/gnome/help/gnotski/it/gnotski.xml -share/gnome/help/gnotski/oc/figures/gnotski_start_window.png -share/gnome/help/gnotski/oc/figures/gnotski_win.png -share/gnome/help/gnotski/oc/gnotski.xml -share/gnome/help/gnotski/sv/figures/gnotski_start_window.png -share/gnome/help/gnotski/sv/figures/gnotski_win.png -share/gnome/help/gnotski/sv/gnotski.xml -share/gnome/help/gtali/C/figures/mainwindow.png -share/gnome/help/gtali/C/figures/preferences.png -share/gnome/help/gtali/C/gtali.xml -share/gnome/help/gtali/C/legal.xml -share/gnome/help/gtali/ca/figures/mainwindow.png -share/gnome/help/gtali/ca/figures/preferences.png -share/gnome/help/gtali/ca/gtali.xml -share/gnome/help/gtali/da/gtali.xml -share/gnome/help/gtali/da/legal.xml -share/gnome/help/gtali/de/figures/mainwindow.png -share/gnome/help/gtali/de/figures/preferences.png -share/gnome/help/gtali/de/gtali.xml -share/gnome/help/gtali/el/figures/mainwindow.png -share/gnome/help/gtali/el/figures/preferences.png -share/gnome/help/gtali/el/gtali.xml -share/gnome/help/gtali/en_GB/figures/mainwindow.png -share/gnome/help/gtali/en_GB/figures/preferences.png -share/gnome/help/gtali/en_GB/gtali.xml -share/gnome/help/gtali/es/figures/mainwindow.png -share/gnome/help/gtali/es/figures/preferences.png -share/gnome/help/gtali/es/gtali.xml -share/gnome/help/gtali/eu/figures/mainwindow.png -share/gnome/help/gtali/eu/figures/preferences.png -share/gnome/help/gtali/eu/gtali.xml -share/gnome/help/gtali/fr/figures/mainwindow.png -share/gnome/help/gtali/fr/figures/preferences.png -share/gnome/help/gtali/fr/gtali.xml -share/gnome/help/gtali/it/figures/mainwindow.png -share/gnome/help/gtali/it/figures/preferences.png -share/gnome/help/gtali/it/gtali.xml -share/gnome/help/gtali/oc/figures/mainwindow.png -share/gnome/help/gtali/oc/figures/preferences.png -share/gnome/help/gtali/oc/gtali.xml -share/gnome/help/gtali/pt_BR/figures/mainwindow.png -share/gnome/help/gtali/pt_BR/figures/preferences.png -share/gnome/help/gtali/pt_BR/gtali.xml -share/gnome/help/gtali/sv/figures/mainwindow.png -share/gnome/help/gtali/sv/figures/preferences.png -share/gnome/help/gtali/sv/gtali.xml -share/gnome/help/iagno/C/figures/ANIMATION.png -share/gnome/help/iagno/C/figures/BLOCK.png -share/gnome/help/iagno/C/figures/FIRST.png -share/gnome/help/iagno/C/figures/PLAYER.png -share/gnome/help/iagno/C/figures/START.png -share/gnome/help/iagno/C/figures/connect.png -share/gnome/help/iagno/C/figures/tables.png -share/gnome/help/iagno/C/iagno.xml -share/gnome/help/iagno/C/legal.xml -share/gnome/help/iagno/C/network-games.xml -share/gnome/help/iagno/ca/figures/ANIMATION.png -share/gnome/help/iagno/ca/figures/BLOCK.png -share/gnome/help/iagno/ca/figures/FIRST.png -share/gnome/help/iagno/ca/figures/PLAYER.png -share/gnome/help/iagno/ca/figures/START.png -share/gnome/help/iagno/ca/figures/connect.png -share/gnome/help/iagno/ca/figures/tables.png -share/gnome/help/iagno/ca/iagno.xml -share/gnome/help/iagno/de/figures/ANIMATION.png -share/gnome/help/iagno/de/figures/BLOCK.png -share/gnome/help/iagno/de/figures/FIRST.png -share/gnome/help/iagno/de/figures/PLAYER.png -share/gnome/help/iagno/de/figures/START.png -share/gnome/help/iagno/de/figures/connect.png -share/gnome/help/iagno/de/figures/tables.png -share/gnome/help/iagno/de/iagno.xml -share/gnome/help/iagno/el/figures/ANIMATION.png -share/gnome/help/iagno/el/figures/BLOCK.png -share/gnome/help/iagno/el/figures/FIRST.png -share/gnome/help/iagno/el/figures/PLAYER.png -share/gnome/help/iagno/el/figures/START.png -share/gnome/help/iagno/el/figures/connect.png -share/gnome/help/iagno/el/figures/tables.png -share/gnome/help/iagno/el/iagno.xml -share/gnome/help/iagno/en_GB/figures/ANIMATION.png -share/gnome/help/iagno/en_GB/figures/BLOCK.png -share/gnome/help/iagno/en_GB/figures/FIRST.png -share/gnome/help/iagno/en_GB/figures/PLAYER.png -share/gnome/help/iagno/en_GB/figures/START.png -share/gnome/help/iagno/en_GB/figures/connect.png -share/gnome/help/iagno/en_GB/figures/tables.png -share/gnome/help/iagno/en_GB/iagno.xml -share/gnome/help/iagno/es/figures/ANIMATION.png -share/gnome/help/iagno/es/figures/BLOCK.png -share/gnome/help/iagno/es/figures/FIRST.png -share/gnome/help/iagno/es/figures/PLAYER.png -share/gnome/help/iagno/es/figures/START.png -share/gnome/help/iagno/es/figures/connect.png -share/gnome/help/iagno/es/figures/tables.png -share/gnome/help/iagno/es/iagno.xml -share/gnome/help/iagno/eu/figures/ANIMATION.png -share/gnome/help/iagno/eu/figures/BLOCK.png -share/gnome/help/iagno/eu/figures/FIRST.png -share/gnome/help/iagno/eu/figures/PLAYER.png -share/gnome/help/iagno/eu/figures/START.png -share/gnome/help/iagno/eu/figures/connect.png -share/gnome/help/iagno/eu/figures/tables.png -share/gnome/help/iagno/eu/iagno.xml -share/gnome/help/iagno/fr/figures/ANIMATION.png -share/gnome/help/iagno/fr/figures/BLOCK.png -share/gnome/help/iagno/fr/figures/FIRST.png -share/gnome/help/iagno/fr/figures/PLAYER.png -share/gnome/help/iagno/fr/figures/START.png -share/gnome/help/iagno/fr/figures/connect.png -share/gnome/help/iagno/fr/figures/tables.png -share/gnome/help/iagno/fr/iagno.xml -share/gnome/help/iagno/it/figures/ANIMATION.png -share/gnome/help/iagno/it/figures/BLOCK.png -share/gnome/help/iagno/it/figures/FIRST.png -share/gnome/help/iagno/it/figures/PLAYER.png -share/gnome/help/iagno/it/figures/START.png -share/gnome/help/iagno/it/figures/connect.png -share/gnome/help/iagno/it/figures/tables.png -share/gnome/help/iagno/it/iagno.xml -share/gnome/help/iagno/oc/figures/ANIMATION.png -share/gnome/help/iagno/oc/figures/BLOCK.png -share/gnome/help/iagno/oc/figures/FIRST.png -share/gnome/help/iagno/oc/figures/PLAYER.png -share/gnome/help/iagno/oc/figures/START.png -share/gnome/help/iagno/oc/figures/connect.png -share/gnome/help/iagno/oc/figures/tables.png -share/gnome/help/iagno/oc/iagno.xml -share/gnome/help/iagno/pt_BR/figures/ANIMATION.png -share/gnome/help/iagno/pt_BR/figures/BLOCK.png -share/gnome/help/iagno/pt_BR/figures/FIRST.png -share/gnome/help/iagno/pt_BR/figures/PLAYER.png -share/gnome/help/iagno/pt_BR/figures/START.png -share/gnome/help/iagno/pt_BR/figures/connect.png -share/gnome/help/iagno/pt_BR/figures/tables.png -share/gnome/help/iagno/pt_BR/iagno.xml -share/gnome/help/iagno/sv/figures/ANIMATION.png -share/gnome/help/iagno/sv/figures/BLOCK.png -share/gnome/help/iagno/sv/figures/FIRST.png -share/gnome/help/iagno/sv/figures/PLAYER.png -share/gnome/help/iagno/sv/figures/START.png -share/gnome/help/iagno/sv/figures/connect.png -share/gnome/help/iagno/sv/figures/tables.png -share/gnome/help/iagno/sv/iagno.xml -share/gnome/help/mahjongg/C/figures/mahjongg.png -share/gnome/help/mahjongg/C/figures/no-move.png -share/gnome/help/mahjongg/C/figures/preferences.png -share/gnome/help/mahjongg/C/figures/toolbar.png -share/gnome/help/mahjongg/C/legal.xml -share/gnome/help/mahjongg/C/mahjongg.xml -share/gnome/help/mahjongg/ca/figures/mahjongg.png -share/gnome/help/mahjongg/ca/figures/no-move.png -share/gnome/help/mahjongg/ca/figures/preferences.png -share/gnome/help/mahjongg/ca/figures/toolbar.png -share/gnome/help/mahjongg/ca/mahjongg.xml -share/gnome/help/mahjongg/de/figures/mahjongg.png -share/gnome/help/mahjongg/de/figures/no-move.png -share/gnome/help/mahjongg/de/figures/preferences.png -share/gnome/help/mahjongg/de/figures/toolbar.png -share/gnome/help/mahjongg/de/mahjongg.xml -share/gnome/help/mahjongg/el/figures/mahjongg.png -share/gnome/help/mahjongg/el/figures/no-move.png -share/gnome/help/mahjongg/el/figures/preferences.png -share/gnome/help/mahjongg/el/figures/toolbar.png -share/gnome/help/mahjongg/el/mahjongg.xml -share/gnome/help/mahjongg/en_GB/figures/mahjongg.png -share/gnome/help/mahjongg/en_GB/figures/no-move.png -share/gnome/help/mahjongg/en_GB/figures/preferences.png -share/gnome/help/mahjongg/en_GB/figures/toolbar.png -share/gnome/help/mahjongg/en_GB/mahjongg.xml -share/gnome/help/mahjongg/es/figures/mahjongg.png -share/gnome/help/mahjongg/es/figures/no-move.png -share/gnome/help/mahjongg/es/figures/preferences.png -share/gnome/help/mahjongg/es/figures/toolbar.png -share/gnome/help/mahjongg/es/mahjongg.xml -share/gnome/help/mahjongg/eu/figures/mahjongg.png -share/gnome/help/mahjongg/eu/figures/no-move.png -share/gnome/help/mahjongg/eu/figures/preferences.png -share/gnome/help/mahjongg/eu/figures/toolbar.png -share/gnome/help/mahjongg/eu/mahjongg.xml -share/gnome/help/mahjongg/fr/figures/mahjongg.png -share/gnome/help/mahjongg/fr/figures/no-move.png -share/gnome/help/mahjongg/fr/figures/preferences.png -share/gnome/help/mahjongg/fr/figures/toolbar.png -share/gnome/help/mahjongg/fr/mahjongg.xml -share/gnome/help/mahjongg/it/figures/mahjongg.png -share/gnome/help/mahjongg/it/figures/no-move.png -share/gnome/help/mahjongg/it/figures/preferences.png -share/gnome/help/mahjongg/it/figures/toolbar.png -share/gnome/help/mahjongg/it/mahjongg.xml -share/gnome/help/mahjongg/oc/figures/mahjongg.png -share/gnome/help/mahjongg/oc/figures/no-move.png -share/gnome/help/mahjongg/oc/figures/preferences.png -share/gnome/help/mahjongg/oc/figures/toolbar.png -share/gnome/help/mahjongg/oc/mahjongg.xml -share/gnome/help/mahjongg/sv/figures/mahjongg.png -share/gnome/help/mahjongg/sv/figures/no-move.png -share/gnome/help/mahjongg/sv/figures/preferences.png -share/gnome/help/mahjongg/sv/figures/toolbar.png -share/gnome/help/mahjongg/sv/mahjongg.xml -share/gnome/help/same-gnome/C/figures/play.png -share/gnome/help/same-gnome/C/figures/start-up.png -share/gnome/help/same-gnome/C/legal.xml -share/gnome/help/same-gnome/C/same-gnome.xml -share/gnome/help/same-gnome/ca/figures/play.png -share/gnome/help/same-gnome/ca/figures/start-up.png -share/gnome/help/same-gnome/ca/legal.xml -share/gnome/help/same-gnome/ca/same-gnome.xml -share/gnome/help/same-gnome/de/figures/play.png -share/gnome/help/same-gnome/de/figures/start-up.png -share/gnome/help/same-gnome/de/legal.xml -share/gnome/help/same-gnome/de/same-gnome.xml -share/gnome/help/same-gnome/en_GB/figures/play.png -share/gnome/help/same-gnome/en_GB/figures/start-up.png -share/gnome/help/same-gnome/en_GB/legal.xml -share/gnome/help/same-gnome/en_GB/same-gnome.xml -share/gnome/help/same-gnome/es/figures/play.png -share/gnome/help/same-gnome/es/figures/start-up.png -share/gnome/help/same-gnome/es/legal.xml -share/gnome/help/same-gnome/es/same-gnome.xml -share/gnome/help/same-gnome/eu/figures/play.png -share/gnome/help/same-gnome/eu/figures/start-up.png -share/gnome/help/same-gnome/eu/legal.xml -share/gnome/help/same-gnome/eu/same-gnome.xml -share/gnome/help/same-gnome/fr/figures/play.png -share/gnome/help/same-gnome/fr/figures/start-up.png -share/gnome/help/same-gnome/fr/legal.xml -share/gnome/help/same-gnome/fr/same-gnome.xml -share/gnome/help/same-gnome/it/figures/play.png -share/gnome/help/same-gnome/it/figures/start-up.png -share/gnome/help/same-gnome/it/legal.xml -share/gnome/help/same-gnome/it/same-gnome.xml -share/gnome/help/same-gnome/oc/figures/play.png -share/gnome/help/same-gnome/oc/figures/start-up.png -share/gnome/help/same-gnome/oc/legal.xml -share/gnome/help/same-gnome/oc/same-gnome.xml -share/gnome/help/same-gnome/ru/figures/play.png -share/gnome/help/same-gnome/ru/figures/start-up.png -share/gnome/help/same-gnome/ru/legal.xml -share/gnome/help/same-gnome/ru/same-gnome.xml -share/gnome/help/same-gnome/sv/figures/play.png -share/gnome/help/same-gnome/sv/figures/start-up.png -share/gnome/help/same-gnome/sv/legal.xml -share/gnome/help/same-gnome/sv/same-gnome.xml -share/icons/hicolor/16x16/apps/gnome-aisleriot.png -share/icons/hicolor/16x16/apps/gnome-blackjack.png -share/icons/hicolor/16x16/apps/gnome-freecell.png -share/icons/hicolor/16x16/apps/gnome-glchess.png -share/icons/hicolor/16x16/apps/gnome-glines.png -share/icons/hicolor/16x16/apps/gnome-gnect.png -share/icons/hicolor/16x16/apps/gnome-gnibbles.png -share/icons/hicolor/16x16/apps/gnome-gnometris.png -share/icons/hicolor/16x16/apps/gnome-iagno.png -share/icons/hicolor/16x16/apps/gnome-klotski.png -share/icons/hicolor/16x16/apps/gnome-mahjongg.png -share/icons/hicolor/16x16/apps/gnome-mines.png -share/icons/hicolor/16x16/apps/gnome-robots.png -share/icons/hicolor/16x16/apps/gnome-samegnome.png -share/icons/hicolor/16x16/apps/gnome-sudoku.png -share/icons/hicolor/16x16/apps/gnome-tali.png -share/icons/hicolor/16x16/apps/gnome-tetravex.png -share/icons/hicolor/22x22/apps/gnome-aisleriot.png -share/icons/hicolor/22x22/apps/gnome-blackjack.png -share/icons/hicolor/22x22/apps/gnome-freecell.png -share/icons/hicolor/22x22/apps/gnome-glchess.png -share/icons/hicolor/22x22/apps/gnome-glines.png -share/icons/hicolor/22x22/apps/gnome-gnect.png -share/icons/hicolor/22x22/apps/gnome-gnibbles.png -share/icons/hicolor/22x22/apps/gnome-gnometris.png -share/icons/hicolor/22x22/apps/gnome-iagno.png -share/icons/hicolor/22x22/apps/gnome-klotski.png -share/icons/hicolor/22x22/apps/gnome-mahjongg.png -share/icons/hicolor/22x22/apps/gnome-mines.png -share/icons/hicolor/22x22/apps/gnome-robots.png -share/icons/hicolor/22x22/apps/gnome-samegnome.png -share/icons/hicolor/22x22/apps/gnome-sudoku.png -share/icons/hicolor/22x22/apps/gnome-tali.png -share/icons/hicolor/22x22/apps/gnome-tetravex.png -share/icons/hicolor/24x24/apps/gnome-aisleriot.png -share/icons/hicolor/24x24/apps/gnome-blackjack.png -share/icons/hicolor/24x24/apps/gnome-freecell.png -share/icons/hicolor/24x24/apps/gnome-glchess.png -share/icons/hicolor/24x24/apps/gnome-glines.png -share/icons/hicolor/24x24/apps/gnome-gnect.png -share/icons/hicolor/24x24/apps/gnome-gnibbles.png -share/icons/hicolor/24x24/apps/gnome-gnometris.png -share/icons/hicolor/24x24/apps/gnome-iagno.png -share/icons/hicolor/24x24/apps/gnome-klotski.png -share/icons/hicolor/24x24/apps/gnome-mahjongg.png -share/icons/hicolor/24x24/apps/gnome-mines.png -share/icons/hicolor/24x24/apps/gnome-robots.png -share/icons/hicolor/24x24/apps/gnome-samegnome.png -share/icons/hicolor/24x24/apps/gnome-sudoku.png -share/icons/hicolor/24x24/apps/gnome-tali.png -share/icons/hicolor/24x24/apps/gnome-tetravex.png -share/icons/hicolor/32x32/apps/gnome-aisleriot.png -share/icons/hicolor/32x32/apps/gnome-blackjack.png -share/icons/hicolor/32x32/apps/gnome-freecell.png -share/icons/hicolor/32x32/apps/gnome-glchess.png -share/icons/hicolor/32x32/apps/gnome-glines.png -share/icons/hicolor/32x32/apps/gnome-gnect.png -share/icons/hicolor/32x32/apps/gnome-gnibbles.png -share/icons/hicolor/32x32/apps/gnome-gnometris.png -share/icons/hicolor/32x32/apps/gnome-iagno.png -share/icons/hicolor/32x32/apps/gnome-klotski.png -share/icons/hicolor/32x32/apps/gnome-mahjongg.png -share/icons/hicolor/32x32/apps/gnome-mines.png -share/icons/hicolor/32x32/apps/gnome-robots.png -share/icons/hicolor/32x32/apps/gnome-samegnome.png -share/icons/hicolor/32x32/apps/gnome-sudoku.png -share/icons/hicolor/32x32/apps/gnome-tali.png -share/icons/hicolor/32x32/apps/gnome-tetravex.png -share/icons/hicolor/48x48/apps/gnome-aisleriot.png -share/icons/hicolor/48x48/apps/gnome-blackjack.png -share/icons/hicolor/48x48/apps/gnome-freecell.png -share/icons/hicolor/48x48/apps/gnome-glchess.png -share/icons/hicolor/48x48/apps/gnome-glines.png -share/icons/hicolor/48x48/apps/gnome-gnect.png -share/icons/hicolor/48x48/apps/gnome-gnibbles.png -share/icons/hicolor/48x48/apps/gnome-gnometris.png -share/icons/hicolor/48x48/apps/gnome-iagno.png -share/icons/hicolor/48x48/apps/gnome-klotski.png -share/icons/hicolor/48x48/apps/gnome-mahjongg.png -share/icons/hicolor/48x48/apps/gnome-mines.png -share/icons/hicolor/48x48/apps/gnome-robots.png -share/icons/hicolor/48x48/apps/gnome-samegnome.png -share/icons/hicolor/48x48/apps/gnome-sudoku.png -share/icons/hicolor/48x48/apps/gnome-tali.png -share/icons/hicolor/48x48/apps/gnome-tetravex.png -share/icons/hicolor/scalable/apps/gnome-aisleriot.svg -share/icons/hicolor/scalable/apps/gnome-blackjack.svg -share/icons/hicolor/scalable/apps/gnome-freecell.svg -share/icons/hicolor/scalable/apps/gnome-glchess.svg -share/icons/hicolor/scalable/apps/gnome-glines.svg -share/icons/hicolor/scalable/apps/gnome-gnect.svg -share/icons/hicolor/scalable/apps/gnome-gnibbles.svg -share/icons/hicolor/scalable/apps/gnome-gnometris.svg -share/icons/hicolor/scalable/apps/gnome-iagno.svg -share/icons/hicolor/scalable/apps/gnome-klotski.svg -share/icons/hicolor/scalable/apps/gnome-lightsoff.svg -share/icons/hicolor/scalable/apps/gnome-mahjongg.svg -share/icons/hicolor/scalable/apps/gnome-mines.svg -share/icons/hicolor/scalable/apps/gnome-robots.svg -share/icons/hicolor/scalable/apps/gnome-samegnome.svg -share/icons/hicolor/scalable/apps/gnome-sudoku.svg -share/icons/hicolor/scalable/apps/gnome-tali.svg -share/icons/hicolor/scalable/apps/gnome-tetravex.svg -share/locale/af/LC_MESSAGES/gnome-games.mo -share/locale/am/LC_MESSAGES/gnome-games.mo -share/locale/ar/LC_MESSAGES/gnome-games.mo -share/locale/as/LC_MESSAGES/gnome-games.mo -share/locale/az/LC_MESSAGES/gnome-games.mo -share/locale/be/LC_MESSAGES/gnome-games.mo -share/locale/bg/LC_MESSAGES/gnome-games.mo -share/locale/bn/LC_MESSAGES/gnome-games.mo -share/locale/bn_IN/LC_MESSAGES/gnome-games.mo -share/locale/ca/LC_MESSAGES/gnome-games.mo -share/locale/cs/LC_MESSAGES/gnome-games.mo -share/locale/cy/LC_MESSAGES/gnome-games.mo -share/locale/da/LC_MESSAGES/gnome-games.mo -share/locale/de/LC_MESSAGES/gnome-games.mo -share/locale/dz/LC_MESSAGES/gnome-games.mo -share/locale/el/LC_MESSAGES/gnome-games.mo -share/locale/en_CA/LC_MESSAGES/gnome-games.mo -share/locale/en_GB/LC_MESSAGES/gnome-games.mo -share/locale/es/LC_MESSAGES/gnome-games.mo -share/locale/et/LC_MESSAGES/gnome-games.mo -share/locale/eu/LC_MESSAGES/gnome-games.mo -share/locale/fa/LC_MESSAGES/gnome-games.mo -share/locale/fi/LC_MESSAGES/gnome-games.mo -share/locale/fr/LC_MESSAGES/gnome-games.mo -share/locale/ga/LC_MESSAGES/gnome-games.mo -share/locale/gl/LC_MESSAGES/gnome-games.mo -share/locale/gu/LC_MESSAGES/gnome-games.mo -share/locale/he/LC_MESSAGES/gnome-games.mo -share/locale/hi/LC_MESSAGES/gnome-games.mo -share/locale/hr/LC_MESSAGES/gnome-games.mo -share/locale/hu/LC_MESSAGES/gnome-games.mo -share/locale/id/LC_MESSAGES/gnome-games.mo -share/locale/is/LC_MESSAGES/gnome-games.mo -share/locale/it/LC_MESSAGES/gnome-games.mo -share/locale/ja/LC_MESSAGES/gnome-games.mo -share/locale/ka/LC_MESSAGES/gnome-games.mo -share/locale/kn/LC_MESSAGES/gnome-games.mo -share/locale/ko/LC_MESSAGES/gnome-games.mo -share/locale/ku/LC_MESSAGES/gnome-games.mo -share/locale/lt/LC_MESSAGES/gnome-games.mo -share/locale/lv/LC_MESSAGES/gnome-games.mo -share/locale/mai/LC_MESSAGES/gnome-games.mo -share/locale/mk/LC_MESSAGES/gnome-games.mo -share/locale/ml/LC_MESSAGES/gnome-games.mo -share/locale/mn/LC_MESSAGES/gnome-games.mo -share/locale/mr/LC_MESSAGES/gnome-games.mo -share/locale/ms/LC_MESSAGES/gnome-games.mo -share/locale/nb/LC_MESSAGES/gnome-games.mo -share/locale/ne/LC_MESSAGES/gnome-games.mo -share/locale/nl/LC_MESSAGES/gnome-games.mo -share/locale/nn/LC_MESSAGES/gnome-games.mo -share/locale/oc/LC_MESSAGES/gnome-games.mo -share/locale/or/LC_MESSAGES/gnome-games.mo -share/locale/pa/LC_MESSAGES/gnome-games.mo -share/locale/pl/LC_MESSAGES/gnome-games.mo -share/locale/pt/LC_MESSAGES/gnome-games.mo -share/locale/pt_BR/LC_MESSAGES/gnome-games.mo -share/locale/ro/LC_MESSAGES/gnome-games.mo -share/locale/ru/LC_MESSAGES/gnome-games.mo -share/locale/rw/LC_MESSAGES/gnome-games.mo -share/locale/si/LC_MESSAGES/gnome-games.mo -share/locale/sk/LC_MESSAGES/gnome-games.mo -share/locale/sl/LC_MESSAGES/gnome-games.mo -share/locale/sq/LC_MESSAGES/gnome-games.mo -share/locale/sr/LC_MESSAGES/gnome-games.mo -share/locale/sr@latin/LC_MESSAGES/gnome-games.mo -share/locale/sv/LC_MESSAGES/gnome-games.mo -share/locale/ta/LC_MESSAGES/gnome-games.mo -share/locale/te/LC_MESSAGES/gnome-games.mo -share/locale/th/LC_MESSAGES/gnome-games.mo -share/locale/tr/LC_MESSAGES/gnome-games.mo -share/locale/uk/LC_MESSAGES/gnome-games.mo -share/locale/vi/LC_MESSAGES/gnome-games.mo -share/locale/wa/LC_MESSAGES/gnome-games.mo -share/locale/xh/LC_MESSAGES/gnome-games.mo -share/locale/zh_CN/LC_MESSAGES/gnome-games.mo -share/locale/zh_HK/LC_MESSAGES/gnome-games.mo -share/locale/zh_TW/LC_MESSAGES/gnome-games.mo -share/omf/aisleriot/aisleriot-C.omf -share/omf/aisleriot/aisleriot-ca.omf -share/omf/aisleriot/aisleriot-de.omf -share/omf/aisleriot/aisleriot-es.omf -share/omf/aisleriot/aisleriot-eu.omf -share/omf/aisleriot/aisleriot-fr.omf -share/omf/aisleriot/aisleriot-oc.omf -share/omf/aisleriot/aisleriot-ru.omf -share/omf/aisleriot/aisleriot-sv.omf -share/omf/blackjack/blackjack-C.omf -share/omf/blackjack/blackjack-ca.omf -share/omf/blackjack/blackjack-de.omf -share/omf/blackjack/blackjack-el.omf -share/omf/blackjack/blackjack-en_GB.omf -share/omf/blackjack/blackjack-es.omf -share/omf/blackjack/blackjack-eu.omf -share/omf/blackjack/blackjack-fr.omf -share/omf/blackjack/blackjack-oc.omf -share/omf/blackjack/blackjack-sv.omf -share/omf/glchess/glchess-C.omf -share/omf/glchess/glchess-ca.omf -share/omf/glchess/glchess-de.omf -share/omf/glchess/glchess-el.omf -share/omf/glchess/glchess-en_GB.omf -share/omf/glchess/glchess-es.omf -share/omf/glchess/glchess-eu.omf -share/omf/glchess/glchess-fr.omf -share/omf/glchess/glchess-oc.omf -share/omf/glchess/glchess-pt_BR.omf -share/omf/glchess/glchess-ru.omf -share/omf/glchess/glchess-sv.omf -share/omf/glines/glines-C.omf -share/omf/glines/glines-ca.omf -share/omf/glines/glines-de.omf -share/omf/glines/glines-en_GB.omf -share/omf/glines/glines-es.omf -share/omf/glines/glines-eu.omf -share/omf/glines/glines-fr.omf -share/omf/glines/glines-it.omf -share/omf/glines/glines-oc.omf -share/omf/glines/glines-ru.omf -share/omf/glines/glines-sv.omf -share/omf/glines/glines-tr.omf -share/omf/gnect/gnect-C.omf -share/omf/gnect/gnect-ca.omf -share/omf/gnect/gnect-de.omf -share/omf/gnect/gnect-en_GB.omf -share/omf/gnect/gnect-es.omf -share/omf/gnect/gnect-eu.omf -share/omf/gnect/gnect-fr.omf -share/omf/gnect/gnect-it.omf -share/omf/gnect/gnect-oc.omf -share/omf/gnect/gnect-sv.omf -share/omf/gnibbles/gnibbles-C.omf -share/omf/gnibbles/gnibbles-ca.omf -share/omf/gnibbles/gnibbles-de.omf -share/omf/gnibbles/gnibbles-en_GB.omf -share/omf/gnibbles/gnibbles-es.omf -share/omf/gnibbles/gnibbles-eu.omf -share/omf/gnibbles/gnibbles-fr.omf -share/omf/gnibbles/gnibbles-it.omf -share/omf/gnibbles/gnibbles-oc.omf -share/omf/gnibbles/gnibbles-sv.omf -share/omf/gnobots2/gnobots2-C.omf -share/omf/gnobots2/gnobots2-ca.omf -share/omf/gnobots2/gnobots2-de.omf -share/omf/gnobots2/gnobots2-en_GB.omf -share/omf/gnobots2/gnobots2-es.omf -share/omf/gnobots2/gnobots2-eu.omf -share/omf/gnobots2/gnobots2-fr.omf -share/omf/gnobots2/gnobots2-it.omf -share/omf/gnobots2/gnobots2-oc.omf -share/omf/gnobots2/gnobots2-sv.omf -share/omf/gnome-games/gnobots2-da.omf -share/omf/gnome-games/gtali-da.omf -share/omf/gnome-sudoku/gnome-sudoku-C.omf -share/omf/gnome-sudoku/gnome-sudoku-ca.omf -share/omf/gnome-sudoku/gnome-sudoku-da.omf -share/omf/gnome-sudoku/gnome-sudoku-de.omf -share/omf/gnome-sudoku/gnome-sudoku-el.omf -share/omf/gnome-sudoku/gnome-sudoku-en_GB.omf -share/omf/gnome-sudoku/gnome-sudoku-es.omf -share/omf/gnome-sudoku/gnome-sudoku-eu.omf -share/omf/gnome-sudoku/gnome-sudoku-fr.omf -share/omf/gnome-sudoku/gnome-sudoku-it.omf -share/omf/gnome-sudoku/gnome-sudoku-oc.omf -share/omf/gnome-sudoku/gnome-sudoku-pt_BR.omf -share/omf/gnome-sudoku/gnome-sudoku-ru.omf -share/omf/gnome-sudoku/gnome-sudoku-sv.omf -share/omf/gnometris/gnometris-C.omf -share/omf/gnometris/gnometris-ca.omf -share/omf/gnometris/gnometris-de.omf -share/omf/gnometris/gnometris-el.omf -share/omf/gnometris/gnometris-en_GB.omf -share/omf/gnometris/gnometris-es.omf -share/omf/gnometris/gnometris-eu.omf -share/omf/gnometris/gnometris-fi.omf -share/omf/gnometris/gnometris-fr.omf -share/omf/gnometris/gnometris-it.omf -share/omf/gnometris/gnometris-oc.omf -share/omf/gnometris/gnometris-sv.omf -share/omf/gnomine/gnomine-C.omf -share/omf/gnomine/gnomine-ca.omf -share/omf/gnomine/gnomine-de.omf -share/omf/gnomine/gnomine-el.omf -share/omf/gnomine/gnomine-en_GB.omf -share/omf/gnomine/gnomine-es.omf -share/omf/gnomine/gnomine-eu.omf -share/omf/gnomine/gnomine-fr.omf -share/omf/gnomine/gnomine-it.omf -share/omf/gnomine/gnomine-oc.omf -share/omf/gnomine/gnomine-sv.omf -share/omf/gnotravex/gnotravex-C.omf -share/omf/gnotravex/gnotravex-ca.omf -share/omf/gnotravex/gnotravex-de.omf -share/omf/gnotravex/gnotravex-el.omf -share/omf/gnotravex/gnotravex-en_GB.omf -share/omf/gnotravex/gnotravex-es.omf -share/omf/gnotravex/gnotravex-eu.omf -share/omf/gnotravex/gnotravex-fr.omf -share/omf/gnotravex/gnotravex-it.omf -share/omf/gnotravex/gnotravex-oc.omf -share/omf/gnotravex/gnotravex-ru.omf -share/omf/gnotravex/gnotravex-sv.omf -share/omf/gnotski/gnotski-C.omf -share/omf/gnotski/gnotski-ca.omf -share/omf/gnotski/gnotski-de.omf -share/omf/gnotski/gnotski-en_GB.omf -share/omf/gnotski/gnotski-es.omf -share/omf/gnotski/gnotski-eu.omf -share/omf/gnotski/gnotski-fr.omf -share/omf/gnotski/gnotski-it.omf -share/omf/gnotski/gnotski-oc.omf -share/omf/gnotski/gnotski-sv.omf -share/omf/gtali/gtali-C.omf -share/omf/gtali/gtali-ca.omf -share/omf/gtali/gtali-de.omf -share/omf/gtali/gtali-el.omf -share/omf/gtali/gtali-en_GB.omf -share/omf/gtali/gtali-es.omf -share/omf/gtali/gtali-eu.omf -share/omf/gtali/gtali-fr.omf -share/omf/gtali/gtali-it.omf -share/omf/gtali/gtali-oc.omf -share/omf/gtali/gtali-pt_BR.omf -share/omf/gtali/gtali-sv.omf -share/omf/iagno/iagno-C.omf -share/omf/iagno/iagno-ca.omf -share/omf/iagno/iagno-de.omf -share/omf/iagno/iagno-el.omf -share/omf/iagno/iagno-en_GB.omf -share/omf/iagno/iagno-es.omf -share/omf/iagno/iagno-eu.omf -share/omf/iagno/iagno-fr.omf -share/omf/iagno/iagno-it.omf -share/omf/iagno/iagno-oc.omf -share/omf/iagno/iagno-pt_BR.omf -share/omf/iagno/iagno-sv.omf -share/omf/mahjongg/mahjongg-C.omf -share/omf/mahjongg/mahjongg-ca.omf -share/omf/mahjongg/mahjongg-de.omf -share/omf/mahjongg/mahjongg-el.omf -share/omf/mahjongg/mahjongg-en_GB.omf -share/omf/mahjongg/mahjongg-es.omf -share/omf/mahjongg/mahjongg-eu.omf -share/omf/mahjongg/mahjongg-fr.omf -share/omf/mahjongg/mahjongg-it.omf -share/omf/mahjongg/mahjongg-oc.omf -share/omf/mahjongg/mahjongg-sv.omf -share/omf/same-gnome/same-gnome-C.omf -share/omf/same-gnome/same-gnome-ca.omf -share/omf/same-gnome/same-gnome-de.omf -share/omf/same-gnome/same-gnome-en_GB.omf -share/omf/same-gnome/same-gnome-es.omf -share/omf/same-gnome/same-gnome-eu.omf -share/omf/same-gnome/same-gnome-fr.omf -share/omf/same-gnome/same-gnome-it.omf -share/omf/same-gnome/same-gnome-oc.omf -share/omf/same-gnome/same-gnome-ru.omf -share/omf/same-gnome/same-gnome-sv.omf -share/pixmaps/glchess/board.png -share/pixmaps/glchess/piece.png -share/pixmaps/gnome-sudoku/footprints.png -@dirrm share/pixmaps/gnome-sudoku -@dirrm share/pixmaps/glchess -@dirrm share/omf/same-gnome -@dirrm share/omf/mahjongg -@dirrm share/omf/iagno -@dirrm share/omf/gtali -@dirrm share/omf/gnotski -@dirrm share/omf/gnotravex -@dirrm share/omf/gnomine -@dirrm share/omf/gnometris -@dirrm share/omf/gnome-sudoku -@dirrm share/omf/gnome-games -@dirrm share/omf/gnobots2 -@dirrm share/omf/gnibbles -@dirrm share/omf/gnect -@dirrm share/omf/glines -@dirrm share/omf/glchess -@dirrm share/omf/blackjack -@dirrm share/omf/aisleriot -@dirrm share/gnome/help/same-gnome/sv/figures -@dirrm share/gnome/help/same-gnome/sv -@dirrm share/gnome/help/same-gnome/ru/figures -@dirrm share/gnome/help/same-gnome/ru -@dirrm share/gnome/help/same-gnome/oc/figures -@dirrm share/gnome/help/same-gnome/oc -@dirrm share/gnome/help/same-gnome/it/figures -@dirrm share/gnome/help/same-gnome/it -@dirrm share/gnome/help/same-gnome/fr/figures -@dirrm share/gnome/help/same-gnome/fr -@dirrm share/gnome/help/same-gnome/eu/figures -@dirrm share/gnome/help/same-gnome/eu -@dirrm share/gnome/help/same-gnome/es/figures -@dirrm share/gnome/help/same-gnome/es -@dirrm share/gnome/help/same-gnome/en_GB/figures -@dirrm share/gnome/help/same-gnome/en_GB -@dirrm share/gnome/help/same-gnome/de/figures -@dirrm share/gnome/help/same-gnome/de -@dirrm share/gnome/help/same-gnome/ca/figures -@dirrm share/gnome/help/same-gnome/ca -@dirrm share/gnome/help/same-gnome/C/figures -@dirrm share/gnome/help/same-gnome/C -@dirrm share/gnome/help/same-gnome -@dirrm share/gnome/help/mahjongg/sv/figures -@dirrm share/gnome/help/mahjongg/sv -@dirrm share/gnome/help/mahjongg/oc/figures -@dirrm share/gnome/help/mahjongg/oc -@dirrm share/gnome/help/mahjongg/it/figures -@dirrm share/gnome/help/mahjongg/it -@dirrm share/gnome/help/mahjongg/fr/figures -@dirrm share/gnome/help/mahjongg/fr -@dirrm share/gnome/help/mahjongg/eu/figures -@dirrm share/gnome/help/mahjongg/eu -@dirrm share/gnome/help/mahjongg/es/figures -@dirrm share/gnome/help/mahjongg/es -@dirrm share/gnome/help/mahjongg/en_GB/figures -@dirrm share/gnome/help/mahjongg/en_GB -@dirrm share/gnome/help/mahjongg/el/figures -@dirrm share/gnome/help/mahjongg/el -@dirrm share/gnome/help/mahjongg/de/figures -@dirrm share/gnome/help/mahjongg/de -@dirrm share/gnome/help/mahjongg/ca/figures -@dirrm share/gnome/help/mahjongg/ca -@dirrm share/gnome/help/mahjongg/C/figures -@dirrm share/gnome/help/mahjongg/C -@dirrm share/gnome/help/mahjongg -@dirrm share/gnome/help/iagno/sv/figures -@dirrm share/gnome/help/iagno/sv -@dirrm share/gnome/help/iagno/pt_BR/figures -@dirrm share/gnome/help/iagno/pt_BR -@dirrm share/gnome/help/iagno/oc/figures -@dirrm share/gnome/help/iagno/oc -@dirrm share/gnome/help/iagno/it/figures -@dirrm share/gnome/help/iagno/it -@dirrm share/gnome/help/iagno/fr/figures -@dirrm share/gnome/help/iagno/fr -@dirrm share/gnome/help/iagno/eu/figures -@dirrm share/gnome/help/iagno/eu -@dirrm share/gnome/help/iagno/es/figures -@dirrm share/gnome/help/iagno/es -@dirrm share/gnome/help/iagno/en_GB/figures -@dirrm share/gnome/help/iagno/en_GB -@dirrm share/gnome/help/iagno/el/figures -@dirrm share/gnome/help/iagno/el -@dirrm share/gnome/help/iagno/de/figures -@dirrm share/gnome/help/iagno/de -@dirrm share/gnome/help/iagno/ca/figures -@dirrm share/gnome/help/iagno/ca -@dirrm share/gnome/help/iagno/C/figures -@dirrm share/gnome/help/iagno/C -@dirrm share/gnome/help/iagno -@dirrm share/gnome/help/gtali/sv/figures -@dirrm share/gnome/help/gtali/sv -@dirrm share/gnome/help/gtali/pt_BR/figures -@dirrm share/gnome/help/gtali/pt_BR -@dirrm share/gnome/help/gtali/oc/figures -@dirrm share/gnome/help/gtali/oc -@dirrm share/gnome/help/gtali/it/figures -@dirrm share/gnome/help/gtali/it -@dirrm share/gnome/help/gtali/fr/figures -@dirrm share/gnome/help/gtali/fr -@dirrm share/gnome/help/gtali/eu/figures -@dirrm share/gnome/help/gtali/eu -@dirrm share/gnome/help/gtali/es/figures -@dirrm share/gnome/help/gtali/es -@dirrm share/gnome/help/gtali/en_GB/figures -@dirrm share/gnome/help/gtali/en_GB -@dirrm share/gnome/help/gtali/el/figures -@dirrm share/gnome/help/gtali/el -@dirrm share/gnome/help/gtali/de/figures -@dirrm share/gnome/help/gtali/de -@dirrm share/gnome/help/gtali/da -@dirrm share/gnome/help/gtali/ca/figures -@dirrm share/gnome/help/gtali/ca -@dirrm share/gnome/help/gtali/C/figures -@dirrm share/gnome/help/gtali/C -@dirrm share/gnome/help/gtali -@dirrm share/gnome/help/gnotski/sv/figures -@dirrm share/gnome/help/gnotski/sv -@dirrm share/gnome/help/gnotski/oc/figures -@dirrm share/gnome/help/gnotski/oc -@dirrm share/gnome/help/gnotski/it/figures -@dirrm share/gnome/help/gnotski/it -@dirrm share/gnome/help/gnotski/fr/figures -@dirrm share/gnome/help/gnotski/fr -@dirrm share/gnome/help/gnotski/eu/figures -@dirrm share/gnome/help/gnotski/eu -@dirrm share/gnome/help/gnotski/es/figures -@dirrm share/gnome/help/gnotski/es -@dirrm share/gnome/help/gnotski/en_GB/figures -@dirrm share/gnome/help/gnotski/en_GB -@dirrm share/gnome/help/gnotski/de/figures -@dirrm share/gnome/help/gnotski/de -@dirrm share/gnome/help/gnotski/ca/figures -@dirrm share/gnome/help/gnotski/ca -@dirrm share/gnome/help/gnotski/C/figures -@dirrm share/gnome/help/gnotski/C -@dirrm share/gnome/help/gnotski -@dirrm share/gnome/help/gnotravex/sv/figures -@dirrm share/gnome/help/gnotravex/sv -@dirrm share/gnome/help/gnotravex/ru/figures -@dirrm share/gnome/help/gnotravex/ru -@dirrm share/gnome/help/gnotravex/oc/figures -@dirrm share/gnome/help/gnotravex/oc -@dirrm share/gnome/help/gnotravex/it/figures -@dirrm share/gnome/help/gnotravex/it -@dirrm share/gnome/help/gnotravex/fr/figures -@dirrm share/gnome/help/gnotravex/fr -@dirrm share/gnome/help/gnotravex/eu/figures -@dirrm share/gnome/help/gnotravex/eu -@dirrm share/gnome/help/gnotravex/es/figures -@dirrm share/gnome/help/gnotravex/es -@dirrm share/gnome/help/gnotravex/en_GB/figures -@dirrm share/gnome/help/gnotravex/en_GB -@dirrm share/gnome/help/gnotravex/el/figures -@dirrm share/gnome/help/gnotravex/el -@dirrm share/gnome/help/gnotravex/de/figures -@dirrm share/gnome/help/gnotravex/de -@dirrm share/gnome/help/gnotravex/ca/figures -@dirrm share/gnome/help/gnotravex/ca -@dirrm share/gnome/help/gnotravex/C/figures -@dirrm share/gnome/help/gnotravex/C -@dirrm share/gnome/help/gnotravex -@dirrm share/gnome/help/gnomine/sv/figures -@dirrm share/gnome/help/gnomine/sv -@dirrm share/gnome/help/gnomine/oc/figures -@dirrm share/gnome/help/gnomine/oc -@dirrm share/gnome/help/gnomine/it/figures -@dirrm share/gnome/help/gnomine/it -@dirrm share/gnome/help/gnomine/fr/figures -@dirrm share/gnome/help/gnomine/fr -@dirrm share/gnome/help/gnomine/eu/figures -@dirrm share/gnome/help/gnomine/eu -@dirrm share/gnome/help/gnomine/es/figures -@dirrm share/gnome/help/gnomine/es -@dirrm share/gnome/help/gnomine/en_GB/figures -@dirrm share/gnome/help/gnomine/en_GB -@dirrm share/gnome/help/gnomine/el/figures -@dirrm share/gnome/help/gnomine/el -@dirrm share/gnome/help/gnomine/de/figures -@dirrm share/gnome/help/gnomine/de -@dirrm share/gnome/help/gnomine/ca/figures -@dirrm share/gnome/help/gnomine/ca -@dirrm share/gnome/help/gnomine/C/figures -@dirrm share/gnome/help/gnomine/C -@dirrm share/gnome/help/gnomine -@dirrm share/gnome/help/gnometris/sv -@dirrm share/gnome/help/gnometris/oc -@dirrm share/gnome/help/gnometris/it -@dirrm share/gnome/help/gnometris/fr -@dirrm share/gnome/help/gnometris/fi -@dirrm share/gnome/help/gnometris/eu -@dirrm share/gnome/help/gnometris/es -@dirrm share/gnome/help/gnometris/en_GB -@dirrm share/gnome/help/gnometris/el -@dirrm share/gnome/help/gnometris/de -@dirrm share/gnome/help/gnometris/ca -@dirrm share/gnome/help/gnometris/C -@dirrm share/gnome/help/gnometris -@dirrm share/gnome/help/gnome-sudoku/sv/figures -@dirrm share/gnome/help/gnome-sudoku/sv -@dirrm share/gnome/help/gnome-sudoku/ru/figures -@dirrm share/gnome/help/gnome-sudoku/ru -@dirrm share/gnome/help/gnome-sudoku/pt_BR/figures -@dirrm share/gnome/help/gnome-sudoku/pt_BR -@dirrm share/gnome/help/gnome-sudoku/oc/figures -@dirrm share/gnome/help/gnome-sudoku/oc -@dirrm share/gnome/help/gnome-sudoku/it/figures -@dirrm share/gnome/help/gnome-sudoku/it -@dirrm share/gnome/help/gnome-sudoku/fr/figures -@dirrm share/gnome/help/gnome-sudoku/fr -@dirrm share/gnome/help/gnome-sudoku/eu/figures -@dirrm share/gnome/help/gnome-sudoku/eu -@dirrm share/gnome/help/gnome-sudoku/es/figures -@dirrm share/gnome/help/gnome-sudoku/es -@dirrm share/gnome/help/gnome-sudoku/en_GB/figures -@dirrm share/gnome/help/gnome-sudoku/en_GB -@dirrm share/gnome/help/gnome-sudoku/el/figures -@dirrm share/gnome/help/gnome-sudoku/el -@dirrm share/gnome/help/gnome-sudoku/de/figures -@dirrm share/gnome/help/gnome-sudoku/de -@dirrm share/gnome/help/gnome-sudoku/da/figures -@dirrm share/gnome/help/gnome-sudoku/da -@dirrm share/gnome/help/gnome-sudoku/ca/figures -@dirrm share/gnome/help/gnome-sudoku/ca -@dirrm share/gnome/help/gnome-sudoku/C/figures -@dirrm share/gnome/help/gnome-sudoku/C -@dirrm share/gnome/help/gnome-sudoku -@dirrm share/gnome/help/gnobots2/sv/figures -@dirrm share/gnome/help/gnobots2/sv -@dirrm share/gnome/help/gnobots2/oc/figures -@dirrm share/gnome/help/gnobots2/oc -@dirrm share/gnome/help/gnobots2/it/figures -@dirrm share/gnome/help/gnobots2/it -@dirrm share/gnome/help/gnobots2/fr/figures -@dirrm share/gnome/help/gnobots2/fr -@dirrm share/gnome/help/gnobots2/eu/figures -@dirrm share/gnome/help/gnobots2/eu -@dirrm share/gnome/help/gnobots2/es/figures -@dirrm share/gnome/help/gnobots2/es -@dirrm share/gnome/help/gnobots2/en_GB/figures -@dirrm share/gnome/help/gnobots2/en_GB -@dirrm share/gnome/help/gnobots2/de/figures -@dirrm share/gnome/help/gnobots2/de -@dirrm share/gnome/help/gnobots2/da -@dirrm share/gnome/help/gnobots2/ca/figures -@dirrm share/gnome/help/gnobots2/ca -@dirrm share/gnome/help/gnobots2/C/figures -@dirrm share/gnome/help/gnobots2/C -@dirrm share/gnome/help/gnobots2 -@dirrm share/gnome/help/gnibbles/sv/figures -@dirrm share/gnome/help/gnibbles/sv -@dirrm share/gnome/help/gnibbles/oc/figures -@dirrm share/gnome/help/gnibbles/oc -@dirrm share/gnome/help/gnibbles/it/figures -@dirrm share/gnome/help/gnibbles/it -@dirrm share/gnome/help/gnibbles/fr/figures -@dirrm share/gnome/help/gnibbles/fr -@dirrm share/gnome/help/gnibbles/eu/figures -@dirrm share/gnome/help/gnibbles/eu -@dirrm share/gnome/help/gnibbles/es/figures -@dirrm share/gnome/help/gnibbles/es -@dirrm share/gnome/help/gnibbles/en_GB/figures -@dirrm share/gnome/help/gnibbles/en_GB -@dirrm share/gnome/help/gnibbles/de/figures -@dirrm share/gnome/help/gnibbles/de -@dirrm share/gnome/help/gnibbles/ca/figures -@dirrm share/gnome/help/gnibbles/ca -@dirrm share/gnome/help/gnibbles/C/figures -@dirrm share/gnome/help/gnibbles/C -@dirrm share/gnome/help/gnibbles -@dirrm share/gnome/help/gnect/sv/figures -@dirrm share/gnome/help/gnect/sv -@dirrm share/gnome/help/gnect/oc/figures -@dirrm share/gnome/help/gnect/oc -@dirrm share/gnome/help/gnect/it/figures -@dirrm share/gnome/help/gnect/it -@dirrm share/gnome/help/gnect/fr/figures -@dirrm share/gnome/help/gnect/fr -@dirrm share/gnome/help/gnect/eu/figures -@dirrm share/gnome/help/gnect/eu -@dirrm share/gnome/help/gnect/es/figures -@dirrm share/gnome/help/gnect/es -@dirrm share/gnome/help/gnect/en_GB/figures -@dirrm share/gnome/help/gnect/en_GB -@dirrm share/gnome/help/gnect/de/figures -@dirrm share/gnome/help/gnect/de -@dirrm share/gnome/help/gnect/ca/figures -@dirrm share/gnome/help/gnect/ca -@dirrm share/gnome/help/gnect/C/figures -@dirrm share/gnome/help/gnect/C -@dirrm share/gnome/help/gnect -@dirrm share/gnome/help/glines/tr/figures -@dirrm share/gnome/help/glines/tr -@dirrm share/gnome/help/glines/sv/figures -@dirrm share/gnome/help/glines/sv -@dirrm share/gnome/help/glines/ru/figures -@dirrm share/gnome/help/glines/ru -@dirrm share/gnome/help/glines/oc/figures -@dirrm share/gnome/help/glines/oc -@dirrm share/gnome/help/glines/it/figures -@dirrm share/gnome/help/glines/it -@dirrm share/gnome/help/glines/fr/figures -@dirrm share/gnome/help/glines/fr -@dirrm share/gnome/help/glines/eu/figures -@dirrm share/gnome/help/glines/eu -@dirrm share/gnome/help/glines/es/figures -@dirrm share/gnome/help/glines/es -@dirrm share/gnome/help/glines/en_GB/figures -@dirrm share/gnome/help/glines/en_GB -@dirrm share/gnome/help/glines/de/figures -@dirrm share/gnome/help/glines/de -@dirrm share/gnome/help/glines/ca/figures -@dirrm share/gnome/help/glines/ca -@dirrm share/gnome/help/glines/C/figures -@dirrm share/gnome/help/glines/C -@dirrm share/gnome/help/glines -@dirrm share/gnome/help/glchess/sv/figures -@dirrm share/gnome/help/glchess/sv -@dirrm share/gnome/help/glchess/ru/figures -@dirrm share/gnome/help/glchess/ru -@dirrm share/gnome/help/glchess/pt_BR/figures -@dirrm share/gnome/help/glchess/pt_BR -@dirrm share/gnome/help/glchess/oc/figures -@dirrm share/gnome/help/glchess/oc -@dirrm share/gnome/help/glchess/fr/figures -@dirrm share/gnome/help/glchess/fr -@dirrm share/gnome/help/glchess/eu/figures -@dirrm share/gnome/help/glchess/eu -@dirrm share/gnome/help/glchess/es/figures -@dirrm share/gnome/help/glchess/es -@dirrm share/gnome/help/glchess/en_GB/figures -@dirrm share/gnome/help/glchess/en_GB -@dirrm share/gnome/help/glchess/el/figures -@dirrm share/gnome/help/glchess/el -@dirrm share/gnome/help/glchess/de/figures -@dirrm share/gnome/help/glchess/de -@dirrm share/gnome/help/glchess/ca/figures -@dirrm share/gnome/help/glchess/ca -@dirrm share/gnome/help/glchess/C/figures -@dirrm share/gnome/help/glchess/C -@dirrm share/gnome/help/glchess -@dirrm share/gnome/help/blackjack/sv/figures -@dirrm share/gnome/help/blackjack/sv -@dirrm share/gnome/help/blackjack/oc/figures -@dirrm share/gnome/help/blackjack/oc -@dirrm share/gnome/help/blackjack/fr/figures -@dirrm share/gnome/help/blackjack/fr -@dirrm share/gnome/help/blackjack/eu/figures -@dirrm share/gnome/help/blackjack/eu -@dirrm share/gnome/help/blackjack/es/figures -@dirrm share/gnome/help/blackjack/es -@dirrm share/gnome/help/blackjack/en_GB/figures -@dirrm share/gnome/help/blackjack/en_GB -@dirrm share/gnome/help/blackjack/el/figures -@dirrm share/gnome/help/blackjack/el -@dirrm share/gnome/help/blackjack/de/figures -@dirrm share/gnome/help/blackjack/de -@dirrm share/gnome/help/blackjack/ca/figures -@dirrm share/gnome/help/blackjack/ca -@dirrm share/gnome/help/blackjack/C/figures -@dirrm share/gnome/help/blackjack/C -@dirrm share/gnome/help/blackjack -@dirrm share/gnome/help/aisleriot/sv/figures -@dirrm share/gnome/help/aisleriot/sv -@dirrm share/gnome/help/aisleriot/ru/figures -@dirrm share/gnome/help/aisleriot/ru -@dirrm share/gnome/help/aisleriot/oc/figures -@dirrm share/gnome/help/aisleriot/oc -@dirrm share/gnome/help/aisleriot/fr/figures -@dirrm share/gnome/help/aisleriot/fr -@dirrm share/gnome/help/aisleriot/eu/figures -@dirrm share/gnome/help/aisleriot/eu -@dirrm share/gnome/help/aisleriot/es/figures -@dirrm share/gnome/help/aisleriot/es -@dirrm share/gnome/help/aisleriot/de/figures -@dirrm share/gnome/help/aisleriot/de -@dirrm share/gnome/help/aisleriot/ca/figures -@dirrm share/gnome/help/aisleriot/ca -@dirrm share/gnome/help/aisleriot/C/figures -@dirrm share/gnome/help/aisleriot/C -@dirrm share/gnome/help/aisleriot -@dirrm share/gnome-sudoku/puzzles -@dirrm share/gnome-sudoku -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/same-gnome/themes/2.10 -@dirrm %%DATADIR%%/same-gnome/themes -@dirrm %%DATADIR%%/same-gnome -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/mahjongg/pixmaps -@dirrm %%DATADIR%%/mahjongg/games -@dirrm %%DATADIR%%/mahjongg -@dirrm %%DATADIR%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%%/iagno/pixmaps -@dirrm %%DATADIR%%/iagno -@dirrm %%DATADIR%%/gtali/pixmaps -@dirrm %%DATADIR%%/gtali -@dirrm %%DATADIR%%/gnotski/pixmaps -@dirrm %%DATADIR%%/gnotski -@dirrm %%DATADIR%%/gnomine/pixmaps -@dirrm %%DATADIR%%/gnomine -@dirrm %%DATADIR%%/gnometris/pixmaps -@dirrm %%DATADIR%%/gnometris -@dirrm %%DATADIR%%/gnobots2/pixmaps -@dirrm %%DATADIR%%/gnobots2/games -@dirrm %%DATADIR%%/gnobots2 -@dirrm %%DATADIR%%/gnibbles/pixmaps -@dirrm %%DATADIR%%/gnibbles/games -@dirrm %%DATADIR%%/gnibbles -@dirrm %%DATADIR%%/gnect/pixmaps -@dirrm %%DATADIR%%/gnect -@dirrm %%DATADIR%%/glines/pixmaps -@dirrm %%DATADIR%%/glines -@dirrm %%DATADIR%%/blackjack/pixmaps -@dirrm %%DATADIR%%/blackjack/games -@dirrm %%DATADIR%%/blackjack -@dirrm %%DATADIR%%/aisleriot/games -@dirrm %%DATADIR%%/aisleriot -@dirrm share/gnome-games-common/cards -@dirrm share/gnome-games-common -@dirrm %%DATADIR%% -@dirrm share/glchess -@dirrmtry share/ggz/gnome-games -@dirrmtry share/ggz -@dirrmtry share/applications -@dirrm %%PYTHON_SITELIBDIR%%/gnome_sudoku/gtk_goodies -@dirrm %%PYTHON_SITELIBDIR%%/gnome_sudoku -@dirrm %%PYTHON_SITELIBDIR%%/glchess/ui -@dirrm %%PYTHON_SITELIBDIR%%/glchess/scene/opengl -@dirrm %%PYTHON_SITELIBDIR%%/glchess/scene/cairo -@dirrm %%PYTHON_SITELIBDIR%%/glchess/scene -@dirrm %%PYTHON_SITELIBDIR%%/glchess/gtkui -@dirrm %%PYTHON_SITELIBDIR%%/glchess/ggz -@dirrm %%PYTHON_SITELIBDIR%%/glchess/chess/fics -@dirrm %%PYTHON_SITELIBDIR%%/glchess/chess -@dirrm %%PYTHON_SITELIBDIR%%/glchess -@dirrm lib/gnome-games -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/graphics/eog/Makefile b/graphics/eog/Makefile deleted file mode 100644 index e40c789ac..000000000 --- a/graphics/eog/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: eog2 -# Date created: 21 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/eog/Makefile,v 1.91 2009/03/05 04:45:36 marcus Exp $ -# - -PORTNAME= eog -PORTVERSION= 2.26.0 -CATEGORIES= graphics gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= The Eye Of Gnome image viewer - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack librsvg2 desktopfileutils \ - gnomedesktop -INSTALLS_ICONS= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -GNU_CONFIGURE= yes -GNOME_DESKTOP_VERSION=2 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= eog.schemas - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_EXIF) || (exists(${LOCALBASE}/lib/libexif.so.12) || \ - defined(WITH_EXIF)) -LIB_DEPENDS+= exif.12:${PORTSDIR}/graphics/libexif -.endif - -.if ${HAVE_GNOME:Mpygnome2}!="" -USE_GNOME+= pygnome2 -CONFIGURE_ARGS+=--enable-python -.else -CONFIGURE_ARGS+=--disable-python -.endif - -post-install: - @-update-desktop-database > /dev/null - -.include <bsd.port.post.mk> diff --git a/graphics/eog/distinfo b/graphics/eog/distinfo deleted file mode 100644 index 3e5e3e327..000000000 --- a/graphics/eog/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/eog-2.26.0.tar.bz2) = 5d513046f80bc989e715243d8cee2825 -SHA256 (gnome2/eog-2.26.0.tar.bz2) = f88eab10382b2e48f51d70e2f2b7250798df7cc9a23a9cc97855e8ade6a497a0 -SIZE (gnome2/eog-2.26.0.tar.bz2) = 2418149 diff --git a/graphics/eog/pkg-descr b/graphics/eog/pkg-descr deleted file mode 100644 index 920f1863a..000000000 --- a/graphics/eog/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -This is the Eye of Gnome, a GNOME 2 image viewer and cataloging -application. It provides inline image viewing support for -nautilus. - -WWW: http://www.gnome.org/gnome-office/eog.shtml diff --git a/graphics/eog/pkg-plist b/graphics/eog/pkg-plist deleted file mode 100644 index 971722944..000000000 --- a/graphics/eog/pkg-plist +++ /dev/null @@ -1,435 +0,0 @@ -bin/eog -include/eog-2.20/eog/eog-application.h -include/eog-2.20/eog/eog-debug.h -include/eog-2.20/eog/eog-dialog.h -include/eog-2.20/eog/eog-enums.h -include/eog-2.20/eog/eog-error-message-area.h -include/eog-2.20/eog/eog-exif-details.h -include/eog-2.20/eog/eog-exif-util.h -include/eog-2.20/eog/eog-file-chooser.h -include/eog-2.20/eog/eog-image-save-info.h -include/eog-2.20/eog/eog-image.h -include/eog-2.20/eog/eog-job-queue.h -include/eog-2.20/eog/eog-jobs.h -include/eog-2.20/eog/eog-list-store.h -include/eog-2.20/eog/eog-message-area.h -include/eog-2.20/eog/eog-plugin.h -include/eog-2.20/eog/eog-properties-dialog.h -include/eog-2.20/eog/eog-scroll-view.h -include/eog-2.20/eog/eog-sidebar.h -include/eog-2.20/eog/eog-statusbar.h -include/eog-2.20/eog/eog-thumb-nav.h -include/eog-2.20/eog/eog-thumb-view.h -include/eog-2.20/eog/eog-thumbnail.h -include/eog-2.20/eog/eog-transform.h -include/eog-2.20/eog/eog-window.h -lib/eog/plugins/fullscreen.eog-plugin -lib/eog/plugins/libfullscreen.la -lib/eog/plugins/libfullscreen.so -lib/eog/plugins/libreload.la -lib/eog/plugins/libreload.so -lib/eog/plugins/libstatusbar-date.la -lib/eog/plugins/libstatusbar-date.so -lib/eog/plugins/reload.eog-plugin -lib/eog/plugins/statusbar-date.eog-plugin -libdata/pkgconfig/eog.pc -share/applications/eog.desktop -%%DOCSDIR%%/EogApplication.html -%%DOCSDIR%%/EogDialog.html -%%DOCSDIR%%/EogExifDetails.html -%%DOCSDIR%%/EogFileChooser.html -%%DOCSDIR%%/EogImage.html -%%DOCSDIR%%/EogImageSaveInfo.html -%%DOCSDIR%%/EogJobCopy.html -%%DOCSDIR%%/EogListStore.html -%%DOCSDIR%%/EogMessageArea.html -%%DOCSDIR%%/EogMetadataReaderJpg.html -%%DOCSDIR%%/EogMetadataReaderPng.html -%%DOCSDIR%%/EogPixbufCellRenderer.html -%%DOCSDIR%%/EogPlugin.html -%%DOCSDIR%%/EogPluginManager.html -%%DOCSDIR%%/EogPreferencesDialog.html -%%DOCSDIR%%/EogPrintImageSetup.html -%%DOCSDIR%%/EogPrintPreview.html -%%DOCSDIR%%/EogPropertiesDialog.html -%%DOCSDIR%%/EogScrollView.html -%%DOCSDIR%%/EogSidebar.html -%%DOCSDIR%%/EogStatusbar.html -%%DOCSDIR%%/EogThumbNav.html -%%DOCSDIR%%/EogThumbView.html -%%DOCSDIR%%/EogTransform.html -%%DOCSDIR%%/EogURIConverter.html -%%DOCSDIR%%/EogWindow.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/ch03.html -%%DOCSDIR%%/ch04.html -%%DOCSDIR%%/ch05.html -%%DOCSDIR%%/ch06.html -%%DOCSDIR%%/ch07.html -%%DOCSDIR%%/eog-eog-config-keys.html -%%DOCSDIR%%/eog-eog-debug.html -%%DOCSDIR%%/eog-eog-error-message-area.html -%%DOCSDIR%%/eog-eog-exif-util.html -%%DOCSDIR%%/eog-eog-job-queue.html -%%DOCSDIR%%/eog-eog-metadata-reader.html -%%DOCSDIR%%/eog-eog-pixbuf-util.html -%%DOCSDIR%%/eog-eog-plugin-engine.html -%%DOCSDIR%%/eog-eog-print.html -%%DOCSDIR%%/eog-eog-save-as-dialog-helper.html -%%DOCSDIR%%/eog-eog-session.html -%%DOCSDIR%%/eog-eog-thumbnail.html -%%DOCSDIR%%/eog-eog-util.html -%%DOCSDIR%%/eog-uta.html -%%DOCSDIR%%/eog-zoom.html -%%DOCSDIR%%/eog.devhelp -%%DOCSDIR%%/eog.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%DATADIR%%/eog-image-properties-dialog.ui -%%DATADIR%%/eog-multiple-save-as-dialog.ui -%%DATADIR%%/eog-preferences-dialog.ui -%%DATADIR%%/eog-toolbar.xml -%%DATADIR%%/eog-ui.xml -%%DATADIR%%/gtkrc -%%DATADIR%%/icons/hicolor/16x16/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/16x16/actions/eog-plugin.png -%%DATADIR%%/icons/hicolor/16x16/actions/slideshow-play.png -%%DATADIR%%/icons/hicolor/22x22/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/22x22/actions/eog-plugin.png -%%DATADIR%%/icons/hicolor/22x22/actions/slideshow-play.png -%%DATADIR%%/icons/hicolor/24x24/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/24x24/actions/slideshow-play.png -%%DATADIR%%/icons/hicolor/32x32/actions/eog-image-collection.png -%%DATADIR%%/icons/hicolor/32x32/actions/eog-plugin.png -%%DATADIR%%/icons/hicolor/32x32/actions/slideshow-play.png -%%DATADIR%%/icons/hicolor/48x48/actions/slideshow-play.png -%%DATADIR%%/icons/hicolor/scalable/actions/eog-image-collection.svg -%%DATADIR%%/icons/hicolor/scalable/actions/eog-plugin.svg -%%DATADIR%%/icons/hicolor/scalable/actions/slideshow-play.svg -%%DATADIR%%/pixmaps/thumbnail-frame.png -share/gnome/help/eog/C/eog.xml -share/gnome/help/eog/C/figures/eog_save_as_window.png -share/gnome/help/eog/C/figures/eog_start_window.png -share/gnome/help/eog/C/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/C/legal.xml -share/gnome/help/eog/ar/eog.xml -share/gnome/help/eog/ar/figures/eog_save_as_window.png -share/gnome/help/eog/ar/figures/eog_start_window.png -share/gnome/help/eog/ar/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/ca/eog.xml -share/gnome/help/eog/ca/figures/eog_save_as_window.png -share/gnome/help/eog/ca/figures/eog_start_window.png -share/gnome/help/eog/ca/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/da/eog.xml -share/gnome/help/eog/da/figures/eog_save_as_window.png -share/gnome/help/eog/da/figures/eog_start_window.png -share/gnome/help/eog/da/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/de/eog.xml -share/gnome/help/eog/de/figures/eog_save_as_window.png -share/gnome/help/eog/de/figures/eog_start_window.png -share/gnome/help/eog/de/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/en_GB/eog.xml -share/gnome/help/eog/en_GB/figures/eog_save_as_window.png -share/gnome/help/eog/en_GB/figures/eog_start_window.png -share/gnome/help/eog/en_GB/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/es/eog.xml -share/gnome/help/eog/es/figures/eog_save_as_window.png -share/gnome/help/eog/es/figures/eog_start_window.png -share/gnome/help/eog/es/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/eu/eog.xml -share/gnome/help/eog/eu/figures/eog_save_as_window.png -share/gnome/help/eog/eu/figures/eog_start_window.png -share/gnome/help/eog/eu/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/fr/eog.xml -share/gnome/help/eog/fr/figures/eog_save_as_window.png -share/gnome/help/eog/fr/figures/eog_start_window.png -share/gnome/help/eog/fr/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/it/eog.xml -share/gnome/help/eog/it/figures/eog_save_as_window.png -share/gnome/help/eog/it/figures/eog_start_window.png -share/gnome/help/eog/it/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/ja/eog.xml -share/gnome/help/eog/ja/figures/eog_save_as_window.png -share/gnome/help/eog/ja/figures/eog_start_window.png -share/gnome/help/eog/ja/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/ko/eog.xml -share/gnome/help/eog/ko/figures/eog_save_as_window.png -share/gnome/help/eog/ko/figures/eog_start_window.png -share/gnome/help/eog/ko/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/oc/eog.xml -share/gnome/help/eog/oc/figures/eog_save_as_window.png -share/gnome/help/eog/oc/figures/eog_start_window.png -share/gnome/help/eog/oc/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/pa/eog.xml -share/gnome/help/eog/pa/figures/eog_save_as_window.png -share/gnome/help/eog/pa/figures/eog_start_window.png -share/gnome/help/eog/pa/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/pl/eog.xml -share/gnome/help/eog/pl/figures/eog_save_as_window.png -share/gnome/help/eog/pl/figures/eog_start_window.png -share/gnome/help/eog/pl/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/pt_BR/eog.xml -share/gnome/help/eog/pt_BR/figures/eog_save_as_window.png -share/gnome/help/eog/pt_BR/figures/eog_start_window.png -share/gnome/help/eog/pt_BR/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/ru/eog.xml -share/gnome/help/eog/ru/figures/eog_save_as_window.png -share/gnome/help/eog/ru/figures/eog_start_window.png -share/gnome/help/eog/ru/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/sv/eog.xml -share/gnome/help/eog/sv/figures/eog_save_as_window.png -share/gnome/help/eog/sv/figures/eog_start_window.png -share/gnome/help/eog/sv/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/th/eog.xml -share/gnome/help/eog/th/figures/eog_save_as_window.png -share/gnome/help/eog/th/figures/eog_start_window.png -share/gnome/help/eog/th/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/uk/eog.xml -share/gnome/help/eog/uk/figures/eog_save_as_window.png -share/gnome/help/eog/uk/figures/eog_start_window.png -share/gnome/help/eog/uk/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/zh_CN/eog.xml -share/gnome/help/eog/zh_CN/figures/eog_save_as_window.png -share/gnome/help/eog/zh_CN/figures/eog_start_window.png -share/gnome/help/eog/zh_CN/figures/eog_toolbar_editor_window.png -share/gnome/help/eog/zh_TW/eog.xml -share/gnome/help/eog/zh_TW/figures/eog_save_as_window.png -share/gnome/help/eog/zh_TW/figures/eog_start_window.png -share/gnome/help/eog/zh_TW/figures/eog_toolbar_editor_window.png -share/icons/hicolor/16x16/apps/eog.png -share/icons/hicolor/22x22/apps/eog.png -share/icons/hicolor/24x24/apps/eog.png -share/icons/hicolor/32x32/apps/eog.png -share/icons/hicolor/scalable/apps/eog.svg -share/locale/af/LC_MESSAGES/eog.mo -share/locale/am/LC_MESSAGES/eog.mo -share/locale/ar/LC_MESSAGES/eog.mo -share/locale/as/LC_MESSAGES/eog.mo -share/locale/az/LC_MESSAGES/eog.mo -share/locale/be/LC_MESSAGES/eog.mo -share/locale/be@latin/LC_MESSAGES/eog.mo -share/locale/bg/LC_MESSAGES/eog.mo -share/locale/bn/LC_MESSAGES/eog.mo -share/locale/bn_IN/LC_MESSAGES/eog.mo -share/locale/bs/LC_MESSAGES/eog.mo -share/locale/ca/LC_MESSAGES/eog.mo -share/locale/cs/LC_MESSAGES/eog.mo -share/locale/cy/LC_MESSAGES/eog.mo -share/locale/da/LC_MESSAGES/eog.mo -share/locale/de/LC_MESSAGES/eog.mo -share/locale/dz/LC_MESSAGES/eog.mo -share/locale/el/LC_MESSAGES/eog.mo -share/locale/en_CA/LC_MESSAGES/eog.mo -share/locale/en_GB/LC_MESSAGES/eog.mo -share/locale/es/LC_MESSAGES/eog.mo -share/locale/et/LC_MESSAGES/eog.mo -share/locale/eu/LC_MESSAGES/eog.mo -share/locale/fa/LC_MESSAGES/eog.mo -share/locale/fi/LC_MESSAGES/eog.mo -share/locale/fr/LC_MESSAGES/eog.mo -share/locale/fur/LC_MESSAGES/eog.mo -share/locale/ga/LC_MESSAGES/eog.mo -share/locale/gl/LC_MESSAGES/eog.mo -share/locale/gu/LC_MESSAGES/eog.mo -share/locale/he/LC_MESSAGES/eog.mo -share/locale/hi/LC_MESSAGES/eog.mo -share/locale/hr/LC_MESSAGES/eog.mo -share/locale/hu/LC_MESSAGES/eog.mo -share/locale/id/LC_MESSAGES/eog.mo -share/locale/is/LC_MESSAGES/eog.mo -share/locale/it/LC_MESSAGES/eog.mo -share/locale/ja/LC_MESSAGES/eog.mo -share/locale/ka/LC_MESSAGES/eog.mo -share/locale/kn/LC_MESSAGES/eog.mo -share/locale/ko/LC_MESSAGES/eog.mo -share/locale/ks/LC_MESSAGES/eog.mo -share/locale/ku/LC_MESSAGES/eog.mo -share/locale/lt/LC_MESSAGES/eog.mo -share/locale/lv/LC_MESSAGES/eog.mo -share/locale/mai/LC_MESSAGES/eog.mo -share/locale/mg/LC_MESSAGES/eog.mo -share/locale/mk/LC_MESSAGES/eog.mo -share/locale/ml/LC_MESSAGES/eog.mo -share/locale/mn/LC_MESSAGES/eog.mo -share/locale/mr/LC_MESSAGES/eog.mo -share/locale/ms/LC_MESSAGES/eog.mo -share/locale/nb/LC_MESSAGES/eog.mo -share/locale/ne/LC_MESSAGES/eog.mo -share/locale/nl/LC_MESSAGES/eog.mo -share/locale/nn/LC_MESSAGES/eog.mo -share/locale/nso/LC_MESSAGES/eog.mo -share/locale/oc/LC_MESSAGES/eog.mo -share/locale/or/LC_MESSAGES/eog.mo -share/locale/pa/LC_MESSAGES/eog.mo -share/locale/pl/LC_MESSAGES/eog.mo -share/locale/ps/LC_MESSAGES/eog.mo -share/locale/pt/LC_MESSAGES/eog.mo -share/locale/pt_BR/LC_MESSAGES/eog.mo -share/locale/ro/LC_MESSAGES/eog.mo -share/locale/ru/LC_MESSAGES/eog.mo -share/locale/rw/LC_MESSAGES/eog.mo -share/locale/si/LC_MESSAGES/eog.mo -share/locale/sk/LC_MESSAGES/eog.mo -share/locale/sl/LC_MESSAGES/eog.mo -share/locale/sq/LC_MESSAGES/eog.mo -share/locale/sr/LC_MESSAGES/eog.mo -share/locale/sr@latin/LC_MESSAGES/eog.mo -share/locale/sv/LC_MESSAGES/eog.mo -share/locale/ta/LC_MESSAGES/eog.mo -share/locale/te/LC_MESSAGES/eog.mo -share/locale/th/LC_MESSAGES/eog.mo -share/locale/tk/LC_MESSAGES/eog.mo -share/locale/tr/LC_MESSAGES/eog.mo -share/locale/ug/LC_MESSAGES/eog.mo -share/locale/uk/LC_MESSAGES/eog.mo -share/locale/uz/LC_MESSAGES/eog.mo -share/locale/uz@cyrillic/LC_MESSAGES/eog.mo -share/locale/vi/LC_MESSAGES/eog.mo -share/locale/wa/LC_MESSAGES/eog.mo -share/locale/xh/LC_MESSAGES/eog.mo -share/locale/zh_CN/LC_MESSAGES/eog.mo -share/locale/zh_HK/LC_MESSAGES/eog.mo -share/locale/zh_TW/LC_MESSAGES/eog.mo -share/locale/zu/LC_MESSAGES/eog.mo -share/omf/eog/eog-C.omf -share/omf/eog/eog-ar.omf -share/omf/eog/eog-ca.omf -share/omf/eog/eog-da.omf -share/omf/eog/eog-de.omf -share/omf/eog/eog-en_GB.omf -share/omf/eog/eog-es.omf -share/omf/eog/eog-eu.omf -share/omf/eog/eog-fr.omf -share/omf/eog/eog-it.omf -share/omf/eog/eog-ja.omf -share/omf/eog/eog-ko.omf -share/omf/eog/eog-oc.omf -share/omf/eog/eog-pa.omf -share/omf/eog/eog-pl.omf -share/omf/eog/eog-pt_BR.omf -share/omf/eog/eog-ru.omf -share/omf/eog/eog-sv.omf -share/omf/eog/eog-th.omf -share/omf/eog/eog-uk.omf -share/omf/eog/eog-zh_CN.omf -share/omf/eog/eog-zh_TW.omf -@dirrm share/omf/eog -@dirrm share/gnome/help/eog/zh_TW/figures -@dirrm share/gnome/help/eog/zh_TW -@dirrm share/gnome/help/eog/zh_CN/figures -@dirrm share/gnome/help/eog/zh_CN -@dirrm share/gnome/help/eog/uk/figures -@dirrm share/gnome/help/eog/uk -@dirrm share/gnome/help/eog/th/figures -@dirrm share/gnome/help/eog/th -@dirrm share/gnome/help/eog/sv/figures -@dirrm share/gnome/help/eog/sv -@dirrm share/gnome/help/eog/ru/figures -@dirrm share/gnome/help/eog/ru -@dirrm share/gnome/help/eog/pt_BR/figures -@dirrm share/gnome/help/eog/pt_BR -@dirrm share/gnome/help/eog/pl/figures -@dirrm share/gnome/help/eog/pl -@dirrm share/gnome/help/eog/pa/figures -@dirrm share/gnome/help/eog/pa -@dirrm share/gnome/help/eog/oc/figures -@dirrm share/gnome/help/eog/oc -@dirrm share/gnome/help/eog/ko/figures -@dirrm share/gnome/help/eog/ko -@dirrm share/gnome/help/eog/ja/figures -@dirrm share/gnome/help/eog/ja -@dirrm share/gnome/help/eog/it/figures -@dirrm share/gnome/help/eog/it -@dirrm share/gnome/help/eog/fr/figures -@dirrm share/gnome/help/eog/fr -@dirrm share/gnome/help/eog/eu/figures -@dirrm share/gnome/help/eog/eu -@dirrm share/gnome/help/eog/es/figures -@dirrm share/gnome/help/eog/es -@dirrm share/gnome/help/eog/en_GB/figures -@dirrm share/gnome/help/eog/en_GB -@dirrm share/gnome/help/eog/de/figures -@dirrm share/gnome/help/eog/de -@dirrm share/gnome/help/eog/da/figures -@dirrm share/gnome/help/eog/da -@dirrm share/gnome/help/eog/ca/figures -@dirrm share/gnome/help/eog/ca -@dirrm share/gnome/help/eog/ar/figures -@dirrm share/gnome/help/eog/ar -@dirrm share/gnome/help/eog/C/figures -@dirrm share/gnome/help/eog/C -@dirrm share/gnome/help/eog -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/48x48/actions -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@dirrm lib/eog/plugins -@dirrm lib/eog -@dirrm include/eog-2.20/eog -@dirrm include/eog-2.20 -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ks/LC_MESSAGES -@dirrmtry share/locale/ks -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/graphics/epdfview/Makefile b/graphics/epdfview/Makefile deleted file mode 100644 index c0ac24cac..000000000 --- a/graphics/epdfview/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: epdfview -# Date created: 2006/06/01 -# Whom: chinsan <chinsan.tw@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= epdfview -PORTVERSION= 0.1.7 -PORTREVISION= 2 -CATEGORIES= graphics print gnome -MASTER_SITES= http://trac.emma-soft.com/epdfview/chrome/site/releases/ \ - LOCAL/chinsan - -MAINTAINER= chinsan@FreeBSD.org -COMMENT= A lightweight PDF document viewer - -BUILD_DEPENDS= cppunit-config:${PORTSDIR}/devel/cppunit -LIB_DEPENDS= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk - -USE_BZIP2= yes -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -USE_ICONV= yes -USE_GMAKE= yes -USE_GNOME= gtk20 intlhack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -OPTIONS= CUPS "Use cups printing system" off \ - NLS "Native language support" on - -.include <bsd.port.pre.mk> - -.if defined(WITH_CUPS) -CONFIGURE_ARGS+=--with-cups -LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base -.else -CONFIGURE_ARGS+=--without-cups -.endif - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -post-install: - ${MKDIR} ${PREFIX}/share/applications - ${INSTALL_DATA} ${WRKSRC}/data/${PORTNAME}.desktop ${PREFIX}/share/applications/ - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/graphics/epdfview/distinfo b/graphics/epdfview/distinfo deleted file mode 100644 index 0d58288c1..000000000 --- a/graphics/epdfview/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (epdfview-0.1.7.tar.bz2) = 1919bb19c16ef0a97d48b0a8303d3c7b -SHA256 (epdfview-0.1.7.tar.bz2) = 0afbb0f348d4ba916cf58da48b4749b7cca6a9038136b27dc652161913704ae8 -SIZE (epdfview-0.1.7.tar.bz2) = 443609 diff --git a/graphics/epdfview/files/patch-MainView.cxx b/graphics/epdfview/files/patch-MainView.cxx deleted file mode 100644 index 7ef5f1bf6..000000000 --- a/graphics/epdfview/files/patch-MainView.cxx +++ /dev/null @@ -1,33 +0,0 @@ ---- src/gtk/MainView.cxx.orig 2009-03-01 05:00:55.000000000 +0800 -+++ src/gtk/MainView.cxx 2009-03-28 12:18:20.000000000 +0800 -@@ -77,7 +77,7 @@ - static void main_window_zoom_out_cb (GtkWidget *, gpointer); - static void main_window_zoom_width_cb (GtkToggleAction *, gpointer); - static void main_window_set_page_mode (GtkRadioAction *, GtkRadioAction *, gpointer); --static void main_window_page_scrolled_cb (GtkWidget *widget, GdkEventScroll *event, gpointer data); -+static gboolean main_window_page_scrolled_cb (GtkWidget *widget, GdkEventScroll *event, gpointer data); - - #if defined (HAVE_CUPS) - static void main_window_print_cb (GtkWidget *, gpointer); -@@ -1479,18 +1479,19 @@ - pter->setPageMode (mode); - } - --void -+gboolean - main_window_page_scrolled_cb (GtkWidget *widget, GdkEventScroll *event, gpointer data) - { - g_assert ( NULL != data && "The data parameter is NULL."); - - MainPter *pter = (MainPter *)data; - // Only zoom when the CTRL-Button is down... -- if ( !(event->state & GDK_CONTROL_MASK) ) return; -+ if ( !(event->state & GDK_CONTROL_MASK) ) return FALSE; - if ( event->direction == GDK_SCROLL_UP ) { - pter->zoomInActivated (); - } else if ( event->direction == GDK_SCROLL_DOWN ) { - pter->zoomOutActivated (); - } -+ return TRUE; - } - diff --git a/graphics/epdfview/pkg-descr b/graphics/epdfview/pkg-descr deleted file mode 100644 index 8f6a402a7..000000000 --- a/graphics/epdfview/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -ePDFView is a free lightweight PDF document viewer using Poppler and GTK+ -libraries. - -The aim of ePDFView is to make a simple PDF document viewer, in the lines of -Evince but without using the Gnome libraries. - -WWW: http://www.emma-soft.com/projects/epdfview/ diff --git a/graphics/epdfview/pkg-plist b/graphics/epdfview/pkg-plist deleted file mode 100644 index 3e69d34f9..000000000 --- a/graphics/epdfview/pkg-plist +++ /dev/null @@ -1,33 +0,0 @@ -bin/epdfview -%%NLS%%share/locale/ca/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/cs/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/de/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/el/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/es/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/eu/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/fr/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/it/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/ja/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/pl/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/pt_PT/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/ru/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/sv/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/vi/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/epdfview.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/epdfview.mo -share/applications/epdfview.desktop -%%DATADIR%%/pixmaps/icon_epdfview-24.png -%%DATADIR%%/pixmaps/icon_epdfview-32.png -%%DATADIR%%/pixmaps/icon_epdfview-48.png -%%DATADIR%%/pixmaps/stock_find_next_24.png -%%DATADIR%%/pixmaps/stock_find_previous_24.png -%%DATADIR%%/pixmaps/stock_rotate-90.png -%%DATADIR%%/pixmaps/stock_rotate-270.png -%%DATADIR%%/pixmaps/stock_zoom-page-width.png -%%DATADIR%%/ui/epdfview-ui-print.xml -%%DATADIR%%/ui/epdfview-ui.xml -@dirrmtry share/applications -@dirrmtry %%DATADIR%%/pixmaps -@dirrmtry %%DATADIR%%/ui -@dirrmtry %%DATADIR%% diff --git a/graphics/evince/Makefile b/graphics/evince/Makefile deleted file mode 100644 index 15f9e1768..000000000 --- a/graphics/evince/Makefile +++ /dev/null @@ -1,121 +0,0 @@ -# New ports collection makefile for: evince -# Date created: 09 January 2005 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/evince/Makefile,v 1.119 2009/03/14 17:27:26 marcus Exp $ -# - -PORTNAME= evince -PORTVERSION= 2.26.0 -CATEGORIES= graphics print gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 multi-format document viewer - -LIB_DEPENDS= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk \ - spectre.1:${PORTSDIR}/print/libspectre - -USE_LDCONFIG= yes -USE_BZIP2= yes -USE_AUTOTOOLS= libtool:15 -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_GMAKE= yes -INSTALLS_OMF= yes -USE_GNOME= gnomehack intlhack gnomeprefix desktopfileutils \ - gnomedocutils ltasneededhack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-print=gtk - -GCONF_SCHEMAS= evince.schemas evince-thumbnailer.schemas \ - evince-thumbnailer-ps.schemas - -MAN1= evince.1 - -OPTIONS= DVI "Enable DVI viewer support" off \ - T1LIB "Enable T1LIB for TYPE1 fonts to DVI (Enables DVI)" off \ - NAUTILUS "Enable Nautilus plugin" on \ - DBUS "Enable D-BUS support" on \ - COMICS "Enable comic book archives support" on \ - IMPRESS "Enable Impress presentations support" off \ - DJVU "Enable DJVU support" off - -.include <bsd.port.pre.mk> - -.if defined(PACKAGE_BUILDING) || exists(${LOCALBASE}/lib/libdbus-glib-1.so) -WITH_DBUS= yes -.endif - -.if defined(WITH_DVI) || defined(WITH_T1LIB) || exists(${LOCALBASE}/lib/libkpathsea.a) -BUILD_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base -RUN_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base - -CONFIGURE_ARGS+= --enable-dvi -GCONF_SCHEMAS+= evince-thumbnailer-dvi.schemas -PLIST_SUB+= DVI="" -. if defined(WITH_T1LIB) -LIB_DEPENDS+= t1.5:${PORTSDIR}/devel/t1lib - -CONFIGURE_ARGS+= --enable-t1lib -. endif -.else -PLIST_SUB+= DVI="@comment " -.endif - -.if !defined(WITHOUT_NAUTILUS) -USE_GNOME+= nautilus2 -CONFIGURE_ARGS+= --enable-nautilus -PLIST_SUB+= NAUTILUS="" -.else -BUILD_DEPENDS+= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme -RUN_DEPENDS+= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme -LIB_DEPENDS+= gnome-keyring.0:${PORTSDIR}/security/gnome-keyring -USE_GNOME+= libglade2 -CONFIGURE_ARGS+= --disable-nautilus -PLIST_SUB+= NAUTILUS="@comment " -.endif - -.if defined(WITH_IMPRESS) -CONFIGURE_ARGS+= --enable-impress -PLIST_SUB+= IMPRESS="" -.else -CONFIGURE_ARGS+= --disable-impress -PLIST_SUB+= IMPRESS="@comment " -.endif - -.if defined(WITH_DJVU) -LIB_DEPENDS+= djvulibre.21:${PORTSDIR}/graphics/djvulibre-nox11 -CONFIGURE_ARGS+= --enable-djvu -GCONF_SCHEMAS+= evince-thumbnailer-djvu.schemas -PLIST_SUB+= DJVU="" -.else -CONFIGURE_ARGS+= --disable-djvu -PLIST_SUB+= DJVU="@comment " -.endif - -.if !defined(WITHOUT_DBUS) -LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib -.endif - -.if !defined(WITHOUT_COMICS) -RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip -CONFIGURE_ARGS+= --enable-comics -GCONF_SCHEMAS+= evince-thumbnailer-comics.schemas -PLIST_SUB+= COMICS="" -.else -CONFIGURE_ARGS+= --disable-comics -PLIST_SUB+= COMICS="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|execinfo.h|#|g' \ - ${WRKSRC}/configure - -post-install: - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/graphics/evince/distinfo b/graphics/evince/distinfo deleted file mode 100644 index 1f46e64b1..000000000 --- a/graphics/evince/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/evince-2.26.0.tar.bz2) = 11c440e48702231e40066a78aae56f84 -SHA256 (gnome2/evince-2.26.0.tar.bz2) = c1b92f887abcacd3e38b84ba6abefeefc7730bf6b90d21304f020199db2e54f3 -SIZE (gnome2/evince-2.26.0.tar.bz2) = 1856736 diff --git a/graphics/evince/pkg-descr b/graphics/evince/pkg-descr deleted file mode 100644 index 800f6fcd3..000000000 --- a/graphics/evince/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Evince is a document viewer for multiple document formats including PDF and -Postscript. The goal of evince is to replace document viewers such as ggv and -gpdf with a single, simple application. - -WWW: http://www.gnome.org/projects/evince/ diff --git a/graphics/evince/pkg-plist b/graphics/evince/pkg-plist deleted file mode 100644 index 6cc5588fd..000000000 --- a/graphics/evince/pkg-plist +++ /dev/null @@ -1,439 +0,0 @@ -bin/evince -bin/evince-thumbnailer -include/evince/2.25/evince-document.h -include/evince/2.25/evince-view.h -include/evince/2.25/libdocument/ev-async-renderer.h -include/evince/2.25/libdocument/ev-attachment.h -include/evince/2.25/libdocument/ev-backends-manager.h -include/evince/2.25/libdocument/ev-document-factory.h -include/evince/2.25/libdocument/ev-document-find.h -include/evince/2.25/libdocument/ev-document-fonts.h -include/evince/2.25/libdocument/ev-document-forms.h -include/evince/2.25/libdocument/ev-document-images.h -include/evince/2.25/libdocument/ev-document-info.h -include/evince/2.25/libdocument/ev-document-layers.h -include/evince/2.25/libdocument/ev-document-links.h -include/evince/2.25/libdocument/ev-document-misc.h -include/evince/2.25/libdocument/ev-document-security.h -include/evince/2.25/libdocument/ev-document-thumbnails.h -include/evince/2.25/libdocument/ev-document-transition.h -include/evince/2.25/libdocument/ev-document-type-builtins.h -include/evince/2.25/libdocument/ev-document.h -include/evince/2.25/libdocument/ev-file-exporter.h -include/evince/2.25/libdocument/ev-file-helpers.h -include/evince/2.25/libdocument/ev-form-field.h -include/evince/2.25/libdocument/ev-image.h -include/evince/2.25/libdocument/ev-init.h -include/evince/2.25/libdocument/ev-layer.h -include/evince/2.25/libdocument/ev-link-action.h -include/evince/2.25/libdocument/ev-link-dest.h -include/evince/2.25/libdocument/ev-link.h -include/evince/2.25/libdocument/ev-page.h -include/evince/2.25/libdocument/ev-render-context.h -include/evince/2.25/libdocument/ev-selection.h -include/evince/2.25/libdocument/ev-transition-effect.h -include/evince/2.25/libdocument/ev-version.h -include/evince/2.25/libview/ev-job-scheduler.h -include/evince/2.25/libview/ev-jobs.h -include/evince/2.25/libview/ev-page-cache.h -include/evince/2.25/libview/ev-view-type-builtins.h -include/evince/2.25/libview/ev-view.h -%%COMICS%%lib/evince/1/backends/comicsdocument.evince-backend -%%DJVU%%lib/evince/1/backends/djvudocument.evince-backend -%%DVI%%lib/evince/1/backends/dvidocument.evince-backend -%%IMPRESS%%lib/evince/1/backends/impressdocument.evince-backend -%%COMICS%%lib/evince/1/backends/libcomicsdocument.a -%%COMICS%%lib/evince/1/backends/libcomicsdocument.la -%%COMICS%%lib/evince/1/backends/libcomicsdocument.so -%%DJVU%%lib/evince/1/backends/libdjvudocument.a -%%DJVU%%lib/evince/1/backends/libdjvudocument.la -%%DJVU%%lib/evince/1/backends/libdjvudocument.so -%%DVI%%lib/evince/1/backends/libdvidocument.a -%%DVI%%lib/evince/1/backends/libdvidocument.la -%%DVI%%lib/evince/1/backends/libdvidocument.so -%%IMPRESS%%lib/evince/1/backends/libimpressdocument.a -%%IMPRESS%%lib/evince/1/backends/libimpressdocument.la -%%IMPRESS%%lib/evince/1/backends/libimpressdocument.so -lib/evince/1/backends/libpdfdocument.a -lib/evince/1/backends/libpdfdocument.la -lib/evince/1/backends/libpdfdocument.so -lib/evince/1/backends/libpsdocument.a -lib/evince/1/backends/libpsdocument.la -lib/evince/1/backends/libpsdocument.so -lib/evince/1/backends/libtiffdocument.a -lib/evince/1/backends/libtiffdocument.la -lib/evince/1/backends/libtiffdocument.so -lib/evince/1/backends/pdfdocument.evince-backend -lib/evince/1/backends/psdocument.evince-backend -lib/evince/1/backends/tiffdocument.evince-backend -%%NAUTILUS%%lib/nautilus/extensions-2.0/libevince-properties-page.a -%%NAUTILUS%%lib/nautilus/extensions-2.0/libevince-properties-page.la -%%NAUTILUS%%lib/nautilus/extensions-2.0/libevince-properties-page.so -lib/libevdocument.a -lib/libevdocument.la -lib/libevdocument.so -lib/libevdocument.so.1 -lib/libevview.a -lib/libevview.la -lib/libevview.so -lib/libevview.so.1 -libdata/pkgconfig/evince-document-2.25.pc -libdata/pkgconfig/evince-view-2.25.pc -share/applications/evince.desktop -%%DOCSDIR%%/EvNavigationAction.html -%%DOCSDIR%%/EvNavigationActionWidget.html -%%DOCSDIR%%/EvPageAction.html -%%DOCSDIR%%/EvPageActionWidget.html -%%DOCSDIR%%/EvWindow.html -%%DOCSDIR%%/evince-EvHistory.html -%%DOCSDIR%%/evince-EvPasswordView.html -%%DOCSDIR%%/evince-EvSidebar.html -%%DOCSDIR%%/evince-EvSidebarAttachments.html -%%DOCSDIR%%/evince-EvSidebarLinks.html -%%DOCSDIR%%/evince-EvSidebarThumbnails.html -%%DOCSDIR%%/evince-ev-metadata-manager.html -%%DOCSDIR%%/evince-ev-properties-dialog.html -%%DOCSDIR%%/evince-ev-properties-fonts.html -%%DOCSDIR%%/evince-ev-sidebar-page.html -%%DOCSDIR%%/evince-ev-stock-icons.html -%%DOCSDIR%%/evince-ev-utils.html -%%DOCSDIR%%/evince-ev-window-title.html -%%DOCSDIR%%/evince.devhelp -%%DOCSDIR%%/evince.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/ix01.html -%%DOCSDIR%%/left.png -%%DOCSDIR%%/pt01.html -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/doc/libevdocument/EvAttachment.html -share/doc/libevdocument/EvFormFieldSignature.html -share/doc/libevdocument/EvImage.html -share/doc/libevdocument/EvLayer.html -share/doc/libevdocument/EvPage.html -share/doc/libevdocument/EvRenderContext.html -share/doc/libevdocument/data.html -share/doc/libevdocument/helper.html -share/doc/libevdocument/home.png -share/doc/libevdocument/index.html -share/doc/libevdocument/index.sgml -share/doc/libevdocument/interfaces.html -share/doc/libevdocument/left.png -share/doc/libevdocument/libevdocument-ev-async-renderer.html -share/doc/libevdocument/libevdocument-ev-backends-manager.html -share/doc/libevdocument/libevdocument-ev-document-factory.html -share/doc/libevdocument/libevdocument-ev-document-find.html -share/doc/libevdocument/libevdocument-ev-document-fonts.html -share/doc/libevdocument/libevdocument-ev-document-forms.html -share/doc/libevdocument/libevdocument-ev-document-images.html -share/doc/libevdocument/libevdocument-ev-document-info.html -share/doc/libevdocument/libevdocument-ev-document-layers.html -share/doc/libevdocument/libevdocument-ev-document-links.html -share/doc/libevdocument/libevdocument-ev-document-misc.html -share/doc/libevdocument/libevdocument-ev-document-security.html -share/doc/libevdocument/libevdocument-ev-document-thumbnails.html -share/doc/libevdocument/libevdocument-ev-document-transition.html -share/doc/libevdocument/libevdocument-ev-document.html -share/doc/libevdocument/libevdocument-ev-file-exporter.html -share/doc/libevdocument/libevdocument-ev-file-helpers.html -share/doc/libevdocument/libevdocument-ev-init.html -share/doc/libevdocument/libevdocument-ev-link-action.html -share/doc/libevdocument/libevdocument-ev-link-dest.html -share/doc/libevdocument/libevdocument-ev-link.html -share/doc/libevdocument/libevdocument-ev-selection.html -share/doc/libevdocument/libevdocument-ev-transition-effect.html -share/doc/libevdocument/libevdocument.devhelp -share/doc/libevdocument/libevdocument.devhelp2 -share/doc/libevdocument/right.png -share/doc/libevdocument/style.css -share/doc/libevdocument/up.png -share/doc/libevview/EvJobExport.html -share/doc/libevview/ch01.html -share/doc/libevview/home.png -share/doc/libevview/index.html -share/doc/libevview/index.sgml -share/doc/libevview/left.png -share/doc/libevview/libevview-ev-job-scheduler.html -share/doc/libevview/libevview-ev-page-cache.html -share/doc/libevview/libevview-ev-view.html -share/doc/libevview/libevview.devhelp -share/doc/libevview/libevview.devhelp2 -share/doc/libevview/right.png -share/doc/libevview/style.css -share/doc/libevview/up.png -%%DATADIR%%/evince-toolbar.xml -%%DATADIR%%/evince-ui.xml -%%DATADIR%%/hand-open.png -%%DATADIR%%/icons/hicolor/16x16/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/16x16/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/16x16/actions/zoom-fit-page.png -%%DATADIR%%/icons/hicolor/16x16/actions/zoom-fit-width.png -%%DATADIR%%/icons/hicolor/16x16/actions/zoom.png -%%DATADIR%%/icons/hicolor/22x22/actions/eye.png -%%DATADIR%%/icons/hicolor/22x22/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/22x22/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/22x22/actions/zoom-fit-page.png -%%DATADIR%%/icons/hicolor/22x22/actions/zoom-fit-width.png -%%DATADIR%%/icons/hicolor/22x22/actions/zoom.png -%%DATADIR%%/icons/hicolor/24x24/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/24x24/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/24x24/actions/zoom-fit-page.png -%%DATADIR%%/icons/hicolor/24x24/actions/zoom-fit-width.png -%%DATADIR%%/icons/hicolor/24x24/actions/zoom.png -%%DATADIR%%/icons/hicolor/32x32/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/32x32/actions/view-page-facing.png -%%DATADIR%%/icons/hicolor/48x48/actions/view-page-continuous.png -%%DATADIR%%/icons/hicolor/48x48/actions/view-page-facing.png -share/gnome/help/evince/C/evince.xml -share/gnome/help/evince/C/figures/evince_start_window.png -share/gnome/help/evince/C/legal.xml -share/gnome/help/evince/bg/evince.xml -share/gnome/help/evince/bg/figures/evince_start_window.png -share/gnome/help/evince/ca/evince.xml -share/gnome/help/evince/ca/figures/evince_start_window.png -share/gnome/help/evince/cs/evince.xml -share/gnome/help/evince/cs/figures/evince_start_window.png -share/gnome/help/evince/de/evince.xml -share/gnome/help/evince/de/figures/evince_start_window.png -share/gnome/help/evince/el/evince.xml -share/gnome/help/evince/el/figures/evince_start_window.png -share/gnome/help/evince/en_GB/evince.xml -share/gnome/help/evince/en_GB/figures/evince_start_window.png -share/gnome/help/evince/es/evince.xml -share/gnome/help/evince/es/figures/evince_start_window.png -share/gnome/help/evince/eu/evince.xml -share/gnome/help/evince/eu/figures/evince_start_window.png -share/gnome/help/evince/fi/evince.xml -share/gnome/help/evince/fi/figures/evince_start_window.png -share/gnome/help/evince/fr/evince.xml -share/gnome/help/evince/fr/figures/evince_start_window.png -share/gnome/help/evince/it/evince.xml -share/gnome/help/evince/it/figures/evince_start_window.png -share/gnome/help/evince/ja/evince.xml -share/gnome/help/evince/ja/figures/evince_start_window.png -share/gnome/help/evince/nl/evince.xml -share/gnome/help/evince/nl/figures/evince_start_window.png -share/gnome/help/evince/oc/evince.xml -share/gnome/help/evince/oc/figures/evince_start_window.png -share/gnome/help/evince/pt_BR/evince.xml -share/gnome/help/evince/pt_BR/figures/evince_start_window.png -share/gnome/help/evince/ru/evince.xml -share/gnome/help/evince/ru/figures/evince_start_window.png -share/gnome/help/evince/sr/evince.xml -share/gnome/help/evince/sr/figures/evince_start_window.png -share/gnome/help/evince/sv/evince.xml -share/gnome/help/evince/sv/figures/evince_start_window.png -share/gnome/help/evince/uk/evince.xml -share/gnome/help/evince/uk/figures/evince_start_window.png -share/gnome/help/evince/zh_CN/evince.xml -share/gnome/help/evince/zh_CN/figures/evince_start_window.png -share/icons/hicolor/16x16/apps/evince.png -share/icons/hicolor/22x22/apps/evince.png -share/icons/hicolor/24x24/apps/evince.png -share/icons/hicolor/48x48/apps/evince.png -share/icons/hicolor/scalable/apps/evince.svg -share/locale/af/LC_MESSAGES/evince.mo -share/locale/ar/LC_MESSAGES/evince.mo -share/locale/as/LC_MESSAGES/evince.mo -share/locale/ast/LC_MESSAGES/evince.mo -share/locale/be/LC_MESSAGES/evince.mo -share/locale/bg/LC_MESSAGES/evince.mo -share/locale/bn/LC_MESSAGES/evince.mo -share/locale/bn_IN/LC_MESSAGES/evince.mo -share/locale/br/LC_MESSAGES/evince.mo -share/locale/ca/LC_MESSAGES/evince.mo -share/locale/cs/LC_MESSAGES/evince.mo -share/locale/cy/LC_MESSAGES/evince.mo -share/locale/da/LC_MESSAGES/evince.mo -share/locale/de/LC_MESSAGES/evince.mo -share/locale/dz/LC_MESSAGES/evince.mo -share/locale/el/LC_MESSAGES/evince.mo -share/locale/en_CA/LC_MESSAGES/evince.mo -share/locale/en_GB/LC_MESSAGES/evince.mo -share/locale/es/LC_MESSAGES/evince.mo -share/locale/et/LC_MESSAGES/evince.mo -share/locale/eu/LC_MESSAGES/evince.mo -share/locale/fa/LC_MESSAGES/evince.mo -share/locale/fi/LC_MESSAGES/evince.mo -share/locale/fr/LC_MESSAGES/evince.mo -share/locale/ga/LC_MESSAGES/evince.mo -share/locale/gl/LC_MESSAGES/evince.mo -share/locale/gu/LC_MESSAGES/evince.mo -share/locale/he/LC_MESSAGES/evince.mo -share/locale/hi/LC_MESSAGES/evince.mo -share/locale/hu/LC_MESSAGES/evince.mo -share/locale/id/LC_MESSAGES/evince.mo -share/locale/it/LC_MESSAGES/evince.mo -share/locale/ja/LC_MESSAGES/evince.mo -share/locale/ka/LC_MESSAGES/evince.mo -share/locale/kn/LC_MESSAGES/evince.mo -share/locale/ko/LC_MESSAGES/evince.mo -share/locale/ks/LC_MESSAGES/evince.mo -share/locale/ku/LC_MESSAGES/evince.mo -share/locale/lt/LC_MESSAGES/evince.mo -share/locale/lv/LC_MESSAGES/evince.mo -share/locale/mai/LC_MESSAGES/evince.mo -share/locale/mg/LC_MESSAGES/evince.mo -share/locale/mk/LC_MESSAGES/evince.mo -share/locale/ml/LC_MESSAGES/evince.mo -share/locale/mr/LC_MESSAGES/evince.mo -share/locale/nb/LC_MESSAGES/evince.mo -share/locale/ne/LC_MESSAGES/evince.mo -share/locale/nl/LC_MESSAGES/evince.mo -share/locale/nn/LC_MESSAGES/evince.mo -share/locale/oc/LC_MESSAGES/evince.mo -share/locale/or/LC_MESSAGES/evince.mo -share/locale/pa/LC_MESSAGES/evince.mo -share/locale/pl/LC_MESSAGES/evince.mo -share/locale/ps/LC_MESSAGES/evince.mo -share/locale/pt/LC_MESSAGES/evince.mo -share/locale/pt_BR/LC_MESSAGES/evince.mo -share/locale/ro/LC_MESSAGES/evince.mo -share/locale/ru/LC_MESSAGES/evince.mo -share/locale/rw/LC_MESSAGES/evince.mo -share/locale/si/LC_MESSAGES/evince.mo -share/locale/sk/LC_MESSAGES/evince.mo -share/locale/sl/LC_MESSAGES/evince.mo -share/locale/sq/LC_MESSAGES/evince.mo -share/locale/sr/LC_MESSAGES/evince.mo -share/locale/sv/LC_MESSAGES/evince.mo -share/locale/ta/LC_MESSAGES/evince.mo -share/locale/te/LC_MESSAGES/evince.mo -share/locale/th/LC_MESSAGES/evince.mo -share/locale/tr/LC_MESSAGES/evince.mo -share/locale/uk/LC_MESSAGES/evince.mo -share/locale/vi/LC_MESSAGES/evince.mo -share/locale/wa/LC_MESSAGES/evince.mo -share/locale/zh_CN/LC_MESSAGES/evince.mo -share/locale/zh_HK/LC_MESSAGES/evince.mo -share/locale/zh_TW/LC_MESSAGES/evince.mo -share/omf/evince/evince-C.omf -share/omf/evince/evince-bg.omf -share/omf/evince/evince-ca.omf -share/omf/evince/evince-cs.omf -share/omf/evince/evince-de.omf -share/omf/evince/evince-el.omf -share/omf/evince/evince-en_GB.omf -share/omf/evince/evince-es.omf -share/omf/evince/evince-eu.omf -share/omf/evince/evince-fi.omf -share/omf/evince/evince-fr.omf -share/omf/evince/evince-it.omf -share/omf/evince/evince-ja.omf -share/omf/evince/evince-nl.omf -share/omf/evince/evince-oc.omf -share/omf/evince/evince-pt_BR.omf -share/omf/evince/evince-ru.omf -share/omf/evince/evince-sr.omf -share/omf/evince/evince-sv.omf -share/omf/evince/evince-uk.omf -share/omf/evince/evince-zh_CN.omf -share/locale/be@latin/LC_MESSAGES/evince.mo -share/locale/sr@latin/LC_MESSAGES/evince.mo -@dirrm share/omf/evince -@dirrm share/gnome/help/evince/zh_CN/figures -@dirrm share/gnome/help/evince/zh_CN -@dirrm share/gnome/help/evince/uk/figures -@dirrm share/gnome/help/evince/uk -@dirrm share/gnome/help/evince/sv/figures -@dirrm share/gnome/help/evince/sv -@dirrm share/gnome/help/evince/sr/figures -@dirrm share/gnome/help/evince/sr -@dirrm share/gnome/help/evince/ru/figures -@dirrm share/gnome/help/evince/ru -@dirrm share/gnome/help/evince/pt_BR/figures -@dirrm share/gnome/help/evince/pt_BR -@dirrm share/gnome/help/evince/oc/figures -@dirrm share/gnome/help/evince/oc -@dirrm share/gnome/help/evince/nl/figures -@dirrm share/gnome/help/evince/nl -@dirrm share/gnome/help/evince/ja/figures -@dirrm share/gnome/help/evince/ja -@dirrm share/gnome/help/evince/it/figures -@dirrm share/gnome/help/evince/it -@dirrm share/gnome/help/evince/fr/figures -@dirrm share/gnome/help/evince/fr -@dirrm share/gnome/help/evince/fi/figures -@dirrm share/gnome/help/evince/fi -@dirrm share/gnome/help/evince/eu/figures -@dirrm share/gnome/help/evince/eu -@dirrm share/gnome/help/evince/es/figures -@dirrm share/gnome/help/evince/es -@dirrm share/gnome/help/evince/en_GB/figures -@dirrm share/gnome/help/evince/en_GB -@dirrm share/gnome/help/evince/el/figures -@dirrm share/gnome/help/evince/el -@dirrm share/gnome/help/evince/de/figures -@dirrm share/gnome/help/evince/de -@dirrm share/gnome/help/evince/cs/figures -@dirrm share/gnome/help/evince/cs -@dirrm share/gnome/help/evince/ca/figures -@dirrm share/gnome/help/evince/ca -@dirrm share/gnome/help/evince/bg/figures -@dirrm share/gnome/help/evince/bg -@dirrm share/gnome/help/evince/C/figures -@dirrm share/gnome/help/evince/C -@dirrm share/gnome/help/evince -@dirrm %%DATADIR%%/icons/hicolor/48x48/actions -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm share/doc/libevview -@dirrm share/doc/libevdocument -@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@dirrm lib/evince/1/backends -@dirrm lib/evince/1 -@dirrm lib/evince -@dirrm include/evince/2.25/libview -@dirrm include/evince/2.25/libdocument -@dirrm include/evince/2.25 -@dirrm include/evince -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ks/LC_MESSAGES -@dirrmtry share/locale/ks -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile deleted file mode 100644 index 922dc6e87..000000000 --- a/graphics/gimp-app/Makefile +++ /dev/null @@ -1,156 +0,0 @@ -# New ports collection makefile for: The GIMP -# Date created: Mon Nov 18 21:28:43 CST 1996 -# Whom: erich@FreeBSD.org -# -# $FreeBSD$ -# $MCom: ports/graphics/gimp-app/Makefile,v 1.34 2009/04/09 03:12:52 mezz Exp $ -# - -PORTNAME= gimp-app -DISTVERSION= 2.6.6 -PORTREVISION?= 1 -PORTEPOCH?= 1 -CATEGORIES?= graphics gnome -MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \ - http://gimp.mirrors.hoobly.com/%SUBDIR%/ \ - http://ftp.gwdg.de/pub/misc/grafik/gimp/%SUBDIR%/ \ - ftp://ftp.fh-heilbronn.de/mirrors/ftp.gimp.org/%SUBDIR%/ \ - ftp://ftp.insync.net/pub/mirrors/ftp.gimp.org/%SUBDIR%/ \ - http://www.mirrorservice.org/sites/ftp.gimp.org/pub/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/%SUBDIR%,} -MASTER_SITE_SUBDIR= gimp/v${PORTVERSION:R} -DISTNAME= gimp-${DISTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A GNU Image Manipulation Program - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes -LIB_DEPENDS= exif.12:${PORTSDIR}/graphics/libexif \ - wmf.2:${PORTSDIR}/graphics/libwmf \ - poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk \ - aa.1:${PORTSDIR}/graphics/aalib \ - mng.1:${PORTSDIR}/graphics/libmng \ - png.5:${PORTSDIR}/graphics/png \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - tiff.4:${PORTSDIR}/graphics/tiff \ - lcms.1:${PORTSDIR}/graphics/lcms \ - gegl-0.0.22:${PORTSDIR}/graphics/gegl -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes - -CONFLICTS= gimp-app-devel-[0-9]* - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_XORG= xpm xmu xext -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME+= gnomehack intltool intlhack gtk20 libartlgpl2 ltverhack \ - desktopfileutils -USE_LDCONFIG= yes -INSTALLS_ICONS= yes -LIBTOOLFLAGS= --disable-ltlibs --release-ignore -CONFIGURE_ARGS?=--with-html-dir=${PREFIX}/share/doc/gimp \ - --disable-gtk-doc \ - --without-print \ - --disable-python \ - --with-desktop-dir=${PREFIX}/share \ - --docdir=${PREFIX}/share/doc/gimp \ - --enable-default-binary \ - --without-gnomevfs -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - GIMP_THREAD_LIBS=${PTHREAD_LIBS} - -.if !defined(GIMP_SLAVE) -WANT_GNOME= yes - -OPTIONS?= DEBUG "debugging" off \ - DBUS "D-BUS support" on \ - GVFS "Use GVFS for the URI plug-in" on \ - HELPBROWSER "internal help browser" on \ - MP "multiple processor support" off \ - RSVG "SVG format support" on -.endif - -.include <bsd.port.pre.mk> - -.if defined(GIMP_SLAVE) -PKG_CONFIG?= ${LOCALBASE}/bin/pkg-config -GIMP_LIBS= `${PKG_CONFIG} --libs gimp-2.0` -GIMP_THUMB_LIBS=`${PKG_CONFIG} --libs gimpthumb-2.0` -GIMP_UI_LIBS= `${PKG_CONFIG} --libs gimpui-2.0` - -LIB_DEPENDS+= gimp-2.0.0:${PORTSDIR}/graphics/gimp-app - -.else - -MAN1+= gimp-2.6.1 gimptool-2.0.1 -MAN5+= gimprc-2.6.5 -MLINKS= gimp-2.6.1 gimp.1 \ - gimp-2.6.1 gimp-console-2.6.1 \ - gimp-console-2.6.1 gimp-console.1 \ - gimprc-2.6.5 gimprc.5 - -.if defined(WITHOUT_RSVG) -CONFIGURE_ARGS+= --without-librsvg -PLIST_SUB+= SVG="@comment " -.else -USE_GNOME+= librsvg2 -PLIST_SUB+= SVG="" -.endif - -.if defined(WITH_DEBUG) -CONFIGURE_ARGS+= --enable-debug -.endif - -.if defined(WITH_MP) -CONFIGURE_ARGS+= --enable-mp -.else -CONFIGURE_ARGS+= --disable-mp -.endif - -.if ${HAVE_GNOME:Mgnomehier}!="" || defined(WITH_GNOME) -USE_GNOME+= desktopfileutils gnomehier -PLIST_SUB+= GNOME="" -.else -PLIST_SUB+= GNOME="@comment " -.endif - -.if defined(WITH_HELPBROWSER) -LIB_DEPENDS+= webkit-1.0.1:${PORTSDIR}/www/webkit-gtk2 -CONFIGURE_ARGS+= --with-webkit -PLIST_SUB+= HELPBROWSER="" -.else -CONFIGURE_ARGS+= --without-webkit -PLIST_SUB+= HELPBROWSER="@comment " -.endif - -.if defined(WITH_DBUS) -LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib -CONFIGURE_ARGS+= --with-dbus -.else -CONFIGURE_ARGS+= --without-dbus -.endif - -.if defined(WITH_GVFS) || ${HAVE_GNOME:Mgvfs}!="" -LIB_DEPENDS+= gnome-keyring.0:${PORTSDIR}/security/gnome-keyring -USE_GNOME+= gvfs -. if ${HAVE_GNOME:Mlibgnomeui}!="" -USE_GNOME+= libgnomeui -. endif -.endif - -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|%%GIMP_LIBS%%|${GIMP_LIBS}|; \ - s|%%GIMP_THUMB_LIBS%%|${GIMP_THUMB_LIBS}|; \ - s|%%GIMP_UI_LIBS%%|${GIMP_UI_LIBS}|' \ - ${WRKSRC}/plug-ins/pygimp/Makefile.in - @${REINPLACE_CMD} -e 's|"libpng"|"libpng12"|' \ - ${WRKSRC}/configure - -post-install: - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/graphics/gimp-app/distinfo b/graphics/gimp-app/distinfo deleted file mode 100644 index bc2404b24..000000000 --- a/graphics/gimp-app/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gimp-2.6.6.tar.bz2) = 23d880dd09cd62c936ed04666a53f8e4 -SHA256 (gimp-2.6.6.tar.bz2) = 53c261fa5045f4ca4b5e887a1eb394d28ebb08d108f065ef55bde33c892f0751 -SIZE (gimp-2.6.6.tar.bz2) = 16075908 diff --git a/graphics/gimp-app/files/patch-configure b/graphics/gimp-app/files/patch-configure deleted file mode 100644 index 1a89a1cc2..000000000 --- a/graphics/gimp-app/files/patch-configure +++ /dev/null @@ -1,23 +0,0 @@ ---- configure.orig Thu Nov 23 15:16:53 2006 -+++ configure Sun Dec 31 19:29:32 2006 -@@ -29404,6 +29404,7 @@ - if test "x$enable_gtktest" = "xyes" ; then - ac_save_CFLAGS="$CFLAGS" - ac_save_LIBS="$LIBS" -+ GTK_LIBS="$GIMP_THREAD_LIBS $GTK_LIBS" - CFLAGS="$CFLAGS $GTK_CFLAGS" - LIBS="$GTK_LIBS $LIBS" - rm -f conf.gtktest -@@ -38514,9 +38515,9 @@ - fi - - --gimpdatadir="$datadir/$PACKAGE/2.0" --gimpplugindir="$libdir/$PACKAGE/2.0" --gimpsysconfdir="$sysconfdir/$PACKAGE/2.0" -+gimpdatadir="$datadir/$PACKAGE" -+gimpplugindir="$libexecdir/$PACKAGE/2.2" -+gimpsysconfdir="$sysconfdir/$PACKAGE/2.2" - - - diff --git a/graphics/gimp-app/files/patch-libgimp_gimp.c b/graphics/gimp-app/files/patch-libgimp_gimp.c deleted file mode 100644 index a1bb86bbf..000000000 --- a/graphics/gimp-app/files/patch-libgimp_gimp.c +++ /dev/null @@ -1,20 +0,0 @@ ---- libgimp/gimp.c.orig Fri Sep 1 06:14:32 2006 -+++ libgimp/gimp.c Sun Dec 31 15:56:37 2006 -@@ -29,6 +29,7 @@ - #include <stdlib.h> - #include <string.h> - #include <sys/types.h> -+#include <floatingpoint.h> - - #ifdef HAVE_SYS_TIME_H - #include <sys/time.h> -@@ -291,6 +292,9 @@ - gimp_env_init (TRUE); - - progname = argv[0]; -+ -+ /* Ignore floating point exceptions */ -+ fpsetmask(0); - - basename = g_path_get_basename (progname); - diff --git a/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in b/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in deleted file mode 100644 index 4f46084a0..000000000 --- a/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in +++ /dev/null @@ -1,104 +0,0 @@ ---- plug-ins/pygimp/Makefile.in.orig 2008-08-31 09:39:24.157774518 -0500 -+++ plug-ins/pygimp/Makefile.in 2008-08-31 09:42:47.663351903 -0500 -@@ -61,7 +61,7 @@ - pygimpLTLIBRARIES_INSTALL = $(INSTALL) - LTLIBRARIES = $(pygimp_LTLIBRARIES) - am__DEPENDENCIES_1 = --_gimpenums_la_DEPENDENCIES = $(libgimp) $(libgimpcolor) $(libgimpbase) \ -+_gimpenums_la_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am__gimpenums_la_OBJECTS = gimpenumsmodule.lo -@@ -69,16 +69,15 @@ - _gimpenums_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(_gimpenums_la_LDFLAGS) $(LDFLAGS) -o $@ --_gimpui_la_DEPENDENCIES = $(libgimpui) $(libgimpwidgets) \ -- $(libgimpconfig) $(libgimpmath) $(libgimp) $(libgimpcolor) \ -- $(libgimpbase) $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ -+_gimpui_la_DEPENDENCIES = \ -+ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) - am__gimpui_la_OBJECTS = gimpuimodule.lo gimpui.lo - _gimpui_la_OBJECTS = $(am__gimpui_la_OBJECTS) - _gimpui_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(_gimpui_la_LDFLAGS) $(LDFLAGS) -o $@ --gimp_la_DEPENDENCIES = $(libgimp) $(libgimpcolor) $(libgimpbase) \ -+gimp_la_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_gimp_la_OBJECTS = gimpmodule.lo pygimp-display.lo \ -@@ -88,14 +87,14 @@ - gimp_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(gimp_la_LDFLAGS) \ - $(LDFLAGS) -o $@ --gimpcolor_la_DEPENDENCIES = $(libgimpcolor) $(am__DEPENDENCIES_1) \ -+gimpcolor_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_gimpcolor_la_OBJECTS = gimpcolormodule.lo pygimp-colors.lo - gimpcolor_la_OBJECTS = $(am_gimpcolor_la_OBJECTS) - gimpcolor_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(gimpcolor_la_LDFLAGS) $(LDFLAGS) -o $@ --gimpthumb_la_DEPENDENCIES = $(libgimpthumb) $(am__DEPENDENCIES_1) \ -+gimpthumb_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_gimpthumb_la_OBJECTS = gimpthumbmodule.lo gimpthumb.lo - gimpthumb_la_OBJECTS = $(am_gimpthumb_la_OBJECTS) -@@ -486,9 +485,7 @@ - -export-symbols-regex initgimp - - gimp_la_LIBADD = \ -- $(libgimp) \ -- $(libgimpcolor) \ -- $(libgimpbase) \ -+ %%GIMP_LIBS%% \ - $(GLIB_LIBS) \ - $(PYLINK_LIBS) \ - $(RT_LIBS) -@@ -500,9 +497,7 @@ - -export-symbols-regex init_gimpenums - - _gimpenums_la_LIBADD = \ -- $(libgimp) \ -- $(libgimpcolor) \ -- $(libgimpbase) \ -+ %%GIMP_LIBS%% \ - $(GLIB_LIBS) \ - $(PYLINK_LIBS) \ - $(RT_LIBS) -@@ -517,7 +512,7 @@ - -export-symbols-regex initgimpcolor - - gimpcolor_la_LIBADD = \ -- $(libgimpcolor) \ -+ %%GIMP_LIBS%% \ - $(GLIB_LIBS) \ - $(PYLINK_LIBS) - -@@ -529,13 +524,8 @@ - -export-symbols-regex init_gimpui - - _gimpui_la_LIBADD = \ -- $(libgimpui) \ -- $(libgimpwidgets) \ -- $(libgimpconfig) \ -- $(libgimpmath) \ -- $(libgimp) \ -- $(libgimpcolor) \ -- $(libgimpbase) \ -+ %%GIMP_LIBS%% \ -+ %%GIMP_UI_LIBS%% \ - $(GTK_LIBS) \ - $(PYLINK_LIBS) \ - $(RT_LIBS) \ -@@ -549,7 +539,7 @@ - -export-symbols-regex initgimpthumb - - gimpthumb_la_LIBADD = \ -- $(libgimpthumb) \ -+ %%GIMP_THUMB_LIBS%% \ - $(GDK_PIXBUF_LIBS) \ - $(PYLINK_LIBS) - diff --git a/graphics/gimp-app/pkg-descr b/graphics/gimp-app/pkg-descr deleted file mode 100644 index 4d7f49925..000000000 --- a/graphics/gimp-app/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -The GIMP is designed to provide an intuitive graphical interface to a -variety of image editing operations. Here is a list of the GIMP's -major features: - - Image editing - ------------- - - * Selection tools including rectangle, ellipse, free, fuzzy, bezier - and intelligent. - * Transformation tools including rotate, scale, shear and flip. - * Painting tools including bucket, brush, airbrush, clone, convolve, - blend and text. - * Effects filters (such as blur, edge detect). - * Channel & color operations (such as add, composite, decompose). - * Plug-ins which allow for the easy addition of new file formats and - new effect filters. - * Multiple undo/redo. - -WWW: http://www.gimp.org/ diff --git a/graphics/gimp-app/pkg-plist b/graphics/gimp-app/pkg-plist deleted file mode 100644 index ca271443a..000000000 --- a/graphics/gimp-app/pkg-plist +++ /dev/null @@ -1,2100 +0,0 @@ -bin/gimp -bin/gimp-2.6 -bin/gimp-console -bin/gimp-console-2.6 -bin/gimptool-2.0 -etc/gimp/2.2/controllerrc -etc/gimp/2.2/gimprc -etc/gimp/2.2/gtkrc -etc/gimp/2.2/menurc -etc/gimp/2.2/ps-menurc -etc/gimp/2.2/sessionrc -etc/gimp/2.2/templaterc -etc/gimp/2.2/unitrc -include/gimp-2.0/libgimp/gimp.h -include/gimp-2.0/libgimp/gimp_pdb.h -include/gimp-2.0/libgimp/gimpaspectpreview.h -include/gimp-2.0/libgimp/gimpbrush_pdb.h -include/gimp-2.0/libgimp/gimpbrushes.h -include/gimp-2.0/libgimp/gimpbrushes_pdb.h -include/gimp-2.0/libgimp/gimpbrushmenu.h -include/gimp-2.0/libgimp/gimpbrushselect.h -include/gimp-2.0/libgimp/gimpbrushselect_pdb.h -include/gimp-2.0/libgimp/gimpbrushselectbutton.h -include/gimp-2.0/libgimp/gimpbuffer_pdb.h -include/gimp-2.0/libgimp/gimpchannel.h -include/gimp-2.0/libgimp/gimpchannel_pdb.h -include/gimp-2.0/libgimp/gimpcolor_pdb.h -include/gimp-2.0/libgimp/gimpcompat.h -include/gimp-2.0/libgimp/gimpcontext_pdb.h -include/gimp-2.0/libgimp/gimpconvert_pdb.h -include/gimp-2.0/libgimp/gimpdisplay_pdb.h -include/gimp-2.0/libgimp/gimpdrawable.h -include/gimp-2.0/libgimp/gimpdrawable_pdb.h -include/gimp-2.0/libgimp/gimpdrawablepreview.h -include/gimp-2.0/libgimp/gimpdrawabletransform_pdb.h -include/gimp-2.0/libgimp/gimpedit_pdb.h -include/gimp-2.0/libgimp/gimpenums.h -include/gimp-2.0/libgimp/gimpexport.h -include/gimp-2.0/libgimp/gimpfileops_pdb.h -include/gimp-2.0/libgimp/gimpfloatingsel_pdb.h -include/gimp-2.0/libgimp/gimpfontmenu.h -include/gimp-2.0/libgimp/gimpfonts_pdb.h -include/gimp-2.0/libgimp/gimpfontselect.h -include/gimp-2.0/libgimp/gimpfontselect_pdb.h -include/gimp-2.0/libgimp/gimpfontselectbutton.h -include/gimp-2.0/libgimp/gimpgimprc.h -include/gimp-2.0/libgimp/gimpgimprc_pdb.h -include/gimp-2.0/libgimp/gimpgradient_pdb.h -include/gimp-2.0/libgimp/gimpgradientmenu.h -include/gimp-2.0/libgimp/gimpgradients.h -include/gimp-2.0/libgimp/gimpgradients_pdb.h -include/gimp-2.0/libgimp/gimpgradientselect.h -include/gimp-2.0/libgimp/gimpgradientselect_pdb.h -include/gimp-2.0/libgimp/gimpgradientselectbutton.h -include/gimp-2.0/libgimp/gimpgrid_pdb.h -include/gimp-2.0/libgimp/gimpguides_pdb.h -include/gimp-2.0/libgimp/gimphelp_pdb.h -include/gimp-2.0/libgimp/gimpimage.h -include/gimp-2.0/libgimp/gimpimage_pdb.h -include/gimp-2.0/libgimp/gimpimagecombobox.h -include/gimp-2.0/libgimp/gimpitemcombobox.h -include/gimp-2.0/libgimp/gimplayer.h -include/gimp-2.0/libgimp/gimplayer_pdb.h -include/gimp-2.0/libgimp/gimpmenu.h -include/gimp-2.0/libgimp/gimpmessage_pdb.h -include/gimp-2.0/libgimp/gimpmisc_pdb.h -include/gimp-2.0/libgimp/gimppainttools_pdb.h -include/gimp-2.0/libgimp/gimppalette.h -include/gimp-2.0/libgimp/gimppalette_pdb.h -include/gimp-2.0/libgimp/gimppalettemenu.h -include/gimp-2.0/libgimp/gimppalettes.h -include/gimp-2.0/libgimp/gimppalettes_pdb.h -include/gimp-2.0/libgimp/gimppaletteselect.h -include/gimp-2.0/libgimp/gimppaletteselect_pdb.h -include/gimp-2.0/libgimp/gimppaletteselectbutton.h -include/gimp-2.0/libgimp/gimpparasite_pdb.h -include/gimp-2.0/libgimp/gimppaths_pdb.h -include/gimp-2.0/libgimp/gimppattern_pdb.h -include/gimp-2.0/libgimp/gimppatternmenu.h -include/gimp-2.0/libgimp/gimppatterns.h -include/gimp-2.0/libgimp/gimppatterns_pdb.h -include/gimp-2.0/libgimp/gimppatternselect.h -include/gimp-2.0/libgimp/gimppatternselect_pdb.h -include/gimp-2.0/libgimp/gimppatternselectbutton.h -include/gimp-2.0/libgimp/gimppixbuf.h -include/gimp-2.0/libgimp/gimppixelfetcher.h -include/gimp-2.0/libgimp/gimppixelrgn.h -include/gimp-2.0/libgimp/gimpplugin.h -include/gimp-2.0/libgimp/gimpplugin_pdb.h -include/gimp-2.0/libgimp/gimpprocbrowserdialog.h -include/gimp-2.0/libgimp/gimpproceduraldb.h -include/gimp-2.0/libgimp/gimpproceduraldb_pdb.h -include/gimp-2.0/libgimp/gimpprocview.h -include/gimp-2.0/libgimp/gimpprogress.h -include/gimp-2.0/libgimp/gimpprogress_pdb.h -include/gimp-2.0/libgimp/gimpprogressbar.h -include/gimp-2.0/libgimp/gimpregioniterator.h -include/gimp-2.0/libgimp/gimpselectbutton.h -include/gimp-2.0/libgimp/gimpselection.h -include/gimp-2.0/libgimp/gimpselection_pdb.h -include/gimp-2.0/libgimp/gimpselectiontools_pdb.h -include/gimp-2.0/libgimp/gimptextlayer_pdb.h -include/gimp-2.0/libgimp/gimptexttool_pdb.h -include/gimp-2.0/libgimp/gimptile.h -include/gimp-2.0/libgimp/gimptransformtools_pdb.h -include/gimp-2.0/libgimp/gimptypes.h -include/gimp-2.0/libgimp/gimpui.h -include/gimp-2.0/libgimp/gimpuitypes.h -include/gimp-2.0/libgimp/gimpundo_pdb.h -include/gimp-2.0/libgimp/gimpunit_pdb.h -include/gimp-2.0/libgimp/gimpvectors_pdb.h -include/gimp-2.0/libgimp/gimpzoompreview.h -include/gimp-2.0/libgimpbase/gimpbase.h -include/gimp-2.0/libgimpbase/gimpbaseenums.h -include/gimp-2.0/libgimpbase/gimpbasetypes.h -include/gimp-2.0/libgimpbase/gimpchecks.h -include/gimp-2.0/libgimpbase/gimpcpuaccel.h -include/gimp-2.0/libgimpbase/gimpdatafiles.h -include/gimp-2.0/libgimpbase/gimpenv.h -include/gimp-2.0/libgimpbase/gimplimits.h -include/gimp-2.0/libgimpbase/gimpmemsize.h -include/gimp-2.0/libgimpbase/gimpparam.h -include/gimp-2.0/libgimpbase/gimpparasite.h -include/gimp-2.0/libgimpbase/gimpparasiteio.h -include/gimp-2.0/libgimpbase/gimprectangle.h -include/gimp-2.0/libgimpbase/gimpsignal.h -include/gimp-2.0/libgimpbase/gimpunit.h -include/gimp-2.0/libgimpbase/gimputils.h -include/gimp-2.0/libgimpbase/gimpversion.h -include/gimp-2.0/libgimpcolor/gimpadaptivesupersample.h -include/gimp-2.0/libgimpcolor/gimpbilinear.h -include/gimp-2.0/libgimpcolor/gimpcmyk.h -include/gimp-2.0/libgimpcolor/gimpcolor.h -include/gimp-2.0/libgimpcolor/gimpcolormanaged.h -include/gimp-2.0/libgimpcolor/gimpcolorspace.h -include/gimp-2.0/libgimpcolor/gimpcolortypes.h -include/gimp-2.0/libgimpcolor/gimphsl.h -include/gimp-2.0/libgimpcolor/gimphsv.h -include/gimp-2.0/libgimpcolor/gimprgb.h -include/gimp-2.0/libgimpconfig/gimpcolorconfig-enums.h -include/gimp-2.0/libgimpconfig/gimpcolorconfig.h -include/gimp-2.0/libgimpconfig/gimpconfig-deserialize.h -include/gimp-2.0/libgimpconfig/gimpconfig-error.h -include/gimp-2.0/libgimpconfig/gimpconfig-iface.h -include/gimp-2.0/libgimpconfig/gimpconfig-params.h -include/gimp-2.0/libgimpconfig/gimpconfig-path.h -include/gimp-2.0/libgimpconfig/gimpconfig-serialize.h -include/gimp-2.0/libgimpconfig/gimpconfig-utils.h -include/gimp-2.0/libgimpconfig/gimpconfig.h -include/gimp-2.0/libgimpconfig/gimpconfigtypes.h -include/gimp-2.0/libgimpconfig/gimpconfigwriter.h -include/gimp-2.0/libgimpconfig/gimpscanner.h -include/gimp-2.0/libgimpmath/gimpmath.h -include/gimp-2.0/libgimpmath/gimpmathtypes.h -include/gimp-2.0/libgimpmath/gimpmatrix.h -include/gimp-2.0/libgimpmath/gimpmd5.h -include/gimp-2.0/libgimpmath/gimpvector.h -include/gimp-2.0/libgimpmodule/gimpmodule.h -include/gimp-2.0/libgimpmodule/gimpmoduledb.h -include/gimp-2.0/libgimpmodule/gimpmoduletypes.h -include/gimp-2.0/libgimpthumb/gimpthumb-enums.h -include/gimp-2.0/libgimpthumb/gimpthumb-error.h -include/gimp-2.0/libgimpthumb/gimpthumb-types.h -include/gimp-2.0/libgimpthumb/gimpthumb-utils.h -include/gimp-2.0/libgimpthumb/gimpthumb.h -include/gimp-2.0/libgimpthumb/gimpthumbnail.h -include/gimp-2.0/libgimpwidgets/gimpbrowser.h -include/gimp-2.0/libgimpwidgets/gimpbutton.h -include/gimp-2.0/libgimpwidgets/gimpcairo-utils.h -include/gimp-2.0/libgimpwidgets/gimpcellrenderercolor.h -include/gimp-2.0/libgimpwidgets/gimpcellrenderertoggle.h -include/gimp-2.0/libgimpwidgets/gimpchainbutton.h -include/gimp-2.0/libgimpwidgets/gimpcolorarea.h -include/gimp-2.0/libgimpwidgets/gimpcolorbutton.h -include/gimp-2.0/libgimpwidgets/gimpcolordisplay.h -include/gimp-2.0/libgimpwidgets/gimpcolordisplaystack.h -include/gimp-2.0/libgimpwidgets/gimpcolorhexentry.h -include/gimp-2.0/libgimpwidgets/gimpcolornotebook.h -include/gimp-2.0/libgimpwidgets/gimpcolorprofilecombobox.h -include/gimp-2.0/libgimpwidgets/gimpcolorprofilestore.h -include/gimp-2.0/libgimpwidgets/gimpcolorscale.h -include/gimp-2.0/libgimpwidgets/gimpcolorscales.h -include/gimp-2.0/libgimpwidgets/gimpcolorselect.h -include/gimp-2.0/libgimpwidgets/gimpcolorselection.h -include/gimp-2.0/libgimpwidgets/gimpcolorselector.h -include/gimp-2.0/libgimpwidgets/gimpcontroller.h -include/gimp-2.0/libgimpwidgets/gimpdialog.h -include/gimp-2.0/libgimpwidgets/gimpenumcombobox.h -include/gimp-2.0/libgimpwidgets/gimpenumlabel.h -include/gimp-2.0/libgimpwidgets/gimpenumstore.h -include/gimp-2.0/libgimpwidgets/gimpenumwidgets.h -include/gimp-2.0/libgimpwidgets/gimpfileentry.h -include/gimp-2.0/libgimpwidgets/gimpframe.h -include/gimp-2.0/libgimpwidgets/gimphelpui.h -include/gimp-2.0/libgimpwidgets/gimphintbox.h -include/gimp-2.0/libgimpwidgets/gimpintcombobox.h -include/gimp-2.0/libgimpwidgets/gimpintstore.h -include/gimp-2.0/libgimpwidgets/gimpmemsizeentry.h -include/gimp-2.0/libgimpwidgets/gimpnumberpairentry.h -include/gimp-2.0/libgimpwidgets/gimpoffsetarea.h -include/gimp-2.0/libgimpwidgets/gimpoldwidgets.h -include/gimp-2.0/libgimpwidgets/gimppageselector.h -include/gimp-2.0/libgimpwidgets/gimppatheditor.h -include/gimp-2.0/libgimpwidgets/gimppickbutton.h -include/gimp-2.0/libgimpwidgets/gimppixmap.h -include/gimp-2.0/libgimpwidgets/gimppreview.h -include/gimp-2.0/libgimpwidgets/gimppreviewarea.h -include/gimp-2.0/libgimpwidgets/gimppropwidgets.h -include/gimp-2.0/libgimpwidgets/gimpquerybox.h -include/gimp-2.0/libgimpwidgets/gimpruler.h -include/gimp-2.0/libgimpwidgets/gimpscaleentry.h -include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h -include/gimp-2.0/libgimpwidgets/gimpsizeentry.h -include/gimp-2.0/libgimpwidgets/gimpstock.h -include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h -include/gimp-2.0/libgimpwidgets/gimpunitmenu.h -include/gimp-2.0/libgimpwidgets/gimpwidgets.h -include/gimp-2.0/libgimpwidgets/gimpwidgetsenums.h -include/gimp-2.0/libgimpwidgets/gimpwidgetstypes.h -include/gimp-2.0/libgimpwidgets/gimpzoommodel.h -lib/libgimp-2.0.a -lib/libgimp-2.0.la -lib/libgimp-2.0.so -lib/libgimp-2.0.so.0 -lib/libgimpbase-2.0.a -lib/libgimpbase-2.0.la -lib/libgimpbase-2.0.so -lib/libgimpbase-2.0.so.0 -lib/libgimpcolor-2.0.a -lib/libgimpcolor-2.0.la -lib/libgimpcolor-2.0.so -lib/libgimpcolor-2.0.so.0 -lib/libgimpconfig-2.0.a -lib/libgimpconfig-2.0.la -lib/libgimpconfig-2.0.so -lib/libgimpconfig-2.0.so.0 -lib/libgimpmath-2.0.a -lib/libgimpmath-2.0.la -lib/libgimpmath-2.0.so -lib/libgimpmath-2.0.so.0 -lib/libgimpmodule-2.0.a -lib/libgimpmodule-2.0.la -lib/libgimpmodule-2.0.so -lib/libgimpmodule-2.0.so.0 -lib/libgimpthumb-2.0.a -lib/libgimpthumb-2.0.la -lib/libgimpthumb-2.0.so -lib/libgimpthumb-2.0.so.0 -lib/libgimpui-2.0.a -lib/libgimpui-2.0.la -lib/libgimpui-2.0.so -lib/libgimpui-2.0.so.0 -lib/libgimpwidgets-2.0.a -lib/libgimpwidgets-2.0.la -lib/libgimpwidgets-2.0.so -lib/libgimpwidgets-2.0.so.0 -libdata/pkgconfig/gimp-2.0.pc -libdata/pkgconfig/gimpthumb-2.0.pc -libdata/pkgconfig/gimpui-2.0.pc -libexec/gimp/2.2/environ/default.env -libexec/gimp/2.2/interpreters/default.interp -libexec/gimp/2.2/modules/libcolor-selector-cmyk.a -libexec/gimp/2.2/modules/libcolor-selector-cmyk.la -libexec/gimp/2.2/modules/libcolor-selector-cmyk.so -libexec/gimp/2.2/modules/libcolor-selector-water.a -libexec/gimp/2.2/modules/libcolor-selector-water.la -libexec/gimp/2.2/modules/libcolor-selector-water.so -libexec/gimp/2.2/modules/libcolor-selector-wheel.a -libexec/gimp/2.2/modules/libcolor-selector-wheel.la -libexec/gimp/2.2/modules/libcolor-selector-wheel.so -libexec/gimp/2.2/modules/libcontroller-midi.a -libexec/gimp/2.2/modules/libcontroller-midi.la -libexec/gimp/2.2/modules/libcontroller-midi.so -libexec/gimp/2.2/modules/libdisplay-filter-color-blind.a -libexec/gimp/2.2/modules/libdisplay-filter-color-blind.la -libexec/gimp/2.2/modules/libdisplay-filter-color-blind.so -libexec/gimp/2.2/modules/libdisplay-filter-gamma.a -libexec/gimp/2.2/modules/libdisplay-filter-gamma.la -libexec/gimp/2.2/modules/libdisplay-filter-gamma.so -libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.a -libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.la -libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.so -libexec/gimp/2.2/modules/libdisplay-filter-lcms.a -libexec/gimp/2.2/modules/libdisplay-filter-lcms.la -libexec/gimp/2.2/modules/libdisplay-filter-lcms.so -libexec/gimp/2.2/modules/libdisplay-filter-proof.a -libexec/gimp/2.2/modules/libdisplay-filter-proof.la -libexec/gimp/2.2/modules/libdisplay-filter-proof.so -libexec/gimp/2.2/plug-ins/alien-map -libexec/gimp/2.2/plug-ins/align-layers -libexec/gimp/2.2/plug-ins/animation-optimize -libexec/gimp/2.2/plug-ins/animation-play -libexec/gimp/2.2/plug-ins/antialias -libexec/gimp/2.2/plug-ins/apply-canvas -libexec/gimp/2.2/plug-ins/blinds -libexec/gimp/2.2/plug-ins/blur -libexec/gimp/2.2/plug-ins/blur-gauss -libexec/gimp/2.2/plug-ins/blur-gauss-selective -libexec/gimp/2.2/plug-ins/blur-motion -libexec/gimp/2.2/plug-ins/border-average -libexec/gimp/2.2/plug-ins/bump-map -libexec/gimp/2.2/plug-ins/cartoon -libexec/gimp/2.2/plug-ins/channel-mixer -libexec/gimp/2.2/plug-ins/checkerboard -libexec/gimp/2.2/plug-ins/cml-explorer -libexec/gimp/2.2/plug-ins/color-cube-analyze -libexec/gimp/2.2/plug-ins/color-enhance -libexec/gimp/2.2/plug-ins/color-exchange -libexec/gimp/2.2/plug-ins/color-rotate -libexec/gimp/2.2/plug-ins/color-to-alpha -libexec/gimp/2.2/plug-ins/colorify -libexec/gimp/2.2/plug-ins/colormap-remap -libexec/gimp/2.2/plug-ins/compose -libexec/gimp/2.2/plug-ins/contrast-normalize -libexec/gimp/2.2/plug-ins/contrast-retinex -libexec/gimp/2.2/plug-ins/contrast-stretch -libexec/gimp/2.2/plug-ins/contrast-stretch-hsv -libexec/gimp/2.2/plug-ins/convolution-matrix -libexec/gimp/2.2/plug-ins/crop-auto -libexec/gimp/2.2/plug-ins/crop-zealous -libexec/gimp/2.2/plug-ins/cubism -libexec/gimp/2.2/plug-ins/curve-bend -libexec/gimp/2.2/plug-ins/decompose -libexec/gimp/2.2/plug-ins/deinterlace -libexec/gimp/2.2/plug-ins/depth-merge -libexec/gimp/2.2/plug-ins/despeckle -libexec/gimp/2.2/plug-ins/destripe -libexec/gimp/2.2/plug-ins/diffraction -libexec/gimp/2.2/plug-ins/displace -libexec/gimp/2.2/plug-ins/edge -libexec/gimp/2.2/plug-ins/edge-dog -libexec/gimp/2.2/plug-ins/edge-laplace -libexec/gimp/2.2/plug-ins/edge-neon -libexec/gimp/2.2/plug-ins/edge-sobel -libexec/gimp/2.2/plug-ins/emboss -libexec/gimp/2.2/plug-ins/engrave -libexec/gimp/2.2/plug-ins/file-aa -libexec/gimp/2.2/plug-ins/file-bmp -libexec/gimp/2.2/plug-ins/file-cel -libexec/gimp/2.2/plug-ins/file-compressor -libexec/gimp/2.2/plug-ins/file-csource -libexec/gimp/2.2/plug-ins/file-desktop-link -libexec/gimp/2.2/plug-ins/file-dicom -libexec/gimp/2.2/plug-ins/file-faxg3 -libexec/gimp/2.2/plug-ins/file-fits -libexec/gimp/2.2/plug-ins/file-fli -libexec/gimp/2.2/plug-ins/file-gbr -libexec/gimp/2.2/plug-ins/file-gif-load -libexec/gimp/2.2/plug-ins/file-gif-save -libexec/gimp/2.2/plug-ins/file-gih -libexec/gimp/2.2/plug-ins/file-glob -libexec/gimp/2.2/plug-ins/file-header -libexec/gimp/2.2/plug-ins/file-html-table -libexec/gimp/2.2/plug-ins/file-ico -libexec/gimp/2.2/plug-ins/file-jpeg -libexec/gimp/2.2/plug-ins/file-mng -libexec/gimp/2.2/plug-ins/file-pat -libexec/gimp/2.2/plug-ins/file-pcx -libexec/gimp/2.2/plug-ins/file-pdf -libexec/gimp/2.2/plug-ins/file-pix -libexec/gimp/2.2/plug-ins/file-png -libexec/gimp/2.2/plug-ins/file-pnm -libexec/gimp/2.2/plug-ins/file-ps -libexec/gimp/2.2/plug-ins/file-psd-load -libexec/gimp/2.2/plug-ins/file-psd-save -libexec/gimp/2.2/plug-ins/file-psp -libexec/gimp/2.2/plug-ins/file-raw -libexec/gimp/2.2/plug-ins/file-sgi -libexec/gimp/2.2/plug-ins/file-sunras -%%SVG%%libexec/gimp/2.2/plug-ins/file-svg -libexec/gimp/2.2/plug-ins/file-tga -libexec/gimp/2.2/plug-ins/file-tiff-load -libexec/gimp/2.2/plug-ins/file-tiff-save -libexec/gimp/2.2/plug-ins/file-uri -libexec/gimp/2.2/plug-ins/file-wmf -libexec/gimp/2.2/plug-ins/file-xbm -libexec/gimp/2.2/plug-ins/file-xjt -libexec/gimp/2.2/plug-ins/file-xpm -libexec/gimp/2.2/plug-ins/file-xwd -libexec/gimp/2.2/plug-ins/film -libexec/gimp/2.2/plug-ins/filter-pack -libexec/gimp/2.2/plug-ins/flame -libexec/gimp/2.2/plug-ins/fractal-explorer -libexec/gimp/2.2/plug-ins/fractal-trace -libexec/gimp/2.2/plug-ins/gee -libexec/gimp/2.2/plug-ins/gee-zoom -libexec/gimp/2.2/plug-ins/gfig -libexec/gimp/2.2/plug-ins/gimpressionist -libexec/gimp/2.2/plug-ins/gradient-flare -libexec/gimp/2.2/plug-ins/gradient-map -libexec/gimp/2.2/plug-ins/grid -libexec/gimp/2.2/plug-ins/guillotine -libexec/gimp/2.2/plug-ins/help -%%HELPBROWSER%%libexec/gimp/2.2/plug-ins/help-browser -libexec/gimp/2.2/plug-ins/hot -libexec/gimp/2.2/plug-ins/ifs-compose -libexec/gimp/2.2/plug-ins/illusion -libexec/gimp/2.2/plug-ins/imagemap -libexec/gimp/2.2/plug-ins/iwarp -libexec/gimp/2.2/plug-ins/jigsaw -libexec/gimp/2.2/plug-ins/lcms -libexec/gimp/2.2/plug-ins/lens-apply -libexec/gimp/2.2/plug-ins/lens-distortion -libexec/gimp/2.2/plug-ins/lens-flare -libexec/gimp/2.2/plug-ins/lighting -libexec/gimp/2.2/plug-ins/mail -libexec/gimp/2.2/plug-ins/map-object -libexec/gimp/2.2/plug-ins/max-rgb -libexec/gimp/2.2/plug-ins/maze -libexec/gimp/2.2/plug-ins/metadata -libexec/gimp/2.2/plug-ins/mosaic -libexec/gimp/2.2/plug-ins/newsprint -libexec/gimp/2.2/plug-ins/nl-filter -libexec/gimp/2.2/plug-ins/noise-hsv -libexec/gimp/2.2/plug-ins/noise-randomize -libexec/gimp/2.2/plug-ins/noise-rgb -libexec/gimp/2.2/plug-ins/noise-solid -libexec/gimp/2.2/plug-ins/noise-spread -libexec/gimp/2.2/plug-ins/nova -libexec/gimp/2.2/plug-ins/oilify -libexec/gimp/2.2/plug-ins/pagecurl -libexec/gimp/2.2/plug-ins/photocopy -libexec/gimp/2.2/plug-ins/pixelize -libexec/gimp/2.2/plug-ins/plasma -libexec/gimp/2.2/plug-ins/plugin-browser -libexec/gimp/2.2/plug-ins/polar-coords -libexec/gimp/2.2/plug-ins/procedure-browser -libexec/gimp/2.2/plug-ins/qbist -libexec/gimp/2.2/plug-ins/red-eye-removal -libexec/gimp/2.2/plug-ins/ripple -libexec/gimp/2.2/plug-ins/rotate -libexec/gimp/2.2/plug-ins/sample-colorize -libexec/gimp/2.2/plug-ins/screenshot -libexec/gimp/2.2/plug-ins/script-fu -libexec/gimp/2.2/plug-ins/selection-to-path -libexec/gimp/2.2/plug-ins/semi-flatten -libexec/gimp/2.2/plug-ins/sharpen -libexec/gimp/2.2/plug-ins/shift -libexec/gimp/2.2/plug-ins/sinus -libexec/gimp/2.2/plug-ins/smooth-palette -libexec/gimp/2.2/plug-ins/softglow -libexec/gimp/2.2/plug-ins/sparkle -libexec/gimp/2.2/plug-ins/sphere-designer -libexec/gimp/2.2/plug-ins/threshold-alpha -libexec/gimp/2.2/plug-ins/tile -libexec/gimp/2.2/plug-ins/tile-glass -libexec/gimp/2.2/plug-ins/tile-paper -libexec/gimp/2.2/plug-ins/tile-seamless -libexec/gimp/2.2/plug-ins/tile-small -libexec/gimp/2.2/plug-ins/unit-editor -libexec/gimp/2.2/plug-ins/unsharp-mask -libexec/gimp/2.2/plug-ins/value-invert -libexec/gimp/2.2/plug-ins/value-propagate -libexec/gimp/2.2/plug-ins/van-gogh-lic -libexec/gimp/2.2/plug-ins/video -libexec/gimp/2.2/plug-ins/warp -libexec/gimp/2.2/plug-ins/waves -libexec/gimp/2.2/plug-ins/web-browser -libexec/gimp/2.2/plug-ins/whirl-pinch -libexec/gimp/2.2/plug-ins/wind -share/aclocal/gimp-2.0.m4 -share/applications/gimp.desktop -share/doc/gimp/libgimp/GimpAspectPreview.html -share/doc/gimp/libgimp/GimpBrushSelectButton.html -share/doc/gimp/libgimp/GimpDrawablePreview.html -share/doc/gimp/libgimp/GimpFontSelectButton.html -share/doc/gimp/libgimp/GimpGradientSelectButton.html -share/doc/gimp/libgimp/GimpImageComboBox.html -share/doc/gimp/libgimp/GimpPaletteSelectButton.html -share/doc/gimp/libgimp/GimpPatternSelectButton.html -share/doc/gimp/libgimp/GimpProcBrowserDialog.html -share/doc/gimp/libgimp/GimpProgressBar.html -share/doc/gimp/libgimp/GimpSelectButton.html -share/doc/gimp/libgimp/GimpZoomPreview.html -share/doc/gimp/libgimp/home.png -share/doc/gimp/libgimp/index.html -share/doc/gimp/libgimp/index.sgml -share/doc/gimp/libgimp/left.png -share/doc/gimp/libgimp/libgimp-GimpItemComboBox.html -share/doc/gimp/libgimp/libgimp-data.html -share/doc/gimp/libgimp/libgimp-general.html -share/doc/gimp/libgimp/libgimp-gimp.html -share/doc/gimp/libgimp/libgimp-gimpbrush.html -share/doc/gimp/libgimp/libgimp-gimpbrushes.html -share/doc/gimp/libgimp/libgimp-gimpbrushmenu.html -share/doc/gimp/libgimp/libgimp-gimpbrushselect.html -share/doc/gimp/libgimp/libgimp-gimpbuffer.html -share/doc/gimp/libgimp/libgimp-gimpchannel.html -share/doc/gimp/libgimp/libgimp-gimpcolor.html -share/doc/gimp/libgimp/libgimp-gimpcontext.html -share/doc/gimp/libgimp/libgimp-gimpconvert.html -share/doc/gimp/libgimp/libgimp-gimpdisplay.html -share/doc/gimp/libgimp/libgimp-gimpdrawable.html -share/doc/gimp/libgimp/libgimp-gimpdrawabletransform.html -share/doc/gimp/libgimp/libgimp-gimpedit.html -share/doc/gimp/libgimp/libgimp-gimpenums.html -share/doc/gimp/libgimp/libgimp-gimpexport.html -share/doc/gimp/libgimp/libgimp-gimpfileops.html -share/doc/gimp/libgimp/libgimp-gimpfloatingsel.html -share/doc/gimp/libgimp/libgimp-gimpfontmenu.html -share/doc/gimp/libgimp/libgimp-gimpfonts.html -share/doc/gimp/libgimp/libgimp-gimpfontselect.html -share/doc/gimp/libgimp/libgimp-gimpgimprc.html -share/doc/gimp/libgimp/libgimp-gimpgradient.html -share/doc/gimp/libgimp/libgimp-gimpgradientmenu.html -share/doc/gimp/libgimp/libgimp-gimpgradients.html -share/doc/gimp/libgimp/libgimp-gimpgradientselect.html -share/doc/gimp/libgimp/libgimp-gimpgrid.html -share/doc/gimp/libgimp/libgimp-gimpguides.html -share/doc/gimp/libgimp/libgimp-gimphelp.html -share/doc/gimp/libgimp/libgimp-gimpimage.html -share/doc/gimp/libgimp/libgimp-gimplayer.html -share/doc/gimp/libgimp/libgimp-gimpmenu.html -share/doc/gimp/libgimp/libgimp-gimpmessage.html -share/doc/gimp/libgimp/libgimp-gimppalette.html -share/doc/gimp/libgimp/libgimp-gimppalettemenu.html -share/doc/gimp/libgimp/libgimp-gimppalettes.html -share/doc/gimp/libgimp/libgimp-gimppaletteselect.html -share/doc/gimp/libgimp/libgimp-gimppaths.html -share/doc/gimp/libgimp/libgimp-gimppattern.html -share/doc/gimp/libgimp/libgimp-gimppatternmenu.html -share/doc/gimp/libgimp/libgimp-gimppatterns.html -share/doc/gimp/libgimp/libgimp-gimppatternselect.html -share/doc/gimp/libgimp/libgimp-gimppixbuf.html -share/doc/gimp/libgimp/libgimp-gimppixelfetcher.html -share/doc/gimp/libgimp/libgimp-gimppixelrgn.html -share/doc/gimp/libgimp/libgimp-gimpplugin.html -share/doc/gimp/libgimp/libgimp-gimpproceduraldb.html -share/doc/gimp/libgimp/libgimp-gimpprocview.html -share/doc/gimp/libgimp/libgimp-gimpprogress.html -share/doc/gimp/libgimp/libgimp-gimpregioniterator.html -share/doc/gimp/libgimp/libgimp-gimpselection.html -share/doc/gimp/libgimp/libgimp-gimptextlayer.html -share/doc/gimp/libgimp/libgimp-gimptexttool.html -share/doc/gimp/libgimp/libgimp-gimptile.html -share/doc/gimp/libgimp/libgimp-gimptools.html -share/doc/gimp/libgimp/libgimp-gimpui.html -share/doc/gimp/libgimp/libgimp-gimpundo.html -share/doc/gimp/libgimp/libgimp-gimpvectors.html -share/doc/gimp/libgimp/libgimp-image.html -share/doc/gimp/libgimp/libgimp-index-deprecated.html -share/doc/gimp/libgimp/libgimp-index-new-in-2-2.html -share/doc/gimp/libgimp/libgimp-index-new-in-2-4.html -share/doc/gimp/libgimp/libgimp-index-new-in-2-6.html -share/doc/gimp/libgimp/libgimp-index.html -share/doc/gimp/libgimp/libgimp-selectors.html -share/doc/gimp/libgimp/libgimp.devhelp -share/doc/gimp/libgimp/libgimp.devhelp2 -share/doc/gimp/libgimp/libgimp.html -share/doc/gimp/libgimp/libgimpui-hierarchy.html -share/doc/gimp/libgimp/libgimpui.html -share/doc/gimp/libgimp/right.png -share/doc/gimp/libgimp/style.css -share/doc/gimp/libgimp/up.png -share/doc/gimp/libgimpbase/home.png -share/doc/gimp/libgimpbase/index.html -share/doc/gimp/libgimpbase/index.sgml -share/doc/gimp/libgimpbase/left.png -share/doc/gimp/libgimpbase/libgimpbase-gimpbaseenums.html -share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html -share/doc/gimp/libgimpbase/libgimpbase-gimpchecks.html -share/doc/gimp/libgimpbase/libgimpbase-gimpcpuaccel.html -share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html -share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html -share/doc/gimp/libgimpbase/libgimpbase-gimplimits.html -share/doc/gimp/libgimpbase/libgimpbase-gimpmemsize.html -share/doc/gimp/libgimpbase/libgimpbase-gimpparam.html -share/doc/gimp/libgimpbase/libgimpbase-gimpparasite.html -share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html -share/doc/gimp/libgimpbase/libgimpbase-gimprectangle.html -share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html -share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html -share/doc/gimp/libgimpbase/libgimpbase-gimputils.html -share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html -share/doc/gimp/libgimpbase/libgimpbase-index-deprecated.html -share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-2.html -share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-4.html -share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-6.html -share/doc/gimp/libgimpbase/libgimpbase-index.html -share/doc/gimp/libgimpbase/libgimpbase.devhelp -share/doc/gimp/libgimpbase/libgimpbase.devhelp2 -share/doc/gimp/libgimpbase/libgimpbase.html -share/doc/gimp/libgimpbase/right.png -share/doc/gimp/libgimpbase/style.css -share/doc/gimp/libgimpbase/up.png -share/doc/gimp/libgimpcolor/home.png -share/doc/gimp/libgimpcolor/index.html -share/doc/gimp/libgimpcolor/index.sgml -share/doc/gimp/libgimpcolor/left.png -share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html -share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html -share/doc/gimp/libgimpcolor/libgimpcolor-GimpCMYK.html -share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorManaged.html -share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html -share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html -share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-deprecated.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-2.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-4.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-6.html -share/doc/gimp/libgimpcolor/libgimpcolor-index.html -share/doc/gimp/libgimpcolor/libgimpcolor.devhelp -share/doc/gimp/libgimpcolor/libgimpcolor.devhelp2 -share/doc/gimp/libgimpcolor/libgimpcolor.html -share/doc/gimp/libgimpcolor/right.png -share/doc/gimp/libgimpcolor/style.css -share/doc/gimp/libgimpcolor/up.png -share/doc/gimp/libgimpconfig/GimpColorConfig.html -share/doc/gimp/libgimpconfig/home.png -share/doc/gimp/libgimpconfig/index.html -share/doc/gimp/libgimpconfig/index.sgml -share/doc/gimp/libgimpconfig/left.png -share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfig.html -share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigError.html -share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigWriter.html -share/doc/gimp/libgimpconfig/libgimpconfig-GimpScanner.html -share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-deserialize.html -share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-params.html -share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-path.html -share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-serialize.html -share/doc/gimp/libgimpconfig/libgimpconfig-gimpconfig-utils.html -share/doc/gimp/libgimpconfig/libgimpconfig-hierarchy.html -share/doc/gimp/libgimpconfig/libgimpconfig-index-deprecated.html -share/doc/gimp/libgimpconfig/libgimpconfig-index-new-in-2-4.html -share/doc/gimp/libgimpconfig/libgimpconfig-index-new-in-2-6.html -share/doc/gimp/libgimpconfig/libgimpconfig-index.html -share/doc/gimp/libgimpconfig/libgimpconfig.devhelp -share/doc/gimp/libgimpconfig/libgimpconfig.devhelp2 -share/doc/gimp/libgimpconfig/libgimpconfig.html -share/doc/gimp/libgimpconfig/right.png -share/doc/gimp/libgimpconfig/style.css -share/doc/gimp/libgimpconfig/up.png -share/doc/gimp/libgimpmath/home.png -share/doc/gimp/libgimpmath/index.html -share/doc/gimp/libgimpmath/index.sgml -share/doc/gimp/libgimpmath/left.png -share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html -share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html -share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html -share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html -share/doc/gimp/libgimpmath/libgimpmath-index-deprecated.html -share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-2.html -share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-4.html -share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-6.html -share/doc/gimp/libgimpmath/libgimpmath-index.html -share/doc/gimp/libgimpmath/libgimpmath.devhelp -share/doc/gimp/libgimpmath/libgimpmath.devhelp2 -share/doc/gimp/libgimpmath/libgimpmath.html -share/doc/gimp/libgimpmath/right.png -share/doc/gimp/libgimpmath/style.css -share/doc/gimp/libgimpmath/up.png -share/doc/gimp/libgimpmodule/GimpModule.html -share/doc/gimp/libgimpmodule/GimpModuleDB.html -share/doc/gimp/libgimpmodule/home.png -share/doc/gimp/libgimpmodule/index.html -share/doc/gimp/libgimpmodule/index.sgml -share/doc/gimp/libgimpmodule/left.png -share/doc/gimp/libgimpmodule/libgimpmodule-index-deprecated.html -share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-2.html -share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-4.html -share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-6.html -share/doc/gimp/libgimpmodule/libgimpmodule-index.html -share/doc/gimp/libgimpmodule/libgimpmodule.devhelp -share/doc/gimp/libgimpmodule/libgimpmodule.devhelp2 -share/doc/gimp/libgimpmodule/libgimpmodule.html -share/doc/gimp/libgimpmodule/right.png -share/doc/gimp/libgimpmodule/style.css -share/doc/gimp/libgimpmodule/up.png -share/doc/gimp/libgimpthumb/GimpThumbnail.html -share/doc/gimp/libgimpthumb/home.png -share/doc/gimp/libgimpthumb/index.html -share/doc/gimp/libgimpthumb/index.sgml -share/doc/gimp/libgimpthumb/left.png -share/doc/gimp/libgimpthumb/libgimpthumb-gimpthumb-enums.html -share/doc/gimp/libgimpthumb/libgimpthumb-gimpthumb-error.html -share/doc/gimp/libgimpthumb/libgimpthumb-gimpthumb-utils.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-deprecated.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-2.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-4.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-6.html -share/doc/gimp/libgimpthumb/libgimpthumb-index.html -share/doc/gimp/libgimpthumb/libgimpthumb.devhelp -share/doc/gimp/libgimpthumb/libgimpthumb.devhelp2 -share/doc/gimp/libgimpthumb/libgimpthumb.html -share/doc/gimp/libgimpthumb/right.png -share/doc/gimp/libgimpthumb/style.css -share/doc/gimp/libgimpthumb/up.png -share/doc/gimp/libgimpwidgets/GimpBrowser.html -share/doc/gimp/libgimpwidgets/GimpButton.html -share/doc/gimp/libgimpwidgets/GimpCellRendererColor.html -share/doc/gimp/libgimpwidgets/GimpCellRendererToggle.html -share/doc/gimp/libgimpwidgets/GimpChainButton.html -share/doc/gimp/libgimpwidgets/GimpColorArea.html -share/doc/gimp/libgimpwidgets/GimpColorButton.html -share/doc/gimp/libgimpwidgets/GimpColorDisplay.html -share/doc/gimp/libgimpwidgets/GimpColorDisplayStack.html -share/doc/gimp/libgimpwidgets/GimpColorHexEntry.html -share/doc/gimp/libgimpwidgets/GimpColorNotebook.html -share/doc/gimp/libgimpwidgets/GimpColorProfileComboBox.html -share/doc/gimp/libgimpwidgets/GimpColorProfileStore.html -share/doc/gimp/libgimpwidgets/GimpColorScale.html -share/doc/gimp/libgimpwidgets/GimpColorScales.html -share/doc/gimp/libgimpwidgets/GimpColorSelect.html -share/doc/gimp/libgimpwidgets/GimpColorSelection.html -share/doc/gimp/libgimpwidgets/GimpColorSelector.html -share/doc/gimp/libgimpwidgets/GimpController.html -share/doc/gimp/libgimpwidgets/GimpDialog.html -share/doc/gimp/libgimpwidgets/GimpEnumComboBox.html -share/doc/gimp/libgimpwidgets/GimpEnumLabel.html -share/doc/gimp/libgimpwidgets/GimpEnumStore.html -share/doc/gimp/libgimpwidgets/GimpFileEntry.html -share/doc/gimp/libgimpwidgets/GimpFrame.html -share/doc/gimp/libgimpwidgets/GimpIntComboBox.html -share/doc/gimp/libgimpwidgets/GimpIntStore.html -share/doc/gimp/libgimpwidgets/GimpMemsizeEntry.html -share/doc/gimp/libgimpwidgets/GimpNumberPairEntry.html -share/doc/gimp/libgimpwidgets/GimpOffsetArea.html -share/doc/gimp/libgimpwidgets/GimpPageSelector.html -share/doc/gimp/libgimpwidgets/GimpPathEditor.html -share/doc/gimp/libgimpwidgets/GimpPickButton.html -share/doc/gimp/libgimpwidgets/GimpPixmap.html -share/doc/gimp/libgimpwidgets/GimpPreview.html -share/doc/gimp/libgimpwidgets/GimpPreviewArea.html -share/doc/gimp/libgimpwidgets/GimpRuler.html -share/doc/gimp/libgimpwidgets/GimpScrolledPreview.html -share/doc/gimp/libgimpwidgets/GimpSizeEntry.html -share/doc/gimp/libgimpwidgets/GimpStringComboBox.html -share/doc/gimp/libgimpwidgets/GimpUnitMenu.html -share/doc/gimp/libgimpwidgets/GimpZoomModel.html -share/doc/gimp/libgimpwidgets/gimp-browser.png -share/doc/gimp/libgimpwidgets/gimp-button.png -share/doc/gimp/libgimpwidgets/gimp-chain-button.png -share/doc/gimp/libgimpwidgets/gimp-color-area.png -share/doc/gimp/libgimpwidgets/gimp-color-button.png -share/doc/gimp/libgimpwidgets/gimp-color-hex-entry.png -share/doc/gimp/libgimpwidgets/gimp-color-profile-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-color-scale.png -share/doc/gimp/libgimpwidgets/gimp-color-selection.png -share/doc/gimp/libgimpwidgets/gimp-dialog.png -share/doc/gimp/libgimpwidgets/gimp-enum-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-enum-label.png -share/doc/gimp/libgimpwidgets/gimp-file-entry.png -share/doc/gimp/libgimpwidgets/gimp-frame.png -share/doc/gimp/libgimpwidgets/gimp-hint-box.png -share/doc/gimp/libgimpwidgets/gimp-int-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-memsize-entry.png -share/doc/gimp/libgimpwidgets/gimp-number-pair-entry.png -share/doc/gimp/libgimpwidgets/gimp-offset-area.png -share/doc/gimp/libgimpwidgets/gimp-page-selector.png -share/doc/gimp/libgimpwidgets/gimp-path-editor.png -share/doc/gimp/libgimpwidgets/gimp-pick-button.png -share/doc/gimp/libgimpwidgets/gimp-preview-area.png -share/doc/gimp/libgimpwidgets/gimp-string-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-unit-menu.png -share/doc/gimp/libgimpwidgets/home.png -share/doc/gimp/libgimpwidgets/index.html -share/doc/gimp/libgimpwidgets/index.sgml -share/doc/gimp/libgimpwidgets/left.png -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpCairoUtils.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpEnumWidgets.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHintBox.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpPropWidgets.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-cell-renderers.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-controller.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-deprecated.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-gallery.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-gimpoldwidgets.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-hierarchy.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-deprecated.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-2.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-4.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-6.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html -share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp -share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp2 -share/doc/gimp/libgimpwidgets/right.png -share/doc/gimp/libgimpwidgets/stock-anchor-16.png -share/doc/gimp/libgimpwidgets/stock-cap-butt-16.png -share/doc/gimp/libgimpwidgets/stock-cap-round-16.png -share/doc/gimp/libgimpwidgets/stock-cap-square-16.png -share/doc/gimp/libgimpwidgets/stock-center-16.png -share/doc/gimp/libgimpwidgets/stock-center-24.png -share/doc/gimp/libgimpwidgets/stock-channel-16.png -share/doc/gimp/libgimpwidgets/stock-channel-24.png -share/doc/gimp/libgimpwidgets/stock-channel-32.png -share/doc/gimp/libgimpwidgets/stock-channel-48.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-16.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-24.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-32.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-48.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-16.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-24.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-32.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-48.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-16.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-24.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-32.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-48.png -share/doc/gimp/libgimpwidgets/stock-channel-green-16.png -share/doc/gimp/libgimpwidgets/stock-channel-green-24.png -share/doc/gimp/libgimpwidgets/stock-channel-green-32.png -share/doc/gimp/libgimpwidgets/stock-channel-green-48.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-16.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-24.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-32.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-48.png -share/doc/gimp/libgimpwidgets/stock-channel-red-16.png -share/doc/gimp/libgimpwidgets/stock-channel-red-24.png -share/doc/gimp/libgimpwidgets/stock-channel-red-32.png -share/doc/gimp/libgimpwidgets/stock-channel-red-48.png -share/doc/gimp/libgimpwidgets/stock-channels-16.png -share/doc/gimp/libgimpwidgets/stock-channels-24.png -share/doc/gimp/libgimpwidgets/stock-char-picker-22.png -share/doc/gimp/libgimpwidgets/stock-close-12.png -share/doc/gimp/libgimpwidgets/stock-color-pick-from-screen-16.png -share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png -share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png -share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png -share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png -share/doc/gimp/libgimpwidgets/stock-colormap-16.png -share/doc/gimp/libgimpwidgets/stock-colormap-24.png -share/doc/gimp/libgimpwidgets/stock-controller-16.png -share/doc/gimp/libgimpwidgets/stock-controller-24.png -share/doc/gimp/libgimpwidgets/stock-controller-keyboard-16.png -share/doc/gimp/libgimpwidgets/stock-controller-keyboard-24.png -share/doc/gimp/libgimpwidgets/stock-controller-linux-input-16.png -share/doc/gimp/libgimpwidgets/stock-controller-linux-input-24.png -share/doc/gimp/libgimpwidgets/stock-controller-midi-16.png -share/doc/gimp/libgimpwidgets/stock-controller-midi-24.png -share/doc/gimp/libgimpwidgets/stock-controller-wheel-16.png -share/doc/gimp/libgimpwidgets/stock-controller-wheel-24.png -share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png -share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png -share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png -share/doc/gimp/libgimpwidgets/stock-cursor-16.png -share/doc/gimp/libgimpwidgets/stock-cursor-24.png -share/doc/gimp/libgimpwidgets/stock-curve-free-16.png -share/doc/gimp/libgimpwidgets/stock-curve-smooth-16.png -share/doc/gimp/libgimpwidgets/stock-default-colors-12.png -share/doc/gimp/libgimpwidgets/stock-device-status-16.png -share/doc/gimp/libgimpwidgets/stock-device-status-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-colorblind-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-colorblind-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-contrast-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-contrast-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-gamma-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-gamma-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-lcms-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-lcms-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-proof-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-proof-24.png -share/doc/gimp/libgimpwidgets/stock-duplicate-16.png -share/doc/gimp/libgimpwidgets/stock-edit-16.png -share/doc/gimp/libgimpwidgets/stock-error-64.png -share/doc/gimp/libgimpwidgets/stock-eye-12.png -share/doc/gimp/libgimpwidgets/stock-eye-20.png -share/doc/gimp/libgimpwidgets/stock-flip-horizontal-16.png -share/doc/gimp/libgimpwidgets/stock-flip-vertical-16.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-16.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-24.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-32.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-48.png -share/doc/gimp/libgimpwidgets/stock-frame-64.png -share/doc/gimp/libgimpwidgets/stock-gegl-16.png -share/doc/gimp/libgimpwidgets/stock-gegl-22.png -share/doc/gimp/libgimpwidgets/stock-gradient-bilinear-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-conical-asymmetric-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-conical-symmetric-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-linear-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-radial-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-angular-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-dimpled-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-spherical-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-spiral-anticlockwise-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-spiral-clockwise-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-square-16.png -share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png -share/doc/gimp/libgimpwidgets/stock-grid-16.png -share/doc/gimp/libgimpwidgets/stock-hcenter-24.png -share/doc/gimp/libgimpwidgets/stock-hchain-24.png -share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png -share/doc/gimp/libgimpwidgets/stock-histogram-16.png -share/doc/gimp/libgimpwidgets/stock-histogram-22.png -share/doc/gimp/libgimpwidgets/stock-histogram-linear-16.png -share/doc/gimp/libgimpwidgets/stock-histogram-logarithmic-16.png -share/doc/gimp/libgimpwidgets/stock-image-16.png -share/doc/gimp/libgimpwidgets/stock-image-24.png -share/doc/gimp/libgimpwidgets/stock-image-32.png -share/doc/gimp/libgimpwidgets/stock-image-48.png -share/doc/gimp/libgimpwidgets/stock-images-16.png -share/doc/gimp/libgimpwidgets/stock-images-24.png -share/doc/gimp/libgimpwidgets/stock-info-16.png -share/doc/gimp/libgimpwidgets/stock-info-24.png -share/doc/gimp/libgimpwidgets/stock-info-64.png -share/doc/gimp/libgimpwidgets/stock-invert-16.png -share/doc/gimp/libgimpwidgets/stock-join-bevel-16.png -share/doc/gimp/libgimpwidgets/stock-join-miter-16.png -share/doc/gimp/libgimpwidgets/stock-join-round-16.png -share/doc/gimp/libgimpwidgets/stock-landscape-16.png -share/doc/gimp/libgimpwidgets/stock-landscape-22.png -share/doc/gimp/libgimpwidgets/stock-layer-16.png -share/doc/gimp/libgimpwidgets/stock-layer-24.png -share/doc/gimp/libgimpwidgets/stock-layer-32.png -share/doc/gimp/libgimpwidgets/stock-layer-48.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-16.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-24.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-32.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-48.png -share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png -share/doc/gimp/libgimpwidgets/stock-layers-16.png -share/doc/gimp/libgimpwidgets/stock-layers-24.png -share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png -share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png -share/doc/gimp/libgimpwidgets/stock-linked-12.png -share/doc/gimp/libgimpwidgets/stock-linked-20.png -share/doc/gimp/libgimpwidgets/stock-list-16.png -share/doc/gimp/libgimpwidgets/stock-menu-left-12.png -share/doc/gimp/libgimpwidgets/stock-menu-right-12.png -share/doc/gimp/libgimpwidgets/stock-merge-down-16.png -share/doc/gimp/libgimpwidgets/stock-move-to-screen-16.png -share/doc/gimp/libgimpwidgets/stock-move-to-screen-24.png -share/doc/gimp/libgimpwidgets/stock-navigation-16.png -share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png -share/doc/gimp/libgimpwidgets/stock-paste-into-16.png -share/doc/gimp/libgimpwidgets/stock-path-16.png -share/doc/gimp/libgimpwidgets/stock-path-22.png -share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png -share/doc/gimp/libgimpwidgets/stock-paths-16.png -share/doc/gimp/libgimpwidgets/stock-paths-22.png -share/doc/gimp/libgimpwidgets/stock-plugin-16.png -share/doc/gimp/libgimpwidgets/stock-portrait-16.png -share/doc/gimp/libgimpwidgets/stock-portrait-22.png -share/doc/gimp/libgimpwidgets/stock-print-resolution-16.png -share/doc/gimp/libgimpwidgets/stock-print-resolution-24.png -share/doc/gimp/libgimpwidgets/stock-question-64.png -share/doc/gimp/libgimpwidgets/stock-quick-mask-off-12.png -share/doc/gimp/libgimpwidgets/stock-quick-mask-on-12.png -share/doc/gimp/libgimpwidgets/stock-reset-16.png -share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png -share/doc/gimp/libgimpwidgets/stock-resize-16.png -share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png -share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png -share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png -share/doc/gimp/libgimpwidgets/stock-sample-point-16.png -share/doc/gimp/libgimpwidgets/stock-sample-point-24.png -share/doc/gimp/libgimpwidgets/stock-scale-16.png -share/doc/gimp/libgimpwidgets/stock-selection-16.png -share/doc/gimp/libgimpwidgets/stock-selection-add-16.png -share/doc/gimp/libgimpwidgets/stock-selection-all-16.png -share/doc/gimp/libgimpwidgets/stock-selection-border-16.png -share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png -share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png -share/doc/gimp/libgimpwidgets/stock-selection-none-16.png -share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png -share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png -share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png -share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png -share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png -share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png -share/doc/gimp/libgimpwidgets/stock-shape-circle-16.png -share/doc/gimp/libgimpwidgets/stock-shape-diamond-16.png -share/doc/gimp/libgimpwidgets/stock-shape-square-16.png -share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png -share/doc/gimp/libgimpwidgets/stock-template-16.png -share/doc/gimp/libgimpwidgets/stock-template-24.png -share/doc/gimp/libgimpwidgets/stock-text-dir-ltr-24.png -share/doc/gimp/libgimpwidgets/stock-text-dir-rtl-24.png -share/doc/gimp/libgimpwidgets/stock-text-layer-16.png -share/doc/gimp/libgimpwidgets/stock-text-layer-24.png -share/doc/gimp/libgimpwidgets/stock-text-layer-32.png -share/doc/gimp/libgimpwidgets/stock-text-layer-48.png -share/doc/gimp/libgimpwidgets/stock-texture-64.png -share/doc/gimp/libgimpwidgets/stock-toilet-paper-16.png -share/doc/gimp/libgimpwidgets/stock-toilet-paper-24.png -share/doc/gimp/libgimpwidgets/stock-tool-airbrush-16.png -share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png -share/doc/gimp/libgimpwidgets/stock-tool-align-16.png -share/doc/gimp/libgimpwidgets/stock-tool-align-22.png -share/doc/gimp/libgimpwidgets/stock-tool-blend-16.png -share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png -share/doc/gimp/libgimpwidgets/stock-tool-blur-16.png -share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png -share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-16.png -share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png -share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-16.png -share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png -share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-clone-16.png -share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png -share/doc/gimp/libgimpwidgets/stock-tool-color-balance-16.png -share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png -share/doc/gimp/libgimpwidgets/stock-tool-color-picker-16.png -share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png -share/doc/gimp/libgimpwidgets/stock-tool-colorize-16.png -share/doc/gimp/libgimpwidgets/stock-tool-colorize-22.png -share/doc/gimp/libgimpwidgets/stock-tool-crop-16.png -share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png -share/doc/gimp/libgimpwidgets/stock-tool-curves-16.png -share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png -share/doc/gimp/libgimpwidgets/stock-tool-dodge-16.png -share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png -share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-eraser-16.png -share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png -share/doc/gimp/libgimpwidgets/stock-tool-flip-16.png -share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png -share/doc/gimp/libgimpwidgets/stock-tool-foreground-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-foreground-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-free-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-heal-16.png -share/doc/gimp/libgimpwidgets/stock-tool-heal-22.png -share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-16.png -share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png -share/doc/gimp/libgimpwidgets/stock-tool-ink-16.png -share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png -share/doc/gimp/libgimpwidgets/stock-tool-iscissors-16.png -share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png -share/doc/gimp/libgimpwidgets/stock-tool-levels-16.png -share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png -share/doc/gimp/libgimpwidgets/stock-tool-measure-16.png -share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png -share/doc/gimp/libgimpwidgets/stock-tool-move-16.png -share/doc/gimp/libgimpwidgets/stock-tool-move-22.png -share/doc/gimp/libgimpwidgets/stock-tool-options-16.png -share/doc/gimp/libgimpwidgets/stock-tool-options-24.png -share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-16.png -share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png -share/doc/gimp/libgimpwidgets/stock-tool-path-16.png -share/doc/gimp/libgimpwidgets/stock-tool-path-22.png -share/doc/gimp/libgimpwidgets/stock-tool-pencil-16.png -share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-16.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-clone-16.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-clone-22.png -share/doc/gimp/libgimpwidgets/stock-tool-posterize-16.png -share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png -share/doc/gimp/libgimpwidgets/stock-tool-rect-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-rotate-16.png -share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png -share/doc/gimp/libgimpwidgets/stock-tool-scale-16.png -share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png -share/doc/gimp/libgimpwidgets/stock-tool-shear-16.png -share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png -share/doc/gimp/libgimpwidgets/stock-tool-smudge-16.png -share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png -share/doc/gimp/libgimpwidgets/stock-tool-text-16.png -share/doc/gimp/libgimpwidgets/stock-tool-text-22.png -share/doc/gimp/libgimpwidgets/stock-tool-threshold-16.png -share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png -share/doc/gimp/libgimpwidgets/stock-tool-zoom-16.png -share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png -share/doc/gimp/libgimpwidgets/stock-tools-16.png -share/doc/gimp/libgimpwidgets/stock-tools-24.png -share/doc/gimp/libgimpwidgets/stock-transparency-16.png -share/doc/gimp/libgimpwidgets/stock-transparency-24.png -share/doc/gimp/libgimpwidgets/stock-undo-history-16.png -share/doc/gimp/libgimpwidgets/stock-undo-history-24.png -share/doc/gimp/libgimpwidgets/stock-user-manual-16.png -share/doc/gimp/libgimpwidgets/stock-user-manual-24.png -share/doc/gimp/libgimpwidgets/stock-user-manual-32.png -share/doc/gimp/libgimpwidgets/stock-user-manual-64.png -share/doc/gimp/libgimpwidgets/stock-vcenter-24.png -share/doc/gimp/libgimpwidgets/stock-vchain-24.png -share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png -share/doc/gimp/libgimpwidgets/stock-video-16.png -share/doc/gimp/libgimpwidgets/stock-video-24.png -share/doc/gimp/libgimpwidgets/stock-warning-16.png -share/doc/gimp/libgimpwidgets/stock-warning-24.png -share/doc/gimp/libgimpwidgets/stock-warning-64.png -share/doc/gimp/libgimpwidgets/stock-web-16.png -share/doc/gimp/libgimpwidgets/stock-web-24.png -share/doc/gimp/libgimpwidgets/stock-wilber-16.png -share/doc/gimp/libgimpwidgets/stock-wilber-22.png -share/doc/gimp/libgimpwidgets/stock-wilber-64.png -share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png -share/doc/gimp/libgimpwidgets/stock-zoom-follow-window-12.png -share/doc/gimp/libgimpwidgets/style.css -share/doc/gimp/libgimpwidgets/up.png -share/gimp/brushes/10x10square.gbr -share/gimp/brushes/10x10squareBlur.gbr -share/gimp/brushes/20x20square.gbr -share/gimp/brushes/20x20squareBlur.gbr -share/gimp/brushes/5x5square.gbr -share/gimp/brushes/5x5squareBlur.gbr -share/gimp/brushes/Calligraphic-Brush-0.vbr -share/gimp/brushes/Calligraphic-Brush-1.vbr -share/gimp/brushes/Calligraphic-Brush-2.vbr -share/gimp/brushes/Calligraphic-Brush-3.vbr -share/gimp/brushes/Circle-1.vbr -share/gimp/brushes/Circle-11.vbr -share/gimp/brushes/Circle-13.vbr -share/gimp/brushes/Circle-15.vbr -share/gimp/brushes/Circle-17.vbr -share/gimp/brushes/Circle-19.vbr -share/gimp/brushes/Circle-3.vbr -share/gimp/brushes/Circle-5.vbr -share/gimp/brushes/Circle-7.vbr -share/gimp/brushes/Circle-9.vbr -share/gimp/brushes/Circle-Fuzzy-11.vbr -share/gimp/brushes/Circle-Fuzzy-13.vbr -share/gimp/brushes/Circle-Fuzzy-15.vbr -share/gimp/brushes/Circle-Fuzzy-17.vbr -share/gimp/brushes/Circle-Fuzzy-19.vbr -share/gimp/brushes/Circle-Fuzzy-3.vbr -share/gimp/brushes/Circle-Fuzzy-5.vbr -share/gimp/brushes/Circle-Fuzzy-7.vbr -share/gimp/brushes/Circle-Fuzzy-9.vbr -share/gimp/brushes/Diagonal-Star-11.vbr -share/gimp/brushes/Diagonal-Star-17.vbr -share/gimp/brushes/Diagonal-Star-25.vbr -share/gimp/brushes/SketchBrush-16.gih -share/gimp/brushes/SketchBrush-32.gih -share/gimp/brushes/SketchBrush-64.gih -share/gimp/brushes/confetti.gbr -share/gimp/brushes/confetti.gih -share/gimp/brushes/dunes.gbr -share/gimp/brushes/feltpen.gih -share/gimp/brushes/galaxy.gbr -share/gimp/brushes/galaxy_big.gbr -share/gimp/brushes/galaxy_small.gbr -share/gimp/brushes/hsparks.gih -share/gimp/brushes/pepper.gbr -share/gimp/brushes/pixel.gbr -share/gimp/brushes/vine.gih -share/gimp/fractalexplorer/Asteroid_Field -share/gimp/fractalexplorer/Bar_Code_Label -share/gimp/fractalexplorer/Beauty_of_Nature -share/gimp/fractalexplorer/Blue_Curtain -share/gimp/fractalexplorer/Car_Track -share/gimp/fractalexplorer/Energetic_Diamond -share/gimp/fractalexplorer/Explosive -share/gimp/fractalexplorer/Flower -share/gimp/fractalexplorer/Fragments -share/gimp/fractalexplorer/Hemp -share/gimp/fractalexplorer/High_Voltage -share/gimp/fractalexplorer/Hoops -share/gimp/fractalexplorer/Ice_Crystal -share/gimp/fractalexplorer/Leaves -share/gimp/fractalexplorer/Lightning -share/gimp/fractalexplorer/Mandelbrot -share/gimp/fractalexplorer/Marble -share/gimp/fractalexplorer/Marble2 -share/gimp/fractalexplorer/Medusa -share/gimp/fractalexplorer/Nautilus -share/gimp/fractalexplorer/Nebula -share/gimp/fractalexplorer/Plant -share/gimp/fractalexplorer/Rose -share/gimp/fractalexplorer/Saturn -share/gimp/fractalexplorer/Snow_Crystal -share/gimp/fractalexplorer/Soma -share/gimp/fractalexplorer/Spark -share/gimp/fractalexplorer/Suns -share/gimp/fractalexplorer/Tentacles -share/gimp/fractalexplorer/The_Green_Place -share/gimp/fractalexplorer/Wave -share/gimp/fractalexplorer/Wood -share/gimp/fractalexplorer/Zooming_Circle -share/gimp/gfig/A_star -share/gimp/gfig/curves -share/gimp/gfig/polys -share/gimp/gfig/ring -share/gimp/gfig/ring+star -share/gimp/gfig/simily -share/gimp/gfig/spirals_and_stars -share/gimp/gfig/sprial -share/gimp/gfig/star2 -share/gimp/gfig/stars -share/gimp/gflare/Bright_Star -share/gimp/gflare/Classic -share/gimp/gflare/Default -share/gimp/gflare/Distant_Sun -share/gimp/gflare/GFlare_101 -share/gimp/gflare/GFlare_102 -share/gimp/gflare/Hidden_Planet -share/gimp/gimpressionist/Brushes/arrow01.pgm -share/gimp/gimpressionist/Brushes/ball.ppm -share/gimp/gimpressionist/Brushes/blob.ppm -share/gimp/gimpressionist/Brushes/box.ppm -share/gimp/gimpressionist/Brushes/chalk01.pgm -share/gimp/gimpressionist/Brushes/cone.ppm -share/gimp/gimpressionist/Brushes/crayon01.pgm -share/gimp/gimpressionist/Brushes/crayon02.pgm -share/gimp/gimpressionist/Brushes/crayon03.pgm -share/gimp/gimpressionist/Brushes/crayon04.pgm -share/gimp/gimpressionist/Brushes/crayon05.pgm -share/gimp/gimpressionist/Brushes/crayon06.pgm -share/gimp/gimpressionist/Brushes/crayon07.pgm -share/gimp/gimpressionist/Brushes/crayon08.pgm -share/gimp/gimpressionist/Brushes/defaultbrush.pgm -share/gimp/gimpressionist/Brushes/dribble.pgm -share/gimp/gimpressionist/Brushes/fabric.pgm -share/gimp/gimpressionist/Brushes/fabric01.pgm -share/gimp/gimpressionist/Brushes/fabric02.pgm -share/gimp/gimpressionist/Brushes/fabric03.pgm -share/gimp/gimpressionist/Brushes/flower01.pgm -share/gimp/gimpressionist/Brushes/flower02.pgm -share/gimp/gimpressionist/Brushes/flower03.pgm -share/gimp/gimpressionist/Brushes/flower04.pgm -share/gimp/gimpressionist/Brushes/grad01.pgm -share/gimp/gimpressionist/Brushes/grad02.pgm -share/gimp/gimpressionist/Brushes/grad03.pgm -share/gimp/gimpressionist/Brushes/heart.ppm -share/gimp/gimpressionist/Brushes/leaf01.pgm -share/gimp/gimpressionist/Brushes/paintbrush.pgm -share/gimp/gimpressionist/Brushes/paintbrush01.pgm -share/gimp/gimpressionist/Brushes/paintbrush02.pgm -share/gimp/gimpressionist/Brushes/paintbrush03.pgm -share/gimp/gimpressionist/Brushes/paintbrush04.pgm -share/gimp/gimpressionist/Brushes/paper01.pgm -share/gimp/gimpressionist/Brushes/paper02.pgm -share/gimp/gimpressionist/Brushes/paper03.pgm -share/gimp/gimpressionist/Brushes/paper04.pgm -share/gimp/gimpressionist/Brushes/pentagram.pgm -share/gimp/gimpressionist/Brushes/scribble.pgm -share/gimp/gimpressionist/Brushes/shape01.pgm -share/gimp/gimpressionist/Brushes/shape02.pgm -share/gimp/gimpressionist/Brushes/shape03.pgm -share/gimp/gimpressionist/Brushes/shape04.pgm -share/gimp/gimpressionist/Brushes/snow1.pgm -share/gimp/gimpressionist/Brushes/sphere.ppm -share/gimp/gimpressionist/Brushes/splat1.pgm -share/gimp/gimpressionist/Brushes/splat2.pgm -share/gimp/gimpressionist/Brushes/splat3.pgm -share/gimp/gimpressionist/Brushes/spunge01.pgm -share/gimp/gimpressionist/Brushes/spunge02.pgm -share/gimp/gimpressionist/Brushes/spunge03.pgm -share/gimp/gimpressionist/Brushes/spunge04.pgm -share/gimp/gimpressionist/Brushes/spunge05.pgm -share/gimp/gimpressionist/Brushes/strange01.pgm -share/gimp/gimpressionist/Brushes/thegimp.pgm -share/gimp/gimpressionist/Brushes/torus.ppm -share/gimp/gimpressionist/Brushes/wavy.pgm -share/gimp/gimpressionist/Brushes/weave.pgm -share/gimp/gimpressionist/Brushes/worm.pgm -share/gimp/gimpressionist/Paper/bricks.pgm -share/gimp/gimpressionist/Paper/bricks2.pgm -share/gimp/gimpressionist/Paper/burlap.pgm -share/gimp/gimpressionist/Paper/canvas2.pgm -share/gimp/gimpressionist/Paper/defaultpaper.pgm -share/gimp/gimpressionist/Paper/marble.pgm -share/gimp/gimpressionist/Paper/marble2.pgm -share/gimp/gimpressionist/Paper/stone.pgm -share/gimp/gimpressionist/Paper/struc.pgm -share/gimp/gimpressionist/Presets/ApplyCanvas -share/gimp/gimpressionist/Presets/Ballpark -share/gimp/gimpressionist/Presets/Canvas -share/gimp/gimpressionist/Presets/Crosshatch -share/gimp/gimpressionist/Presets/Cubism -share/gimp/gimpressionist/Presets/Dotify -share/gimp/gimpressionist/Presets/Embroidery -share/gimp/gimpressionist/Presets/Feathers -share/gimp/gimpressionist/Presets/Felt-marker -share/gimp/gimpressionist/Presets/Flowerbed -share/gimp/gimpressionist/Presets/Furry -share/gimp/gimpressionist/Presets/Line-art -share/gimp/gimpressionist/Presets/Line-art-2 -share/gimp/gimpressionist/Presets/Maggot-invasion -share/gimp/gimpressionist/Presets/MarbleMadness -share/gimp/gimpressionist/Presets/Mossy -share/gimp/gimpressionist/Presets/Painted_Rock -share/gimp/gimpressionist/Presets/Parquette -share/gimp/gimpressionist/Presets/Patchwork -share/gimp/gimpressionist/Presets/Ringworks -share/gimp/gimpressionist/Presets/Sample -share/gimp/gimpressionist/Presets/Smash -share/gimp/gimpressionist/Presets/Straws -share/gimp/gimpressionist/Presets/Weave -share/gimp/gimpressionist/Presets/Wormcan -share/gimp/gradients/Abstract_1.ggr -share/gimp/gradients/Abstract_2.ggr -share/gimp/gradients/Abstract_3.ggr -share/gimp/gradients/Aneurism.ggr -share/gimp/gradients/Blinds.ggr -share/gimp/gradients/Blue_Green.ggr -share/gimp/gradients/Browns.ggr -share/gimp/gradients/Brushed_Aluminium.ggr -share/gimp/gradients/Burning_Paper.ggr -share/gimp/gradients/Burning_Transparency.ggr -share/gimp/gradients/CD.ggr -share/gimp/gradients/CD_Half.ggr -share/gimp/gradients/Caribbean_Blues.ggr -share/gimp/gradients/Coffee.ggr -share/gimp/gradients/Cold_Steel.ggr -share/gimp/gradients/Cold_Steel_2.ggr -share/gimp/gradients/Crown_molding.ggr -share/gimp/gradients/Dark_1.ggr -share/gimp/gradients/Deep_Sea.ggr -share/gimp/gradients/Default.ggr -share/gimp/gradients/Flare_Glow_Angular_1.ggr -share/gimp/gradients/Flare_Glow_Radial_1.ggr -share/gimp/gradients/Flare_Glow_Radial_2.ggr -share/gimp/gradients/Flare_Glow_Radial_3.ggr -share/gimp/gradients/Flare_Glow_Radial_4.ggr -share/gimp/gradients/Flare_Radial_101.ggr -share/gimp/gradients/Flare_Radial_102.ggr -share/gimp/gradients/Flare_Radial_103.ggr -share/gimp/gradients/Flare_Rays_Radial_1.ggr -share/gimp/gradients/Flare_Rays_Radial_2.ggr -share/gimp/gradients/Flare_Rays_Size_1.ggr -share/gimp/gradients/Flare_Sizefac_101.ggr -share/gimp/gradients/Four_bars.ggr -share/gimp/gradients/French_flag.ggr -share/gimp/gradients/French_flag_smooth.ggr -share/gimp/gradients/Full_saturation_spectrum_CCW.ggr -share/gimp/gradients/Full_saturation_spectrum_CW.ggr -share/gimp/gradients/German_flag.ggr -share/gimp/gradients/German_flag_smooth.ggr -share/gimp/gradients/Golden.ggr -share/gimp/gradients/Greens.ggr -share/gimp/gradients/Horizon_1.ggr -share/gimp/gradients/Horizon_2.ggr -share/gimp/gradients/Incandescent.ggr -share/gimp/gradients/Land_1.ggr -share/gimp/gradients/Land_and_Sea.ggr -share/gimp/gradients/Metallic_Something.ggr -share/gimp/gradients/Mexican_flag.ggr -share/gimp/gradients/Mexican_flag_smooth.ggr -share/gimp/gradients/Nauseating_Headache.ggr -share/gimp/gradients/Neon_Cyan.ggr -share/gimp/gradients/Neon_Green.ggr -share/gimp/gradients/Neon_Yellow.ggr -share/gimp/gradients/Pastel_Rainbow.ggr -share/gimp/gradients/Pastels.ggr -share/gimp/gradients/Purples.ggr -share/gimp/gradients/Radial_Eyeball_Blue.ggr -share/gimp/gradients/Radial_Eyeball_Brown.ggr -share/gimp/gradients/Radial_Eyeball_Green.ggr -share/gimp/gradients/Radial_Glow_1.ggr -share/gimp/gradients/Radial_Rainbow_Hoop.ggr -share/gimp/gradients/Romanian_flag.ggr -share/gimp/gradients/Romanian_flag_smooth.ggr -share/gimp/gradients/Rounded_edge.ggr -share/gimp/gradients/Shadows_1.ggr -share/gimp/gradients/Shadows_2.ggr -share/gimp/gradients/Shadows_3.ggr -share/gimp/gradients/Skyline.ggr -share/gimp/gradients/Skyline_polluted.ggr -share/gimp/gradients/Square_Wood_Frame.ggr -share/gimp/gradients/Sunrise.ggr -share/gimp/gradients/Three_bars_sin.ggr -share/gimp/gradients/Tropical_Colors.ggr -share/gimp/gradients/Tube_Red.ggr -share/gimp/gradients/Wood_1.ggr -share/gimp/gradients/Wood_2.ggr -share/gimp/gradients/Yellow_Contrast.ggr -share/gimp/gradients/Yellow_Orange.ggr -share/gimp/images/gimp-logo.png -share/gimp/images/gimp-splash.png -share/gimp/images/wilber.png -share/gimp/menus/brush-editor-menu.xml -share/gimp/menus/brushes-menu.xml -share/gimp/menus/buffers-menu.xml -share/gimp/menus/channels-menu.xml -share/gimp/menus/colormap-menu.xml -share/gimp/menus/cursor-info-menu.xml -share/gimp/menus/dockable-menu.xml -share/gimp/menus/documents-menu.xml -share/gimp/menus/error-console-menu.xml -share/gimp/menus/fonts-menu.xml -share/gimp/menus/gradient-editor-menu.xml -share/gimp/menus/gradients-menu.xml -share/gimp/menus/image-menu.xml -share/gimp/menus/images-menu.xml -share/gimp/menus/layers-menu.xml -share/gimp/menus/palette-editor-menu.xml -share/gimp/menus/palettes-menu.xml -share/gimp/menus/patterns-menu.xml -share/gimp/menus/quick-mask-menu.xml -share/gimp/menus/sample-points-menu.xml -share/gimp/menus/selection-menu.xml -share/gimp/menus/templates-menu.xml -share/gimp/menus/text-editor-toolbar.xml -share/gimp/menus/tool-options-menu.xml -share/gimp/menus/tools-menu.xml -share/gimp/menus/undo-menu.xml -share/gimp/menus/vectors-menu.xml -share/gimp/palettes/Bears.gpl -share/gimp/palettes/Bgold.gpl -share/gimp/palettes/Blues.gpl -share/gimp/palettes/Borders.gpl -share/gimp/palettes/Browns_And_Yellows.gpl -share/gimp/palettes/Caramel.gpl -share/gimp/palettes/Cascade.gpl -share/gimp/palettes/China.gpl -share/gimp/palettes/Coldfire.gpl -share/gimp/palettes/Cool_Colors.gpl -share/gimp/palettes/Cranes.gpl -share/gimp/palettes/Dark_pastels.gpl -share/gimp/palettes/Default.gpl -share/gimp/palettes/Ega.gpl -share/gimp/palettes/Firecode.gpl -share/gimp/palettes/Gold.gpl -share/gimp/palettes/GrayViolet.gpl -share/gimp/palettes/Grayblue.gpl -share/gimp/palettes/Grays.gpl -share/gimp/palettes/Greens.gpl -share/gimp/palettes/Hilite.gpl -share/gimp/palettes/Khaki.gpl -share/gimp/palettes/Lights.gpl -share/gimp/palettes/Muted.gpl -share/gimp/palettes/Named_Colors.gpl -share/gimp/palettes/News3.gpl -share/gimp/palettes/Op2.gpl -share/gimp/palettes/Paintjet.gpl -share/gimp/palettes/Pastels.gpl -share/gimp/palettes/Plasma.gpl -share/gimp/palettes/Reds.gpl -share/gimp/palettes/Reds_And_Purples.gpl -share/gimp/palettes/Royal.gpl -share/gimp/palettes/Tango.gpl -share/gimp/palettes/Topographic.gpl -share/gimp/palettes/Visibone.gpl -share/gimp/palettes/Visibone_2.gpl -share/gimp/palettes/Volcano.gpl -share/gimp/palettes/Warm_Colors.gpl -share/gimp/palettes/Web.gpl -share/gimp/patterns/3dgreen.pat -share/gimp/patterns/Craters.pat -share/gimp/patterns/Moonfoot.pat -share/gimp/patterns/Stripes1px.pat -share/gimp/patterns/Stripes2px.pat -share/gimp/patterns/amethyst.pat -share/gimp/patterns/bark.pat -share/gimp/patterns/blue.pat -share/gimp/patterns/bluegrid.pat -share/gimp/patterns/bluesquares.pat -share/gimp/patterns/blueweb.pat -share/gimp/patterns/brick.pat -share/gimp/patterns/burlap.pat -share/gimp/patterns/burlwood.pat -share/gimp/patterns/choc_swirl.pat -share/gimp/patterns/corkboard.pat -share/gimp/patterns/cracked.pat -share/gimp/patterns/crinklepaper.pat -share/gimp/patterns/electric.pat -share/gimp/patterns/fibers.pat -share/gimp/patterns/granite1.pat -share/gimp/patterns/ground1.pat -share/gimp/patterns/ice.pat -share/gimp/patterns/java.pat -share/gimp/patterns/leather.pat -share/gimp/patterns/leaves.pat -share/gimp/patterns/leopard.pat -share/gimp/patterns/lightning.pat -share/gimp/patterns/marble1.pat -share/gimp/patterns/marble2.pat -share/gimp/patterns/marble3.pat -share/gimp/patterns/nops.pat -share/gimp/patterns/paper.pat -share/gimp/patterns/parque1.pat -share/gimp/patterns/parque2.pat -share/gimp/patterns/parque3.pat -share/gimp/patterns/pastel.pat -share/gimp/patterns/pine.pat -share/gimp/patterns/pink_marble.pat -share/gimp/patterns/pool.pat -share/gimp/patterns/qube1.pat -share/gimp/patterns/rain.pat -share/gimp/patterns/recessed.pat -share/gimp/patterns/redcube.pat -share/gimp/patterns/rock.pat -share/gimp/patterns/sky.pat -share/gimp/patterns/slate.pat -share/gimp/patterns/sm_squares.pat -share/gimp/patterns/starfield.pat -share/gimp/patterns/stone33.pat -share/gimp/patterns/terra.pat -share/gimp/patterns/walnut.pat -share/gimp/patterns/warning.pat -share/gimp/patterns/wood1.pat -share/gimp/patterns/wood2.pat -share/gimp/patterns/wood3.pat -share/gimp/patterns/wood4.pat -share/gimp/patterns/wood5.pat -share/gimp/scripts/3d-outline.scm -share/gimp/scripts/3dTruchet.scm -share/gimp/scripts/add-bevel.scm -share/gimp/scripts/addborder.scm -share/gimp/scripts/alien-glow-arrow.scm -share/gimp/scripts/alien-glow-bar.scm -share/gimp/scripts/alien-glow-bullet.scm -share/gimp/scripts/alien-glow-button.scm -share/gimp/scripts/alien-glow-logo.scm -share/gimp/scripts/alien-neon-logo.scm -share/gimp/scripts/basic1-logo.scm -share/gimp/scripts/basic2-logo.scm -share/gimp/scripts/beveled-button.scm -share/gimp/scripts/beveled-pattern-arrow.scm -share/gimp/scripts/beveled-pattern-bullet.scm -share/gimp/scripts/beveled-pattern-button.scm -share/gimp/scripts/beveled-pattern-heading.scm -share/gimp/scripts/beveled-pattern-hrule.scm -share/gimp/scripts/blend-anim.scm -share/gimp/scripts/blended-logo.scm -share/gimp/scripts/bovinated-logo.scm -share/gimp/scripts/burn-in-anim.scm -share/gimp/scripts/camo.scm -share/gimp/scripts/carve-it.scm -share/gimp/scripts/carved-logo.scm -share/gimp/scripts/chalk.scm -share/gimp/scripts/chip-away.scm -share/gimp/scripts/chrome-it.scm -share/gimp/scripts/chrome-logo.scm -share/gimp/scripts/circuit.scm -share/gimp/scripts/clothify.scm -share/gimp/scripts/coffee.scm -share/gimp/scripts/comic-logo.scm -share/gimp/scripts/coolmetal-logo.scm -share/gimp/scripts/copy-visible.scm -share/gimp/scripts/crystal-logo.scm -share/gimp/scripts/difference-clouds.scm -share/gimp/scripts/distress-selection.scm -share/gimp/scripts/drop-shadow.scm -share/gimp/scripts/erase-rows.scm -share/gimp/scripts/flatland.scm -share/gimp/scripts/font-map.scm -share/gimp/scripts/frosty-logo.scm -share/gimp/scripts/fuzzyborder.scm -share/gimp/scripts/gimp-headers.scm -share/gimp/scripts/gimp-labels.scm -share/gimp/scripts/glossy.scm -share/gimp/scripts/glowing-logo.scm -share/gimp/scripts/gradient-bevel-logo.scm -share/gimp/scripts/gradient-example.scm -share/gimp/scripts/grid-system.scm -share/gimp/scripts/guides-from-selection.scm -share/gimp/scripts/guides-new-percent.scm -share/gimp/scripts/guides-new.scm -share/gimp/scripts/guides-remove-all.scm -share/gimp/scripts/i26-gunya2.scm -share/gimp/scripts/images/beavis.jpg -share/gimp/scripts/images/texture.jpg -share/gimp/scripts/images/texture1.jpg -share/gimp/scripts/images/texture2.jpg -share/gimp/scripts/images/texture3.jpg -share/gimp/scripts/land.scm -share/gimp/scripts/lava.scm -share/gimp/scripts/line-nova.scm -share/gimp/scripts/mkbrush.scm -share/gimp/scripts/neon-logo.scm -share/gimp/scripts/news-text.scm -share/gimp/scripts/old-photo.scm -share/gimp/scripts/paste-as-brush.scm -share/gimp/scripts/paste-as-pattern.scm -share/gimp/scripts/perspective-shadow.scm -share/gimp/scripts/plug-in-compat.init -share/gimp/scripts/predator.scm -share/gimp/scripts/pupi-button.scm -share/gimp/scripts/rendermap.scm -share/gimp/scripts/reverse-layers.scm -share/gimp/scripts/ripply-anim.scm -share/gimp/scripts/round-corners.scm -share/gimp/scripts/script-fu-compat.init -share/gimp/scripts/script-fu-set-cmap.scm -share/gimp/scripts/script-fu-util.scm -share/gimp/scripts/script-fu.init -share/gimp/scripts/select-to-brush.scm -share/gimp/scripts/select-to-image.scm -share/gimp/scripts/select-to-pattern.scm -share/gimp/scripts/selection-round.scm -share/gimp/scripts/slide.scm -share/gimp/scripts/sota-chrome-logo.scm -share/gimp/scripts/speed-text.scm -share/gimp/scripts/spinning-globe.scm -share/gimp/scripts/spyrogimp.scm -share/gimp/scripts/starscape-logo.scm -share/gimp/scripts/swirltile.scm -share/gimp/scripts/swirly-pattern.scm -share/gimp/scripts/t-o-p-logo.scm -share/gimp/scripts/text-circle.scm -share/gimp/scripts/textured-logo.scm -share/gimp/scripts/tileblur.scm -share/gimp/scripts/title-header.scm -share/gimp/scripts/truchet.scm -share/gimp/scripts/unsharp-mask.scm -share/gimp/scripts/waves-anim.scm -share/gimp/scripts/weave.scm -share/gimp/scripts/web-browser.scm -share/gimp/scripts/xach-effect.scm -share/gimp/themes/Default/gtkrc -share/gimp/themes/Default/images/preferences/color-management-22.png -share/gimp/themes/Default/images/preferences/color-management.png -share/gimp/themes/Default/images/preferences/controllers-22.png -share/gimp/themes/Default/images/preferences/controllers.png -share/gimp/themes/Default/images/preferences/default-comment.png -share/gimp/themes/Default/images/preferences/default-grid-22.png -share/gimp/themes/Default/images/preferences/default-grid.png -share/gimp/themes/Default/images/preferences/display-22.png -share/gimp/themes/Default/images/preferences/display.png -share/gimp/themes/Default/images/preferences/environment-22.png -share/gimp/themes/Default/images/preferences/environment.png -share/gimp/themes/Default/images/preferences/folders-22.png -share/gimp/themes/Default/images/preferences/folders-brushes-22.png -share/gimp/themes/Default/images/preferences/folders-brushes.png -share/gimp/themes/Default/images/preferences/folders-environ-22.png -share/gimp/themes/Default/images/preferences/folders-environ.png -share/gimp/themes/Default/images/preferences/folders-fonts-22.png -share/gimp/themes/Default/images/preferences/folders-fonts.png -share/gimp/themes/Default/images/preferences/folders-gradients-22.png -share/gimp/themes/Default/images/preferences/folders-gradients.png -share/gimp/themes/Default/images/preferences/folders-interp-22.png -share/gimp/themes/Default/images/preferences/folders-interp.png -share/gimp/themes/Default/images/preferences/folders-modules-22.png -share/gimp/themes/Default/images/preferences/folders-modules.png -share/gimp/themes/Default/images/preferences/folders-palettes-22.png -share/gimp/themes/Default/images/preferences/folders-palettes.png -share/gimp/themes/Default/images/preferences/folders-patterns-22.png -share/gimp/themes/Default/images/preferences/folders-patterns.png -share/gimp/themes/Default/images/preferences/folders-plug-ins-22.png -share/gimp/themes/Default/images/preferences/folders-plug-ins.png -share/gimp/themes/Default/images/preferences/folders-scripts-22.png -share/gimp/themes/Default/images/preferences/folders-scripts.png -share/gimp/themes/Default/images/preferences/folders-themes-22.png -share/gimp/themes/Default/images/preferences/folders-themes.png -share/gimp/themes/Default/images/preferences/folders-tool-plug-ins-22.png -share/gimp/themes/Default/images/preferences/folders-tool-plug-ins.png -share/gimp/themes/Default/images/preferences/folders-tools-22.png -share/gimp/themes/Default/images/preferences/folders.png -share/gimp/themes/Default/images/preferences/help-system-22.png -share/gimp/themes/Default/images/preferences/help-system.png -share/gimp/themes/Default/images/preferences/image-title-22.png -share/gimp/themes/Default/images/preferences/image-title.png -share/gimp/themes/Default/images/preferences/image-windows-22.png -share/gimp/themes/Default/images/preferences/image-windows.png -share/gimp/themes/Default/images/preferences/input-devices-22.png -share/gimp/themes/Default/images/preferences/input-devices.png -share/gimp/themes/Default/images/preferences/interface-22.png -share/gimp/themes/Default/images/preferences/interface.png -share/gimp/themes/Default/images/preferences/new-image-22.png -share/gimp/themes/Default/images/preferences/new-image.png -share/gimp/themes/Default/images/preferences/session-22.png -share/gimp/themes/Default/images/preferences/session.png -share/gimp/themes/Default/images/preferences/theme-22.png -share/gimp/themes/Default/images/preferences/theme.png -share/gimp/themes/Default/images/preferences/tool-options-22.png -share/gimp/themes/Default/images/preferences/tool-options.png -share/gimp/themes/Default/images/preferences/toolbox-22.png -share/gimp/themes/Default/images/preferences/toolbox.png -share/gimp/themes/Default/images/preferences/window-management-22.png -share/gimp/themes/Default/images/preferences/window-management.png -share/gimp/themes/Default/images/stock-error-64.png -share/gimp/themes/Default/images/stock-info-64.png -share/gimp/themes/Default/images/stock-question-64.png -share/gimp/themes/Default/images/stock-warning-64.png -share/gimp/themes/Small/gtkrc -share/gimp/tips/gimp-tips.xml -share/icons/hicolor/16x16/apps/gimp.png -share/icons/hicolor/22x22/apps/gimp.png -share/icons/hicolor/24x24/apps/gimp.png -share/icons/hicolor/32x32/apps/gimp.png -share/icons/hicolor/48x48/apps/gimp.png -share/icons/hicolor/64x64/apps/gimp.png -share/icons/hicolor/scalable/apps/gimp.svg -share/locale/am/LC_MESSAGES/gimp20.mo -share/locale/ar/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ar/LC_MESSAGES/gimp20-python.mo -share/locale/ar/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ar/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ar/LC_MESSAGES/gimp20-tips.mo -share/locale/ar/LC_MESSAGES/gimp20.mo -share/locale/az/LC_MESSAGES/gimp20-libgimp.mo -share/locale/az/LC_MESSAGES/gimp20-python.mo -share/locale/az/LC_MESSAGES/gimp20-script-fu.mo -share/locale/az/LC_MESSAGES/gimp20.mo -share/locale/be/LC_MESSAGES/gimp20-libgimp.mo -share/locale/be/LC_MESSAGES/gimp20-python.mo -share/locale/be/LC_MESSAGES/gimp20-script-fu.mo -share/locale/be/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/be/LC_MESSAGES/gimp20-tips.mo -share/locale/be/LC_MESSAGES/gimp20.mo -share/locale/bg/LC_MESSAGES/gimp20-libgimp.mo -share/locale/bg/LC_MESSAGES/gimp20-python.mo -share/locale/bg/LC_MESSAGES/gimp20-script-fu.mo -share/locale/bg/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/bg/LC_MESSAGES/gimp20-tips.mo -share/locale/bg/LC_MESSAGES/gimp20.mo -share/locale/ca/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ca/LC_MESSAGES/gimp20-python.mo -share/locale/ca/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ca/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ca/LC_MESSAGES/gimp20-tips.mo -share/locale/ca/LC_MESSAGES/gimp20.mo -share/locale/ca@valencia/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ca@valencia/LC_MESSAGES/gimp20-python.mo -share/locale/ca@valencia/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ca@valencia/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ca@valencia/LC_MESSAGES/gimp20-tips.mo -share/locale/ca@valencia/LC_MESSAGES/gimp20.mo -share/locale/cs/LC_MESSAGES/gimp20-libgimp.mo -share/locale/cs/LC_MESSAGES/gimp20-python.mo -share/locale/cs/LC_MESSAGES/gimp20-script-fu.mo -share/locale/cs/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/cs/LC_MESSAGES/gimp20-tips.mo -share/locale/cs/LC_MESSAGES/gimp20.mo -share/locale/da/LC_MESSAGES/gimp20-libgimp.mo -share/locale/da/LC_MESSAGES/gimp20-python.mo -share/locale/da/LC_MESSAGES/gimp20-script-fu.mo -share/locale/da/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/da/LC_MESSAGES/gimp20-tips.mo -share/locale/da/LC_MESSAGES/gimp20.mo -share/locale/de/LC_MESSAGES/gimp20-libgimp.mo -share/locale/de/LC_MESSAGES/gimp20-python.mo -share/locale/de/LC_MESSAGES/gimp20-script-fu.mo -share/locale/de/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/de/LC_MESSAGES/gimp20-tips.mo -share/locale/de/LC_MESSAGES/gimp20.mo -share/locale/dz/LC_MESSAGES/gimp20-libgimp.mo -share/locale/dz/LC_MESSAGES/gimp20-python.mo -share/locale/dz/LC_MESSAGES/gimp20-script-fu.mo -share/locale/dz/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/dz/LC_MESSAGES/gimp20-tips.mo -share/locale/dz/LC_MESSAGES/gimp20.mo -share/locale/el/LC_MESSAGES/gimp20-libgimp.mo -share/locale/el/LC_MESSAGES/gimp20-python.mo -share/locale/el/LC_MESSAGES/gimp20-script-fu.mo -share/locale/el/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/el/LC_MESSAGES/gimp20.mo -share/locale/en_CA/LC_MESSAGES/gimp20-libgimp.mo -share/locale/en_CA/LC_MESSAGES/gimp20-python.mo -share/locale/en_CA/LC_MESSAGES/gimp20-script-fu.mo -share/locale/en_CA/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/en_CA/LC_MESSAGES/gimp20-tips.mo -share/locale/en_CA/LC_MESSAGES/gimp20.mo -share/locale/en_GB/LC_MESSAGES/gimp20-libgimp.mo -share/locale/en_GB/LC_MESSAGES/gimp20-python.mo -share/locale/en_GB/LC_MESSAGES/gimp20-script-fu.mo -share/locale/en_GB/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/en_GB/LC_MESSAGES/gimp20-tips.mo -share/locale/en_GB/LC_MESSAGES/gimp20.mo -share/locale/eo/LC_MESSAGES/gimp20-libgimp.mo -share/locale/eo/LC_MESSAGES/gimp20-python.mo -share/locale/eo/LC_MESSAGES/gimp20-script-fu.mo -share/locale/eo/LC_MESSAGES/gimp20-tips.mo -share/locale/eo/LC_MESSAGES/gimp20.mo -share/locale/es/LC_MESSAGES/gimp20-libgimp.mo -share/locale/es/LC_MESSAGES/gimp20-python.mo -share/locale/es/LC_MESSAGES/gimp20-script-fu.mo -share/locale/es/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/es/LC_MESSAGES/gimp20-tips.mo -share/locale/es/LC_MESSAGES/gimp20.mo -share/locale/et/LC_MESSAGES/gimp20-libgimp.mo -share/locale/et/LC_MESSAGES/gimp20-python.mo -share/locale/et/LC_MESSAGES/gimp20-script-fu.mo -share/locale/et/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/et/LC_MESSAGES/gimp20-tips.mo -share/locale/et/LC_MESSAGES/gimp20.mo -share/locale/eu/LC_MESSAGES/gimp20-libgimp.mo -share/locale/eu/LC_MESSAGES/gimp20-python.mo -share/locale/eu/LC_MESSAGES/gimp20-script-fu.mo -share/locale/eu/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/eu/LC_MESSAGES/gimp20-tips.mo -share/locale/eu/LC_MESSAGES/gimp20.mo -share/locale/fa/LC_MESSAGES/gimp20-libgimp.mo -share/locale/fa/LC_MESSAGES/gimp20-python.mo -share/locale/fa/LC_MESSAGES/gimp20-script-fu.mo -share/locale/fa/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/fa/LC_MESSAGES/gimp20-tips.mo -share/locale/fa/LC_MESSAGES/gimp20.mo -share/locale/fi/LC_MESSAGES/gimp20-libgimp.mo -share/locale/fi/LC_MESSAGES/gimp20-python.mo -share/locale/fi/LC_MESSAGES/gimp20-script-fu.mo -share/locale/fi/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/fi/LC_MESSAGES/gimp20-tips.mo -share/locale/fi/LC_MESSAGES/gimp20.mo -share/locale/fr/LC_MESSAGES/gimp20-libgimp.mo -share/locale/fr/LC_MESSAGES/gimp20-python.mo -share/locale/fr/LC_MESSAGES/gimp20-script-fu.mo -share/locale/fr/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/fr/LC_MESSAGES/gimp20-tips.mo -share/locale/fr/LC_MESSAGES/gimp20.mo -share/locale/ga/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ga/LC_MESSAGES/gimp20-python.mo -share/locale/ga/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ga/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ga/LC_MESSAGES/gimp20.mo -share/locale/gl/LC_MESSAGES/gimp20-libgimp.mo -share/locale/gl/LC_MESSAGES/gimp20-python.mo -share/locale/gl/LC_MESSAGES/gimp20-script-fu.mo -share/locale/gl/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/gl/LC_MESSAGES/gimp20-tips.mo -share/locale/gl/LC_MESSAGES/gimp20.mo -share/locale/gu/LC_MESSAGES/gimp20-libgimp.mo -share/locale/gu/LC_MESSAGES/gimp20-python.mo -share/locale/gu/LC_MESSAGES/gimp20-script-fu.mo -share/locale/gu/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/gu/LC_MESSAGES/gimp20-tips.mo -share/locale/gu/LC_MESSAGES/gimp20.mo -share/locale/he/LC_MESSAGES/gimp20-libgimp.mo -share/locale/he/LC_MESSAGES/gimp20-script-fu.mo -share/locale/he/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/he/LC_MESSAGES/gimp20-tips.mo -share/locale/he/LC_MESSAGES/gimp20.mo -share/locale/hi/LC_MESSAGES/gimp20.mo -share/locale/hr/LC_MESSAGES/gimp20-libgimp.mo -share/locale/hr/LC_MESSAGES/gimp20-python.mo -share/locale/hr/LC_MESSAGES/gimp20-script-fu.mo -share/locale/hr/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/hr/LC_MESSAGES/gimp20-tips.mo -share/locale/hr/LC_MESSAGES/gimp20.mo -share/locale/hu/LC_MESSAGES/gimp20-libgimp.mo -share/locale/hu/LC_MESSAGES/gimp20-python.mo -share/locale/hu/LC_MESSAGES/gimp20-script-fu.mo -share/locale/hu/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/hu/LC_MESSAGES/gimp20-tips.mo -share/locale/hu/LC_MESSAGES/gimp20.mo -share/locale/id/LC_MESSAGES/gimp20-libgimp.mo -share/locale/id/LC_MESSAGES/gimp20-script-fu.mo -share/locale/id/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/id/LC_MESSAGES/gimp20.mo -share/locale/is/LC_MESSAGES/gimp20-libgimp.mo -share/locale/is/LC_MESSAGES/gimp20-python.mo -share/locale/is/LC_MESSAGES/gimp20-script-fu.mo -share/locale/is/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/is/LC_MESSAGES/gimp20-tips.mo -share/locale/is/LC_MESSAGES/gimp20.mo -share/locale/it/LC_MESSAGES/gimp20-libgimp.mo -share/locale/it/LC_MESSAGES/gimp20-python.mo -share/locale/it/LC_MESSAGES/gimp20-script-fu.mo -share/locale/it/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/it/LC_MESSAGES/gimp20-tips.mo -share/locale/it/LC_MESSAGES/gimp20.mo -share/locale/ja/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ja/LC_MESSAGES/gimp20-python.mo -share/locale/ja/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ja/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ja/LC_MESSAGES/gimp20-tips.mo -share/locale/ja/LC_MESSAGES/gimp20.mo -share/locale/ka/LC_MESSAGES/gimp20.mo -share/locale/km/LC_MESSAGES/gimp20-libgimp.mo -share/locale/km/LC_MESSAGES/gimp20-python.mo -share/locale/km/LC_MESSAGES/gimp20-script-fu.mo -share/locale/km/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/km/LC_MESSAGES/gimp20-tips.mo -share/locale/km/LC_MESSAGES/gimp20.mo -share/locale/ko/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ko/LC_MESSAGES/gimp20-python.mo -share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ko/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ko/LC_MESSAGES/gimp20-tips.mo -share/locale/ko/LC_MESSAGES/gimp20.mo -share/locale/lt/LC_MESSAGES/gimp20-libgimp.mo -share/locale/lt/LC_MESSAGES/gimp20-python.mo -share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo -share/locale/lt/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/lt/LC_MESSAGES/gimp20-tips.mo -share/locale/lt/LC_MESSAGES/gimp20.mo -share/locale/lv/LC_MESSAGES/gimp20-libgimp.mo -share/locale/lv/LC_MESSAGES/gimp20.mo -share/locale/mk/LC_MESSAGES/gimp20-libgimp.mo -share/locale/mk/LC_MESSAGES/gimp20-python.mo -share/locale/mk/LC_MESSAGES/gimp20-script-fu.mo -share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/mk/LC_MESSAGES/gimp20-tips.mo -share/locale/mk/LC_MESSAGES/gimp20.mo -share/locale/ml/LC_MESSAGES/gimp20.mo -share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ms/LC_MESSAGES/gimp20-python.mo -share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ms/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ms/LC_MESSAGES/gimp20-tips.mo -share/locale/ms/LC_MESSAGES/gimp20.mo -share/locale/nb/LC_MESSAGES/gimp20-libgimp.mo -share/locale/nb/LC_MESSAGES/gimp20-python.mo -share/locale/nb/LC_MESSAGES/gimp20-script-fu.mo -share/locale/nb/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/nb/LC_MESSAGES/gimp20-tips.mo -share/locale/nb/LC_MESSAGES/gimp20.mo -share/locale/ne/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ne/LC_MESSAGES/gimp20-python.mo -share/locale/ne/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ne/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ne/LC_MESSAGES/gimp20-tips.mo -share/locale/ne/LC_MESSAGES/gimp20.mo -share/locale/nl/LC_MESSAGES/gimp20-libgimp.mo -share/locale/nl/LC_MESSAGES/gimp20-python.mo -share/locale/nl/LC_MESSAGES/gimp20-script-fu.mo -share/locale/nl/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/nl/LC_MESSAGES/gimp20-tips.mo -share/locale/nl/LC_MESSAGES/gimp20.mo -share/locale/nn/LC_MESSAGES/gimp20-libgimp.mo -share/locale/nn/LC_MESSAGES/gimp20-python.mo -share/locale/nn/LC_MESSAGES/gimp20-script-fu.mo -share/locale/nn/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/nn/LC_MESSAGES/gimp20-tips.mo -share/locale/nn/LC_MESSAGES/gimp20.mo -share/locale/oc/LC_MESSAGES/gimp20-libgimp.mo -share/locale/oc/LC_MESSAGES/gimp20-python.mo -share/locale/oc/LC_MESSAGES/gimp20-script-fu.mo -share/locale/oc/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/oc/LC_MESSAGES/gimp20.mo -share/locale/pa/LC_MESSAGES/gimp20-libgimp.mo -share/locale/pa/LC_MESSAGES/gimp20-python.mo -share/locale/pa/LC_MESSAGES/gimp20-script-fu.mo -share/locale/pa/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/pa/LC_MESSAGES/gimp20-tips.mo -share/locale/pa/LC_MESSAGES/gimp20.mo -share/locale/pl/LC_MESSAGES/gimp20-libgimp.mo -share/locale/pl/LC_MESSAGES/gimp20-python.mo -share/locale/pl/LC_MESSAGES/gimp20-script-fu.mo -share/locale/pl/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/pl/LC_MESSAGES/gimp20-tips.mo -share/locale/pl/LC_MESSAGES/gimp20.mo -share/locale/pt/LC_MESSAGES/gimp20-libgimp.mo -share/locale/pt/LC_MESSAGES/gimp20-python.mo -share/locale/pt/LC_MESSAGES/gimp20-script-fu.mo -share/locale/pt/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/pt/LC_MESSAGES/gimp20-tips.mo -share/locale/pt/LC_MESSAGES/gimp20.mo -share/locale/pt_BR/LC_MESSAGES/gimp20-libgimp.mo -share/locale/pt_BR/LC_MESSAGES/gimp20-python.mo -share/locale/pt_BR/LC_MESSAGES/gimp20-script-fu.mo -share/locale/pt_BR/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/pt_BR/LC_MESSAGES/gimp20-tips.mo -share/locale/pt_BR/LC_MESSAGES/gimp20.mo -share/locale/ro/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ro/LC_MESSAGES/gimp20-python.mo -share/locale/ro/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ro/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ro/LC_MESSAGES/gimp20-tips.mo -share/locale/ro/LC_MESSAGES/gimp20.mo -share/locale/ru/LC_MESSAGES/gimp20-libgimp.mo -share/locale/ru/LC_MESSAGES/gimp20-python.mo -share/locale/ru/LC_MESSAGES/gimp20-script-fu.mo -share/locale/ru/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/ru/LC_MESSAGES/gimp20-tips.mo -share/locale/ru/LC_MESSAGES/gimp20.mo -share/locale/rw/LC_MESSAGES/gimp20-libgimp.mo -share/locale/rw/LC_MESSAGES/gimp20-python.mo -share/locale/rw/LC_MESSAGES/gimp20-script-fu.mo -share/locale/rw/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/rw/LC_MESSAGES/gimp20-tips.mo -share/locale/rw/LC_MESSAGES/gimp20.mo -share/locale/sk/LC_MESSAGES/gimp20-libgimp.mo -share/locale/sk/LC_MESSAGES/gimp20-python.mo -share/locale/sk/LC_MESSAGES/gimp20-script-fu.mo -share/locale/sk/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/sk/LC_MESSAGES/gimp20-tips.mo -share/locale/sk/LC_MESSAGES/gimp20.mo -share/locale/sl/LC_MESSAGES/gimp20-libgimp.mo -share/locale/sl/LC_MESSAGES/gimp20-python.mo -share/locale/sl/LC_MESSAGES/gimp20-script-fu.mo -share/locale/sl/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/sl/LC_MESSAGES/gimp20-tips.mo -share/locale/sl/LC_MESSAGES/gimp20.mo -share/locale/sr/LC_MESSAGES/gimp20-libgimp.mo -share/locale/sr/LC_MESSAGES/gimp20-python.mo -share/locale/sr/LC_MESSAGES/gimp20-script-fu.mo -share/locale/sr/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/sr/LC_MESSAGES/gimp20-tips.mo -share/locale/sr/LC_MESSAGES/gimp20.mo -share/locale/sr@latin/LC_MESSAGES/gimp20-libgimp.mo -share/locale/sr@latin/LC_MESSAGES/gimp20-python.mo -share/locale/sr@latin/LC_MESSAGES/gimp20-script-fu.mo -share/locale/sr@latin/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/sr@latin/LC_MESSAGES/gimp20-tips.mo -share/locale/sr@latin/LC_MESSAGES/gimp20.mo -share/locale/sv/LC_MESSAGES/gimp20-libgimp.mo -share/locale/sv/LC_MESSAGES/gimp20-python.mo -share/locale/sv/LC_MESSAGES/gimp20-script-fu.mo -share/locale/sv/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/sv/LC_MESSAGES/gimp20-tips.mo -share/locale/sv/LC_MESSAGES/gimp20.mo -share/locale/ta/LC_MESSAGES/gimp20.mo -share/locale/th/LC_MESSAGES/gimp20.mo -share/locale/tr/LC_MESSAGES/gimp20-libgimp.mo -share/locale/tr/LC_MESSAGES/gimp20-python.mo -share/locale/tr/LC_MESSAGES/gimp20-script-fu.mo -share/locale/tr/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/tr/LC_MESSAGES/gimp20.mo -share/locale/tt/LC_MESSAGES/gimp20.mo -share/locale/uk/LC_MESSAGES/gimp20-libgimp.mo -share/locale/uk/LC_MESSAGES/gimp20-python.mo -share/locale/uk/LC_MESSAGES/gimp20-script-fu.mo -share/locale/uk/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/uk/LC_MESSAGES/gimp20-tips.mo -share/locale/uk/LC_MESSAGES/gimp20.mo -share/locale/vi/LC_MESSAGES/gimp20-libgimp.mo -share/locale/vi/LC_MESSAGES/gimp20-python.mo -share/locale/vi/LC_MESSAGES/gimp20-script-fu.mo -share/locale/vi/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/vi/LC_MESSAGES/gimp20-tips.mo -share/locale/vi/LC_MESSAGES/gimp20.mo -share/locale/xh/LC_MESSAGES/gimp20-libgimp.mo -share/locale/xh/LC_MESSAGES/gimp20-python.mo -share/locale/xh/LC_MESSAGES/gimp20-script-fu.mo -share/locale/xh/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/xh/LC_MESSAGES/gimp20.mo -share/locale/yi/LC_MESSAGES/gimp20-libgimp.mo -share/locale/yi/LC_MESSAGES/gimp20-script-fu.mo -share/locale/yi/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/yi/LC_MESSAGES/gimp20.mo -share/locale/zh_CN/LC_MESSAGES/gimp20-libgimp.mo -share/locale/zh_CN/LC_MESSAGES/gimp20-python.mo -share/locale/zh_CN/LC_MESSAGES/gimp20-script-fu.mo -share/locale/zh_CN/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/zh_CN/LC_MESSAGES/gimp20-tips.mo -share/locale/zh_CN/LC_MESSAGES/gimp20.mo -share/locale/zh_HK/LC_MESSAGES/gimp20.mo -share/locale/zh_TW/LC_MESSAGES/gimp20-libgimp.mo -share/locale/zh_TW/LC_MESSAGES/gimp20-python.mo -share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo -share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo -share/locale/zh_TW/LC_MESSAGES/gimp20.mo -@dirrm share/gimp/tips -@dirrm share/gimp/themes/Small -@dirrm share/gimp/themes/Default/images/preferences -@dirrm share/gimp/themes/Default/images -@dirrm share/gimp/themes/Default -@dirrm share/gimp/themes -@dirrm share/gimp/scripts/images -@dirrm share/gimp/scripts -@dirrm share/gimp/patterns -@dirrm share/gimp/palettes -@dirrm share/gimp/menus -@dirrm share/gimp/images -@dirrm share/gimp/gradients -@dirrm share/gimp/gimpressionist/Presets -@dirrm share/gimp/gimpressionist/Paper -@dirrm share/gimp/gimpressionist/Brushes -@dirrm share/gimp/gimpressionist -@dirrm share/gimp/gflare -@dirrm share/gimp/gfig -@dirrm share/gimp/fractalexplorer -@dirrm share/gimp/fonts -@dirrm share/gimp/brushes -@dirrm share/gimp -@dirrm share/doc/gimp/libgimpwidgets -@dirrm share/doc/gimp/libgimpthumb -@dirrm share/doc/gimp/libgimpmodule -@dirrm share/doc/gimp/libgimpmath -@dirrm share/doc/gimp/libgimpconfig -@dirrm share/doc/gimp/libgimpcolor -@dirrm share/doc/gimp/libgimpbase -@dirrm share/doc/gimp/libgimp -@dirrm share/doc/gimp -@dirrmtry share/applications -@dirrm libexec/gimp/2.2/plug-ins -@dirrm libexec/gimp/2.2/modules -@dirrm libexec/gimp/2.2/interpreters -@dirrm libexec/gimp/2.2/environ -@dirrm libexec/gimp/2.2 -@dirrm libexec/gimp -@dirrm include/gimp-2.0/libgimpwidgets -@dirrm include/gimp-2.0/libgimpthumb -@dirrm include/gimp-2.0/libgimpmodule -@dirrm include/gimp-2.0/libgimpmath -@dirrm include/gimp-2.0/libgimpconfig -@dirrm include/gimp-2.0/libgimpcolor -@dirrm include/gimp-2.0/libgimpbase -@dirrm include/gimp-2.0/libgimp -@dirrm include/gimp-2.0 -@dirrm etc/gimp/2.2 -@dirrm etc/gimp -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile deleted file mode 100644 index b9753f1c6..000000000 --- a/graphics/inkscape/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: inkscape -# Date created: 17 Nov 2003 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= inkscape -PORTVERSION= 0.46 -PORTREVISION= 5 -CATEGORIES= graphics gnome -MASTER_SITES= SF - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A program seeks to become a full featured open source SVG editor - -BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:${PORTSDIR}/devel/boost -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 \ - gc.1:${PORTSDIR}/devel/boehm-gc \ - gtkspell.0:${PORTSDIR}/textproc/gtkspell \ - lcms.1:${PORTSDIR}/graphics/lcms \ - Magick++.2:${PORTSDIR}/graphics/ImageMagick -RUN_DEPENDS= ${SITE_PERL}/XML/XQL.pm:${PORTSDIR}/textproc/p5-XML-XQL - -USE_BZIP2= yes -USE_GMAKE= yes -WANT_GNOME= yes -USE_GNOME= gnomehack desktopfileutils intlhack libxslt -USE_GETTEXT= yes -GNU_CONFIGURE= yes -USE_PERL5= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" - -MAN1= inkscape.1 -MAN1_EN= inkview.1 -MANLANG= "" fr - -OPTIONS= POPPLER "Enable libpoppler-cairo for rendering PDF preview" off - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mgnomevfs2} != "" -USE_GNOME+= gnomevfs2 -CONFIGURE_ARGS+= --with-gnome-vfs -.else -CONFIGURE_ARGS+= --without-gnome-vfs -.endif - -.if defined(WITH_POPPLER) -LIB_DEPENDS+= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk -CONFIGURE_ARGS+= --enable-poppler-cairo -.else -CONFIGURE_ARGS+= --disable-poppler-cairo -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|ieefp.h|ieeefp.h|' \ - ${WRKSRC}/src/2geom/bezier-utils.cpp - @${REINPLACE_CMD} -e 's|libpng >= 1.2|libpng12 >= 1.2|g' \ - ${WRKSRC}/configure - @${FIND} ${WRKSRC} -name "*.h" -o -name "*.cpp" | ${XARGS} \ - ${REINPLACE_CMD} -e 's|glib/gmessages.h|glib/gtestutils.h|g' -.if !defined(WITH_POPPLER) - @${REINPLACE_CMD} -e 's|poppler|pdisable|g' \ - ${WRKSRC}/configure -.endif - -post-install: - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/graphics/inkscape/distinfo b/graphics/inkscape/distinfo deleted file mode 100644 index 8c4a0083c..000000000 --- a/graphics/inkscape/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (inkscape-0.46.tar.bz2) = 59997096c3640b2601c2b4afba8a3d75 -SHA256 (inkscape-0.46.tar.bz2) = f2ea624b98544b9d780bae1b5f042eae97bbd2779c7779ba21390b7bf6a9ca8e -SIZE (inkscape-0.46.tar.bz2) = 13368645 diff --git a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp b/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp deleted file mode 100644 index ff6662782..000000000 --- a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/libnr/nr-matrix.cpp.org 2008-04-02 22:01:32.000000000 +0200 -+++ src/libnr/nr-matrix.cpp 2008-04-02 22:01:54.000000000 +0200 -@@ -11,6 +11,7 @@ - * This code is in public domain - */ - -+#include <cstdio> - #include <cstdlib> - #include "nr-matrix.h" - diff --git a/graphics/inkscape/files/patch-src::livarot::Path.cpp b/graphics/inkscape/files/patch-src::livarot::Path.cpp deleted file mode 100644 index 587ec22c4..000000000 --- a/graphics/inkscape/files/patch-src::livarot::Path.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/livarot/Path.cpp.orig Sat Apr 10 03:53:47 2004 -+++ src/livarot/Path.cpp Sat Apr 10 03:53:52 2004 -@@ -7,6 +7,7 @@ - */ - - #include <glib.h> -+#include <cstdio> - #include "Path.h" - #include <libnr/nr-point.h> - #include <libnr/nr-point-ops.h> diff --git a/graphics/inkscape/files/patch-src::remove-last.h b/graphics/inkscape/files/patch-src::remove-last.h deleted file mode 100644 index 059f14ac7..000000000 --- a/graphics/inkscape/files/patch-src::remove-last.h +++ /dev/null @@ -1,19 +0,0 @@ ---- src/remove-last.h.orig Mon Apr 12 09:56:06 2004 -+++ src/remove-last.h Mon Apr 12 09:56:47 2004 -@@ -2,6 +2,7 @@ - #define __REMOVE_LAST_H__ - - #include <vector> -+#include <algorithm> - #include <glib.h> - - template<class T> -@@ -9,7 +10,7 @@ - { - using std::vector; - -- typename vector<T>::reverse_iterator i(find(seq.rbegin(), seq.rend(), elem)); -+ typename vector<T>::reverse_iterator i(std::find(seq.rbegin(), seq.rend(), elem)); - g_assert( i != seq.rend() ); - typename vector<T>::iterator ii(&*i); - seq.erase(ii); diff --git a/graphics/inkscape/files/patch-src_extension_internal_pdfinput_pdf-parser.cpp b/graphics/inkscape/files/patch-src_extension_internal_pdfinput_pdf-parser.cpp deleted file mode 100644 index c23c83ed5..000000000 --- a/graphics/inkscape/files/patch-src_extension_internal_pdfinput_pdf-parser.cpp +++ /dev/null @@ -1,164 +0,0 @@ ---- src/extension/internal/pdfinput/pdf-parser.cpp 2008/03/29 09:49:50 18077 -+++ src/extension/internal/pdfinput/pdf-parser.cpp 2008/06/12 18:14:25 18894 -@@ -2191,6 +2191,151 @@ - } - } - -+ -+#if 1 -+ -+/** -+ * This is for the change to GfxFont's getNextChar() call. -+ * Thanks to tsdgeos for the fix. -+ * Miklos, does this look ok? -+ */ -+ -+void PdfParser::doShowText(GooString *s) { -+ GfxFont *font; -+ int wMode; -+ double riseX, riseY; -+ CharCode code; -+ Unicode *u = NULL; -+ double x, y, dx, dy, dx2, dy2, curX, curY, tdx, tdy, lineX, lineY; -+ double originX, originY, tOriginX, tOriginY; -+ double oldCTM[6], newCTM[6]; -+ double *mat; -+ Object charProc; -+ Dict *resDict; -+ Parser *oldParser; -+ char *p; -+ int len, n, uLen, nChars, nSpaces, i; -+ -+ font = state->getFont(); -+ wMode = font->getWMode(); -+ -+ builder->beginString(state, s); -+ -+ // handle a Type 3 char -+ if (font->getType() == fontType3 && 0) {//out->interpretType3Chars()) { -+ mat = state->getCTM(); -+ for (i = 0; i < 6; ++i) { -+ oldCTM[i] = mat[i]; -+ } -+ mat = state->getTextMat(); -+ newCTM[0] = mat[0] * oldCTM[0] + mat[1] * oldCTM[2]; -+ newCTM[1] = mat[0] * oldCTM[1] + mat[1] * oldCTM[3]; -+ newCTM[2] = mat[2] * oldCTM[0] + mat[3] * oldCTM[2]; -+ newCTM[3] = mat[2] * oldCTM[1] + mat[3] * oldCTM[3]; -+ mat = font->getFontMatrix(); -+ newCTM[0] = mat[0] * newCTM[0] + mat[1] * newCTM[2]; -+ newCTM[1] = mat[0] * newCTM[1] + mat[1] * newCTM[3]; -+ newCTM[2] = mat[2] * newCTM[0] + mat[3] * newCTM[2]; -+ newCTM[3] = mat[2] * newCTM[1] + mat[3] * newCTM[3]; -+ newCTM[0] *= state->getFontSize(); -+ newCTM[1] *= state->getFontSize(); -+ newCTM[2] *= state->getFontSize(); -+ newCTM[3] *= state->getFontSize(); -+ newCTM[0] *= state->getHorizScaling(); -+ newCTM[2] *= state->getHorizScaling(); -+ state->textTransformDelta(0, state->getRise(), &riseX, &riseY); -+ curX = state->getCurX(); -+ curY = state->getCurY(); -+ lineX = state->getLineX(); -+ lineY = state->getLineY(); -+ oldParser = parser; -+ p = s->getCString(); -+ len = s->getLength(); -+ while (len > 0) { -+ n = font->getNextChar(p, len, &code, -+ &u, &uLen, -+ &dx, &dy, &originX, &originY); -+ dx = dx * state->getFontSize() + state->getCharSpace(); -+ if (n == 1 && *p == ' ') { -+ dx += state->getWordSpace(); -+ } -+ dx *= state->getHorizScaling(); -+ dy *= state->getFontSize(); -+ state->textTransformDelta(dx, dy, &tdx, &tdy); -+ state->transform(curX + riseX, curY + riseY, &x, &y); -+ saveState(); -+ state->setCTM(newCTM[0], newCTM[1], newCTM[2], newCTM[3], x, y); -+ //~ the CTM concat values here are wrong (but never used) -+ //out->updateCTM(state, 1, 0, 0, 1, 0, 0); -+ if (0){ /*!out->beginType3Char(state, curX + riseX, curY + riseY, tdx, tdy, -+ code, u, uLen)) {*/ -+ ((Gfx8BitFont *)font)->getCharProc(code, &charProc); -+ if ((resDict = ((Gfx8BitFont *)font)->getResources())) { -+ pushResources(resDict); -+ } -+ if (charProc.isStream()) { -+ //parse(&charProc, gFalse); // TODO: parse into SVG font -+ } else { -+ error(getPos(), "Missing or bad Type3 CharProc entry"); -+ } -+ //out->endType3Char(state); -+ if (resDict) { -+ popResources(); -+ } -+ charProc.free(); -+ } -+ restoreState(); -+ // GfxState::restore() does *not* restore the current position, -+ // so we deal with it here using (curX, curY) and (lineX, lineY) -+ curX += tdx; -+ curY += tdy; -+ state->moveTo(curX, curY); -+ state->textSetPos(lineX, lineY); -+ p += n; -+ len -= n; -+ } -+ parser = oldParser; -+ -+ } else { -+ state->textTransformDelta(0, state->getRise(), &riseX, &riseY); -+ p = s->getCString(); -+ len = s->getLength(); -+ while (len > 0) { -+ n = font->getNextChar(p, len, &code, -+ &u, &uLen, -+ &dx, &dy, &originX, &originY); -+ -+ if (wMode) { -+ dx *= state->getFontSize(); -+ dy = dy * state->getFontSize() + state->getCharSpace(); -+ if (n == 1 && *p == ' ') { -+ dy += state->getWordSpace(); -+ } -+ } else { -+ dx = dx * state->getFontSize() + state->getCharSpace(); -+ if (n == 1 && *p == ' ') { -+ dx += state->getWordSpace(); -+ } -+ dx *= state->getHorizScaling(); -+ dy *= state->getFontSize(); -+ } -+ state->textTransformDelta(dx, dy, &tdx, &tdy); -+ originX *= state->getFontSize(); -+ originY *= state->getFontSize(); -+ state->textTransformDelta(originX, originY, &tOriginX, &tOriginY); -+ builder->addChar(state, state->getCurX() + riseX, state->getCurY() + riseY, -+ dx, dy, tOriginX, tOriginY, code, n, u, uLen); -+ state->shift(tdx, tdy); -+ p += n; -+ len -= n; -+ } -+ } -+ -+ builder->endString(state); -+} -+ -+#else /* !POPPLER_NEW_GFXFONT */ -+ - void PdfParser::doShowText(GooString *s) { - GfxFont *font; - int wMode; -@@ -2325,6 +2470,9 @@ - builder->endString(state); - } - -+#endif /* POPPLER_NEW_GFXFONT */ -+ -+ - //------------------------------------------------------------------------ - // XObject operators - //------------------------------------------------------------------------ diff --git a/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp b/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp deleted file mode 100644 index 832ff9757..000000000 --- a/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp +++ /dev/null @@ -1,124 +0,0 @@ ---- src/trace/potrace/inkscape-potrace.cpp.orig Sat Jun 24 22:46:26 2006 -+++ src/trace/potrace/inkscape-potrace.cpp Sun Jun 25 01:29:20 2006 -@@ -54,6 +54,121 @@ static void potraceStatusCallback(double - // (Inkscape::Trace::Potrace::PotraceTracingEngine *)userData; - } - -+#ifndef log2 -+static const double -+ln2 = 0.6931471805599452862268, -+two54 = 1.80143985094819840000e+16, /* 43500000 00000000 */ -+Lg1 = 6.666666666666735130e-01, /* 3FE55555 55555593 */ -+Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ -+Lg3 = 2.857142874366239149e-01, /* 3FD24924 94229359 */ -+Lg4 = 2.222219843214978396e-01, /* 3FCC71C5 1D8E78AF */ -+Lg5 = 1.818357216161805012e-01, /* 3FC74664 96CB03DE */ -+Lg6 = 1.531383769920937332e-01, /* 3FC39A09 D078C69F */ -+Lg7 = 1.479819860511658591e-01; /* 3FC2F112 DF3E5244 */ -+ -+static const double zero = 0.0; -+ -+#if BYTE_ORDER == BIG_ENDIAN -+ -+typedef union -+{ -+ double value; -+ struct -+ { -+ u_int32_t msw; -+ u_int32_t lsw; -+ } parts; -+} ieee_double_shape_type; -+ -+#endif -+ -+#if BYTE_ORDER == LITTLE_ENDIAN -+ -+typedef union -+{ -+ double value; -+ struct -+ { -+ u_int32_t lsw; -+ u_int32_t msw; -+ } parts; -+} ieee_double_shape_type; -+ -+#endif -+ -+#define EXTRACT_WORDS(ix0,ix1,d) \ -+ do { \ -+ ieee_double_shape_type ew_u; \ -+ ew_u.value = (d); \ -+ (ix0) = ew_u.parts.msw; \ -+ (ix1) = ew_u.parts.lsw; \ -+ } while (0) -+ -+#define GET_HIGH_WORD(i,d) \ -+ do { \ -+ ieee_double_shape_type gh_u; \ -+ gh_u.value = (d); \ -+ (i) = gh_u.parts.msw; \ -+ } while (0) -+ -+#define SET_HIGH_WORD(d,v) \ -+ do { \ -+ ieee_double_shape_type sh_u; \ -+ sh_u.value = (d); \ -+ sh_u.parts.msw = (v); \ -+ (d) = sh_u.value; \ -+ } while (0) -+ -+static double -+_log2(double x) -+{ -+ double hfsq,f,s,z,R,w,t1,t2,dk; -+ int32_t k,hx,i,j; -+ u_int32_t lx; -+ -+ EXTRACT_WORDS(hx,lx,x); -+ -+ k=0; -+ if (hx < 0x00100000) { /* x < 2**-1022 */ -+ if (((hx&0x7fffffff)|lx)==0) -+ return -two54/zero; /* log(+-0)=-inf */ -+ if (hx<0) return (x-x)/zero; /* log(-#) = NaN */ -+ k -= 54; x *= two54; /* subnormal number, scale up x */ -+ GET_HIGH_WORD(hx,x); -+ } -+ if (hx >= 0x7ff00000) return x+x; -+ k += (hx>>20)-1023; -+ hx &= 0x000fffff; -+ i = (hx+0x95f64)&0x100000; -+ SET_HIGH_WORD(x,hx|(i^0x3ff00000)); /* normalize x or x/2 */ -+ k += (i>>20); -+ f = x-1.0; -+ dk = (double)k; -+ if((0x000fffff&(2+hx))<3) { /* |f| < 2**-20 */ -+ if (f==zero) -+ return (dk); -+ R = f*f*(0.5-0.33333333333333333*f); -+ return (dk-(R-f)/ln2); -+ } -+ s = f/(2.0+f); -+ z = s*s; -+ i = hx-0x6147a; -+ w = z*z; -+ j = 0x6b851-hx; -+ t1= w*(Lg2+w*(Lg4+w*Lg6)); -+ t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); -+ i |= j; -+ R = t2+t1; -+ if(i>0) { -+ hfsq=0.5*f*f; -+ return (dk-(hfsq-s*(hfsq+R)-f)/ln2); -+ } else -+ return (dk-((s*(f-R))-f)/ln2); -+} -+ -+#define log2(x) _log2(x) -+#endif -+ - - - diff --git a/graphics/inkscape/pkg-descr b/graphics/inkscape/pkg-descr deleted file mode 100644 index fbd138147..000000000 --- a/graphics/inkscape/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Inkscape seeks to become a full featured open source SVG editor. -Derived from the highly popular Sodipodi codebase, Inkscape strives -to build full XML, SVG, and CSS2 compliance. - -Features include alpha blending, node editing, svg-to-png export, -and more. Project aims for capabilities similar to Illustrator, -CorelDraw, Visio, etc. - -WWW: http://www.inkscape.org diff --git a/graphics/inkscape/pkg-plist b/graphics/inkscape/pkg-plist deleted file mode 100644 index c5f974c76..000000000 --- a/graphics/inkscape/pkg-plist +++ /dev/null @@ -1,563 +0,0 @@ -bin/inkscape -bin/inkview -share/applications/inkscape.desktop -%%DATADIR%%/clipart/README -%%DATADIR%%/clipart/draw-freely.ru.svg -%%DATADIR%%/clipart/draw-freely.svg -%%DATADIR%%/clipart/inkscape.logo.svg -%%DATADIR%%/clipart/orav.svg -%%DATADIR%%/clipart/tux.svg -%%DATADIR%%/examples/README -%%DATADIR%%/examples/animated-clock.svg -%%DATADIR%%/examples/art-nouveau-P3.svg -%%DATADIR%%/examples/blend_modes.svg -%%DATADIR%%/examples/car.svgz -%%DATADIR%%/examples/data_uri.svg -%%DATADIR%%/examples/eastern-motive-P4G.svg -%%DATADIR%%/examples/flow-go.svg -%%DATADIR%%/examples/flowsample.svg -%%DATADIR%%/examples/gallardo.svgz -%%DATADIR%%/examples/glass.svg -%%DATADIR%%/examples/gradient-mesh-experimental.svgz -%%DATADIR%%/examples/gradient.svg -%%DATADIR%%/examples/i18n.svg -%%DATADIR%%/examples/istest.pov -%%DATADIR%%/examples/l-systems.svgz -%%DATADIR%%/examples/lighting_effects.svg -%%DATADIR%%/examples/live-path-effects-curvestitch.svg -%%DATADIR%%/examples/live-path-effects-gears.svg -%%DATADIR%%/examples/live-path-effects-pathalongpath.svg -%%DATADIR%%/examples/markers.svg -%%DATADIR%%/examples/rope-3D.svg -%%DATADIR%%/examples/stars.svgz -%%DATADIR%%/examples/tesselation-P3.svg -%%DATADIR%%/examples/text-on-path.svg -%%DATADIR%%/examples/tiger.svgz -%%DATADIR%%/examples/turbulence_effects.svg -%%DATADIR%%/extensions/Barcode/Base.py -%%DATADIR%%/extensions/Barcode/Code128.py -%%DATADIR%%/extensions/Barcode/Code39.py -%%DATADIR%%/extensions/Barcode/Code39Ext.py -%%DATADIR%%/extensions/Barcode/Code93.py -%%DATADIR%%/extensions/Barcode/EAN13.py -%%DATADIR%%/extensions/Barcode/EAN8.py -%%DATADIR%%/extensions/Barcode/RM4CC.py -%%DATADIR%%/extensions/Barcode/UPCA.py -%%DATADIR%%/extensions/Barcode/UPCE.py -%%DATADIR%%/extensions/Barcode/__init__.py -%%DATADIR%%/extensions/SpSVG.pm -%%DATADIR%%/extensions/addnodes.inx -%%DATADIR%%/extensions/addnodes.py -%%DATADIR%%/extensions/ai_input.inx -%%DATADIR%%/extensions/ai_output.inx -%%DATADIR%%/extensions/aisvg.inx -%%DATADIR%%/extensions/aisvg.xslt -%%DATADIR%%/extensions/bezmisc.py -%%DATADIR%%/extensions/cdr2svg.sh -%%DATADIR%%/extensions/cdr_input.inx -%%DATADIR%%/extensions/chardataeffect.py -%%DATADIR%%/extensions/color_brighter.inx -%%DATADIR%%/extensions/color_brighter.py -%%DATADIR%%/extensions/color_custom.inx -%%DATADIR%%/extensions/color_custom.py -%%DATADIR%%/extensions/color_darker.inx -%%DATADIR%%/extensions/color_darker.py -%%DATADIR%%/extensions/color_desaturate.inx -%%DATADIR%%/extensions/color_desaturate.py -%%DATADIR%%/extensions/color_grayscale.inx -%%DATADIR%%/extensions/color_grayscale.py -%%DATADIR%%/extensions/color_lesshue.inx -%%DATADIR%%/extensions/color_lesshue.py -%%DATADIR%%/extensions/color_lesslight.inx -%%DATADIR%%/extensions/color_lesslight.py -%%DATADIR%%/extensions/color_lesssaturation.inx -%%DATADIR%%/extensions/color_lesssaturation.py -%%DATADIR%%/extensions/color_morehue.inx -%%DATADIR%%/extensions/color_morehue.py -%%DATADIR%%/extensions/color_morelight.inx -%%DATADIR%%/extensions/color_morelight.py -%%DATADIR%%/extensions/color_moresaturation.inx -%%DATADIR%%/extensions/color_moresaturation.py -%%DATADIR%%/extensions/color_negative.inx -%%DATADIR%%/extensions/color_negative.py -%%DATADIR%%/extensions/color_randomize.inx -%%DATADIR%%/extensions/color_randomize.py -%%DATADIR%%/extensions/color_removeblue.inx -%%DATADIR%%/extensions/color_removeblue.py -%%DATADIR%%/extensions/color_removegreen.inx -%%DATADIR%%/extensions/color_removegreen.py -%%DATADIR%%/extensions/color_removered.inx -%%DATADIR%%/extensions/color_removered.py -%%DATADIR%%/extensions/color_replace.inx -%%DATADIR%%/extensions/color_replace.py -%%DATADIR%%/extensions/color_rgbbarrel.inx -%%DATADIR%%/extensions/color_rgbbarrel.py -%%DATADIR%%/extensions/coloreffect.py -%%DATADIR%%/extensions/colors.xml -%%DATADIR%%/extensions/cspsubdiv.py -%%DATADIR%%/extensions/cubicsuperpath.py -%%DATADIR%%/extensions/dia.inx -%%DATADIR%%/extensions/dia2svg.sh -%%DATADIR%%/extensions/dimension.inx -%%DATADIR%%/extensions/dimension.py -%%DATADIR%%/extensions/dots.inx -%%DATADIR%%/extensions/dots.py -%%DATADIR%%/extensions/dxf_input.inx -%%DATADIR%%/extensions/dxf_outlines.inx -%%DATADIR%%/extensions/dxf_outlines.py -%%DATADIR%%/extensions/dxf_output.inx -%%DATADIR%%/extensions/edge3d.inx -%%DATADIR%%/extensions/edge3d.py -%%DATADIR%%/extensions/embed_raster_in_svg.pl -%%DATADIR%%/extensions/embedimage.inx -%%DATADIR%%/extensions/embedimage.py -%%DATADIR%%/extensions/eps_input.inx -%%DATADIR%%/extensions/epsi_output.inx -%%DATADIR%%/extensions/eqtexsvg.inx -%%DATADIR%%/extensions/eqtexsvg.py -%%DATADIR%%/extensions/export_gimp_palette.inx -%%DATADIR%%/extensions/export_gimp_palette.py -%%DATADIR%%/extensions/extractimage.inx -%%DATADIR%%/extensions/extractimage.py -%%DATADIR%%/extensions/ffgeom.py -%%DATADIR%%/extensions/fig2svg.sh -%%DATADIR%%/extensions/fig_input.inx -%%DATADIR%%/extensions/flatten.inx -%%DATADIR%%/extensions/flatten.py -%%DATADIR%%/extensions/fractalize.inx -%%DATADIR%%/extensions/fractalize.py -%%DATADIR%%/extensions/funcplot.inx -%%DATADIR%%/extensions/funcplot.py -%%DATADIR%%/extensions/gears.inx -%%DATADIR%%/extensions/gears.py -%%DATADIR%%/extensions/gimp_xcf.inx -%%DATADIR%%/extensions/gimp_xcf.py -%%DATADIR%%/extensions/handles.inx -%%DATADIR%%/extensions/handles.py -%%DATADIR%%/extensions/ill2svg.pl -%%DATADIR%%/extensions/inkex.py -%%DATADIR%%/extensions/inkscape-shadow-white.sh -%%DATADIR%%/extensions/inkscape-shadow.sh -%%DATADIR%%/extensions/inkscape_help_askaquestion.inx -%%DATADIR%%/extensions/inkscape_help_commandline.inx -%%DATADIR%%/extensions/inkscape_help_faq.inx -%%DATADIR%%/extensions/inkscape_help_keys.inx -%%DATADIR%%/extensions/inkscape_help_manual.inx -%%DATADIR%%/extensions/inkscape_help_relnotes.inx -%%DATADIR%%/extensions/inkscape_help_reportabug.inx -%%DATADIR%%/extensions/inkscape_help_svgspec.inx -%%DATADIR%%/extensions/interp.inx -%%DATADIR%%/extensions/interp.py -%%DATADIR%%/extensions/lindenmayer.inx -%%DATADIR%%/extensions/lindenmayer.py -%%DATADIR%%/extensions/lorem_ipsum.inx -%%DATADIR%%/extensions/lorem_ipsum.py -%%DATADIR%%/extensions/markers_strokepaint.inx -%%DATADIR%%/extensions/markers_strokepaint.py -%%DATADIR%%/extensions/measure.inx -%%DATADIR%%/extensions/measure.py -%%DATADIR%%/extensions/motion.inx -%%DATADIR%%/extensions/motion.py -%%DATADIR%%/extensions/outline2svg.inx -%%DATADIR%%/extensions/outline2svg.pl -%%DATADIR%%/extensions/pathalongpath.inx -%%DATADIR%%/extensions/pathalongpath.py -%%DATADIR%%/extensions/pathmodifier.py -%%DATADIR%%/extensions/pdf_output.inx.txt -%%DATADIR%%/extensions/pdf_output_via_gs_on_win32.inx.txt -%%DATADIR%%/extensions/perfectboundcover.inx -%%DATADIR%%/extensions/perfectboundcover.py -%%DATADIR%%/extensions/perspective.inx -%%DATADIR%%/extensions/perspective.py -%%DATADIR%%/extensions/ps2dxf.sh -%%DATADIR%%/extensions/ps2epsi.sh -%%DATADIR%%/extensions/ps2pdf.cmd -%%DATADIR%%/extensions/ps2pdf.sh -%%DATADIR%%/extensions/ps_input.inx -%%DATADIR%%/extensions/pturtle.py -%%DATADIR%%/extensions/radiusrand.inx -%%DATADIR%%/extensions/radiusrand.py -%%DATADIR%%/extensions/randompnt.inx -%%DATADIR%%/extensions/randompos.inx -%%DATADIR%%/extensions/render_barcode.inx -%%DATADIR%%/extensions/render_barcode.py -%%DATADIR%%/extensions/rtree.inx -%%DATADIR%%/extensions/rtree.py -%%DATADIR%%/extensions/rubberstretch.inx -%%DATADIR%%/extensions/rubberstretch.py -%%DATADIR%%/extensions/simplepath.py -%%DATADIR%%/extensions/simplepath.rb -%%DATADIR%%/extensions/simplestyle.py -%%DATADIR%%/extensions/simpletransform.py -%%DATADIR%%/extensions/sk2svg.sh -%%DATADIR%%/extensions/sk_input.inx -%%DATADIR%%/extensions/spirograph.inx -%%DATADIR%%/extensions/spirograph.py -%%DATADIR%%/extensions/straightseg.inx -%%DATADIR%%/extensions/straightseg.py -%%DATADIR%%/extensions/summersnight.inx -%%DATADIR%%/extensions/summersnight.py -%%DATADIR%%/extensions/svg2xaml.inx -%%DATADIR%%/extensions/svg2xaml.xsl -%%DATADIR%%/extensions/svg_and_media_zip_output.inx -%%DATADIR%%/extensions/svg_and_media_zip_output.py -%%DATADIR%%/extensions/svgz_input.inx -%%DATADIR%%/extensions/svgz_output.inx -%%DATADIR%%/extensions/text_flipcase.inx -%%DATADIR%%/extensions/text_flipcase.py -%%DATADIR%%/extensions/text_lowercase.inx -%%DATADIR%%/extensions/text_lowercase.py -%%DATADIR%%/extensions/text_randomcase.inx -%%DATADIR%%/extensions/text_randomcase.py -%%DATADIR%%/extensions/text_replace.inx -%%DATADIR%%/extensions/text_replace.py -%%DATADIR%%/extensions/text_sentencecase.inx -%%DATADIR%%/extensions/text_sentencecase.py -%%DATADIR%%/extensions/text_titlecase.inx -%%DATADIR%%/extensions/text_titlecase.py -%%DATADIR%%/extensions/text_uppercase.inx -%%DATADIR%%/extensions/text_uppercase.py -%%DATADIR%%/extensions/txt2svg.inx -%%DATADIR%%/extensions/txt2svg.pl -%%DATADIR%%/extensions/webbrowser_askaquestion.py -%%DATADIR%%/extensions/webbrowser_commandline.py -%%DATADIR%%/extensions/webbrowser_faq.py -%%DATADIR%%/extensions/webbrowser_keys.py -%%DATADIR%%/extensions/webbrowser_manual.py -%%DATADIR%%/extensions/webbrowser_relnotes.py -%%DATADIR%%/extensions/webbrowser_reportabug.py -%%DATADIR%%/extensions/webbrowser_svgspec.py -%%DATADIR%%/extensions/whirl.inx -%%DATADIR%%/extensions/whirl.py -%%DATADIR%%/extensions/wmf_input.inx -%%DATADIR%%/extensions/xaml2svg.inx -%%DATADIR%%/extensions/xaml2svg.xsl -%%DATADIR%%/extensions/xaml2svg/Makefile.am -%%DATADIR%%/extensions/xaml2svg/animation.xsl -%%DATADIR%%/extensions/xaml2svg/brushes.xsl -%%DATADIR%%/extensions/xaml2svg/canvas.xsl -%%DATADIR%%/extensions/xaml2svg/geometry.xsl -%%DATADIR%%/extensions/xaml2svg/properties.xsl -%%DATADIR%%/extensions/xaml2svg/shapes.xsl -%%DATADIR%%/extensions/xaml2svg/transform.xsl -%%DATADIR%%/fonts/README -%%DATADIR%%/gradients/README -%%DATADIR%%/icons/README.icon_themes -%%DATADIR%%/icons/README.legacy_icons -%%DATADIR%%/icons/feBlend-icon.png -%%DATADIR%%/icons/feBlend-icon.svg -%%DATADIR%%/icons/feColorMatrix-icon.png -%%DATADIR%%/icons/feColorMatrix-icon.svg -%%DATADIR%%/icons/feComposite-icon.png -%%DATADIR%%/icons/feComposite-icon.svg -%%DATADIR%%/icons/feConvolveMatrix-icon.png -%%DATADIR%%/icons/feConvolveMatrix-icon.svg -%%DATADIR%%/icons/feDiffuseLighting-icon.png -%%DATADIR%%/icons/feDiffuseLighting-icon.svg -%%DATADIR%%/icons/feDisplacementMap-icon.png -%%DATADIR%%/icons/feDisplacementMap-icon.svg -%%DATADIR%%/icons/feFlood-icon.png -%%DATADIR%%/icons/feFlood-icon.svg -%%DATADIR%%/icons/feGaussianBlur-icon.png -%%DATADIR%%/icons/feGaussianBlur-icon.svg -%%DATADIR%%/icons/feImage-icon.png -%%DATADIR%%/icons/feImage-icon.svg -%%DATADIR%%/icons/feMerge-icon.png -%%DATADIR%%/icons/feMerge-icon.svg -%%DATADIR%%/icons/feMorphology-icon.png -%%DATADIR%%/icons/feMorphology-icon.svg -%%DATADIR%%/icons/feOffset-icon.png -%%DATADIR%%/icons/feOffset-icon.svg -%%DATADIR%%/icons/feSpecularLighting-icon.png -%%DATADIR%%/icons/feSpecularLighting-icon.svg -%%DATADIR%%/icons/feTurbulence-icon.png -%%DATADIR%%/icons/feTurbulence-icon.svg -%%DATADIR%%/icons/icons.svg -%%DATADIR%%/icons/inkscape.file.png -%%DATADIR%%/icons/inkscape.file.svg -%%DATADIR%%/icons/inkscape.svg -%%DATADIR%%/icons/legacy_icons.svg -%%DATADIR%%/icons/tango_icons.svg -%%DATADIR%%/icons/ticotico.jpg -%%DATADIR%%/keys/acd-canvas.xml -%%DATADIR%%/keys/adobe-illustrator-cs2.xml -%%DATADIR%%/keys/corel-draw-x4.xml -%%DATADIR%%/keys/default.xml -%%DATADIR%%/keys/inkscape.xml -%%DATADIR%%/keys/macromedia-freehand-mx.xml -%%DATADIR%%/keys/right-handed-illustration.xml -%%DATADIR%%/keys/xara.xml -%%DATADIR%%/keys/zoner-draw.xml -%%DATADIR%%/markers/markers.svg -%%DATADIR%%/palettes/Blues.gpl -%%DATADIR%%/palettes/Gold.gpl -%%DATADIR%%/palettes/Gray.gpl -%%DATADIR%%/palettes/Greens.gpl -%%DATADIR%%/palettes/Hilite.gpl -%%DATADIR%%/palettes/Khaki.gpl -%%DATADIR%%/palettes/LaTeX-Beamer.gpl -%%DATADIR%%/palettes/README -%%DATADIR%%/palettes/Reds.gpl -%%DATADIR%%/palettes/Royal.gpl -%%DATADIR%%/palettes/Tango-Palette.gpl -%%DATADIR%%/palettes/Topographic.gpl -%%DATADIR%%/palettes/Ubuntu.gpl -%%DATADIR%%/palettes/inkscape.gpl -%%DATADIR%%/palettes/svg.gpl -%%DATADIR%%/palettes/webhex.gpl -%%DATADIR%%/palettes/websafe22.gpl -%%DATADIR%%/palettes/windowsXP.gpl -%%DATADIR%%/patterns/README -%%DATADIR%%/patterns/patterns.svg -%%DATADIR%%/screens/about.bg.svg -%%DATADIR%%/screens/about.br.svg -%%DATADIR%%/screens/about.gl.svg -%%DATADIR%%/screens/about.it.svg -%%DATADIR%%/screens/about.pt_BR.svg -%%DATADIR%%/screens/about.ru.svg -%%DATADIR%%/screens/about.sk.svg -%%DATADIR%%/screens/about.sl.svg -%%DATADIR%%/screens/about.sr.svg -%%DATADIR%%/screens/about.sr@latin.svg -%%DATADIR%%/screens/about.svg -%%DATADIR%%/templates/A4.svg -%%DATADIR%%/templates/A4_landscape.svg -%%DATADIR%%/templates/CD_cover_300dpi.svg -%%DATADIR%%/templates/DVD_cover_regular_300dpi.svg -%%DATADIR%%/templates/DVD_cover_slim_300dpi.svg -%%DATADIR%%/templates/DVD_cover_superslim_300dpi.svg -%%DATADIR%%/templates/DVD_cover_ultraslim_300dpi.svg -%%DATADIR%%/templates/LaTeX_Beamer.svg -%%DATADIR%%/templates/Letter.svg -%%DATADIR%%/templates/Letter_landscape.svg -%%DATADIR%%/templates/README -%%DATADIR%%/templates/black_opaque.svg -%%DATADIR%%/templates/business_card_85x54mm.svg -%%DATADIR%%/templates/business_card_90x50mm.svg -%%DATADIR%%/templates/default.ca.svg -%%DATADIR%%/templates/default.cs.svg -%%DATADIR%%/templates/default.de.svg -%%DATADIR%%/templates/default.eo.svg -%%DATADIR%%/templates/default.es.svg -%%DATADIR%%/templates/default.eu.svg -%%DATADIR%%/templates/default.fi.svg -%%DATADIR%%/templates/default.fr.svg -%%DATADIR%%/templates/default.hu.svg -%%DATADIR%%/templates/default.it.svg -%%DATADIR%%/templates/default.lt.svg -%%DATADIR%%/templates/default.pl.svg -%%DATADIR%%/templates/default.pt_BR.svg -%%DATADIR%%/templates/default.sk.svg -%%DATADIR%%/templates/default.svg -%%DATADIR%%/templates/default_mm.svg -%%DATADIR%%/templates/default_pt.svg -%%DATADIR%%/templates/desktop_1024x768.svg -%%DATADIR%%/templates/desktop_1600x1200.svg -%%DATADIR%%/templates/desktop_640x480.svg -%%DATADIR%%/templates/desktop_800x600.svg -%%DATADIR%%/templates/fontforge_glyph.svg -%%DATADIR%%/templates/icon_16x16.svg -%%DATADIR%%/templates/icon_32x32.svg -%%DATADIR%%/templates/icon_48x48.svg -%%DATADIR%%/templates/icon_64x64.svg -%%DATADIR%%/templates/no_borders.svg -%%DATADIR%%/templates/no_layers.svg -%%DATADIR%%/templates/video_HDTV_1920x1080.svg -%%DATADIR%%/templates/video_NTSC_720x486.svg -%%DATADIR%%/templates/video_PAL_720x576.svg -%%DATADIR%%/templates/web_banner_468x60.svg -%%DATADIR%%/templates/web_banner_728x90.svg -%%DATADIR%%/templates/white_opaque.svg -%%DATADIR%%/tutorials/README -%%DATADIR%%/tutorials/gpl-2.svg -%%DATADIR%%/tutorials/making_markers.svg -%%DATADIR%%/tutorials/oldguitar.jpg -%%DATADIR%%/tutorials/potrace-de.png -%%DATADIR%%/tutorials/potrace-fr.png -%%DATADIR%%/tutorials/potrace-ru.png -%%DATADIR%%/tutorials/potrace.png -%%DATADIR%%/tutorials/tutorial-advanced.ca.svg -%%DATADIR%%/tutorials/tutorial-advanced.cs.svg -%%DATADIR%%/tutorials/tutorial-advanced.de.svg -%%DATADIR%%/tutorials/tutorial-advanced.es.svg -%%DATADIR%%/tutorials/tutorial-advanced.fr.svg -%%DATADIR%%/tutorials/tutorial-advanced.it.svg -%%DATADIR%%/tutorials/tutorial-advanced.ja.svg -%%DATADIR%%/tutorials/tutorial-advanced.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-advanced.ru.svg -%%DATADIR%%/tutorials/tutorial-advanced.sk.svg -%%DATADIR%%/tutorials/tutorial-advanced.sl.svg -%%DATADIR%%/tutorials/tutorial-advanced.svg -%%DATADIR%%/tutorials/tutorial-advanced.vi.svg -%%DATADIR%%/tutorials/tutorial-advanced.zh_CN.svg -%%DATADIR%%/tutorials/tutorial-basic.bg.svg -%%DATADIR%%/tutorials/tutorial-basic.ca.svg -%%DATADIR%%/tutorials/tutorial-basic.cs.svg -%%DATADIR%%/tutorials/tutorial-basic.da.svg -%%DATADIR%%/tutorials/tutorial-basic.de.svg -%%DATADIR%%/tutorials/tutorial-basic.es.svg -%%DATADIR%%/tutorials/tutorial-basic.fr.svg -%%DATADIR%%/tutorials/tutorial-basic.it.svg -%%DATADIR%%/tutorials/tutorial-basic.ja.svg -%%DATADIR%%/tutorials/tutorial-basic.nn.svg -%%DATADIR%%/tutorials/tutorial-basic.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-basic.ru.svg -%%DATADIR%%/tutorials/tutorial-basic.sk.svg -%%DATADIR%%/tutorials/tutorial-basic.sl.svg -%%DATADIR%%/tutorials/tutorial-basic.svg -%%DATADIR%%/tutorials/tutorial-basic.tr.svg -%%DATADIR%%/tutorials/tutorial-basic.vi.svg -%%DATADIR%%/tutorials/tutorial-basic.zh_CN.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.ca.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.cs.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.de.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.es.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.fr.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.ru.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.sl.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.svg -%%DATADIR%%/tutorials/tutorial-calligraphy.vi.svg -%%DATADIR%%/tutorials/tutorial-elements.ca.svg -%%DATADIR%%/tutorials/tutorial-elements.de.svg -%%DATADIR%%/tutorials/tutorial-elements.es.svg -%%DATADIR%%/tutorials/tutorial-elements.fr.svg -%%DATADIR%%/tutorials/tutorial-elements.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-elements.ru.svg -%%DATADIR%%/tutorials/tutorial-elements.sl.svg -%%DATADIR%%/tutorials/tutorial-elements.svg -%%DATADIR%%/tutorials/tutorial-shapes.ca.svg -%%DATADIR%%/tutorials/tutorial-shapes.cs.svg -%%DATADIR%%/tutorials/tutorial-shapes.de.svg -%%DATADIR%%/tutorials/tutorial-shapes.es.svg -%%DATADIR%%/tutorials/tutorial-shapes.fr.svg -%%DATADIR%%/tutorials/tutorial-shapes.it.svg -%%DATADIR%%/tutorials/tutorial-shapes.ja.svg -%%DATADIR%%/tutorials/tutorial-shapes.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-shapes.ru.svg -%%DATADIR%%/tutorials/tutorial-shapes.sk.svg -%%DATADIR%%/tutorials/tutorial-shapes.sl.svg -%%DATADIR%%/tutorials/tutorial-shapes.svg -%%DATADIR%%/tutorials/tutorial-shapes.vi.svg -%%DATADIR%%/tutorials/tutorial-shapes.zh_CN.svg -%%DATADIR%%/tutorials/tutorial-tips.ca.svg -%%DATADIR%%/tutorials/tutorial-tips.de.svg -%%DATADIR%%/tutorials/tutorial-tips.es.svg -%%DATADIR%%/tutorials/tutorial-tips.fr.svg -%%DATADIR%%/tutorials/tutorial-tips.it.svg -%%DATADIR%%/tutorials/tutorial-tips.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-tips.ru.svg -%%DATADIR%%/tutorials/tutorial-tips.sk.svg -%%DATADIR%%/tutorials/tutorial-tips.sl.svg -%%DATADIR%%/tutorials/tutorial-tips.svg -%%DATADIR%%/tutorials/tutorial-tracing.ca.svg -%%DATADIR%%/tutorials/tutorial-tracing.de.svg -%%DATADIR%%/tutorials/tutorial-tracing.es.svg -%%DATADIR%%/tutorials/tutorial-tracing.fr.svg -%%DATADIR%%/tutorials/tutorial-tracing.pt_BR.svg -%%DATADIR%%/tutorials/tutorial-tracing.ru.svg -%%DATADIR%%/tutorials/tutorial-tracing.sl.svg -%%DATADIR%%/tutorials/tutorial-tracing.svg -%%DATADIR%%/tutorials/tutorial-tracing.vi.svg -%%DATADIR%%/tutorials/tux.png -%%DATADIR%%/ui/keybindings.rc -%%DATADIR%%/ui/menus-bars.xml -%%DATADIR%%/ui/toolbox.xml -%%DATADIR%%/ui/units.txt -%%DATADIR%%/ui/units.xml -share/locale/am/LC_MESSAGES/inkscape.mo -share/locale/ar/LC_MESSAGES/inkscape.mo -share/locale/az/LC_MESSAGES/inkscape.mo -share/locale/be/LC_MESSAGES/inkscape.mo -share/locale/bg/LC_MESSAGES/inkscape.mo -share/locale/bn/LC_MESSAGES/inkscape.mo -share/locale/br/LC_MESSAGES/inkscape.mo -share/locale/ca/LC_MESSAGES/inkscape.mo -share/locale/ca@valencia/LC_MESSAGES/inkscape.mo -share/locale/cs/LC_MESSAGES/inkscape.mo -share/locale/da/LC_MESSAGES/inkscape.mo -share/locale/de/LC_MESSAGES/inkscape.mo -share/locale/dz/LC_MESSAGES/inkscape.mo -share/locale/el/LC_MESSAGES/inkscape.mo -share/locale/en_AU/LC_MESSAGES/inkscape.mo -share/locale/en_CA/LC_MESSAGES/inkscape.mo -share/locale/en_GB/LC_MESSAGES/inkscape.mo -share/locale/en_US@piglatin/LC_MESSAGES/inkscape.mo -share/locale/eo/LC_MESSAGES/inkscape.mo -share/locale/es/LC_MESSAGES/inkscape.mo -share/locale/es_MX/LC_MESSAGES/inkscape.mo -share/locale/et/LC_MESSAGES/inkscape.mo -share/locale/eu/LC_MESSAGES/inkscape.mo -share/locale/fi/LC_MESSAGES/inkscape.mo -share/locale/fr/LC_MESSAGES/inkscape.mo -share/locale/ga/LC_MESSAGES/inkscape.mo -share/locale/gl/LC_MESSAGES/inkscape.mo -share/locale/he/LC_MESSAGES/inkscape.mo -share/locale/hr/LC_MESSAGES/inkscape.mo -share/locale/hu/LC_MESSAGES/inkscape.mo -share/locale/id/LC_MESSAGES/inkscape.mo -share/locale/it/LC_MESSAGES/inkscape.mo -share/locale/ja/LC_MESSAGES/inkscape.mo -share/locale/km/LC_MESSAGES/inkscape.mo -share/locale/ko/LC_MESSAGES/inkscape.mo -share/locale/lt/LC_MESSAGES/inkscape.mo -share/locale/mk/LC_MESSAGES/inkscape.mo -share/locale/mn/LC_MESSAGES/inkscape.mo -share/locale/nb/LC_MESSAGES/inkscape.mo -share/locale/ne/LC_MESSAGES/inkscape.mo -share/locale/nl/LC_MESSAGES/inkscape.mo -share/locale/nn/LC_MESSAGES/inkscape.mo -share/locale/pa/LC_MESSAGES/inkscape.mo -share/locale/pl/LC_MESSAGES/inkscape.mo -share/locale/pt/LC_MESSAGES/inkscape.mo -share/locale/pt_BR/LC_MESSAGES/inkscape.mo -share/locale/ro/LC_MESSAGES/inkscape.mo -share/locale/ru/LC_MESSAGES/inkscape.mo -share/locale/rw/LC_MESSAGES/inkscape.mo -share/locale/sk/LC_MESSAGES/inkscape.mo -share/locale/sl/LC_MESSAGES/inkscape.mo -share/locale/sq/LC_MESSAGES/inkscape.mo -share/locale/sr/LC_MESSAGES/inkscape.mo -share/locale/sr@latin/LC_MESSAGES/inkscape.mo -share/locale/sv/LC_MESSAGES/inkscape.mo -share/locale/th/LC_MESSAGES/inkscape.mo -share/locale/tr/LC_MESSAGES/inkscape.mo -share/locale/uk/LC_MESSAGES/inkscape.mo -share/locale/vi/LC_MESSAGES/inkscape.mo -share/locale/zh_CN/LC_MESSAGES/inkscape.mo -share/locale/zh_TW/LC_MESSAGES/inkscape.mo -share/pixmaps/inkscape.png -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/tutorials -@dirrm %%DATADIR%%/templates -@dirrm %%DATADIR%%/screens -@dirrm %%DATADIR%%/patterns -@dirrm %%DATADIR%%/palettes -@dirrm %%DATADIR%%/markers -@dirrm %%DATADIR%%/keys -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%%/gradients -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/extensions/xaml2svg -@dirrm %%DATADIR%%/extensions/Barcode -@dirrm %%DATADIR%%/extensions -@dirrm %%DATADIR%%/examples -@dirrm %%DATADIR%%/clipart -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry man/fr/man1 -@dirrmtry man/fr -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/en_US@piglatin/LC_MESSAGES -@dirrmtry share/locale/en_US@piglatin -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia diff --git a/graphics/libgnomecanvas/Makefile b/graphics/libgnomecanvas/Makefile deleted file mode 100644 index 336347b5b..000000000 --- a/graphics/libgnomecanvas/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: gnomecanvas -# Date created: 18 May 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/libgnomecanvas/Makefile,v 1.74 2009/02/28 01:58:29 marcus Exp $ -# - -PORTNAME= libgnomecanvas -PORTVERSION= 2.26.0 -PORTREVISION?= 0 -CATEGORIES= graphics gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A graphics library for GNOME - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -USE_GMAKE= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomehack libglade2 libartlgpl2 ltverhack referencehack -CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ - --disable-gtk-doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> - -.endif diff --git a/graphics/libgnomecanvas/distinfo b/graphics/libgnomecanvas/distinfo deleted file mode 100644 index 8d3fd7340..000000000 --- a/graphics/libgnomecanvas/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomecanvas-2.26.0.tar.bz2) = 9bbc635e5ae70e63af071af74ba7e72f -SHA256 (gnome2/libgnomecanvas-2.26.0.tar.bz2) = 80b480acc33d7303f651e9c5bc8fea51c9e9a9ed59ebfdbbb730dd798bcbc58d -SIZE (gnome2/libgnomecanvas-2.26.0.tar.bz2) = 600470 diff --git a/graphics/libgnomecanvas/files/patch-libgnomecanvas_gnome-canvas-shape.c b/graphics/libgnomecanvas/files/patch-libgnomecanvas_gnome-canvas-shape.c deleted file mode 100644 index 75c1fd41d..000000000 --- a/graphics/libgnomecanvas/files/patch-libgnomecanvas_gnome-canvas-shape.c +++ /dev/null @@ -1,11 +0,0 @@ ---- libgnomecanvas/gnome-canvas-shape.c.orig Fri May 20 16:55:35 2005 -+++ libgnomecanvas/gnome-canvas-shape.c Fri May 20 16:55:41 2005 -@@ -1343,7 +1343,7 @@ gcbp_destroy_gdk (GnomeCanvasShape * sha - { - GnomeCanvasShapePrivGdk * gdk; - -- g_assert (!((GnomeCanvasItem *)shape)->canvas->aa); -+ /*g_assert (!((GnomeCanvasItem *)shape)->canvas->aa);*/ - - gdk = shape->priv->gdk; - diff --git a/graphics/libgnomecanvas/pkg-descr b/graphics/libgnomecanvas/pkg-descr deleted file mode 100644 index a3d2ae327..000000000 --- a/graphics/libgnomecanvas/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -The GNOMECanvas library allows images to be used directly within -GUIs. diff --git a/graphics/libgnomecanvas/pkg-plist b/graphics/libgnomecanvas/pkg-plist deleted file mode 100644 index 257446077..000000000 --- a/graphics/libgnomecanvas/pkg-plist +++ /dev/null @@ -1,145 +0,0 @@ -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-bpath.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-clipgroup.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-line.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-path-def.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-pixbuf.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rect-ellipse.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-rich-text.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-shape.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-text.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-util.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-widget.h -include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas.h -include/libgnomecanvas-2.0/libgnomecanvas/libgnomecanvas.h -lib/libglade/2.0/libcanvas.a -lib/libglade/2.0/libcanvas.la -lib/libglade/2.0/libcanvas.so -lib/libgnomecanvas-2.a -lib/libgnomecanvas-2.la -lib/libgnomecanvas-2.so -lib/libgnomecanvas-2.so.0 -libdata/pkgconfig/libgnomecanvas-2.0.pc -share/locale/am/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ang/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ar/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/as/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/az/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/be/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/bg/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/bn/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/bn_IN/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/bs/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ca/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/crh/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/cs/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/cy/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/da/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/de/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/dz/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/el/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/en_CA/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/en_GB/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/eo/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/es/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/et/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/eu/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/fa/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/fi/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/fr/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ga/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/gl/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/gu/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/he/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/hi/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/hr/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/hu/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/id/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/is/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/it/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ja/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ka/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/kn/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ko/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ku/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/li/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/lt/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/lv/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/mai/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/mg/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/mk/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ml/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/mn/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/mr/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ms/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/nb/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ne/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/nl/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/nn/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/oc/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/or/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/pa/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/pl/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/pt/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/pt_BR/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ro/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ru/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/rw/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/sk/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/sl/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/sq/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/sr/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/sr@ije/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/sr@latin/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/sv/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/ta/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/te/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/th/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/tr/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/tt/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/uk/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/vi/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/wa/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/xh/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/yi/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/zh_CN/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/zh_HK/LC_MESSAGES/libgnomecanvas-2.0.mo -share/locale/zh_TW/LC_MESSAGES/libgnomecanvas-2.0.mo -@dirrm include/libgnomecanvas-2.0/libgnomecanvas -@dirrm include/libgnomecanvas-2.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang diff --git a/graphics/libgnomecanvasmm26/Makefile b/graphics/libgnomecanvasmm26/Makefile deleted file mode 100644 index dc5d65bdb..000000000 --- a/graphics/libgnomecanvasmm26/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: libgnomecanvasmm -# Date created: 22 May 2003 -# Whom: Alexander Nedotsukov <bland@mail.ru> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= libgnomecanvasmm -PORTVERSION= 2.26.0 -CATEGORIES= graphics gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libgnomecanvas library - -LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -LATEST_LINK= libgnomecanvasmm26 - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack libgnomecanvas -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples//' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e "s|\(-lglibmm\)|-L\$$(GMM_PROCDIR)/../.. \1|" \ - ${WRKSRC}/tools/extra_defs_gen/Makefile.in - -.include <bsd.port.mk> diff --git a/graphics/libgnomecanvasmm26/distinfo b/graphics/libgnomecanvasmm26/distinfo deleted file mode 100644 index d3ee6249b..000000000 --- a/graphics/libgnomecanvasmm26/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomecanvasmm-2.26.0.tar.bz2) = a148c99311d46397de6e4a31736771ab -SHA256 (gnome2/libgnomecanvasmm-2.26.0.tar.bz2) = 996577f97f459a574919e15ba7fee6af8cda38a87a98289e9a4f54752d83e918 -SIZE (gnome2/libgnomecanvasmm-2.26.0.tar.bz2) = 327215 diff --git a/graphics/libgnomecanvasmm26/pkg-descr b/graphics/libgnomecanvasmm26/pkg-descr deleted file mode 100644 index c310245ea..000000000 --- a/graphics/libgnomecanvasmm26/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -libgnomecanvasmm provides C++ wrappers for libgnomecanvas, for use with gtkmm. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/graphics/libgnomecanvasmm26/pkg-plist b/graphics/libgnomecanvasmm26/pkg-plist deleted file mode 100644 index a3e29ab2c..000000000 --- a/graphics/libgnomecanvasmm26/pkg-plist +++ /dev/null @@ -1,51 +0,0 @@ -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/affinetrans.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/bpath.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/canvas.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/ellipse.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/group.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/init.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/item.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/line.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/path-def.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/pixbuf.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/point.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/polygon.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/bpath_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/canvas_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/ellipse_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/group_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/item_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/line_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/path-def_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/pixbuf_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/polygon_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/rect-ellipse_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/rect_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/rich-text_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/shape_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/text_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private/widget_p.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/properties.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/rect-ellipse.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/rect.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/rich-text.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/shape.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/text.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/widget.h -include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/wrap_init.h -lib/libgnomecanvasmm-%%VERSION%%.a -lib/libgnomecanvasmm-%%VERSION%%.la -lib/libgnomecanvasmm-%%VERSION%%.so -lib/libgnomecanvasmm-%%VERSION%%.so.1 -lib/libgnomecanvasmm-%%API_VERSION%%/include/libgnomecanvasmmconfig.h -lib/libgnomecanvasmm-%%API_VERSION%%/proc/m4/convert.m4 -lib/libgnomecanvasmm-%%API_VERSION%%/proc/m4/convert_libgnomecanvasmm.m4 -libdata/pkgconfig/libgnomecanvasmm-%%API_VERSION%%.pc -@dirrm lib/libgnomecanvasmm-%%API_VERSION%%/proc/m4 -@dirrm lib/libgnomecanvasmm-%%API_VERSION%%/proc -@dirrm lib/libgnomecanvasmm-%%API_VERSION%%/include -@dirrm lib/libgnomecanvasmm-%%API_VERSION%% -@dirrm include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm/private -@dirrm include/libgnomecanvasmm-%%API_VERSION%%/libgnomecanvasmm -@dirrm include/libgnomecanvasmm-%%API_VERSION%% diff --git a/graphics/librsvg2/Makefile b/graphics/librsvg2/Makefile deleted file mode 100644 index ff41231e0..000000000 --- a/graphics/librsvg2/Makefile +++ /dev/null @@ -1,71 +0,0 @@ -# New ports collection makefile for: librsvg2 -# Date created: 8th May 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= librsvg2 -PORTVERSION= 2.26.0 -CATEGORIES= graphics gnome -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTNAME= librsvg-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Library for parsing and rendering SVG vector-graphic files - -BUILD_DEPENDS= freetype-config:${PORTSDIR}/print/freetype2 -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ - croco-${CROCO_VERSION}.3:${PORTSDIR}/textproc/libcroco -RUN_DEPENDS= gtk-engines2>=2.7.5_1:${PORTSDIR}/x11-themes/gtk-engines2 - -USE_BZIP2= yes -USE_GMAKE= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomehack gnomeprefix libgsf gtk20 ltverhack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-svgz \ - --without-gimp \ - --with-croco \ - --disable-gnome-vfs \ - --enable-gtk-theme \ - --disable-gnome-print - -CROCO_VERSION= 0.6 - -MAN1= rsvg.1 - -OPTIONS= MOZILLA_PLUGIN "Enable the SVG browser plug-in" no - -.include <bsd.port.pre.mk> - -.if defined(WITH_MOZILLA_PLUGIN) -USE_GECKO= firefox mozilla seamonkey xulrunner -USE_WEBPLUGINS= gecko* -WEBPLUGINS_FILES=libmozsvgdec.so -.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk" -.include "${PORTSDIR}/www/firefox/Makefile.webplugins" -CONFIGURE_ENV+= MOZILLA_CONFIG=no -CONFIGURE_ARGS+=--enable-mozilla-plugin=yes - -PLIST_SUB+= PLUGIN="" -.else -CONFIGURE_ARGS+=--enable-mozilla-plugin=no - -PLIST_SUB+= PLUGIN="@comment " -.endif - -post-patch: -.if defined(WITH_MOZILLA_PLUGIN) - @${REINPLACE_CMD} -e 's|mozilla-plugin|${GECKO}-plugin|g' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|[$$][(]libdir[)]/mozilla/plugins|${WEBPLUGINS_DIR}|g' \ - ${WRKSRC}/moz-plugin/Makefile.in -.endif - -.include <bsd.port.post.mk> diff --git a/graphics/librsvg2/distinfo b/graphics/librsvg2/distinfo deleted file mode 100644 index 0807c3d1b..000000000 --- a/graphics/librsvg2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/librsvg-2.26.0.tar.bz2) = 65dbd726a514fe8b797d26254b8efc1e -SHA256 (gnome2/librsvg-2.26.0.tar.bz2) = fdcab5f0d86198d8cbd4ffe5b333076f75e707f6d7e4af5e87a8644ff7533bea -SIZE (gnome2/librsvg-2.26.0.tar.bz2) = 477499 diff --git a/graphics/librsvg2/files/patch-moz-plugin_Makefile.in b/graphics/librsvg2/files/patch-moz-plugin_Makefile.in deleted file mode 100644 index 728d20fcb..000000000 --- a/graphics/librsvg2/files/patch-moz-plugin_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- moz-plugin/Makefile.in.orig 2008-09-23 15:17:45.000000000 -0500 -+++ moz-plugin/Makefile.in 2008-09-23 15:19:11.000000000 -0500 -@@ -270,7 +270,7 @@ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES) - @$(NORMAL_INSTALL) -- test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)" -+@WITH_MOZILLA_TRUE@ test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)" - @list='$(plugin_LTLIBRARIES)'; for p in $$list; do \ - if test -f $$p; then \ - f=$(am__strip_dir) \ diff --git a/graphics/librsvg2/pkg-descr b/graphics/librsvg2/pkg-descr deleted file mode 100644 index 9e39343a5..000000000 --- a/graphics/librsvg2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -The librsvg library is a lightweight library for parsing and rendering -vector-graphic files in SVG format (like the ones made by sodipodi). It also -includes functions that render anti-aliased fonts using freetype, including -caching of glyphs. It is used by Nautilus for drawing vector icons and -anti-aliased text. - -WWW: http://librsvg.sourceforge.net/ diff --git a/graphics/librsvg2/pkg-plist b/graphics/librsvg2/pkg-plist deleted file mode 100644 index c89581974..000000000 --- a/graphics/librsvg2/pkg-plist +++ /dev/null @@ -1,45 +0,0 @@ -bin/rsvg -bin/rsvg-convert -bin/rsvg-view -include/librsvg-2/librsvg/librsvg-enum-types.h -include/librsvg-2/librsvg/librsvg-features.h -include/librsvg-2/librsvg/rsvg-cairo.h -include/librsvg-2/librsvg/rsvg.h -%%PLUGIN%%%%WEBPLUGINS_DIR%%/libmozsvgdec.a -%%PLUGIN%%%%WEBPLUGINS_DIR%%/libmozsvgdec.la -%%PLUGIN%%%%WEBPLUGINS_DIR%%/libmozsvgdec.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.so -lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.a -lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.la -lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.so -lib/librsvg-2.a -lib/librsvg-2.la -lib/librsvg-2.so -lib/librsvg-2.so.2 -libdata/pkgconfig/librsvg-2.0.pc -share/doc/rsvg/home.png -share/doc/rsvg/index.html -share/doc/rsvg/index.sgml -share/doc/rsvg/ix01.html -share/doc/rsvg/left.png -share/doc/rsvg/pt02.html -share/doc/rsvg/pt03.html -share/doc/rsvg/pt04.html -share/doc/rsvg/right.png -share/doc/rsvg/rsvg-Cairo.html -share/doc/rsvg/rsvg-Core-API.html -share/doc/rsvg/rsvg-GdkPixbuf.html -share/doc/rsvg/rsvg.devhelp -share/doc/rsvg/rsvg.devhelp2 -share/doc/rsvg/rsvg.html -share/doc/rsvg/style.css -share/doc/rsvg/up.png -share/pixmaps/svg-viewer.svg -@dirrm share/doc/rsvg -%%PLUGIN%%@dirrmtry %%WEBPLUGINS_DIR%% -@dirrm include/librsvg-2/librsvg -@dirrm include/librsvg-2 -@exec %D/bin/gdk-pixbuf-query-loaders > /dev/null 2>&1 && %D/bin/gdk-pixbuf-query-loaders > %D/etc/gtk-2.0/gdk-pixbuf.loaders 2>/dev/null || /usr/bin/true -@unexec %D/bin/gdk-pixbuf-query-loaders > /dev/null 2>&1 && %D/bin/gdk-pixbuf-query-loaders > %D/etc/gtk-2.0/gdk-pixbuf.loaders 2>/dev/null || /usr/bin/true diff --git a/graphics/osg-devel/Makefile b/graphics/osg-devel/Makefile deleted file mode 100644 index edfd92272..000000000 --- a/graphics/osg-devel/Makefile +++ /dev/null @@ -1,232 +0,0 @@ -# New ports collection makefile for: Open Scene Graph -# Date created: 26 Apr 2001 -# Whom: Randall Hopper <aa8vb@nc.rr.com> -# -# $FreeBSD$ -# - -PORTNAME= osg -PORTVERSION= 2.9.2 -PORTREVISION= 1 -CATEGORIES= graphics -MASTER_SITES= http://www.openscenegraph.org/downloads/developer_releases/ \ - http://mirror.amdmi3.ru/ -PKGNAMESUFFIX= -devel -DISTNAME= OpenSceneGraph-${PORTVERSION} - -MAINTAINER= amdmi3@FreeBSD.org -COMMENT= C++ OpenGL scene graph library for real-time rendering - -LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png \ - tiff.4:${PORTSDIR}/graphics/tiff - -CONFLICTS= osg-[0-9]* - -USE_ZIP= yes -USE_CMAKE= yes -USE_GL= gl glu -USE_GNOME= pkgconfig -USE_XORG= x11 -USE_LDCONFIG= yes -MAKE_JOBS_SAFE= yes - -PLIST_SUB= OSG_VERSION=${PORTVERSION} \ - OSG_SHLIBVER=57 \ - OPENTHREADS_VERSION=2.4.0 \ - OPENTHREADS_SHLIBVER=11 - -PORTSCOUT= limitw:1,odd - -OPTIONS= CURL "Support for cURL" off \ - FREETYPE "Support for FreeType" on \ - GDAL "Support for GDAL" off \ - GIF "Support for libungif" on \ - INVENTOR "Support for SGI OpenInventor" off \ - JASPER "Support for JPEG2000" off \ - XINE "Support for Xine" off \ - ITK "Support for InsightToolkit" off \ - VNC "Support for LibVNCServer" off \ - OPENEXR "Support for OpenEXR" off \ - FFMPEG "Support for FFmpeg" off \ - SVG "Support for SVG through librsvg2" off \ - PDF "Support for PDF through poppler" off \ - XRANDR "Use Xrandr" on - -# broken (openvrml from ports is too old) -# OPENVRML "Support for OpenVRML" off - -.include <bsd.port.pre.mk> - -# GUI toolkits are only needed for building examples, which are not even installed -FORCE_IGNORE= FLTK GLUT SDL FOX Qt3 Qt4 wxWidgets OpenAL # only for examples -FORCE_IGNORE+= COLLADA Performer OurDCMTK XUL # not in ports -FORCE_REQUIRE= Threads OpenGL X11 JPEG PNG TIFF ZLIB # common & lightweight -FORCE_PC_IGNORE= GTK GTKGL # only for examples -FORCE_PC_REQUIRE= - -# options that affect FIND_PACKAGE -.if defined(WITH_CURL) -FORCE_REQUIRE+= CURL -LIB_DEPENDS+= curl.5:${PORTSDIR}/ftp/curl -PLIST_SUB+= CURL="" -.else -FORCE_IGNORE+= CURL -PLIST_SUB+= CURL="@comment " -.endif - -.if !defined(WITHOUT_FREETYPE) -FORCE_REQUIRE+= FreeType -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 -PLIST_SUB+= FREETYPE="" -.else -FORCE_IGNORE+= FreeType -PLIST_SUB+= FREETYPE="@comment " -.endif - -.if defined(WITH_GDAL) -FORCE_REQUIRE+= GDAL -LIB_DEPENDS+= gdal.14:${PORTSDIR}/graphics/gdal -PLIST_SUB+= GDAL="" -.else -FORCE_IGNORE+= GDAL -PLIST_SUB+= GDAL="@comment " -.endif - -.if defined(WITH_GIF) -FORCE_REQUIRE+= GIFLIB -LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif -PLIST_SUB+= GIF="" -.else -FORCE_IGNORE+= GIFLIB -PLIST_SUB+= GIF="@comment " -.endif - -.if defined(WITH_INVENTOR) -FORCE_REQUIRE+= Inventor -BUILD_DEPENDS+= ${LOCALBASE}/lib/libInventor.so:${PORTSDIR}/graphics/inventor -RUN_DEPENDS+= ${LOCALBASE}/lib/libInventor.so:${PORTSDIR}/graphics/inventor -PLIST_SUB+= INVENTOR="" -.else -FORCE_IGNORE+= Inventor -PLIST_SUB+= INVENTOR="@comment " -.endif - -.if defined(WITH_JASPER) -FORCE_REQUIRE+= Jasper -LIB_DEPENDS+= jasper.4:${PORTSDIR}/graphics/jasper -PLIST_SUB+= JASPER="" -.else -FORCE_IGNORE+= Jasper -PLIST_SUB+= JASPER="@comment " -.endif - -#.if defined(WITH_OPENVRML) -#FORCE_REQUIRE+= OpenVRML -#LIB_DEPENDS+= openvrml.8:${PORTSDIR}/www/openvrml -#PLIST_SUB+= OPENVRML="" -#.else -FORCE_IGNORE+= OpenVRML -PLIST_SUB+= OPENVRML="@comment " -#.endif - -.if defined(WITH_XINE) -FORCE_REQUIRE+= Xine -LIB_DEPENDS+= xine.1:${PORTSDIR}/multimedia/libxine -PLIST_SUB+= XINE="" -.else -FORCE_IGNORE+= Xine -PLIST_SUB+= XINE="@comment " -.endif - -.if defined(WITH_ITK) -FORCE_REQUIRE+= ITK -BUILD_DEPENDS+= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit -RUN_DEPENDS+= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit -PLIST_SUB+= ITK="" -CXXFLAGS+= -DVCL_CAN_STATIC_CONST_INIT_FLOAT=0 -.else -FORCE_IGNORE+= ITK -PLIST_SUB+= ITK="@comment " -.endif - -.if defined(WITH_VNC) -FORCE_REQUIRE+= LibVNCServer -LIB_DEPENDS+= vncserver.0:${PORTSDIR}/net/libvncserver -PLIST_SUB+= VNC="" -.else -FORCE_IGNORE+= LibVNCServer -PLIST_SUB+= VNC="@comment " -.endif - -.if defined(WITH_OPENEXR) -FORCE_REQUIRE+= OpenEXR -LIB_DEPENDS+= IlmImf.6:${PORTSDIR}/graphics/OpenEXR -PLIST_SUB+= OPENEXR="" -.else -FORCE_IGNORE+= OpenEXR -PLIST_SUB+= OPENEXR="@comment " -.endif - -.if defined(WITH_FFMPEG) -FORCE_REQUIRE+= FFmpeg -LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg -PLIST_SUB+= FFMPEG="" -.else -FORCE_IGNORE+= FFmpeg -PLIST_SUB+= FFMPEG="@comment " -.endif - -# options that affect PKG_CHECK_MODULES -.if defined(WITH_SVG) -FORCE_PC_REQUIRE+=RSVG -LIB_DEPENDS+= rsvg-2:${PORTSDIR}/graphics/librsvg2 -PLIST_SUB+= SVG="" -.else -FORCE_PC_IGNORE+=RSVG -PLIST_SUB+= SVG="@comment " -.endif - -.if defined(WITH_PDF) -FORCE_PC_REQUIRE+=POPPLER -LIB_DEPENDS+= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk -PLIST_SUB+= PDF="" -.else -FORCE_PC_IGNORE+=POPPLER -PLIST_SUB+= PDF="@comment " -.endif - -.if defined(WITH_SVG) || defined(WITH_PDF) -FORCE_PC_REQUIRE+=CAIRO -LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo -.else -FORCE_PC_IGNORE+=CAIRO -.endif - -# other options -.if defined(WITHOUT_XRANDR) -CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=OFF -.else -CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=ON -USE_XORG+= xrandr -.endif - -post-patch: -.for p in ${FORCE_REQUIRE} - @${REINPLACE_CMD} -e '/FIND_PACKAGE.*${p}/ s|)$$| REQUIRED&|' \ - ${WRKSRC}/CMakeLists.txt -.endfor -.for p in ${FORCE_IGNORE} - @${REINPLACE_CMD} -e '/FIND_PACKAGE.*${p}/ s|^|#|' \ - ${WRKSRC}/CMakeLists.txt -.endfor -.for p in ${FORCE_PC_REQUIRE} - @${REINPLACE_CMD} -e 's|PKG_CHECK_MODULES.*${p}|& REQUIRED| ' \ - ${WRKSRC}/CMakeLists.txt -.endfor -.for p in ${FORCE_PC_IGNORE} - @${REINPLACE_CMD} -e '/PKG_CHECK_MODULES.*${p}/ s|^|#|' \ - ${WRKSRC}/CMakeLists.txt -.endfor - -.include <bsd.port.post.mk> diff --git a/graphics/osg-devel/distinfo b/graphics/osg-devel/distinfo deleted file mode 100644 index 52c67ec8e..000000000 --- a/graphics/osg-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (OpenSceneGraph-2.9.2.zip) = b15e0864fefbd37b071c545dd1760e90 -SHA256 (OpenSceneGraph-2.9.2.zip) = afa9323808dd4da08fa53f50d7cd257d05cd0a6436ac2c6238791fca03ca4d02 -SIZE (OpenSceneGraph-2.9.2.zip) = 6813410 diff --git a/graphics/osg-devel/files/patch-CMakeLists.txt b/graphics/osg-devel/files/patch-CMakeLists.txt deleted file mode 100644 index e7dc6a6dc..000000000 --- a/graphics/osg-devel/files/patch-CMakeLists.txt +++ /dev/null @@ -1,20 +0,0 @@ ---- CMakeLists.txt.orig 2009-01-29 16:29:08.000000000 +0300 -+++ CMakeLists.txt 2009-02-05 17:45:24.000000000 +0300 -@@ -459,7 +459,7 @@ - - IF(UNIX AND NOT WIN32 AND NOT APPLE) - IF(CMAKE_SIZEOF_VOID_P MATCHES "8") -- SET(LIB_POSTFIX "64" CACHE STRING "suffix for 32/64 dir placement") -+ SET(LIB_POSTFIX "" CACHE STRING "suffix for 32/64 dir placement") - MARK_AS_ADVANCED(LIB_POSTFIX) - ENDIF(CMAKE_SIZEOF_VOID_P MATCHES "8") - ENDIF(UNIX AND NOT WIN32 AND NOT APPLE) -@@ -766,7 +766,7 @@ - @ONLY - ) - --INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openscenegraph.pc DESTINATION lib${LIB_POSTFIX}/pkgconfig COMPONENT libopenscenegraph-dev) -+INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openscenegraph.pc DESTINATION libdata/pkgconfig COMPONENT libopenscenegraph-dev) - - # Run this as late as possible so users can easier spot the message - IF (${CMAKE_INSTALL_PREFIX} STREQUAL "/usr/local") diff --git a/graphics/osg-devel/files/patch-src-OpenThreads-CMakeLists.txt b/graphics/osg-devel/files/patch-src-OpenThreads-CMakeLists.txt deleted file mode 100644 index 675ef5a72..000000000 --- a/graphics/osg-devel/files/patch-src-OpenThreads-CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ ---- src/OpenThreads/CMakeLists.txt.orig 2009-01-27 18:34:57.000000000 +0300 -+++ src/OpenThreads/CMakeLists.txt 2009-02-05 17:54:57.000000000 +0300 -@@ -94,4 +94,4 @@ - @ONLY - ) - --INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openthreads.pc DESTINATION lib${LIB_POSTFIX}/pkgconfig) -+INSTALL(FILES ${PROJECT_BINARY_DIR}/packaging/pkgconfig/openthreads.pc DESTINATION libdata/pkgconfig) diff --git a/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++ b/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++ deleted file mode 100644 index d1997c322..000000000 --- a/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++ +++ /dev/null @@ -1,37 +0,0 @@ ---- src/OpenThreads/pthreads/PThread.c++.orig 2008-11-05 13:27:49.000000000 +0300 -+++ src/OpenThreads/pthreads/PThread.c++ 2009-02-04 18:06:28.000000000 +0300 -@@ -21,6 +21,7 @@ - #include <sys/types.h> - #include <unistd.h> - #include <pthread.h> -+#include <pthread_np.h> - - #if defined __linux || defined __sun || defined __APPLE__ - #include <string.h> -@@ -125,7 +126,7 @@ - #if defined(__sgi) - pthread_setrunon_np( pd->cpunum ); - #elif defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY) -- cpu_set_t cpumask; -+ cpuset_t cpumask; - CPU_ZERO( &cpumask ); - CPU_SET( pd->cpunum, &cpumask ); - -@@ -541,7 +542,7 @@ - - if (pd->isRunning && Thread::CurrentThread()==this) - { -- cpu_set_t cpumask; -+ cpuset_t cpumask; - CPU_ZERO( &cpumask ); - CPU_SET( pd->cpunum, &cpumask ); - #if defined(HAVE_PTHREAD_SETAFFINITY_NP) -@@ -975,7 +976,7 @@ - else - { - #if defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY) -- cpu_set_t cpumask; -+ cpuset_t cpumask; - CPU_ZERO( &cpumask ); - CPU_SET( cpunum, &cpumask ); - diff --git a/graphics/osg-devel/pkg-descr b/graphics/osg-devel/pkg-descr deleted file mode 100644 index 614609091..000000000 --- a/graphics/osg-devel/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -The Open Scene Graph is a cross-platform C++ OpenGL library for the -real-time, photo-realistic rendering of large 3D models. Uses range from -visual simulation, to scientific modelling, to games, to whatever you can -think of! - -WWW: http://www.openscenegraph.org/ diff --git a/graphics/osg-devel/pkg-plist b/graphics/osg-devel/pkg-plist deleted file mode 100644 index 08c896cee..000000000 --- a/graphics/osg-devel/pkg-plist +++ /dev/null @@ -1,612 +0,0 @@ -bin/osgarchive -bin/osgconv -bin/osgfilecache -bin/osgversion -bin/osgviewer -include/OpenThreads/Atomic -include/OpenThreads/Barrier -include/OpenThreads/Block -include/OpenThreads/Condition -include/OpenThreads/Config -include/OpenThreads/Exports -include/OpenThreads/Mutex -include/OpenThreads/ReadWriteMutex -include/OpenThreads/ReentrantMutex -include/OpenThreads/ScopedLock -include/OpenThreads/Thread -include/OpenThreads/Version -include/osg/AlphaFunc -include/osg/AnimationPath -include/osg/ApplicationUsage -include/osg/ArgumentParser -include/osg/Array -include/osg/AudioStream -include/osg/AutoTransform -include/osg/Billboard -include/osg/BlendColor -include/osg/BlendEquation -include/osg/BlendFunc -include/osg/BoundingBox -include/osg/BoundingSphere -include/osg/BoundsChecking -include/osg/BufferObject -include/osg/Camera -include/osg/CameraNode -include/osg/CameraView -include/osg/ClampColor -include/osg/ClearNode -include/osg/ClipNode -include/osg/ClipPlane -include/osg/ClusterCullingCallback -include/osg/CollectOccludersVisitor -include/osg/ColorMask -include/osg/ColorMatrix -include/osg/ComputeBoundsVisitor -include/osg/Config -include/osg/ConvexPlanarOccluder -include/osg/ConvexPlanarPolygon -include/osg/CoordinateSystemNode -include/osg/CopyOp -include/osg/CullFace -include/osg/CullSettings -include/osg/CullStack -include/osg/CullingSet -include/osg/DeleteHandler -include/osg/Depth -include/osg/DisplaySettings -include/osg/DrawPixels -include/osg/Drawable -include/osg/Endian -include/osg/Export -include/osg/Fog -include/osg/FragmentProgram -include/osg/FrameBufferObject -include/osg/FrameStamp -include/osg/FrontFace -include/osg/GL -include/osg/GL2Extensions -include/osg/GLExtensions -include/osg/GLObjects -include/osg/GLU -include/osg/Geode -include/osg/Geometry -include/osg/GraphicsContext -include/osg/GraphicsThread -include/osg/Group -include/osg/Hint -include/osg/Image -include/osg/ImageSequence -include/osg/ImageStream -include/osg/ImageUtils -include/osg/KdTree -include/osg/LOD -include/osg/Light -include/osg/LightModel -include/osg/LightSource -include/osg/LineSegment -include/osg/LineStipple -include/osg/LineWidth -include/osg/LogicOp -include/osg/Material -include/osg/Math -include/osg/Matrix -include/osg/MatrixTransform -include/osg/Matrixd -include/osg/Matrixf -include/osg/MixinVector -include/osg/Multisample -include/osg/Node -include/osg/NodeCallback -include/osg/NodeTrackerCallback -include/osg/NodeVisitor -include/osg/Notify -include/osg/Object -include/osg/OccluderNode -include/osg/OcclusionQueryNode -include/osg/OperationThread -include/osg/PagedLOD -include/osg/Plane -include/osg/Point -include/osg/PointSprite -include/osg/PolygonMode -include/osg/PolygonOffset -include/osg/PolygonStipple -include/osg/Polytope -include/osg/PositionAttitudeTransform -include/osg/PrimitiveSet -include/osg/Program -include/osg/Projection -include/osg/ProxyNode -include/osg/Quat -include/osg/Referenced -include/osg/RenderInfo -include/osg/Scissor -include/osg/Sequence -include/osg/ShadeModel -include/osg/Shader -include/osg/ShadowVolumeOccluder -include/osg/Shape -include/osg/ShapeDrawable -include/osg/State -include/osg/StateAttribute -include/osg/StateSet -include/osg/Stats -include/osg/Stencil -include/osg/StencilTwoSided -include/osg/Switch -include/osg/TemplatePrimitiveFunctor -include/osg/TexEnv -include/osg/TexEnvCombine -include/osg/TexEnvFilter -include/osg/TexGen -include/osg/TexGenNode -include/osg/TexMat -include/osg/Texture -include/osg/Texture1D -include/osg/Texture2D -include/osg/Texture2DArray -include/osg/Texture3D -include/osg/TextureCubeMap -include/osg/TextureRectangle -include/osg/Timer -include/osg/TransferFunction -include/osg/Transform -include/osg/TriangleFunctor -include/osg/TriangleIndexFunctor -include/osg/Uniform -include/osg/Vec2 -include/osg/Vec2b -include/osg/Vec2d -include/osg/Vec2f -include/osg/Vec2s -include/osg/Vec3 -include/osg/Vec3b -include/osg/Vec3d -include/osg/Vec3f -include/osg/Vec3s -include/osg/Vec4 -include/osg/Vec4b -include/osg/Vec4d -include/osg/Vec4f -include/osg/Vec4s -include/osg/Vec4ub -include/osg/Version -include/osg/VertexProgram -include/osg/View -include/osg/Viewport -include/osg/buffered_value -include/osg/fast_back_stack -include/osg/io_utils -include/osg/observer_ptr -include/osg/ref_ptr -include/osgAnimation/Animation -include/osgAnimation/AnimationManagerBase -include/osgAnimation/Assert -include/osgAnimation/BasicAnimationManager -include/osgAnimation/Bone -include/osgAnimation/Channel -include/osgAnimation/CubicBezier -include/osgAnimation/EaseMotion -include/osgAnimation/Export -include/osgAnimation/Interpolator -include/osgAnimation/Keyframe -include/osgAnimation/LinkVisitor -include/osgAnimation/MorphGeometry -include/osgAnimation/RigGeometry -include/osgAnimation/Sampler -include/osgAnimation/Skeleton -include/osgAnimation/Skinning -include/osgAnimation/Target -include/osgAnimation/Timeline -include/osgAnimation/TimelineAnimationManager -include/osgAnimation/UpdateCallback -include/osgAnimation/Vec3Packed -include/osgAnimation/VertexInfluence -include/osgDB/Archive -include/osgDB/AuthenticationMap -include/osgDB/ConvertUTF -include/osgDB/DatabasePager -include/osgDB/DotOsgWrapper -include/osgDB/DynamicLibrary -include/osgDB/Export -include/osgDB/Field -include/osgDB/FieldReader -include/osgDB/FieldReaderIterator -include/osgDB/FileCache -include/osgDB/FileNameUtils -include/osgDB/FileUtils -include/osgDB/ImageOptions -include/osgDB/ImagePager -include/osgDB/Input -include/osgDB/Output -include/osgDB/ParameterOutput -include/osgDB/PluginQuery -include/osgDB/ReadFile -include/osgDB/ReaderWriter -include/osgDB/Registry -include/osgDB/Serializer -include/osgDB/SharedStateManager -include/osgDB/Version -include/osgDB/WriteFile -include/osgDB/fstream -include/osgFX/AnisotropicLighting -include/osgFX/BumpMapping -include/osgFX/Cartoon -include/osgFX/Effect -include/osgFX/Export -include/osgFX/MultiTextureControl -include/osgFX/Registry -include/osgFX/Scribe -include/osgFX/SpecularHighlights -include/osgFX/Technique -include/osgFX/Validator -include/osgFX/Version -include/osgGA/AnimationPathManipulator -include/osgGA/CameraViewSwitchManipulator -include/osgGA/DriveManipulator -include/osgGA/EventQueue -include/osgGA/EventVisitor -include/osgGA/Export -include/osgGA/FlightManipulator -include/osgGA/GUIActionAdapter -include/osgGA/GUIEventAdapter -include/osgGA/GUIEventHandler -include/osgGA/KeySwitchMatrixManipulator -include/osgGA/MatrixManipulator -include/osgGA/NodeTrackerManipulator -include/osgGA/StateSetManipulator -include/osgGA/TerrainManipulator -include/osgGA/TrackballManipulator -include/osgGA/UFOManipulator -include/osgGA/Version -include/osgManipulator/AntiSquish -include/osgManipulator/Command -include/osgManipulator/CommandManager -include/osgManipulator/Constraint -include/osgManipulator/Dragger -include/osgManipulator/Export -include/osgManipulator/Projector -include/osgManipulator/RotateCylinderDragger -include/osgManipulator/RotateSphereDragger -include/osgManipulator/Scale1DDragger -include/osgManipulator/Scale2DDragger -include/osgManipulator/ScaleAxisDragger -include/osgManipulator/Selection -include/osgManipulator/TabBoxDragger -include/osgManipulator/TabPlaneDragger -include/osgManipulator/TabPlaneTrackballDragger -include/osgManipulator/TrackballDragger -include/osgManipulator/Translate1DDragger -include/osgManipulator/Translate2DDragger -include/osgManipulator/TranslateAxisDragger -include/osgManipulator/TranslatePlaneDragger -include/osgManipulator/Version -include/osgParticle/AccelOperator -include/osgParticle/AngularAccelOperator -include/osgParticle/BoxPlacer -include/osgParticle/CenteredPlacer -include/osgParticle/ConnectedParticleSystem -include/osgParticle/ConstantRateCounter -include/osgParticle/Counter -include/osgParticle/Emitter -include/osgParticle/ExplosionDebrisEffect -include/osgParticle/ExplosionEffect -include/osgParticle/Export -include/osgParticle/FireEffect -include/osgParticle/FluidFrictionOperator -include/osgParticle/FluidProgram -include/osgParticle/ForceOperator -include/osgParticle/Interpolator -include/osgParticle/LinearInterpolator -include/osgParticle/ModularEmitter -include/osgParticle/ModularProgram -include/osgParticle/MultiSegmentPlacer -include/osgParticle/Operator -include/osgParticle/Particle -include/osgParticle/ParticleEffect -include/osgParticle/ParticleProcessor -include/osgParticle/ParticleSystem -include/osgParticle/ParticleSystemUpdater -include/osgParticle/Placer -include/osgParticle/PointPlacer -include/osgParticle/PrecipitationEffect -include/osgParticle/Program -include/osgParticle/RadialShooter -include/osgParticle/RandomRateCounter -include/osgParticle/SectorPlacer -include/osgParticle/SegmentPlacer -include/osgParticle/Shooter -include/osgParticle/SmokeEffect -include/osgParticle/SmokeTrailEffect -include/osgParticle/VariableRateCounter -include/osgParticle/Version -include/osgParticle/range -include/osgShadow/ConvexPolyhedron -include/osgShadow/DebugShadowMap -include/osgShadow/Export -include/osgShadow/LightSpacePerspectiveShadowMap -include/osgShadow/MinimalCullBoundsShadowMap -include/osgShadow/MinimalDrawBoundsShadowMap -include/osgShadow/MinimalShadowMap -include/osgShadow/OccluderGeometry -include/osgShadow/ParallelSplitShadowMap -include/osgShadow/ProjectionShadowMap -include/osgShadow/ShadowMap -include/osgShadow/ShadowTechnique -include/osgShadow/ShadowTexture -include/osgShadow/ShadowVolume -include/osgShadow/ShadowedScene -include/osgShadow/SoftShadowMap -include/osgShadow/StandardShadowMap -include/osgShadow/Version -include/osgShadow/ViewDependentShadowTechnique -include/osgSim/BlinkSequence -include/osgSim/ColorRange -include/osgSim/DOFTransform -include/osgSim/ElevationSlice -include/osgSim/Export -include/osgSim/GeographicLocation -include/osgSim/HeightAboveTerrain -include/osgSim/Impostor -include/osgSim/ImpostorSprite -include/osgSim/InsertImpostorsVisitor -include/osgSim/LightPoint -include/osgSim/LightPointNode -include/osgSim/LightPointSystem -include/osgSim/LineOfSight -include/osgSim/MultiSwitch -include/osgSim/ObjectRecordData -include/osgSim/OverlayNode -include/osgSim/ScalarBar -include/osgSim/ScalarsToColors -include/osgSim/Sector -include/osgSim/ShapeAttribute -include/osgSim/SphereSegment -include/osgSim/Version -include/osgSim/VisibilityGroup -include/osgTerrain/Export -include/osgTerrain/GeometryTechnique -include/osgTerrain/Layer -include/osgTerrain/Locator -include/osgTerrain/Terrain -include/osgTerrain/TerrainTechnique -include/osgTerrain/TerrainTile -include/osgTerrain/ValidDataOperator -include/osgTerrain/Version -include/osgText/Export -include/osgText/FadeText -include/osgText/Font -include/osgText/Font3D -include/osgText/KerningType -include/osgText/String -include/osgText/Text -include/osgText/Text3D -include/osgText/TextBase -include/osgText/Version -include/osgUtil/ConvertVec -include/osgUtil/CubeMapGenerator -include/osgUtil/CullVisitor -include/osgUtil/DelaunayTriangulator -include/osgUtil/DisplayRequirementsVisitor -include/osgUtil/DrawElementTypeSimplifier -include/osgUtil/EdgeCollector -include/osgUtil/Export -include/osgUtil/GLObjectsVisitor -include/osgUtil/HalfWayMapGenerator -include/osgUtil/HighlightMapGenerator -include/osgUtil/IncrementalCompileOperation -include/osgUtil/IntersectVisitor -include/osgUtil/IntersectionVisitor -include/osgUtil/LineSegmentIntersector -include/osgUtil/OperationArrayFunctor -include/osgUtil/Optimizer -include/osgUtil/PlaneIntersector -include/osgUtil/PolytopeIntersector -include/osgUtil/PositionalStateContainer -include/osgUtil/PrintVisitor -include/osgUtil/ReflectionMapGenerator -include/osgUtil/RenderBin -include/osgUtil/RenderLeaf -include/osgUtil/RenderStage -include/osgUtil/ReversePrimitiveFunctor -include/osgUtil/SceneGraphBuilder -include/osgUtil/SceneView -include/osgUtil/ShaderGen -include/osgUtil/Simplifier -include/osgUtil/SmoothingVisitor -include/osgUtil/StateGraph -include/osgUtil/Statistics -include/osgUtil/TangentSpaceGenerator -include/osgUtil/Tessellator -include/osgUtil/TransformAttributeFunctor -include/osgUtil/TransformCallback -include/osgUtil/TriStripVisitor -include/osgUtil/UpdateVisitor -include/osgUtil/Version -include/osgViewer/CompositeViewer -include/osgViewer/Export -include/osgViewer/GraphicsWindow -include/osgViewer/GraphicsWindowX11 -include/osgViewer/PixelBufferX11 -include/osgViewer/Renderer -include/osgViewer/Scene -include/osgViewer/Version -include/osgViewer/View -include/osgViewer/Viewer -include/osgViewer/ViewerBase -include/osgViewer/ViewerEventHandlers -include/osgViewer/api/X11/GraphicsWindowX11 -include/osgViewer/api/X11/PixelBufferX11 -include/osgVolume/Export -include/osgVolume/FixedFunctionTechnique -include/osgVolume/Layer -include/osgVolume/Locator -include/osgVolume/Property -include/osgVolume/RayTracedTechnique -include/osgVolume/Version -include/osgVolume/Volume -include/osgVolume/VolumeTechnique -include/osgVolume/VolumeTile -include/osgWidget/Box -include/osgWidget/Browser -include/osgWidget/Canvas -include/osgWidget/EventInterface -include/osgWidget/Export -include/osgWidget/Frame -include/osgWidget/Input -include/osgWidget/Label -include/osgWidget/Lua -include/osgWidget/PdfReader -include/osgWidget/Python -include/osgWidget/ScriptEngine -include/osgWidget/StyleInterface -include/osgWidget/StyleManager -include/osgWidget/Table -include/osgWidget/Types -include/osgWidget/UIObjectParent -include/osgWidget/Util -include/osgWidget/Version -include/osgWidget/ViewerEventHandlers -include/osgWidget/VncClient -include/osgWidget/Widget -include/osgWidget/Window -include/osgWidget/WindowManager -lib/libOpenThreads.so -lib/libOpenThreads.so.%%OPENTHREADS_VERSION%% -lib/libOpenThreads.so.%%OPENTHREADS_SHLIBVER%% -lib/libosg.so -lib/libosg.so.%%OSG_VERSION%% -lib/libosg.so.%%OSG_SHLIBVER%% -lib/libosgAnimation.so -lib/libosgAnimation.so.%%OSG_VERSION%% -lib/libosgAnimation.so.%%OSG_SHLIBVER%% -lib/libosgDB.so -lib/libosgDB.so.%%OSG_VERSION%% -lib/libosgDB.so.%%OSG_SHLIBVER%% -lib/libosgFX.so -lib/libosgFX.so.%%OSG_VERSION%% -lib/libosgFX.so.%%OSG_SHLIBVER%% -lib/libosgGA.so -lib/libosgGA.so.%%OSG_VERSION%% -lib/libosgGA.so.%%OSG_SHLIBVER%% -lib/libosgManipulator.so -lib/libosgManipulator.so.%%OSG_VERSION%% -lib/libosgManipulator.so.%%OSG_SHLIBVER%% -lib/libosgParticle.so -lib/libosgParticle.so.%%OSG_VERSION%% -lib/libosgParticle.so.%%OSG_SHLIBVER%% -lib/libosgShadow.so -lib/libosgShadow.so.%%OSG_VERSION%% -lib/libosgShadow.so.%%OSG_SHLIBVER%% -lib/libosgSim.so -lib/libosgSim.so.%%OSG_VERSION%% -lib/libosgSim.so.%%OSG_SHLIBVER%% -lib/libosgTerrain.so -lib/libosgTerrain.so.%%OSG_VERSION%% -lib/libosgTerrain.so.%%OSG_SHLIBVER%% -lib/libosgText.so -lib/libosgText.so.%%OSG_VERSION%% -lib/libosgText.so.%%OSG_SHLIBVER%% -lib/libosgUtil.so -lib/libosgUtil.so.%%OSG_VERSION%% -lib/libosgUtil.so.%%OSG_SHLIBVER%% -lib/libosgViewer.so -lib/libosgViewer.so.%%OSG_VERSION%% -lib/libosgViewer.so.%%OSG_SHLIBVER%% -lib/libosgVolume.so -lib/libosgVolume.so.%%OSG_VERSION%% -lib/libosgVolume.so.%%OSG_SHLIBVER%% -lib/libosgWidget.so -lib/libosgWidget.so.%%OSG_VERSION%% -lib/libosgWidget.so.%%OSG_SHLIBVER%% -lib/osgPlugins-%%OSG_VERSION%%/osgdb_3dc.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_3ds.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_ac.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_bmp.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_bsp.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_bvh.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_cfg.so -%%CURL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_curl.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_dds.so -%%ITK%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_dicom.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_dot.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_dw.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_dxf.so -%%OPENEXR%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_exr.so -%%FFMPEG%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_ffmpeg.so -%%FREETYPE%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_freetype.so -%%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gdal.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_geo.so -%%GIF%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gif.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_glsl.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_gz.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_hdr.so -%%INVENTOR%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_iv.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_ive.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_jpeg.so -%%JASPER%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_jp2.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_logo.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_lwo.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_lws.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_md2.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_mdl.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_normals.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_obj.so -%%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_ogr.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_openflight.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osg.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osga.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osganimation.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgfx.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgparticle.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgshadow.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgsim.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgterrain.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgtext.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgtgz.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgviewer.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgvolume.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgwidget.so -%%PDF%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_pdf.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_pic.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_png.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_pnm.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_rgb.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_rot.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_scale.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_shp.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_stl.so -%%SVG%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_svg.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_tga.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_tgz.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_tiff.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_trans.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_txf.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_txp.so -%%VNC%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_vnc.so -%%OPENVRML%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_vrml.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_vtf.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_x.so -%%XINE%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_xine.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_zip.so -libdata/pkgconfig/openscenegraph.pc -libdata/pkgconfig/openthreads.pc -@dirrm lib/osgPlugins-%%OSG_VERSION%% -@dirrm include/osgWidget -@dirrm include/osgVolume -@dirrm include/osgViewer/api/X11 -@dirrm include/osgViewer/api -@dirrm include/osgViewer -@dirrm include/osgUtil -@dirrm include/osgText -@dirrm include/osgTerrain -@dirrm include/osgSim -@dirrm include/osgShadow -@dirrm include/osgParticle -@dirrm include/osgManipulator -@dirrm include/osgGA -@dirrm include/osgFX -@dirrm include/osgDB -@dirrm include/osgAnimation -@dirrm include/osg -@dirrm include/OpenThreads diff --git a/graphics/poppler-gtk/Makefile b/graphics/poppler-gtk/Makefile deleted file mode 100644 index c73715ba4..000000000 --- a/graphics/poppler-gtk/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: poppler-gtk -# Date created: 2006-01-12 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/poppler-gtk/Makefile,v 1.8 2009/02/27 00:16:16 marcus Exp $ -# - -PORTREVISION= 0 -PKGNAMESUFFIX= -gtk - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Gtk bindings to poppler - -MASTERDIR= ${.CURDIR}/../../graphics/poppler -SLAVEPORT= gtk -PLIST= ${.CURDIR}/pkg-plist - -pre-build: - cd ${WRKSRC}/poppler && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ - Makefile ${MAKE_ARGS} libpoppler-cairo.la - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/poppler-gtk/pkg-plist b/graphics/poppler-gtk/pkg-plist deleted file mode 100644 index 84f07119b..000000000 --- a/graphics/poppler-gtk/pkg-plist +++ /dev/null @@ -1,34 +0,0 @@ -include/poppler/glib/poppler-action.h -include/poppler/glib/poppler-annot.h -include/poppler/glib/poppler-attachment.h -include/poppler/glib/poppler-document.h -include/poppler/glib/poppler-enums.h -include/poppler/glib/poppler-features.h -include/poppler/glib/poppler-form-field.h -include/poppler/glib/poppler-page.h -include/poppler/glib/poppler.h -lib/libpoppler-glib.a -lib/libpoppler-glib.la -lib/libpoppler-glib.so -lib/libpoppler-glib.so.4 -libdata/pkgconfig/poppler-glib.pc -%%DOCSDIR%%/poppler/ch01.html -%%DOCSDIR%%/poppler/home.png -%%DOCSDIR%%/poppler/index.html -%%DOCSDIR%%/poppler/index.sgml -%%DOCSDIR%%/poppler/left.png -%%DOCSDIR%%/poppler/poppler-poppler-action.html -%%DOCSDIR%%/poppler/poppler-poppler-attachment.html -%%DOCSDIR%%/poppler/poppler-poppler-document.html -%%DOCSDIR%%/poppler/poppler-poppler-enums.html -%%DOCSDIR%%/poppler/poppler-poppler-form-field.html -%%DOCSDIR%%/poppler/poppler-poppler-page.html -%%DOCSDIR%%/poppler/poppler-poppler.html -%%DOCSDIR%%/poppler/poppler.devhelp -%%DOCSDIR%%/poppler/poppler.devhelp2 -%%DOCSDIR%%/poppler/right.png -%%DOCSDIR%%/poppler/style.css -%%DOCSDIR%%/poppler/up.png -@dirrmtry %%DOCSDIR%%/poppler -@dirrmtry %%DOCSDIR%% -@dirrm include/poppler/glib diff --git a/graphics/poppler-qt4/Makefile b/graphics/poppler-qt4/Makefile deleted file mode 100644 index ca9e7be68..000000000 --- a/graphics/poppler-qt4/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: poppler-qt4 -# Date created: June 26, 2007 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/graphics/poppler-qt4/Makefile,v 1.6 2009/02/27 00:16:17 marcus Exp $ -# - -PORTREVISION= 1 -PKGNAMESUFFIX= -qt4 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Qt4 bindings to poppler - -MASTERDIR= ${.CURDIR}/../../graphics/poppler -SLAVEPORT= qt4 -PLIST= ${.CURDIR}/pkg-plist - -.include "${MASTERDIR}/Makefile" diff --git a/graphics/poppler-qt4/pkg-plist b/graphics/poppler-qt4/pkg-plist deleted file mode 100644 index d20d75d3e..000000000 --- a/graphics/poppler-qt4/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -include/poppler/qt4/poppler-annotation.h -include/poppler/qt4/poppler-export.h -include/poppler/qt4/poppler-form.h -include/poppler/qt4/poppler-link.h -include/poppler/qt4/poppler-optcontent.h -include/poppler/qt4/poppler-page-transition.h -include/poppler/qt4/poppler-page-transition-private.h -include/poppler/qt4/poppler-qt4.h -lib/libpoppler-qt4.a -lib/libpoppler-qt4.la -lib/libpoppler-qt4.so -lib/libpoppler-qt4.so.3 -libdata/pkgconfig/poppler-qt4.pc -@dirrm include/poppler/qt4 diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile deleted file mode 100644 index 761414c60..000000000 --- a/graphics/poppler/Makefile +++ /dev/null @@ -1,123 +0,0 @@ -# New ports collection makefile for: poppler -# Date created: 03 March 2005 -# Whom: marcus@FreeBSD.org -# -# $FreeBSD$ -# $MCom: ports/graphics/poppler/Makefile,v 1.43 2009/02/27 00:16:16 marcus Exp $ -# - -PORTNAME= poppler -PORTVERSION= 0.10.5 -PORTREVISION?= 0 -CATEGORIES= graphics print -MASTER_SITES= http://poppler.freedesktop.org/ - -MAINTAINER?= gnome@FreeBSD.org -COMMENT?= A PDF rendering library - -LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig -RUN_DEPENDS= poppler-data>0:${PORTSDIR}/graphics/poppler-data - -USE_GMAKE= yes -USE_GNOME= gnomehack gnometarget libxml2 ltverhack -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-zlib \ - --enable-xpdf-headers \ - --with-html-dir=${DOCSDIR} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" - -.if !defined(SLAVEPORT) -OPTIONS= CAIRO "Enable cairo output backend" on -.endif - -.include <bsd.port.pre.mk> - -.if defined(SLAVEPORT) -LIB_DEPENDS+= poppler.4:${PORTSDIR}/graphics/poppler - -.if ${SLAVEPORT}=="gtk" -CONFIGURE_ARGS+=--enable-poppler-glib -USE_GNOME+= gtk20 -BUILD_WRKSRC= ${WRKSRC}/glib -INSTALL_WRKSRC= ${WRKSRC}/glib -.else -CONFIGURE_ARGS+=--disable-poppler-glib \ - --disable-gdk \ - --disable-gtk-test -.endif - -.if ${SLAVEPORT}=="qt" -CONFIGURE_ARGS+=--enable-poppler-qt -USE_QT_VER+= 3 -BUILD_WRKSRC= ${WRKSRC}/qt -INSTALL_WRKSRC= ${WRKSRC}/qt -.include "${PORTSDIR}/Mk/bsd.kde.mk" -.else -CONFIGURE_ARGS+=--disable-poppler-qt -.endif - -.if ${SLAVEPORT}=="qt4" -CONFIGURE_ARGS+=--enable-poppler-qt4 -USE_QT_VER+= 4 -QT_COMPONENTS= gui corelib xml qtestlib moc_build -# It requires poppler/splash to be built unless you disable splash backend -# support to allow you use BUILD_WRKSRC here. It seems that splash backend -# can read more PDF files than without, tested with demos's poppler_qt4viewer. -#BUILD_WRKSRC= ${WRKSRC}/qt4 -INSTALL_WRKSRC= ${WRKSRC}/qt4 -.else -CONFIGURE_ARGS+=--disable-poppler-qt4 -.endif - -.if ${SLAVEPORT}=="utils" -CONFIGURE_ARGS+=--enable-utils -CONFLICTS= xpdf-[0-9]* -BUILD_WRKSRC= ${WRKSRC}/utils -INSTALL_WRKSRC= ${WRKSRC}/utils -MAN1= pdffonts.1 pdfimages.1 pdfinfo.1 \ - pdftohtml.1 pdftops.1 pdftotext.1 pdftoppm.1 -.else -CONFIGURE_ARGS+=--disable-utils -.endif - -.else -CONFIGURE_ARGS+=--disable-poppler-glib --disable-poppler-qt \ - --disable-poppler-qt4 --disable-utils --disable-gdk \ - --disable-gtk-test - -.if defined(WITHOUT_CAIRO) -CONFIGURE_ARGS+=--disable-cairo-output -PLIST_SUB+= CAIRO="@comment " -.else -LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo -PLIST_SUB+= CAIRO="" -.endif -.endif - -post-patch: -.if defined(SLAVEPORT) && ${SLAVEPORT}=="qt" - @${REINPLACE_CMD} -e 's|/usr/local/qt/include|${LOCALBASE}/include|; \ - s|/usr/local/qt/lib|${LOCALBASE}/lib|' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|$$QTDIR|${QT_PREFIX}|' ${WRKSRC}/configure -.endif -.if defined(SLAVEPORT) && ${SLAVEPORT}=="qt4" - @${REINPLACE_CMD} -e 's|MOCQT4=`.*|MOCQT4="${LOCALBASE}/bin/moc-qt4"|' \ - ${WRKSRC}/configure -.endif - -post-install: -.if defined(SLAVEPORT) -.if ${SLAVEPORT}=="gtk" - ${INSTALL_DATA} ${WRKSRC}/poppler-glib.pc ${PREFIX}/libdata/pkgconfig -.elif ${SLAVEPORT}=="qt" - ${INSTALL_DATA} ${WRKSRC}/poppler-qt.pc ${PREFIX}/libdata/pkgconfig -.elif ${SLAVEPORT}=="qt4" - ${INSTALL_DATA} ${WRKSRC}/poppler-qt4.pc ${PREFIX}/libdata/pkgconfig -.endif -.endif - -.include <bsd.port.post.mk> diff --git a/graphics/poppler/distinfo b/graphics/poppler/distinfo deleted file mode 100644 index 900de9a12..000000000 --- a/graphics/poppler/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (poppler-0.10.5.tar.gz) = 125f671a19707861132fb03e73b61184 -SHA256 (poppler-0.10.5.tar.gz) = cfd4115f787cac7f0f673be48e95c645a323dc5b6b756280e47e28faa5d98d92 -SIZE (poppler-0.10.5.tar.gz) = 1516687 diff --git a/graphics/poppler/files/patch-glib_Makefile.in b/graphics/poppler/files/patch-glib_Makefile.in deleted file mode 100644 index 94d7703cd..000000000 --- a/graphics/poppler/files/patch-glib_Makefile.in +++ /dev/null @@ -1,45 +0,0 @@ ---- glib/Makefile.in.orig 2008-03-24 09:03:54.000000000 -0400 -+++ glib/Makefile.in 2008-03-24 09:04:38.000000000 -0400 -@@ -66,7 +66,6 @@ - @BUILD_CAIRO_OUTPUT_TRUE@am__DEPENDENCIES_2 = $(top_builddir)/poppler/libpoppler-cairo.la \ - @BUILD_CAIRO_OUTPUT_TRUE@ $(am__DEPENDENCIES_1) - libpoppler_glib_la_DEPENDENCIES = \ -- $(top_builddir)/poppler/libpoppler.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) - am__objects_1 = poppler-enums.lo -@@ -80,7 +79,6 @@ - @BUILD_WITH_GDK_TRUE@ test-poppler-glib.$(OBJEXT) - test_poppler_glib_OBJECTS = $(am_test_poppler_glib_OBJECTS) - @BUILD_WITH_GDK_TRUE@test_poppler_glib_DEPENDENCIES = \ --@BUILD_WITH_GDK_TRUE@ $(top_builddir)/poppler/libpoppler.la \ - @BUILD_WITH_GDK_TRUE@ libpoppler-glib.la $(am__DEPENDENCIES_1) \ - @BUILD_WITH_GDK_TRUE@ $(am__DEPENDENCIES_1) \ - @BUILD_WITH_GDK_TRUE@ $(am__DEPENDENCIES_1) \ -@@ -295,7 +293,7 @@ - @BUILD_CAIRO_OUTPUT_TRUE@ $(top_builddir)/poppler/libpoppler-cairo.la \ - @BUILD_CAIRO_OUTPUT_TRUE@ $(CAIRO_LIBS) - --SUBDIRS = . reference demo -+SUBDIRS = . reference - INCLUDES = \ - -DG_LOG_DOMAIN=\"Poppler\" \ - -I$(top_srcdir) \ -@@ -336,7 +334,7 @@ - poppler-private.h - - libpoppler_glib_la_LIBADD = \ -- $(top_builddir)/poppler/libpoppler.la \ -+ -lpoppler \ - $(POPPLER_GLIB_LIBS) \ - $(GDK_LIBS) \ - $(FREETYPE_LIBS) \ -@@ -348,7 +346,7 @@ - @BUILD_WITH_GDK_TRUE@ test-poppler-glib.cc - - @BUILD_WITH_GDK_TRUE@test_poppler_glib_LDADD = \ --@BUILD_WITH_GDK_TRUE@ $(top_builddir)/poppler/libpoppler.la \ -+@BUILD_WITH_GDK_TRUE@ -lpoppler \ - @BUILD_WITH_GDK_TRUE@ libpoppler-glib.la \ - @BUILD_WITH_GDK_TRUE@ $(POPPLER_GLIB_LIBS) \ - @BUILD_WITH_GDK_TRUE@ $(GDK_LIBS) \ diff --git a/graphics/poppler/files/patch-poppler_Page.cc b/graphics/poppler/files/patch-poppler_Page.cc deleted file mode 100644 index 1d0f63298..000000000 --- a/graphics/poppler/files/patch-poppler_Page.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- poppler/Page.cc.orig 2008-07-09 17:53:56.000000000 +0200 -+++ poppler/Page.cc 2008-07-09 17:54:49.000000000 +0200 -@@ -230,7 +230,7 @@ - - Page::Page(XRef *xrefA, int numA, Dict *pageDict, PageAttrs *attrsA, Form *form) { - Object tmp; -- -+ pageWidgets = NULL; - ok = gTrue; - xref = xrefA; - num = numA; diff --git a/graphics/poppler/files/patch-qt4_Makefile.in b/graphics/poppler/files/patch-qt4_Makefile.in deleted file mode 100644 index ffb4777b4..000000000 --- a/graphics/poppler/files/patch-qt4_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- qt4/Makefile.in.orig 2008-03-24 08:30:49.000000000 -0400 -+++ qt4/Makefile.in 2008-03-24 08:30:34.000000000 -0400 -@@ -223,7 +223,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - win32_libs = @win32_libs@ --SUBDIRS = src tests demos -+SUBDIRS = src - all: all-recursive - - .SUFFIXES: diff --git a/graphics/poppler/files/patch-qt4_src_Makefile.in b/graphics/poppler/files/patch-qt4_src_Makefile.in deleted file mode 100644 index e9f0ee2e3..000000000 --- a/graphics/poppler/files/patch-qt4_src_Makefile.in +++ /dev/null @@ -1,19 +0,0 @@ ---- qt4/src/Makefile.in.orig 2008-07-02 14:06:32.000000000 -0500 -+++ qt4/src/Makefile.in 2008-07-02 14:07:35.000000000 -0500 -@@ -62,7 +62,6 @@ - LTLIBRARIES = $(lib_LTLIBRARIES) - am__DEPENDENCIES_1 = - libpoppler_qt4_la_DEPENDENCIES = \ -- $(top_builddir)/poppler/libpoppler.la $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__append_1) - am_libpoppler_qt4_la_OBJECTS = poppler-document.lo poppler-page.lo \ - poppler-fontinfo.lo poppler-embeddedfile.lo poppler-textbox.lo \ -@@ -303,7 +302,7 @@ - poppler-export.h \ - poppler-private.h - --libpoppler_qt4_la_LIBADD = $(top_builddir)/poppler/libpoppler.la \ -+libpoppler_qt4_la_LIBADD = -lpoppler \ - $(FONTCONFIG_LIBS) $(POPPLER_QT4_LIBS) $(am__append_1) - libpoppler_qt4_la_LDFLAGS = -version-info 3:0:0 - all: all-am diff --git a/graphics/poppler/files/patch-qt_Makefile.in b/graphics/poppler/files/patch-qt_Makefile.in deleted file mode 100644 index d872262ea..000000000 --- a/graphics/poppler/files/patch-qt_Makefile.in +++ /dev/null @@ -1,39 +0,0 @@ ---- qt/Makefile.in.orig 2008-03-27 08:17:35.000000000 -0400 -+++ qt/Makefile.in 2008-03-27 08:18:20.000000000 -0400 -@@ -59,8 +59,7 @@ - libLTLIBRARIES_INSTALL = $(INSTALL) - LTLIBRARIES = $(lib_LTLIBRARIES) - am__DEPENDENCIES_1 = --libpoppler_qt_la_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -- $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ -+libpoppler_qt_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) - am_libpoppler_qt_la_OBJECTS = poppler-document.lo poppler-fontinfo.lo \ - poppler-link.lo poppler-page.lo poppler-page-transition.lo -@@ -71,7 +70,7 @@ - PROGRAMS = $(noinst_PROGRAMS) - am_test_poppler_qt_OBJECTS = test-poppler-qt.$(OBJEXT) - test_poppler_qt_OBJECTS = $(am_test_poppler_qt_OBJECTS) --test_poppler_qt_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+test_poppler_qt_DEPENDENCIES = \ - libpoppler-qt.la $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) - DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I$(top_builddir)/poppler - depcomp = $(SHELL) $(top_srcdir)/depcomp -@@ -273,7 +272,7 @@ - poppler-private.h - - libpoppler_qt_la_LIBADD = \ -- $(top_builddir)/poppler/libpoppler.la \ -+ -lpoppler -lqt-mt \ - $(POPPLER_QT_LIBS) \ - $(FREETYPE_LIBS) \ - $(FONTCONFIG_LIBS) -@@ -283,7 +282,7 @@ - test-poppler-qt.cpp - - test_poppler_qt_LDADD = \ -- $(top_builddir)/poppler/libpoppler.la \ -+ -lpoppler -lqt-mt \ - libpoppler-qt.la \ - $(POPPLER_QT_LIBS) \ - $(FREETYPE_LIBS) diff --git a/graphics/poppler/files/patch-utils_Makefile.in b/graphics/poppler/files/patch-utils_Makefile.in deleted file mode 100644 index e0faea3d1..000000000 --- a/graphics/poppler/files/patch-utils_Makefile.in +++ /dev/null @@ -1,70 +0,0 @@ ---- utils/Makefile.in.orig 2009-02-26 18:44:48.000000000 -0500 -+++ utils/Makefile.in 2009-02-26 18:45:57.000000000 -0500 -@@ -61,50 +61,50 @@ am_pdffonts_OBJECTS = pdffonts.$(OBJEXT) - pdffonts_OBJECTS = $(am_pdffonts_OBJECTS) - pdffonts_LDADD = $(LDADD) - am__DEPENDENCIES_1 = --pdffonts_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdffonts_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - am_pdfimages_OBJECTS = pdfimages.$(OBJEXT) ImageOutputDev.$(OBJEXT) \ - $(am__objects_1) - pdfimages_OBJECTS = $(am_pdfimages_OBJECTS) - pdfimages_LDADD = $(LDADD) --pdfimages_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdfimages_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - am_pdfinfo_OBJECTS = pdfinfo.$(OBJEXT) printencodings.$(OBJEXT) \ - $(am__objects_1) - pdfinfo_OBJECTS = $(am_pdfinfo_OBJECTS) - pdfinfo_LDADD = $(LDADD) --pdfinfo_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdfinfo_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - am__pdftoabw_SOURCES_DIST = pdftoabw.cc parseargs.c parseargs.h - @BUILD_ABIWORD_OUTPUT_TRUE@am_pdftoabw_OBJECTS = pdftoabw.$(OBJEXT) \ - @BUILD_ABIWORD_OUTPUT_TRUE@ $(am__objects_1) - pdftoabw_OBJECTS = $(am_pdftoabw_OBJECTS) - pdftoabw_LDADD = $(LDADD) --pdftoabw_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdftoabw_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - am_pdftohtml_OBJECTS = pdftohtml.$(OBJEXT) HtmlFonts.$(OBJEXT) \ - HtmlLinks.$(OBJEXT) HtmlOutputDev.$(OBJEXT) $(am__objects_1) - pdftohtml_OBJECTS = $(am_pdftohtml_OBJECTS) - pdftohtml_LDADD = $(LDADD) --pdftohtml_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdftohtml_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - am__pdftoppm_SOURCES_DIST = pdftoppm.cc parseargs.c parseargs.h - @BUILD_SPLASH_OUTPUT_TRUE@am_pdftoppm_OBJECTS = pdftoppm.$(OBJEXT) \ - @BUILD_SPLASH_OUTPUT_TRUE@ $(am__objects_1) - pdftoppm_OBJECTS = $(am_pdftoppm_OBJECTS) - pdftoppm_LDADD = $(LDADD) --pdftoppm_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdftoppm_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - am_pdftops_OBJECTS = pdftops.$(OBJEXT) $(am__objects_1) - pdftops_OBJECTS = $(am_pdftops_OBJECTS) - pdftops_LDADD = $(LDADD) --pdftops_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdftops_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - am_pdftotext_OBJECTS = pdftotext.$(OBJEXT) printencodings.$(OBJEXT) \ - $(am__objects_1) - pdftotext_OBJECTS = $(am_pdftotext_OBJECTS) - pdftotext_LDADD = $(LDADD) --pdftotext_DEPENDENCIES = $(top_builddir)/poppler/libpoppler.la \ -+pdftotext_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) - DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I$(top_builddir)/poppler - depcomp = $(SHELL) $(top_srcdir)/depcomp -@@ -320,7 +320,7 @@ INCLUDES = \ - $(ABIWORD_CFLAGS) - - LDADD = \ -- $(top_builddir)/poppler/libpoppler.la \ -+ -lpoppler \ - $(UTILS_LIBS) \ - $(FONTCONFIG_LIBS) - diff --git a/graphics/poppler/pkg-descr b/graphics/poppler/pkg-descr deleted file mode 100644 index d10674940..000000000 --- a/graphics/poppler/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Poppler is a fork of the xpdf PDF viewer developed by Derek Noonburg -of Glyph and Cog, LLC. It provides PDF rendering functionality as a -shared library, and uses modern components from Freedesktop.org such as -fontconfig and cairo to take advantage of modern UNIX desktops. - -WWW: http://poppler.freedesktop.org/ diff --git a/graphics/poppler/pkg-plist b/graphics/poppler/pkg-plist deleted file mode 100644 index 1ea331871..000000000 --- a/graphics/poppler/pkg-plist +++ /dev/null @@ -1,102 +0,0 @@ -include/poppler/Annot.h -include/poppler/Array.h -include/poppler/BuiltinFont.h -include/poppler/BuiltinFontTables.h -include/poppler/CMap.h -include/poppler/Catalog.h -include/poppler/CharCodeToUnicode.h -include/poppler/CharTypes.h -include/poppler/CompactFontTables.h -include/poppler/DateInfo.h -include/poppler/Decrypt.h -include/poppler/Dict.h -include/poppler/Error.h -include/poppler/ErrorCodes.h -include/poppler/FileSpec.h -include/poppler/FontEncodingTables.h -include/poppler/FontInfo.h -include/poppler/Form.h -include/poppler/Function.h -include/poppler/Gfx.h -include/poppler/GfxFont.h -include/poppler/GfxState.h -include/poppler/GlobalParams.h -include/poppler/JArithmeticDecoder.h -include/poppler/JBIG2Stream.h -include/poppler/Lexer.h -include/poppler/Link.h -include/poppler/Movie.h -include/poppler/NameToCharCode.h -include/poppler/NameToUnicodeTable.h -include/poppler/Object.h -include/poppler/OptionalContent.h -include/poppler/Outline.h -include/poppler/OutputDev.h -include/poppler/PDFDoc.h -include/poppler/PDFDocEncoding.h -include/poppler/PSOutputDev.h -include/poppler/PSTokenizer.h -include/poppler/Page.h -include/poppler/PageTransition.h -include/poppler/Parser.h -include/poppler/PreScanOutputDev.h -include/poppler/ProfileData.h -include/poppler/SecurityHandler.h -include/poppler/Sound.h -include/poppler/SplashOutputDev.h -include/poppler/Stream-CCITT.h -include/poppler/Stream.h -include/poppler/TextOutputDev.h -include/poppler/UTF8.h -include/poppler/UnicodeCClassTables.h -include/poppler/UnicodeCompTables.h -include/poppler/UnicodeDecompTables.h -include/poppler/UnicodeMap.h -include/poppler/UnicodeMapTables.h -include/poppler/UnicodeTypeTable.h -include/poppler/XRef.h -include/poppler/XpdfPluginAPI.h -include/poppler/goo/FixedPoint.h -include/poppler/goo/GooHash.h -include/poppler/goo/GooList.h -include/poppler/goo/GooMutex.h -include/poppler/goo/GooString.h -include/poppler/goo/GooTimer.h -include/poppler/goo/GooVector.h -include/poppler/goo/gfile.h -include/poppler/goo/gmem.h -include/poppler/goo/gtypes.h -include/poppler/poppler-config.h -include/poppler/splash/Splash.h -include/poppler/splash/SplashBitmap.h -include/poppler/splash/SplashClip.h -include/poppler/splash/SplashErrorCodes.h -include/poppler/splash/SplashFTFont.h -include/poppler/splash/SplashFTFontEngine.h -include/poppler/splash/SplashFTFontFile.h -include/poppler/splash/SplashFont.h -include/poppler/splash/SplashFontEngine.h -include/poppler/splash/SplashFontFile.h -include/poppler/splash/SplashFontFileID.h -include/poppler/splash/SplashGlyphBitmap.h -include/poppler/splash/SplashMath.h -include/poppler/splash/SplashPath.h -include/poppler/splash/SplashPattern.h -include/poppler/splash/SplashScreen.h -include/poppler/splash/SplashState.h -include/poppler/splash/SplashT1Font.h -include/poppler/splash/SplashT1FontEngine.h -include/poppler/splash/SplashT1FontFile.h -include/poppler/splash/SplashTypes.h -include/poppler/splash/SplashXPath.h -include/poppler/splash/SplashXPathScanner.h -lib/libpoppler.a -lib/libpoppler.la -lib/libpoppler.so -lib/libpoppler.so.4 -%%CAIRO%%libdata/pkgconfig/poppler-cairo.pc -libdata/pkgconfig/poppler-splash.pc -libdata/pkgconfig/poppler.pc -@dirrm include/poppler/splash -@dirrm include/poppler/goo -@dirrm include/poppler diff --git a/graphics/py-poppler/Makefile b/graphics/py-poppler/Makefile deleted file mode 100644 index b628e1100..000000000 --- a/graphics/py-poppler/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: py-poppler -# Date created: 2008-04-14 -# Whom: Romain Tartiere <romain@blogreen.org> -# -# $FreeBSD$ -# - -PORTNAME= poppler -PORTVERSION= 0.10.0 -CATEGORIES= graphics python -MASTER_SITES= http://www.gnome.org/~gianmt/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= py${PORTNAME}-${PORTVERSION} - -MAINTAINER= romain@blogreen.org -COMMENT= Python bindings for the Poppler PDF rendering library - -LIB_DEPENDS= poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk - -USE_PYTHON= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_GNOME= pkgconfig atk pygtk2 - -.include <bsd.port.mk> diff --git a/graphics/py-poppler/distinfo b/graphics/py-poppler/distinfo deleted file mode 100644 index 01aa38ef8..000000000 --- a/graphics/py-poppler/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pypoppler-0.10.0.tar.gz) = df7ec4ed7c9573b56391c9d6e0661695 -SHA256 (pypoppler-0.10.0.tar.gz) = 1c09814a457375da607aa400cd8774b98c016c760ea513e3a22357cf4fca63b1 -SIZE (pypoppler-0.10.0.tar.gz) = 292043 diff --git a/graphics/py-poppler/pkg-descr b/graphics/py-poppler/pkg-descr deleted file mode 100644 index 17bc3a604..000000000 --- a/graphics/py-poppler/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Python bindings for graphics/poppler. - -WWW: https://launchpad.net/poppler-python diff --git a/graphics/py-poppler/pkg-plist b/graphics/py-poppler/pkg-plist deleted file mode 100644 index eacee9877..000000000 --- a/graphics/py-poppler/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@comment $FreeBSD$ -%%PYTHON_SITELIBDIR%%/poppler.la -%%PYTHON_SITELIBDIR%%/poppler.so diff --git a/lang/vala/Makefile b/lang/vala/Makefile deleted file mode 100644 index b5defee54..000000000 --- a/lang/vala/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: vala -# Date created: 2007-07-09 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/lang/vala/Makefile,v 1.22 2009/02/28 18:04:53 marcus Exp $ -# - -PORTNAME= vala -PORTVERSION= 0.6.0 -CATEGORIES= lang gnome -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Programming language and compiler that converts Vala code into C code - -OPTIONS= VAPIGEN "Enable VAPI generator" Off -USE_BZIP2= yes -USE_GNOME= glib20 gnomeprefix libxslt -GNU_CONFIGURE= yes -USE_GETTEXT= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}" LDFLAGS="-L${LOCALBASE}/lib" -USE_BISON= build -USE_LDCONFIG= yes - -MAN1= valac.1 - -.include <bsd.port.pre.mk> - -.if defined(WITH_VAPIGEN) -CONFIGURE_ARGS+=--enable-vapigen -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/LibXML.pm:${PORTSDIR}/textproc/p5-XML-LibXML -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/LibXML.pm:${PORTSDIR}/textproc/p5-XML-LibXML -MAN1+= vala-gen-introspect.1 vapigen.1 -PLIST_SUB+= VAPIGEN="" -.else -CONFIGURE_ARGS+=--disable-vapigen -PLIST_SUB+= VAPIGEN="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|$$(prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.in - -.include <bsd.port.post.mk> diff --git a/lang/vala/distinfo b/lang/vala/distinfo deleted file mode 100644 index 431fb1648..000000000 --- a/lang/vala/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (vala-0.6.0.tar.bz2) = 9e5888a79757eb0f47df118b39762ed6 -SHA256 (vala-0.6.0.tar.bz2) = 9d1cb3661e6c15059e4eecce323b3f118c243d1f17a1883e2b2d7ca0a16987e5 -SIZE (vala-0.6.0.tar.bz2) = 1592884 diff --git a/lang/vala/pkg-descr b/lang/vala/pkg-descr deleted file mode 100644 index e5c2f9fc4..000000000 --- a/lang/vala/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Vala is a new programming language that aims to bring modern programming -language features to GNOME developers without imposing any additional -runtime requirements and without using a different ABI compared to -applications and libraries written in C. - -valac, the Vala compiler, is a self-hosting compiler that translates -Vala source code into C source and header files. It uses the GObject -type system to create classes and interfaces declared in the Vala source -code. It's also planned to generate GIDL files when gobject- -introspection is ready. - -WWW: http://live.gnome.org/Vala diff --git a/lang/vala/pkg-plist b/lang/vala/pkg-plist deleted file mode 100644 index 1b9041854..000000000 --- a/lang/vala/pkg-plist +++ /dev/null @@ -1,395 +0,0 @@ -%%VAPIGEN%%bin/vala-gen-introspect -bin/valac -%%VAPIGEN%%bin/vapicheck -%%VAPIGEN%%bin/vapigen -include/vala-1.0/ccode/valaccodeassignment.h -include/vala-1.0/ccode/valaccodebinaryexpression.h -include/vala-1.0/ccode/valaccodeblock.h -include/vala-1.0/ccode/valaccodebreakstatement.h -include/vala-1.0/ccode/valaccodecasestatement.h -include/vala-1.0/ccode/valaccodecastexpression.h -include/vala-1.0/ccode/valaccodecommaexpression.h -include/vala-1.0/ccode/valaccodecomment.h -include/vala-1.0/ccode/valaccodeconditionalexpression.h -include/vala-1.0/ccode/valaccodeconstant.h -include/vala-1.0/ccode/valaccodecontinuestatement.h -include/vala-1.0/ccode/valaccodedeclaration.h -include/vala-1.0/ccode/valaccodedeclarator.h -include/vala-1.0/ccode/valaccodedostatement.h -include/vala-1.0/ccode/valaccodeelementaccess.h -include/vala-1.0/ccode/valaccodeemptystatement.h -include/vala-1.0/ccode/valaccodeenum.h -include/vala-1.0/ccode/valaccodeenumvalue.h -include/vala-1.0/ccode/valaccodeexpression.h -include/vala-1.0/ccode/valaccodeexpressionstatement.h -include/vala-1.0/ccode/valaccodeformalparameter.h -include/vala-1.0/ccode/valaccodeforstatement.h -include/vala-1.0/ccode/valaccodefragment.h -include/vala-1.0/ccode/valaccodefunction.h -include/vala-1.0/ccode/valaccodefunctioncall.h -include/vala-1.0/ccode/valaccodefunctiondeclarator.h -include/vala-1.0/ccode/valaccodegotostatement.h -include/vala-1.0/ccode/valaccodeidentifier.h -include/vala-1.0/ccode/valaccodeifstatement.h -include/vala-1.0/ccode/valaccodeincludedirective.h -include/vala-1.0/ccode/valaccodeinitializerlist.h -include/vala-1.0/ccode/valaccodelabel.h -include/vala-1.0/ccode/valaccodelinedirective.h -include/vala-1.0/ccode/valaccodemacroreplacement.h -include/vala-1.0/ccode/valaccodememberaccess.h -include/vala-1.0/ccode/valaccodemodifiers.h -include/vala-1.0/ccode/valaccodenewline.h -include/vala-1.0/ccode/valaccodenode.h -include/vala-1.0/ccode/valaccodeoncesection.h -include/vala-1.0/ccode/valaccodeparenthesizedexpression.h -include/vala-1.0/ccode/valaccodereturnstatement.h -include/vala-1.0/ccode/valaccodestatement.h -include/vala-1.0/ccode/valaccodestruct.h -include/vala-1.0/ccode/valaccodeswitchstatement.h -include/vala-1.0/ccode/valaccodetypedefinition.h -include/vala-1.0/ccode/valaccodeunaryexpression.h -include/vala-1.0/ccode/valaccodevariabledeclarator.h -include/vala-1.0/ccode/valaccodewhilestatement.h -include/vala-1.0/ccode/valaccodewriter.h -include/vala-1.0/gee/arraylist.h -include/vala-1.0/gee/collection.h -include/vala-1.0/gee/collectionobject.h -include/vala-1.0/gee/hashmap.h -include/vala-1.0/gee/hashset.h -include/vala-1.0/gee/iterable.h -include/vala-1.0/gee/iterator.h -include/vala-1.0/gee/list.h -include/vala-1.0/gee/map.h -include/vala-1.0/gee/readonlycollection.h -include/vala-1.0/gee/readonlylist.h -include/vala-1.0/gee/readonlymap.h -include/vala-1.0/gee/readonlyset.h -include/vala-1.0/gee/set.h -include/vala-1.0/gobject/valaccodearraymodule.h -include/vala-1.0/gobject/valaccodeassignmentmodule.h -include/vala-1.0/gobject/valaccodebasemodule.h -include/vala-1.0/gobject/valaccodecompiler.h -include/vala-1.0/gobject/valaccodecontrolflowmodule.h -include/vala-1.0/gobject/valaccodedeclarationspace.h -include/vala-1.0/gobject/valaccodedelegatemodule.h -include/vala-1.0/gobject/valaccodegenerator.h -include/vala-1.0/gobject/valaccodememberaccessmodule.h -include/vala-1.0/gobject/valaccodemethodcallmodule.h -include/vala-1.0/gobject/valaccodemethodmodule.h -include/vala-1.0/gobject/valaccodemodule.h -include/vala-1.0/gobject/valaccodestructmodule.h -include/vala-1.0/gobject/valaclassregisterfunction.h -include/vala-1.0/gobject/valadbusclientmodule.h -include/vala-1.0/gobject/valadbusmodule.h -include/vala-1.0/gobject/valadbusservermodule.h -include/vala-1.0/gobject/valagasyncmodule.h -include/vala-1.0/gobject/valagerrormodule.h -include/vala-1.0/gobject/valagirwriter.h -include/vala-1.0/gobject/valagobjectmodule.h -include/vala-1.0/gobject/valagsignalmodule.h -include/vala-1.0/gobject/valagtypemodule.h -include/vala-1.0/gobject/valainterfaceregisterfunction.h -include/vala-1.0/gobject/valastructregisterfunction.h -include/vala-1.0/gobject/valatyperegisterfunction.h -include/vala-1.0/vala/valaaddressofexpression.h -include/vala-1.0/vala/valaarraycreationexpression.h -include/vala-1.0/vala/valaarraylengthfield.h -include/vala-1.0/vala/valaarraymovemethod.h -include/vala-1.0/vala/valaarrayresizemethod.h -include/vala-1.0/vala/valaarraytype.h -include/vala-1.0/vala/valaassignment.h -include/vala-1.0/vala/valaattribute.h -include/vala-1.0/vala/valabaseaccess.h -include/vala-1.0/vala/valabasicblock.h -include/vala-1.0/vala/valabinaryexpression.h -include/vala-1.0/vala/valablock.h -include/vala-1.0/vala/valabooleanliteral.h -include/vala-1.0/vala/valabooleantype.h -include/vala-1.0/vala/valabreakstatement.h -include/vala-1.0/vala/valacastexpression.h -include/vala-1.0/vala/valacatchclause.h -include/vala-1.0/vala/valacharacterliteral.h -include/vala-1.0/vala/valaclass.h -include/vala-1.0/vala/valaclasstype.h -include/vala-1.0/vala/valacodecontext.h -include/vala-1.0/vala/valacodegenerator.h -include/vala-1.0/vala/valacodenode.h -include/vala-1.0/vala/valacodevisitor.h -include/vala-1.0/vala/valacodewriter.h -include/vala-1.0/vala/valaconditionalexpression.h -include/vala-1.0/vala/valaconstant.h -include/vala-1.0/vala/valaconstructor.h -include/vala-1.0/vala/valacontinuestatement.h -include/vala-1.0/vala/valacreationmethod.h -include/vala-1.0/vala/valadatatype.h -include/vala-1.0/vala/valadeclarationstatement.h -include/vala-1.0/vala/valadelegate.h -include/vala-1.0/vala/valadelegatetype.h -include/vala-1.0/vala/valadeletestatement.h -include/vala-1.0/vala/valadestructor.h -include/vala-1.0/vala/valadostatement.h -include/vala-1.0/vala/valadynamicmethod.h -include/vala-1.0/vala/valadynamicproperty.h -include/vala-1.0/vala/valadynamicsignal.h -include/vala-1.0/vala/valaelementaccess.h -include/vala-1.0/vala/valaemptystatement.h -include/vala-1.0/vala/valaenum.h -include/vala-1.0/vala/valaenumvalue.h -include/vala-1.0/vala/valaenumvaluetype.h -include/vala-1.0/vala/valaerrorcode.h -include/vala-1.0/vala/valaerrordomain.h -include/vala-1.0/vala/valaerrortype.h -include/vala-1.0/vala/valaexpression.h -include/vala-1.0/vala/valaexpressionstatement.h -include/vala-1.0/vala/valafield.h -include/vala-1.0/vala/valafieldprototype.h -include/vala-1.0/vala/valafloatingtype.h -include/vala-1.0/vala/valaflowanalyzer.h -include/vala-1.0/vala/valaforeachstatement.h -include/vala-1.0/vala/valaformalparameter.h -include/vala-1.0/vala/valaforstatement.h -include/vala-1.0/vala/valagenieparser.h -include/vala-1.0/vala/valageniescanner.h -include/vala-1.0/vala/valagenietokentype.h -include/vala-1.0/vala/valagenerictype.h -include/vala-1.0/vala/valaifstatement.h -include/vala-1.0/vala/valainitializerlist.h -include/vala-1.0/vala/valainstancecast.h -include/vala-1.0/vala/valaintegerliteral.h -include/vala-1.0/vala/valaintegertype.h -include/vala-1.0/vala/valainterface.h -include/vala-1.0/vala/valainterfacetype.h -include/vala-1.0/vala/valainvalidtype.h -include/vala-1.0/vala/valalambdaexpression.h -include/vala-1.0/vala/valaliteral.h -include/vala-1.0/vala/valalocalvariable.h -include/vala-1.0/vala/valalockable.h -include/vala-1.0/vala/valalockstatement.h -include/vala-1.0/vala/valamember.h -include/vala-1.0/vala/valamemberaccess.h -include/vala-1.0/vala/valamemberinitializer.h -include/vala-1.0/vala/valamethod.h -include/vala-1.0/vala/valamethodcall.h -include/vala-1.0/vala/valamethodtype.h -include/vala-1.0/vala/valanamespace.h -include/vala-1.0/vala/valanullchecker.h -include/vala-1.0/vala/valanullliteral.h -include/vala-1.0/vala/valanulltype.h -include/vala-1.0/vala/valaobjectcreationexpression.h -include/vala-1.0/vala/valaobjecttype.h -include/vala-1.0/vala/valaobjecttypesymbol.h -include/vala-1.0/vala/valaparser.h -include/vala-1.0/vala/valaphifunction.h -include/vala-1.0/vala/valapointerindirection.h -include/vala-1.0/vala/valapointertype.h -include/vala-1.0/vala/valapostfixexpression.h -include/vala-1.0/vala/valaproperty.h -include/vala-1.0/vala/valapropertyaccessor.h -include/vala-1.0/vala/valarealliteral.h -include/vala-1.0/vala/valareferencetransferexpression.h -include/vala-1.0/vala/valareferencetype.h -include/vala-1.0/vala/valareport.h -include/vala-1.0/vala/valareturnstatement.h -include/vala-1.0/vala/valascanner.h -include/vala-1.0/vala/valascope.h -include/vala-1.0/vala/valasemanticanalyzer.h -include/vala-1.0/vala/valasignal.h -include/vala-1.0/vala/valasignaltype.h -include/vala-1.0/vala/valasizeofexpression.h -include/vala-1.0/vala/valasourcefile.h -include/vala-1.0/vala/valasourcefilecycle.h -include/vala-1.0/vala/valasourcelocation.h -include/vala-1.0/vala/valasourcereference.h -include/vala-1.0/vala/valastatement.h -include/vala-1.0/vala/valastatementlist.h -include/vala-1.0/vala/valastringliteral.h -include/vala-1.0/vala/valastruct.h -include/vala-1.0/vala/valastructvaluetype.h -include/vala-1.0/vala/valaswitchlabel.h -include/vala-1.0/vala/valaswitchsection.h -include/vala-1.0/vala/valaswitchstatement.h -include/vala-1.0/vala/valasymbol.h -include/vala-1.0/vala/valasymbolresolver.h -include/vala-1.0/vala/valathrowstatement.h -include/vala-1.0/vala/valatokentype.h -include/vala-1.0/vala/valatrystatement.h -include/vala-1.0/vala/valatuple.h -include/vala-1.0/vala/valatypecheck.h -include/vala-1.0/vala/valatypeofexpression.h -include/vala-1.0/vala/valatypeparameter.h -include/vala-1.0/vala/valatypesymbol.h -include/vala-1.0/vala/valaunaryexpression.h -include/vala-1.0/vala/valaunresolvedsymbol.h -include/vala-1.0/vala/valaunresolvedtype.h -include/vala-1.0/vala/valausingdirective.h -include/vala-1.0/vala/valavaluetype.h -include/vala-1.0/vala/valavoidtype.h -include/vala-1.0/vala/valawhilestatement.h -include/vala-1.0/vala/valayieldstatement.h -lib/libvala.la -lib/libvala.so -lib/libvala.so.0 -libdata/pkgconfig/vala-1.0.pc -%%VAPIGEN%%lib/vala/gen-introspect -share/devhelp/books/vala/attributes.html -share/devhelp/books/vala/classes.html -share/devhelp/books/vala/default.css -share/devhelp/books/vala/delegates.html -share/devhelp/books/vala/enums.html -share/devhelp/books/vala/exceptions.html -share/devhelp/books/vala/expressions.html -share/devhelp/books/vala/index.html -share/devhelp/books/vala/interfaces.html -share/devhelp/books/vala/methods.html -share/devhelp/books/vala/namespaces.html -share/devhelp/books/vala/overview.html -share/devhelp/books/vala/statements.html -share/devhelp/books/vala/structs.html -share/devhelp/books/vala/types.html -share/devhelp/books/vala/vala.devhelp2 -%%DATADIR%%/vapi/atk.vapi -%%DATADIR%%/vapi/bzlib.vapi -%%DATADIR%%/vapi/cairo.vapi -%%DATADIR%%/vapi/curses.vapi -%%DATADIR%%/vapi/dbus-glib-1.vapi -%%DATADIR%%/vapi/enchant.vapi -%%DATADIR%%/vapi/fuse.deps -%%DATADIR%%/vapi/fuse.vapi -%%DATADIR%%/vapi/gconf-2.0.vapi -%%DATADIR%%/vapi/gdk-2.0.deps -%%DATADIR%%/vapi/gdk-2.0.vapi -%%DATADIR%%/vapi/gdk-pixbuf-2.0.deps -%%DATADIR%%/vapi/gdk-pixbuf-2.0.vapi -%%DATADIR%%/vapi/gdk-x11-2.0.deps -%%DATADIR%%/vapi/gdk-x11-2.0.vapi -%%DATADIR%%/vapi/gio-2.0.vapi -%%DATADIR%%/vapi/gio-unix-2.0.deps -%%DATADIR%%/vapi/gio-unix-2.0.vapi -%%DATADIR%%/vapi/glib-2.0.vapi -%%DATADIR%%/vapi/gmodule-2.0.vapi -%%DATADIR%%/vapi/gnet-2.0.vapi -%%DATADIR%%/vapi/gnome-desktop-2.0.deps -%%DATADIR%%/vapi/gnome-desktop-2.0.vapi -%%DATADIR%%/vapi/gnome-keyring-1.vapi -%%DATADIR%%/vapi/gnome-vfs-2.0.vapi -%%DATADIR%%/vapi/gobject-2.0.vapi -%%DATADIR%%/vapi/goocanvas.deps -%%DATADIR%%/vapi/goocanvas.vapi -%%DATADIR%%/vapi/gsl.vapi -%%DATADIR%%/vapi/gstreamer-0.10.deps -%%DATADIR%%/vapi/gstreamer-0.10.vapi -%%DATADIR%%/vapi/gstreamer-audio-0.10.deps -%%DATADIR%%/vapi/gstreamer-audio-0.10.vapi -%%DATADIR%%/vapi/gstreamer-base-0.10.deps -%%DATADIR%%/vapi/gstreamer-base-0.10.vapi -%%DATADIR%%/vapi/gstreamer-check-0.10.deps -%%DATADIR%%/vapi/gstreamer-check-0.10.vapi -%%DATADIR%%/vapi/gstreamer-controller-0.10.deps -%%DATADIR%%/vapi/gstreamer-controller-0.10.vapi -%%DATADIR%%/vapi/gstreamer-dataprotocol-0.10.deps -%%DATADIR%%/vapi/gstreamer-dataprotocol-0.10.vapi -%%DATADIR%%/vapi/gstreamer-fft-0.10.deps -%%DATADIR%%/vapi/gstreamer-fft-0.10.vapi -%%DATADIR%%/vapi/gstreamer-interfaces-0.10.deps -%%DATADIR%%/vapi/gstreamer-interfaces-0.10.vapi -%%DATADIR%%/vapi/gstreamer-net-0.10.deps -%%DATADIR%%/vapi/gstreamer-net-0.10.vapi -%%DATADIR%%/vapi/gstreamer-netbuffer-0.10.deps -%%DATADIR%%/vapi/gstreamer-netbuffer-0.10.vapi -%%DATADIR%%/vapi/gstreamer-pbutils-0.10.deps -%%DATADIR%%/vapi/gstreamer-pbutils-0.10.vapi -%%DATADIR%%/vapi/gstreamer-riff-0.10.deps -%%DATADIR%%/vapi/gstreamer-riff-0.10.vapi -%%DATADIR%%/vapi/gstreamer-rtp-0.10.deps -%%DATADIR%%/vapi/gstreamer-rtp-0.10.vapi -%%DATADIR%%/vapi/gstreamer-rtsp-0.10.deps -%%DATADIR%%/vapi/gstreamer-rtsp-0.10.vapi -%%DATADIR%%/vapi/gstreamer-sdp-0.10.deps -%%DATADIR%%/vapi/gstreamer-sdp-0.10.vapi -%%DATADIR%%/vapi/gstreamer-tag-0.10.deps -%%DATADIR%%/vapi/gstreamer-tag-0.10.vapi -%%DATADIR%%/vapi/gstreamer-video-0.10.deps -%%DATADIR%%/vapi/gstreamer-video-0.10.vapi -%%DATADIR%%/vapi/gtk+-2.0.deps -%%DATADIR%%/vapi/gtk+-2.0.vapi -%%DATADIR%%/vapi/gtkmozembed.deps -%%DATADIR%%/vapi/gtkmozembed.vapi -%%DATADIR%%/vapi/gtksourceview-2.0.deps -%%DATADIR%%/vapi/gtksourceview-2.0.vapi -%%DATADIR%%/vapi/hal.deps -%%DATADIR%%/vapi/hal.vapi -%%DATADIR%%/vapi/hildon-1.deps -%%DATADIR%%/vapi/hildon-1.vapi -%%DATADIR%%/vapi/hildon-fm-2.deps -%%DATADIR%%/vapi/hildon-fm-2.vapi -%%DATADIR%%/vapi/json-glib-1.0.vapi -%%DATADIR%%/vapi/libbonoboui-2.0.vapi -%%DATADIR%%/vapi/libdaemon.vapi -%%DATADIR%%/vapi/libepc-1.0.vapi -%%DATADIR%%/vapi/libftdi.deps -%%DATADIR%%/vapi/libftdi.vapi -%%DATADIR%%/vapi/libglade-2.0.deps -%%DATADIR%%/vapi/libglade-2.0.vapi -%%DATADIR%%/vapi/libgnome-2.0.vapi -%%DATADIR%%/vapi/libgnome-menu.vapi -%%DATADIR%%/vapi/libgnomeui-2.0.deps -%%DATADIR%%/vapi/libgnomeui-2.0.vapi -%%DATADIR%%/vapi/libgsf-1.deps -%%DATADIR%%/vapi/libgsf-1.vapi -%%DATADIR%%/vapi/libnotify.deps -%%DATADIR%%/vapi/libnotify.vapi -%%DATADIR%%/vapi/liboobs-1.vapi -%%DATADIR%%/vapi/libosso.vapi -%%DATADIR%%/vapi/libpanelapplet-2.0.deps -%%DATADIR%%/vapi/libpanelapplet-2.0.vapi -%%DATADIR%%/vapi/librsvg-2.0.deps -%%DATADIR%%/vapi/librsvg-2.0.vapi -%%DATADIR%%/vapi/libsexy.deps -%%DATADIR%%/vapi/libsexy.vapi -%%DATADIR%%/vapi/libsoup-2.2.vapi -%%DATADIR%%/vapi/libsoup-2.4.deps -%%DATADIR%%/vapi/libsoup-2.4.vapi -%%DATADIR%%/vapi/libusb.vapi -%%DATADIR%%/vapi/libwnck-1.0.deps -%%DATADIR%%/vapi/libwnck-1.0.vapi -%%DATADIR%%/vapi/libxml-2.0.vapi -%%DATADIR%%/vapi/loudmouth-1.0.vapi -%%DATADIR%%/vapi/lua.vapi -%%DATADIR%%/vapi/mysql.vapi -%%DATADIR%%/vapi/pango.deps -%%DATADIR%%/vapi/pango.vapi -%%DATADIR%%/vapi/pangocairo.deps -%%DATADIR%%/vapi/pangocairo.vapi -%%DATADIR%%/vapi/poppler-glib.deps -%%DATADIR%%/vapi/poppler-glib.vapi -%%DATADIR%%/vapi/posix.vapi -%%DATADIR%%/vapi/raptor.vapi -%%DATADIR%%/vapi/rasqal.vapi -%%DATADIR%%/vapi/sdl-gfx.vapi -%%DATADIR%%/vapi/sdl-image.vapi -%%DATADIR%%/vapi/sdl-mixer.vapi -%%DATADIR%%/vapi/sdl-net.vapi -%%DATADIR%%/vapi/sdl-ttf.vapi -%%DATADIR%%/vapi/sdl.vapi -%%DATADIR%%/vapi/sqlite3.vapi -%%DATADIR%%/vapi/taglib_c.vapi -%%DATADIR%%/vapi/tiff.vapi -%%DATADIR%%/vapi/tracker-indexer-module-1.0.vapi -%%DATADIR%%/vapi/unique-1.0.deps -%%DATADIR%%/vapi/unique-1.0.vapi -%%DATADIR%%/vapi/v4l2.vapi -%%DATADIR%%/vapi/vala-1.0.vapi -%%DATADIR%%/vapi/vte.deps -%%DATADIR%%/vapi/vte.vapi -%%DATADIR%%/vapi/webkit-1.0.deps -%%DATADIR%%/vapi/webkit-1.0.vapi -%%DATADIR%%/vapi/zlib.vapi -@dirrm share/devhelp/books/vala -@dirrmtry share/devhelp/books -@dirrmtry share/devhelp -%%VAPIGEN%%@dirrm lib/vala -@dirrm include/vala-1.0/vala -@dirrm include/vala-1.0/gobject -@dirrm include/vala-1.0/gee -@dirrm include/vala-1.0/ccode -@dirrm include/vala-1.0 diff --git a/mail/evolution-exchange/Makefile b/mail/evolution-exchange/Makefile deleted file mode 100644 index 4f560c819..000000000 --- a/mail/evolution-exchange/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# New ports collection makefile for: evolution-exchange -# Date created: 28 April, 2005 -# Whom: Adam Weinberger, based off kiesel's ximian-exchange port -# -# $FreeBSD$ -# $MCom: ports/mail/evolution-exchange/Makefile,v 1.132 2009/03/02 21:37:19 marcus Exp $ -# - -PORTNAME= evolution-exchange -PORTVERSION= 2.26.0 -CATEGORIES= mail gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Evolution plugin to connect to Microsoft Exchange servers - -BUILD_DEPENDS= evolution:${PORTSDIR}/mail/evolution -RUN_DEPENDS= evolution:${PORTSDIR}/mail/evolution - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_AUTOTOOLS= libtool:15 -USE_GMAKE= yes -USE_BDB= 41 -USE_OPENLDAP= yes -USE_GNOME= gnomeprefix intlhack gnomehack ltasneededhack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${BDB_INCLUDE_DIR}" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-openldap=${LOCALBASE} \ - --with-static-ldap=no \ - --disable-compile-warnings \ - --with-libdb=${LOCALBASE} - -EVO_VERSION= 2.26 -VERSION= 2.26 -PLIST_SUB= VERSION=${VERSION} EVO_VERSION=${EVO_VERSION} \ - EDS_VERSION="1.2" - -GCONF_SCHEMAS= apps_exchange_addressbook-${VERSION}.schemas - -.include <bsd.port.pre.mk> - -.if !defined(NO_KERBEROS) && exists(/usr/lib/libkrb5.so) -CONFIGURE_ARGS+= --with-krb5=/usr -.else -LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal -.if defined(HEIMDAL_HOME) -CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} --with-krb5-includes=${HEIMDAL_HOME}/include -.else -CONFIGURE_ARGS+= --with-krb5=${LOCALBASE} -.endif -.endif - -.if ${ARCH} == "amd64" -CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC" -.endif - -.if exists(${LOCALBASE}/include/mapi.h) -IGNORE= build fails when ${LOCALBASE}/include/mapi.h exists in system, run pkg_info -W ${LOCALBASE}/include/mapi.h to find the offending port and uninstall it, then install ${PORTNAME} and reinstall the port that installed mapi.h -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g' \ - ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/mail/evolution-exchange/distinfo b/mail/evolution-exchange/distinfo deleted file mode 100644 index 746e7ec25..000000000 --- a/mail/evolution-exchange/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/evolution-exchange-2.26.0.tar.bz2) = 845f0a74e4565a6639f3b8adb736cbc1 -SHA256 (gnome2/evolution-exchange-2.26.0.tar.bz2) = 677c363f5c983b0cf64ed167904ad063c87785a9da666cb35cac6c12b1d9d3a0 -SIZE (gnome2/evolution-exchange-2.26.0.tar.bz2) = 945729 diff --git a/mail/evolution-exchange/pkg-descr b/mail/evolution-exchange/pkg-descr deleted file mode 100644 index 03dc3b673..000000000 --- a/mail/evolution-exchange/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -Evolution-exchange is a plugin for Evolution that adds Exchange client -capabilities to Evolution. - -With Evolution-Exchange installed, Evolution functions as an -Exchange client, enabling users to become full participants in company-wide -group scheduling and other collaborative tasks. Linux, Solaris and FreeBSD -users can access public folders, Global Address Lists, email, calendar, -task lists, and group scheduling information. - -- Alex Kiesel -kiesel@schlund.de diff --git a/mail/evolution-exchange/pkg-plist b/mail/evolution-exchange/pkg-plist deleted file mode 100644 index 141c0232c..000000000 --- a/mail/evolution-exchange/pkg-plist +++ /dev/null @@ -1,176 +0,0 @@ -bin/exchange-connector-setup-%%VERSION%% -lib/evolution-data-server-%%EDS_VERSION%%/camel-providers/libcamelexchange.a -lib/evolution-data-server-%%EDS_VERSION%%/camel-providers/libcamelexchange.la -lib/evolution-data-server-%%EDS_VERSION%%/camel-providers/libcamelexchange.so -lib/evolution-data-server-%%EDS_VERSION%%/camel-providers/libcamelexchange.urls -libdata/bonobo/servers/GNOME_Evolution_Exchange_Storage_%%VERSION%%.server -libexec/evolution/%%EVO_VERSION%%/evolution-exchange-storage -%%DOCSDIR%%/E2kContext.html -%%DOCSDIR%%/E2kGlobalCatalog.html -%%DOCSDIR%%/E2kSecurityDescriptor.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/ch03.html -%%DOCSDIR%%/ch04.html -%%DOCSDIR%%/ch05.html -%%DOCSDIR%%/ch06.html -%%DOCSDIR%%/evolution-exchange-E2kAutoconfig.html -%%DOCSDIR%%/evolution-exchange-E2kContext-(private).html -%%DOCSDIR%%/evolution-exchange-E2kOperation-(private).html -%%DOCSDIR%%/evolution-exchange-E2kOperation.html -%%DOCSDIR%%/evolution-exchange-E2kProperties.html -%%DOCSDIR%%/evolution-exchange-E2kRestriction-(vaporware).html -%%DOCSDIR%%/evolution-exchange-E2kResult-(private).html -%%DOCSDIR%%/evolution-exchange-E2kSid.html -%%DOCSDIR%%/evolution-exchange-E2kUserDialog.html -%%DOCSDIR%%/evolution-exchange-MAPI.html -%%DOCSDIR%%/evolution-exchange-e2k-action.html -%%DOCSDIR%%/evolution-exchange-e2k-freebusy.html -%%DOCSDIR%%/evolution-exchange-e2k-http-utils.html -%%DOCSDIR%%/evolution-exchange-e2k-kerberos.html -%%DOCSDIR%%/evolution-exchange-e2k-restriction.html -%%DOCSDIR%%/evolution-exchange-e2k-result.html -%%DOCSDIR%%/evolution-exchange-e2k-rule.html -%%DOCSDIR%%/evolution-exchange-e2k-uri.html -%%DOCSDIR%%/evolution-exchange-e2k-utils.html -%%DOCSDIR%%/evolution-exchange-e2k-xml-utils.html -%%DOCSDIR%%/evolution-exchange-test-utils.html -%%DOCSDIR%%/evolution-exchange-xntlm-des.html -%%DOCSDIR%%/evolution-exchange-xntlm-md4.html -%%DOCSDIR%%/evolution-exchange-xntlm.html -%%DOCSDIR%%/evolution-exchange.devhelp -%%DOCSDIR%%/evolution-exchange.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%DOCSDIR%%/ximian-connector-autoconfig.html -%%DOCSDIR%%/ximian-connector-bug-private.html -%%DOCSDIR%%/ximian-connector-bug-xml.html -%%DOCSDIR%%/ximian-connector-calendar.html -%%DOCSDIR%%/ximian-connector-delegation.html -%%DOCSDIR%%/ximian-connector-favorites.html -%%DOCSDIR%%/ximian-connector-fba.html -%%DOCSDIR%%/ximian-connector-freebusy.html -%%DOCSDIR%%/ximian-connector-mail-threading.html -%%DOCSDIR%%/ximian-connector-mail.html -%%DOCSDIR%%/ximian-connector-ntlm.html -%%DOCSDIR%%/ximian-connector-oof.html -%%DOCSDIR%%/ximian-connector-other-users.html -%%DOCSDIR%%/ximian-connector-permissions.html -%%DOCSDIR%%/ximian-connnector-booking.html -%%DATADIR%%/%%VERSION%%/glade/exchange-autoconfig-wizard.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-change-password.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-delegates.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-folder-tree.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-oof.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-passwd-expiry.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-permissions-dialog.glade -%%DATADIR%%/%%VERSION%%/images/connector-mini.png -%%DATADIR%%/%%VERSION%%/images/connector.png -%%DATADIR%%/%%VERSION%%/images/exchange-delegates-48.png -%%DATADIR%%/%%VERSION%%/images/exchange-oof-48.png -%%DATADIR%%/%%VERSION%%/ui/ximian-connector.xml -share/locale/ar/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/as/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/az/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/bg/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/bn/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/bn_IN/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ca/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/cs/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/cy/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/da/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/de/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/dz/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/el/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/en_CA/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/en_GB/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/es/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/et/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/eu/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/fa/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/fi/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/fr/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/gl/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/gu/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/he/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/hi/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/hu/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/id/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/it/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ja/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ka/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/kn/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ko/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ku/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/lt/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/lv/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/mk/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ml/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/mn/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/mr/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ms/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/nb/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ne/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/nl/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/nn/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/oc/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/or/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/pa/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/pl/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/pt/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/pt_BR/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ro/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ru/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/rw/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/si/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/sk/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/sl/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/sq/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/sr/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/sr@latin/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/sv/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/ta/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/te/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/th/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/tr/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/uk/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/vi/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/xh/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/zh_CN/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/zh_HK/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -share/locale/zh_TW/LC_MESSAGES/evolution-exchange-%%VERSION%%.mo -@dirrm %%DATADIR%%/%%VERSION%%/ui -@dirrm %%DATADIR%%/%%VERSION%%/images -@dirrm %%DATADIR%%/%%VERSION%%/glade -@dirrm %%DATADIR%%/%%VERSION%% -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/mail/evolution-sharp/Makefile b/mail/evolution-sharp/Makefile deleted file mode 100644 index 4065eadd1..000000000 --- a/mail/evolution-sharp/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: evolution-sharp -# Date created: 20041012 -# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org> -# -# $FreeBSD$ -# $Id: Makefile,v 1.12 2009-04-07 03:10:40 marcus Exp $ -# - -PORTNAME= evolution-sharp -PORTVERSION= 0.20.0 -CATEGORIES= mail gnome -MASTER_SITES= GNOME - -MAINTAINER= bsd-sharp@googlegroups.com -COMMENT= Mono bindings for evolution - -BUILD_DEPENDS= evolution:${PORTSDIR}/mail/evolution -RUN_DEPENDS= evolution:${PORTSDIR}/mail/evolution - -USE_GNOME= gnomehack evolutiondataserver gtksharp20 -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_LDCONFIG= yes - -post-patch: - @${REINPLACE_CMD} 's|.@EBOOK_SOVERSION@||g ; \ - s|.@ECAL_SOVERSION@||g ; \ - s|.@EDS_SOVERSION@||g' \ - ${WRKSRC}/evolution/evolution-sharp.dll.config.in - -.include "${.CURDIR}/../../lang/mono/bsd.mono.mk" -.include <bsd.port.mk> diff --git a/mail/evolution-sharp/distinfo b/mail/evolution-sharp/distinfo deleted file mode 100644 index 0900c63d9..000000000 --- a/mail/evolution-sharp/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (evolution-sharp-0.20.0.tar.bz2) = ca4f75a795aa2af36c4573971c0534f7 -SHA256 (evolution-sharp-0.20.0.tar.bz2) = 3a09c724e7c9c14d2a8ca18ad3d2686c8e80347adc8eaf0b72a598ab2980b111 -SIZE (evolution-sharp-0.20.0.tar.bz2) = 334986 diff --git a/mail/evolution-sharp/files/patch-evolution::Makefile.in b/mail/evolution-sharp/files/patch-evolution::Makefile.in deleted file mode 100644 index 0ce012486..000000000 --- a/mail/evolution-sharp/files/patch-evolution::Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- evolution/Makefile.in.orig 2008-09-09 01:50:18.000000000 -0500 -+++ evolution/Makefile.in 2008-09-09 01:51:13.000000000 -0500 -@@ -467,8 +467,8 @@ - - install-data-local: - @if test -n '$(TARGET)'; then \ -- echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE) /root $(DESTDIR)$(prefix)/lib"; \ -- $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE) /root $(DESTDIR)$(prefix)/lib || exit 1; \ -+ echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE) /gacdir $(DESTDIR)$(libdir) /root $(DESTDIR)$(prefix)/lib"; \ -+ $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE) /gacdir $(DESTDIR)$(libdir) /root $(DESTDIR)$(prefix)/lib || exit 1; \ - fi - - uninstall-local: diff --git a/mail/evolution-sharp/pkg-descr b/mail/evolution-sharp/pkg-descr deleted file mode 100644 index c9c5ef4d4..000000000 --- a/mail/evolution-sharp/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Evolution# is a .NET language binding for various Ximian Evolution (tm) -libraries. - -WWW: http://www.gnome.org diff --git a/mail/evolution-sharp/pkg-plist b/mail/evolution-sharp/pkg-plist deleted file mode 100644 index 597309803..000000000 --- a/mail/evolution-sharp/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -lib/libevolutionglue.a -lib/libevolutionglue.la -lib/libevolutionglue.so -lib/mono/evolution-sharp/evolution-sharp.dll -lib/mono/gac/evolution-sharp/5.0.0.0__c46a23b774189844/evolution-sharp.dll -lib/mono/gac/evolution-sharp/5.0.0.0__c46a23b774189844/evolution-sharp.dll.config -lib/mono/gac/evolution-sharp/5.0.0.0__c46a23b774189844/evolution-sharp.dll.mdb -libdata/pkgconfig/evolution-sharp.pc -share/gapi-2.0/evolution-api.xml -@dirrm lib/mono/gac/evolution-sharp/5.0.0.0__c46a23b774189844 -@dirrm lib/mono/gac/evolution-sharp -@dirrm lib/mono/evolution-sharp diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile deleted file mode 100644 index e1e329a76..000000000 --- a/mail/evolution/Makefile +++ /dev/null @@ -1,108 +0,0 @@ -# New ports collection makefile for: evolution -# Date created: 28th June 2000 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/mail/evolution/Makefile,v 1.191 2009/03/10 07:35:01 marcus Exp $ -# - -PORTNAME= evolution -PORTVERSION= 2.26.0 -PORTREVISION= 0 -CATEGORIES= mail gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= An integrated mail, calendar and address book distributed suite - -LIB_DEPENDS= nss3.1:${PORTSDIR}/security/nss -RUN_DEPENDS= ${LOCALBASE}/lib/gnome-spell/libgnome-spell-component-0.3.so:${PORTSDIR}/textproc/gnome-spell - -USE_BZIP2= yes -USE_GMAKE= yes -USE_BISON= build -USE_GETTEXT= yes -USE_GNOME= gnomeprefix gnomehack intlhack evolutiondataserver gtkhtml3 \ - desktopfileutils gnomedocutils ltasneededhack -USE_AUTOTOOLS= libtool:15 -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_LDCONFIG= yes -LDCONFIG_DIRS= %%PREFIX%%/lib/evolution/%%VERSION%% -CONFIGURE_ARGS= --enable-nss=yes \ - --enable-mono=no \ - --with-sub-version=" FreeBSD GNOME Team Port" -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= apps_evolution_addressbook.schemas \ - apps-evolution-attachment-reminder.schemas \ - apps_evolution_calendar.schemas \ - apps_evolution_email_custom_header.schemas \ - apps-evolution-mail-notification.schemas \ - apps-evolution-mail-prompts-checkdefault.schemas \ - apps_evolution_shell.schemas \ - apps-evolution-template-placeholders.schemas \ - bogo-junk-plugin.schemas \ - evolution-mail.schemas - -EVO_VERSION= 2.26 -PLIST_SUB= VERSION=${EVO_VERSION} \ - PORTVERSION=2.12 - -OPTIONS= PILOT "Enable Palm Pilot sync support" off \ - LDAP "Enable LDAP support" on \ - SPAMASSASSIN "Enable SpamAssassin spam filtering" off - -.include <bsd.port.pre.mk> - -USE_LDCONFIG= ${PREFIX}/lib/evolution/${EVO_VERSION} -.include "${PORTSDIR}/misc/ldconfig_compat/bsd.ldconfig.mk" - -.if defined(WITH_PILOT) -LIB_DEPENDS+= gpilotdconduit.2:${PORTSDIR}/palm/gnome-pilot -CONFIGURE_ARGS+= --with-pisock=${LOCALBASE} \ - --enable-pilot-conduits=yes -PLIST_SUB+= PILOT:="" -.else -PLIST_SUB+= PILOT:="@comment " -.endif - -.if !defined(WITHOUT_LDAP) -USE_OPENLDAP= yes -CONFIGURE_ARGS+=--with-openldap=${LOCALBASE} -.else -CONFIGURE_ARGS+=--with-openldap=no -.endif - -.if defined(WITH_SPAMASSASSIN) -RUN_DEPENDS+= spamassassin:${PORTSDIR}/mail/p5-Mail-SpamAssassin -.endif - -.if !defined(NO_KERBEROS) && exists(/usr/lib/libkrb5.so) -CONFIGURE_ARGS+= --with-krb5=/usr -.else -LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal -.if defined(HEIMDAL_HOME) -CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} --with-krb5-includes=${HEIMDAL_HOME}/include -.else -CONFIGURE_ARGS+= --with-krb5=${LOCALBASE} -.endif -.endif - -post-patch: - @${REINPLACE_CMD} -e '/^plugins_standard_always/s/audio-inline//' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|stdlib.n|stdlib.h|' \ - ${WRKSRC}/iconv-detect.c - @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ - ${WRKSRC}/plugins/bogo-junk-plugin/bf-junk-filter.c - @${REINPLACE_CMD} -e 's|/usr/sbin|${LOCALBASE}/bin|g' \ - ${WRKSRC}/plugins/sa-junk-plugin/em-junk-filter.c - -post-install: install-ldconfig-file - ${MKDIR} ${PREFIX}/include/evolution-${EVO_VERSION}/composer - ${INSTALL_DATA} ${WRKSRC}/composer/e-msg*.h ${PREFIX}/include/evolution-${EVO_VERSION}/composer - -.include <bsd.port.post.mk> diff --git a/mail/evolution/distinfo b/mail/evolution/distinfo deleted file mode 100644 index ec93f5216..000000000 --- a/mail/evolution/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/evolution-2.26.0.tar.bz2) = 97234b1ecded0232a1b68d2fc03b0252 -SHA256 (gnome2/evolution-2.26.0.tar.bz2) = 74a2d936ba8330d0abe059062bb84446f379c605480c0c404575e419926d5004 -SIZE (gnome2/evolution-2.26.0.tar.bz2) = 32677910 diff --git a/mail/evolution/files/patch-aa b/mail/evolution/files/patch-aa deleted file mode 100644 index ef43e24cd..000000000 --- a/mail/evolution/files/patch-aa +++ /dev/null @@ -1,45 +0,0 @@ ---- configure.orig 2007-10-28 12:24:23.000000000 -0500 -+++ configure 2007-10-28 12:26:19.000000000 -0500 -@@ -23831,6 +23831,16 @@ - SOFTOKN3_LIB='' - HAL_REQUIREMENT='' - ;; -+*freebsd*) os_win32=no -+ NO_UNDEFINED='' -+ SOCKET_LIBS='' -+ SOEXT='.so' -+ SA_JUNK_PLUGIN=sa-junk-plugin -+ BF_JUNK_PLUGIN=bogo-junk-plugin -+ DL_LIB='' -+ SOFTOKN3_LIB='-lsoftokn3' -+ HAL_REQUIREMENT='hal' -+ ;; - *) os_win32=no - NO_UNDEFINED='' - SOEXT='.so' -@@ -25449,6 +25459,7 @@ - #include <sys/socket.h> - #include <netinet/in.h> - #include <netdb.h> -+ #include <stdio.h> - - #define BUFSIZE (sizeof(struct hostent)+10) - -@@ -29382,7 +29393,7 @@ - LDFLAGS_save="$LDFLAGS" - - mitlibs="-lkrb5 -lk5crypto -lcom_err -lgssapi_krb5" -- heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi" -+ heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi -lcrypt" - sunlibs="-lkrb5 -lgss" - { echo "$as_me:$LINENO: checking for Kerberos 5" >&5 - echo $ECHO_N "checking for Kerberos 5... $ECHO_C" >&6; } -@@ -37936,7 +37947,7 @@ - idldir='${datadir}'/idl/evolution-$BASE_VERSION - - --serverdir="$libdir/bonobo/servers" -+serverdir="$prefix/libdata/bonobo/servers" - - - evolutionuidir="$privdatadir/ui" diff --git a/mail/evolution/files/patch-mail_em-migrate.c b/mail/evolution/files/patch-mail_em-migrate.c deleted file mode 100644 index e2df9c618..000000000 --- a/mail/evolution/files/patch-mail_em-migrate.c +++ /dev/null @@ -1,11 +0,0 @@ ---- mail/em-migrate.c.orig 2007-12-15 16:58:56.000000000 +0100 -+++ mail/em-migrate.c 2007-12-21 16:17:32.000000000 +0100 -@@ -1493,7 +1493,7 @@ - ut.actime = st.st_atime; - ut.modtime = st.st_mtime; - utime (dest, &ut); -- chmod (dest, st.st_mode); -+ chmod (dest, st.st_mode | S_IWUSR); - - return 0; - diff --git a/mail/evolution/files/patch-mail_em-utils.h b/mail/evolution/files/patch-mail_em-utils.h deleted file mode 100644 index b3e7b9ffb..000000000 --- a/mail/evolution/files/patch-mail_em-utils.h +++ /dev/null @@ -1,10 +0,0 @@ ---- mail/em-utils.h.orig Tue Aug 3 16:59:46 2004 -+++ mail/em-utils.h Tue Aug 3 17:00:04 2004 -@@ -23,6 +23,7 @@ - #ifndef __EM_UTILS_H__ - #define __EM_UTILS_H__ - -+#include <sys/types.h> - #include <glib.h> - - #ifdef __cplusplus diff --git a/mail/evolution/files/patch-plugins_exchange-operations_Makefile.in b/mail/evolution/files/patch-plugins_exchange-operations_Makefile.in deleted file mode 100644 index 2ecb54002..000000000 --- a/mail/evolution/files/patch-plugins_exchange-operations_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- plugins/exchange-operations/Makefile.in.orig 2008-04-27 23:58:09.000000000 -0400 -+++ plugins/exchange-operations/Makefile.in 2008-04-28 00:02:31.000000000 -0400 -@@ -463,6 +463,7 @@ liborg_gnome_exchange_operations_la_LIBA - $(top_builddir)/calendar/gui/libevolution-calendar.la \ - $(top_builddir)/mail/libevolution-mail.la \ - $(top_builddir)/addressbook/gui/component/libevolution-addressbook.la \ -+ -Wl,--no-as-needed,$(top_builddir)/addressbook/gui/component/.libs/libevolution-addressbook.so \ - $(CAMEL_EXCHANGE_LIBS) \ - $(EVOLUTION_MAIL_LIBS) - diff --git a/mail/evolution/files/patch-widgets_e-timezone-dialog_e-timezone-dialog.c b/mail/evolution/files/patch-widgets_e-timezone-dialog_e-timezone-dialog.c deleted file mode 100644 index 800f60386..000000000 --- a/mail/evolution/files/patch-widgets_e-timezone-dialog_e-timezone-dialog.c +++ /dev/null @@ -1,34 +0,0 @@ ---- widgets/e-timezone-dialog/e-timezone-dialog.c.orig 2007-11-30 05:24:05.000000000 +0100 -+++ widgets/e-timezone-dialog/e-timezone-dialog.c 2007-12-21 16:24:39.000000000 +0100 -@@ -82,7 +82,9 @@ - - #ifndef G_OS_WIN32 /* Declared properly in time.h already */ - extern char *tzname[2]; -+#ifndef __BSD_VISIBLE - extern long timezone; -+#endif - extern int daylight; - #endif - -@@ -326,9 +328,20 @@ - get_local_timezone(void) - { - icaltimezone *zone; -+ long offset; -+#ifdef __BSD_VISIBLE -+ time_t tt; -+ struct tm tm; -+#endif - - tzset(); -- zone = icaltimezone_get_builtin_timezone_from_offset (-timezone, tzname[0]); -+#ifdef __BSD_VISIBLE -+ localtime_r (&tt, &tm); -+ offset = tm.tm_gmtoff; -+#else -+ offset = -timezone; -+#endif -+ zone = icaltimezone_get_builtin_timezone_from_offset (offset, tzname[0]); - - return zone; - } diff --git a/mail/evolution/pkg-descr b/mail/evolution/pkg-descr deleted file mode 100644 index 068e19e1a..000000000 --- a/mail/evolution/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Ximian Evolution[tm] is the premier personal and workgroup information -management solution for UNIX. Evolution seamlessly integrates email, -calendaring, meeting scheduling, contact management and online task lists -in one powerful, fast, and easy to use application. It also delivers a -comprehensive set of features that help keep work organized and projects -on track. The unique Ximian vFolders[tm] are virtual folders used to -create and save powerful contextual views of email messages. - -WWW: http://www.gnome.org/projects/evolution/ diff --git a/mail/evolution/pkg-plist b/mail/evolution/pkg-plist deleted file mode 100644 index 9ed41eb95..000000000 --- a/mail/evolution/pkg-plist +++ /dev/null @@ -1,2184 +0,0 @@ -bin/evolution -include/evolution-%%VERSION%%/addressbook/gui/widgets/eab-config.h -include/evolution-%%VERSION%%/addressbook/gui/widgets/eab-menu.h -include/evolution-%%VERSION%%/addressbook/gui/widgets/eab-popup.h -include/evolution-%%VERSION%%/calendar/gui/dialogs/comp-editor-page.h -include/evolution-%%VERSION%%/calendar/gui/dialogs/comp-editor.h -include/evolution-%%VERSION%%/calendar/gui/e-cal-config.h -include/evolution-%%VERSION%%/calendar/gui/e-cal-popup.h -include/evolution-%%VERSION%%/calendar/gui/itip-utils.h -include/evolution-%%VERSION%%/composer/e-msg-composer.h -include/evolution-%%VERSION%%/e-conduit/e-pilot-map.h -include/evolution-%%VERSION%%/e-conduit/e-pilot-util.h -include/evolution-%%VERSION%%/e-util/e-bconf-map.h -include/evolution-%%VERSION%%/e-util/e-bit-array.h -include/evolution-%%VERSION%%/e-util/e-categories-config.h -include/evolution-%%VERSION%%/e-util/e-config-listener.h -include/evolution-%%VERSION%%/e-util/e-config.h -include/evolution-%%VERSION%%/e-util/e-corba-utils.h -include/evolution-%%VERSION%%/e-util/e-cursor.h -include/evolution-%%VERSION%%/e-util/e-dialog-utils.h -include/evolution-%%VERSION%%/e-util/e-dialog-widgets.h -include/evolution-%%VERSION%%/e-util/e-error.h -include/evolution-%%VERSION%%/e-util/e-event.h -include/evolution-%%VERSION%%/e-util/e-folder-map.h -include/evolution-%%VERSION%%/e-util/e-fsutils.h -include/evolution-%%VERSION%%/e-util/e-gui-utils.h -include/evolution-%%VERSION%%/e-util/e-html-utils.h -include/evolution-%%VERSION%%/e-util/e-icon-factory.h -include/evolution-%%VERSION%%/e-util/e-import.h -include/evolution-%%VERSION%%/e-util/e-logger.h -include/evolution-%%VERSION%%/e-util/e-menu.h -include/evolution-%%VERSION%%/e-util/e-mktemp.h -include/evolution-%%VERSION%%/e-util/e-non-intrusive-error-dialog.h -include/evolution-%%VERSION%%/e-util/e-plugin-ui.h -include/evolution-%%VERSION%%/e-util/e-plugin.h -include/evolution-%%VERSION%%/e-util/e-popup.h -include/evolution-%%VERSION%%/e-util/e-print.h -include/evolution-%%VERSION%%/e-util/e-profile-event.h -include/evolution-%%VERSION%%/e-util/e-request.h -include/evolution-%%VERSION%%/e-util/e-signature-list.h -include/evolution-%%VERSION%%/e-util/e-signature.h -include/evolution-%%VERSION%%/e-util/e-sorter-array.h -include/evolution-%%VERSION%%/e-util/e-sorter.h -include/evolution-%%VERSION%%/e-util/e-text-event-processor-emacs-like.h -include/evolution-%%VERSION%%/e-util/e-text-event-processor-types.h -include/evolution-%%VERSION%%/e-util/e-text-event-processor.h -include/evolution-%%VERSION%%/e-util/e-util-labels.h -include/evolution-%%VERSION%%/e-util/e-util-marshal.h -include/evolution-%%VERSION%%/e-util/e-util.h -include/evolution-%%VERSION%%/e-util/e-xml-utils.h -include/evolution-%%VERSION%%/mail/Evolution-Mail.h -include/evolution-%%VERSION%%/mail/em-composer-utils.h -include/evolution-%%VERSION%%/mail/em-config.h -include/evolution-%%VERSION%%/mail/em-event.h -include/evolution-%%VERSION%%/mail/em-folder-browser.h -include/evolution-%%VERSION%%/mail/em-folder-tree-model.h -include/evolution-%%VERSION%%/mail/em-folder-tree.h -include/evolution-%%VERSION%%/mail/em-folder-utils.h -include/evolution-%%VERSION%%/mail/em-folder-view.h -include/evolution-%%VERSION%%/mail/em-format-hook.h -include/evolution-%%VERSION%%/mail/em-format-html-display.h -include/evolution-%%VERSION%%/mail/em-format-html-print.h -include/evolution-%%VERSION%%/mail/em-format-html.h -include/evolution-%%VERSION%%/mail/em-format-quote.h -include/evolution-%%VERSION%%/mail/em-format.h -include/evolution-%%VERSION%%/mail/em-html-stream.h -include/evolution-%%VERSION%%/mail/em-icon-stream.h -include/evolution-%%VERSION%%/mail/em-inline-filter.h -include/evolution-%%VERSION%%/mail/em-junk-hook.h -include/evolution-%%VERSION%%/mail/em-menu.h -include/evolution-%%VERSION%%/mail/em-message-browser.h -include/evolution-%%VERSION%%/mail/em-popup.h -include/evolution-%%VERSION%%/mail/em-stripsig-filter.h -include/evolution-%%VERSION%%/mail/em-sync-stream.h -include/evolution-%%VERSION%%/mail/em-utils.h -include/evolution-%%VERSION%%/mail/mail-autofilter.h -include/evolution-%%VERSION%%/mail/mail-component.h -include/evolution-%%VERSION%%/mail/mail-config.h -include/evolution-%%VERSION%%/mail/mail-mt.h -include/evolution-%%VERSION%%/mail/mail-ops.h -include/evolution-%%VERSION%%/mail/mail-session.h -include/evolution-%%VERSION%%/mail/mail-tools.h -include/evolution-%%VERSION%%/mail/mail-vfolder.h -include/evolution-%%VERSION%%/mail/message-list.h -include/evolution-%%VERSION%%/menus/gal-define-views-dialog.h -include/evolution-%%VERSION%%/menus/gal-define-views-model.h -include/evolution-%%VERSION%%/menus/gal-view-collection.h -include/evolution-%%VERSION%%/menus/gal-view-etable.h -include/evolution-%%VERSION%%/menus/gal-view-factory-etable.h -include/evolution-%%VERSION%%/menus/gal-view-factory.h -include/evolution-%%VERSION%%/menus/gal-view-instance-save-as-dialog.h -include/evolution-%%VERSION%%/menus/gal-view-instance.h -include/evolution-%%VERSION%%/menus/gal-view-new-dialog.h -include/evolution-%%VERSION%%/menus/gal-view.h -include/evolution-%%VERSION%%/misc/e-account-combo-box.h -include/evolution-%%VERSION%%/misc/e-activity-handler.h -include/evolution-%%VERSION%%/misc/e-attachment-bar.h -include/evolution-%%VERSION%%/misc/e-attachment.h -include/evolution-%%VERSION%%/misc/e-calendar-item.h -include/evolution-%%VERSION%%/misc/e-calendar.h -include/evolution-%%VERSION%%/misc/e-canvas-background.h -include/evolution-%%VERSION%%/misc/e-canvas-utils.h -include/evolution-%%VERSION%%/misc/e-canvas-vbox.h -include/evolution-%%VERSION%%/misc/e-canvas.h -include/evolution-%%VERSION%%/misc/e-cell-date-edit.h -include/evolution-%%VERSION%%/misc/e-cell-percent.h -include/evolution-%%VERSION%%/misc/e-cell-renderer-combo.h -include/evolution-%%VERSION%%/misc/e-charset-picker.h -include/evolution-%%VERSION%%/misc/e-colors.h -include/evolution-%%VERSION%%/misc/e-combo-button.h -include/evolution-%%VERSION%%/misc/e-combo-cell-editable.h -include/evolution-%%VERSION%%/misc/e-config-page.h -include/evolution-%%VERSION%%/misc/e-cursors.h -include/evolution-%%VERSION%%/misc/e-dateedit.h -include/evolution-%%VERSION%%/misc/e-dropdown-button.h -include/evolution-%%VERSION%%/misc/e-expander.h -include/evolution-%%VERSION%%/misc/e-gui-utils.h -include/evolution-%%VERSION%%/misc/e-hsv-utils.h -include/evolution-%%VERSION%%/misc/e-icon-entry.h -include/evolution-%%VERSION%%/misc/e-image-chooser.h -include/evolution-%%VERSION%%/misc/e-info-label.h -include/evolution-%%VERSION%%/misc/e-map.h -include/evolution-%%VERSION%%/misc/e-multi-config-dialog.h -include/evolution-%%VERSION%%/misc/e-online-button.h -%%PILOT:%%include/evolution-%%VERSION%%/misc/e-pilot-settings.h -include/evolution-%%VERSION%%/misc/e-popup-menu.h -include/evolution-%%VERSION%%/misc/e-printable.h -include/evolution-%%VERSION%%/misc/e-reflow-model.h -include/evolution-%%VERSION%%/misc/e-reflow.h -include/evolution-%%VERSION%%/misc/e-search-bar.h -include/evolution-%%VERSION%%/misc/e-selection-model-array.h -include/evolution-%%VERSION%%/misc/e-selection-model-simple.h -include/evolution-%%VERSION%%/misc/e-selection-model.h -include/evolution-%%VERSION%%/misc/e-send-options.h -include/evolution-%%VERSION%%/misc/e-signature-combo-box.h -include/evolution-%%VERSION%%/misc/e-spinner.c -include/evolution-%%VERSION%%/misc/e-spinner.h -include/evolution-%%VERSION%%/misc/e-task-bar.h -include/evolution-%%VERSION%%/misc/e-task-widget.h -include/evolution-%%VERSION%%/misc/e-unicode.h -include/evolution-%%VERSION%%/misc/e-url-entry.h -include/evolution-%%VERSION%%/shell/Evolution.h -include/evolution-%%VERSION%%/shell/e-component-view.h -include/evolution-%%VERSION%%/shell/e-user-creatable-items-handler.h -include/evolution-%%VERSION%%/shell/es-event.h -include/evolution-%%VERSION%%/shell/es-menu.h -include/evolution-%%VERSION%%/shell/evolution-component.h -include/evolution-%%VERSION%%/shell/evolution-config-control.h -include/evolution-%%VERSION%%/shell/evolution-listener.h -include/evolution-%%VERSION%%/shell/evolution-shell-component-utils.h -include/evolution-%%VERSION%%/table/e-cell-checkbox.h -include/evolution-%%VERSION%%/table/e-cell-combo.h -include/evolution-%%VERSION%%/table/e-cell-date.h -include/evolution-%%VERSION%%/table/e-cell-hbox.h -include/evolution-%%VERSION%%/table/e-cell-number.h -include/evolution-%%VERSION%%/table/e-cell-pixbuf.h -include/evolution-%%VERSION%%/table/e-cell-popup.h -include/evolution-%%VERSION%%/table/e-cell-size.h -include/evolution-%%VERSION%%/table/e-cell-text.h -include/evolution-%%VERSION%%/table/e-cell-toggle.h -include/evolution-%%VERSION%%/table/e-cell-tree.h -include/evolution-%%VERSION%%/table/e-cell-vbox.h -include/evolution-%%VERSION%%/table/e-cell.h -include/evolution-%%VERSION%%/table/e-table-click-to-add.h -include/evolution-%%VERSION%%/table/e-table-col-dnd.h -include/evolution-%%VERSION%%/table/e-table-col.h -include/evolution-%%VERSION%%/table/e-table-column-specification.h -include/evolution-%%VERSION%%/table/e-table-config.h -include/evolution-%%VERSION%%/table/e-table-defines.h -include/evolution-%%VERSION%%/table/e-table-extras.h -include/evolution-%%VERSION%%/table/e-table-field-chooser-dialog.h -include/evolution-%%VERSION%%/table/e-table-field-chooser-item.h -include/evolution-%%VERSION%%/table/e-table-field-chooser.h -include/evolution-%%VERSION%%/table/e-table-group-container.h -include/evolution-%%VERSION%%/table/e-table-group-leaf.h -include/evolution-%%VERSION%%/table/e-table-group.h -include/evolution-%%VERSION%%/table/e-table-header-item.h -include/evolution-%%VERSION%%/table/e-table-header-utils.h -include/evolution-%%VERSION%%/table/e-table-header.h -include/evolution-%%VERSION%%/table/e-table-item.h -include/evolution-%%VERSION%%/table/e-table-memory-callbacks.h -include/evolution-%%VERSION%%/table/e-table-memory-store.h -include/evolution-%%VERSION%%/table/e-table-memory.h -include/evolution-%%VERSION%%/table/e-table-model.h -include/evolution-%%VERSION%%/table/e-table-one.h -include/evolution-%%VERSION%%/table/e-table-scrolled.h -include/evolution-%%VERSION%%/table/e-table-search.h -include/evolution-%%VERSION%%/table/e-table-selection-model.h -include/evolution-%%VERSION%%/table/e-table-simple.h -include/evolution-%%VERSION%%/table/e-table-sort-info.h -include/evolution-%%VERSION%%/table/e-table-sorted-variable.h -include/evolution-%%VERSION%%/table/e-table-sorted.h -include/evolution-%%VERSION%%/table/e-table-sorter.h -include/evolution-%%VERSION%%/table/e-table-sorting-utils.h -include/evolution-%%VERSION%%/table/e-table-specification.h -include/evolution-%%VERSION%%/table/e-table-state.h -include/evolution-%%VERSION%%/table/e-table-subset-variable.h -include/evolution-%%VERSION%%/table/e-table-subset.h -include/evolution-%%VERSION%%/table/e-table-tooltip.h -include/evolution-%%VERSION%%/table/e-table-utils.h -include/evolution-%%VERSION%%/table/e-table-without.h -include/evolution-%%VERSION%%/table/e-table.h -include/evolution-%%VERSION%%/table/e-tree-memory-callbacks.h -include/evolution-%%VERSION%%/table/e-tree-memory.h -include/evolution-%%VERSION%%/table/e-tree-model.h -include/evolution-%%VERSION%%/table/e-tree-scrolled.h -include/evolution-%%VERSION%%/table/e-tree-selection-model.h -include/evolution-%%VERSION%%/table/e-tree-sorted.h -include/evolution-%%VERSION%%/table/e-tree-table-adapter.h -include/evolution-%%VERSION%%/table/e-tree.h -include/evolution-%%VERSION%%/text/e-text-model-repos.h -include/evolution-%%VERSION%%/text/e-text-model.h -include/evolution-%%VERSION%%/text/e-text.h -lib/evolution/%%VERSION%%/components/libevolution-addressbook.a -lib/evolution/%%VERSION%%/components/libevolution-addressbook.la -lib/evolution/%%VERSION%%/components/libevolution-addressbook.so -lib/evolution/%%VERSION%%/components/libevolution-calendar.a -lib/evolution/%%VERSION%%/components/libevolution-calendar.la -lib/evolution/%%VERSION%%/components/libevolution-calendar.so -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libeaddress_conduit.a -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libeaddress_conduit.la -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libeaddress_conduit.so -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libecalendar_conduit.a -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libecalendar_conduit.la -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libecalendar_conduit.so -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libememo_conduit.a -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libememo_conduit.la -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libememo_conduit.so -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libetodo_conduit.a -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libetodo_conduit.la -%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libetodo_conduit.so -lib/evolution/%%VERSION%%/components/libevolution-mail.a -lib/evolution/%%VERSION%%/components/libevolution-mail.la -lib/evolution/%%VERSION%%/components/libevolution-mail.so -lib/evolution/%%VERSION%%/libeabutil.a -lib/evolution/%%VERSION%%/libeabutil.la -lib/evolution/%%VERSION%%/libeabutil.so -lib/evolution/%%VERSION%%/libeabutil.so.0 -lib/evolution/%%VERSION%%/libeconduit.a -lib/evolution/%%VERSION%%/libeconduit.la -lib/evolution/%%VERSION%%/libeconduit.so -lib/evolution/%%VERSION%%/libeconduit.so.0 -lib/evolution/%%VERSION%%/libecontacteditor.a -lib/evolution/%%VERSION%%/libecontacteditor.la -lib/evolution/%%VERSION%%/libecontacteditor.so -lib/evolution/%%VERSION%%/libecontacteditor.so.0 -lib/evolution/%%VERSION%%/libecontactlisteditor.a -lib/evolution/%%VERSION%%/libecontactlisteditor.la -lib/evolution/%%VERSION%%/libecontactlisteditor.so -lib/evolution/%%VERSION%%/libecontactlisteditor.so.0 -lib/evolution/%%VERSION%%/libefilterbar.a -lib/evolution/%%VERSION%%/libefilterbar.la -lib/evolution/%%VERSION%%/libefilterbar.so -lib/evolution/%%VERSION%%/libefilterbar.so.0 -lib/evolution/%%VERSION%%/libemiscwidgets.a -lib/evolution/%%VERSION%%/libemiscwidgets.la -lib/evolution/%%VERSION%%/libemiscwidgets.so -lib/evolution/%%VERSION%%/libemiscwidgets.so.0 -lib/evolution/%%VERSION%%/libeshell.a -lib/evolution/%%VERSION%%/libeshell.la -lib/evolution/%%VERSION%%/libeshell.so -lib/evolution/%%VERSION%%/libeshell.so.0 -lib/evolution/%%VERSION%%/libessmime.a -lib/evolution/%%VERSION%%/libessmime.la -lib/evolution/%%VERSION%%/libessmime.so -lib/evolution/%%VERSION%%/libessmime.so.0 -lib/evolution/%%VERSION%%/libetable.a -lib/evolution/%%VERSION%%/libetable.la -lib/evolution/%%VERSION%%/libetable.so -lib/evolution/%%VERSION%%/libetable.so.0 -lib/evolution/%%VERSION%%/libetext.a -lib/evolution/%%VERSION%%/libetext.la -lib/evolution/%%VERSION%%/libetext.so -lib/evolution/%%VERSION%%/libetext.so.0 -lib/evolution/%%VERSION%%/libetimezonedialog.a -lib/evolution/%%VERSION%%/libetimezonedialog.la -lib/evolution/%%VERSION%%/libetimezonedialog.so -lib/evolution/%%VERSION%%/libetimezonedialog.so.0 -lib/evolution/%%VERSION%%/libeutil.a -lib/evolution/%%VERSION%%/libeutil.la -lib/evolution/%%VERSION%%/libeutil.so -lib/evolution/%%VERSION%%/libeutil.so.0 -lib/evolution/%%VERSION%%/libevolution-a11y.a -lib/evolution/%%VERSION%%/libevolution-a11y.la -lib/evolution/%%VERSION%%/libevolution-a11y.so -lib/evolution/%%VERSION%%/libevolution-a11y.so.0 -lib/evolution/%%VERSION%%/libevolution-addressbook-a11y.a -lib/evolution/%%VERSION%%/libevolution-addressbook-a11y.la -lib/evolution/%%VERSION%%/libevolution-addressbook-a11y.so -lib/evolution/%%VERSION%%/libevolution-addressbook-a11y.so.0 -lib/evolution/%%VERSION%%/libevolution-addressbook-importers.a -lib/evolution/%%VERSION%%/libevolution-addressbook-importers.la -lib/evolution/%%VERSION%%/libevolution-addressbook-importers.so -lib/evolution/%%VERSION%%/libevolution-addressbook-importers.so.0 -lib/evolution/%%VERSION%%/libevolution-calendar-a11y.a -lib/evolution/%%VERSION%%/libevolution-calendar-a11y.la -lib/evolution/%%VERSION%%/libevolution-calendar-a11y.so -lib/evolution/%%VERSION%%/libevolution-calendar-a11y.so.0 -lib/evolution/%%VERSION%%/libevolution-calendar-importers.a -lib/evolution/%%VERSION%%/libevolution-calendar-importers.la -lib/evolution/%%VERSION%%/libevolution-calendar-importers.so -lib/evolution/%%VERSION%%/libevolution-calendar-importers.so.0 -lib/evolution/%%VERSION%%/libevolution-mail-importers.a -lib/evolution/%%VERSION%%/libevolution-mail-importers.la -lib/evolution/%%VERSION%%/libevolution-mail-importers.so -lib/evolution/%%VERSION%%/libevolution-mail-importers.so.0 -lib/evolution/%%VERSION%%/libevolution-smime.a -lib/evolution/%%VERSION%%/libevolution-smime.la -lib/evolution/%%VERSION%%/libevolution-smime.so -lib/evolution/%%VERSION%%/libevolution-smime.so.0 -lib/evolution/%%VERSION%%/libevolution-widgets-a11y.a -lib/evolution/%%VERSION%%/libevolution-widgets-a11y.la -lib/evolution/%%VERSION%%/libevolution-widgets-a11y.so -lib/evolution/%%VERSION%%/libevolution-widgets-a11y.so.0 -lib/evolution/%%VERSION%%/libfilter.a -lib/evolution/%%VERSION%%/libfilter.la -lib/evolution/%%VERSION%%/libfilter.so -lib/evolution/%%VERSION%%/libfilter.so.0 -lib/evolution/%%VERSION%%/libmenus.a -lib/evolution/%%VERSION%%/libmenus.la -lib/evolution/%%VERSION%%/libmenus.so -lib/evolution/%%VERSION%%/libmenus.so.0 -lib/evolution/%%VERSION%%/plugins/attachment-reminder.glade -lib/evolution/%%VERSION%%/plugins/libmail-account-disable.a -lib/evolution/%%VERSION%%/plugins/libmail-account-disable.la -lib/evolution/%%VERSION%%/plugins/libmail-account-disable.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-file.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-file.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-file.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-backup-restore.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-backup-restore.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-backup-restore.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-bogo-junk-plugin.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-bogo-junk-plugin.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-bogo-junk-plugin.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-file.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-file.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-file.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-http.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-http.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-http.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-weather.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-weather.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-weather.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-copy-tool.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-copy-tool.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-copy-tool.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-mailer.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-mailer.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-mailer.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-source.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-source.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-source.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-email-custom-header.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-email-custom-header.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-email-custom-header.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-attachment-reminder.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-attachment-reminder.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-attachment-reminder.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-bbdb.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-bbdb.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-bbdb.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-caldav.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-caldav.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-caldav.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-google.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-google.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-google.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-mail-attachments-import-ics.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-mail-attachments-import-ics.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-mail-attachments-import-ics.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-startup-wizard.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-startup-wizard.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-startup-wizard.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-webdav.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-webdav.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-webdav.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-exchange-operations.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-exchange-operations.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-exchange-operations.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-face.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-face.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-face.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-groupwise-features.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-groupwise-features.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-groupwise-features.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-gw-account-setup.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-gw-account-setup.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-gw-account-setup.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-imap-features.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-imap-features.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-imap-features.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-itip-formatter.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-itip-formatter.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-itip-formatter.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-notification.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-notification.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-notification.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-to-task.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-to-task.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-to-task.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mailing-list-actions.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mailing-list-actions.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mailing-list-actions.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mark-all-read.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mark-all-read.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-mark-all-read.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-plugin-manager.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-plugin-manager.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-plugin-manager.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-prefer-plain.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-prefer-plain.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-prefer-plain.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-publish-calendar.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-publish-calendar.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-publish-calendar.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-sa-junk-plugin.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-sa-junk-plugin.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-sa-junk-plugin.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-calendar.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-calendar.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-calendar.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-select-one-source.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-select-one-source.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-select-one-source.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-subject-thread.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-subject-thread.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-subject-thread.so -lib/evolution/%%VERSION%%/plugins/liborg-gnome-templates.a -lib/evolution/%%VERSION%%/plugins/liborg-gnome-templates.la -lib/evolution/%%VERSION%%/plugins/liborg-gnome-templates.so -lib/evolution/%%VERSION%%/plugins/org-gnome-addressbook-file.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-backup-restore.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-backup-restore.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-bogo-junk-plugin.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-file.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-http.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-weather.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-compose-send-options.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-copy-tool.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-default-mailer.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-default-source.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-email-custom-header.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-attachment-reminder.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-bbdb.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-caldav.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-google.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-mail-attachments-import-ics.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-startup-wizard.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-webdav.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-exchange-ab-subscription.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-exchange-cal-subscription.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-exchange-operations.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-exchange-tasks-subscription.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-face.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-folder-permissions.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-folder-subscription.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-groupwise-features.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-gw-account-setup.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-imap-features.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-itip-formatter.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-mail-account-disable.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-mail-notification.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-mail-to-task.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-mail-to-task.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-mailing-list-actions.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-mailing-list-actions.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-mark-all-read.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-plugin-manager.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-plugin-manager.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-prefer-plain.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-publish-calendar.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-publish-calendar.xml -lib/evolution/%%VERSION%%/plugins/org-gnome-sa-junk-plugin.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-save-calendar.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-select-one-source.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-subject-thread.eplug -lib/evolution/%%VERSION%%/plugins/org-gnome-templates.eplug -lib/evolution/%%VERSION%%/plugins/templates.glade -libdata/bonobo/servers/GNOME_Evolution_Addressbook.server -libdata/bonobo/servers/GNOME_Evolution_Calendar.server -libdata/bonobo/servers/GNOME_Evolution_Calendar_AlarmNotify.server -libdata/bonobo/servers/GNOME_Evolution_Mail.server -libdata/bonobo/servers/GNOME_Evolution_Shell.server -libdata/pkgconfig/evolution-plugin.pc -libdata/pkgconfig/evolution-shell.pc -libexec/evolution/%%VERSION%%/csv2vcard -libexec/evolution/%%VERSION%%/evolution-addressbook-clean -libexec/evolution/%%VERSION%%/evolution-addressbook-export -libexec/evolution/%%VERSION%%/evolution-alarm-notify -libexec/evolution/%%VERSION%%/evolution-backup -libexec/evolution/%%VERSION%%/killev -share/applications/evolution.desktop -%%DATADIR%%/%%VERSION%%/addresstypes.xml -%%DATADIR%%/%%VERSION%%/caltypes.xml -%%DATADIR%%/%%VERSION%%/default/C/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/ca/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/cs/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/de/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/es/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/fi/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/fr/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/hu/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/it/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/ja/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/ko/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/lt/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/mk/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/nl/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/pl/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/pt/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/sr/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/sr@latin/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/sv/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/default/zh_CN/mail/local/Inbox -%%DATADIR%%/%%VERSION%%/ecps/medbook.ecps -%%DATADIR%%/%%VERSION%%/ecps/phonelist.ecps -%%DATADIR%%/%%VERSION%%/ecps/smallbook.ecps -%%DATADIR%%/%%VERSION%%/errors/addressbook.error -%%DATADIR%%/%%VERSION%%/errors/calendar.error -%%DATADIR%%/%%VERSION%%/errors/e-system.error -%%DATADIR%%/%%VERSION%%/errors/filter.error -%%DATADIR%%/%%VERSION%%/errors/mail-composer.error -%%DATADIR%%/%%VERSION%%/errors/mail.error -%%DATADIR%%/%%VERSION%%/errors/org-gnome-attachment-reminder.error -%%DATADIR%%/%%VERSION%%/errors/org-gnome-backup-restore.error -%%DATADIR%%/%%VERSION%%/errors/org-gnome-default-mailer.error -%%DATADIR%%/%%VERSION%%/errors/org-gnome-exchange-operations.error -%%DATADIR%%/%%VERSION%%/errors/org-gnome-face.errors.xml -%%DATADIR%%/%%VERSION%%/errors/org-gnome-itip-formatter.error -%%DATADIR%%/%%VERSION%%/errors/org-gnome-mail-retract-errors.xml -%%DATADIR%%/%%VERSION%%/errors/org-gnome-mailing-list-actions.error -%%DATADIR%%/%%VERSION%%/errors/org-gnome-proxy-errors.xml -%%DATADIR%%/%%VERSION%%/errors/org-gnome-proxy-login-errors.xml -%%DATADIR%%/%%VERSION%%/errors/org-gnome-shared-folder.errors.xml -%%DATADIR%%/%%VERSION%%/errors/shell.error -%%DATADIR%%/%%VERSION%%/etspec/e-addressbook-view.etspec -%%DATADIR%%/%%VERSION%%/etspec/e-cal-list-view.etspec -%%DATADIR%%/%%VERSION%%/etspec/e-calendar-table.etspec -%%DATADIR%%/%%VERSION%%/etspec/e-meeting-time-sel.etspec -%%DATADIR%%/%%VERSION%%/etspec/e-memo-table.etspec -%%DATADIR%%/%%VERSION%%/etspec/message-list.etspec -%%DATADIR%%/%%VERSION%%/filtertypes.xml -%%DATADIR%%/%%VERSION%%/glade/alarm-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/alarm-list-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/alarm-notify.glade -%%DATADIR%%/%%VERSION%%/glade/cal-prefs-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/contact-editor.glade -%%DATADIR%%/%%VERSION%%/glade/contact-list-editor.glade -%%DATADIR%%/%%VERSION%%/glade/e-active-connection-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/e-attachment.glade -%%DATADIR%%/%%VERSION%%/glade/e-contact-print.glade -%%DATADIR%%/%%VERSION%%/glade/e-delegate-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/e-foreign-folder-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/e-itip-control.glade -%%DATADIR%%/%%VERSION%%/glade/e-send-options.glade -%%DATADIR%%/%%VERSION%%/glade/e-table-config.glade -%%DATADIR%%/%%VERSION%%/glade/e-table-field-chooser.glade -%%DATADIR%%/%%VERSION%%/glade/e-timezone-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/eab-contact-commit-duplicate-detected.glade -%%DATADIR%%/%%VERSION%%/glade/eab-contact-duplicate-detected.glade -%%DATADIR%%/%%VERSION%%/glade/email-custom-header.glade -%%DATADIR%%/%%VERSION%%/glade/event-page.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-change-password.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-delegates.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-folder-tree.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-oof.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-passwd-expiry.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-permissions-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/exchange-send-options.glade -%%DATADIR%%/%%VERSION%%/glade/filter.glade -%%DATADIR%%/%%VERSION%%/glade/fulladdr.glade -%%DATADIR%%/%%VERSION%%/glade/fullname.glade -%%DATADIR%%/%%VERSION%%/glade/gal-categories.glade -%%DATADIR%%/%%VERSION%%/glade/gal-define-views.glade -%%DATADIR%%/%%VERSION%%/glade/gal-view-instance-save-as-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/gal-view-new-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/goto-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/im.glade -%%DATADIR%%/%%VERSION%%/glade/imap-headers.glade -%%DATADIR%%/%%VERSION%%/glade/import.glade -%%DATADIR%%/%%VERSION%%/glade/junk-settings.glade -%%DATADIR%%/%%VERSION%%/glade/ldap-config.glade -%%DATADIR%%/%%VERSION%%/glade/mail-config.glade -%%DATADIR%%/%%VERSION%%/glade/mail-dialogs.glade -%%DATADIR%%/%%VERSION%%/glade/meeting-page.glade -%%DATADIR%%/%%VERSION%%/glade/memo-page.glade -%%DATADIR%%/%%VERSION%%/glade/org-gnome-email-custom-header.glade -%%DATADIR%%/%%VERSION%%/glade/properties.glade -%%DATADIR%%/%%VERSION%%/glade/proxy-add-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/proxy-listing.glade -%%DATADIR%%/%%VERSION%%/glade/proxy-login-dialog.glade -%%DATADIR%%/%%VERSION%%/glade/publish-calendar.glade -%%DATADIR%%/%%VERSION%%/glade/recurrence-page.glade -%%DATADIR%%/%%VERSION%%/glade/schedule-page.glade -%%DATADIR%%/%%VERSION%%/glade/smime-ui.glade -%%DATADIR%%/%%VERSION%%/glade/task-details-page.glade -%%DATADIR%%/%%VERSION%%/glade/task-page.glade -%%DATADIR%%/%%VERSION%%/help/quickref/C/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/ca/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/cs/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/de/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/es/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/fr/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/hu/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/it/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/pl/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/pt/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/sq/quickref.pdf -%%DATADIR%%/%%VERSION%%/help/quickref/sv/quickref.pdf -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/folder-copy.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/folder-move.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/go-today.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/mail-copy.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/mail-move.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-day.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-list.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-month.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-week.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions/view-calendar-workweek.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/apps/contact-editor.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places/mail-inbox.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places/mail-outbox.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places/mail-sent.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/go-today.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-day.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-list.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-month.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-week.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions/view-calendar-workweek.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/apps/contact-editor.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places/mail-inbox.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places/mail-outbox.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places/mail-sent.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/go-today.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/query-free-busy.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-day.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-list.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-month.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-week.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions/view-calendar-workweek.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/apps/contact-editor.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places/mail-inbox.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places/mail-outbox.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places/mail-sent.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-day.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-list.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-month.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-week.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions/view-calendar-workweek.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/apps/contact-editor.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/status/offline.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/status/online.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/apps/contact-editor.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-autocompletion.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-calendar-and-tasks.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-certificates.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-composer.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-mail-accounts.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-mail.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories/preferences-system-network-proxy.png -%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-day.svg -%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-list.svg -%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-month.svg -%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-week.svg -%%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions/view-calendar-workweek.svg -%%DATADIR%%/%%VERSION%%/images/minus.png -%%DATADIR%%/%%VERSION%%/images/plus.png -%%DATADIR%%/%%VERSION%%/images/world_map-960.png -%%DATADIR%%/%%VERSION%%/memotypes.xml -%%DATADIR%%/%%VERSION%%/searchtypes.xml -%%DATADIR%%/%%VERSION%%/sounds/default_alarm.wav -%%DATADIR%%/%%VERSION%%/tasktypes.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-addressbook.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-calendar.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-composer.ui -%%DATADIR%%/%%VERSION%%/ui/evolution-mail-global.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-mail-list.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-mail-message.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-mail-messagedisplay.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-memos.xml -%%DATADIR%%/%%VERSION%%/ui/evolution-tasks.xml -%%DATADIR%%/%%VERSION%%/ui/evolution.xml -%%DATADIR%%/%%VERSION%%/vfoldertypes.xml -%%DATADIR%%/%%VERSION%%/views/addressbook/Address_Cards.galview -%%DATADIR%%/%%VERSION%%/views/addressbook/By_Company.galview -%%DATADIR%%/%%VERSION%%/views/addressbook/Phone_List.galview -%%DATADIR%%/%%VERSION%%/views/addressbook/galview.xml -%%DATADIR%%/%%VERSION%%/views/calendar/List_View.galview -%%DATADIR%%/%%VERSION%%/views/calendar/galview.xml -%%DATADIR%%/%%VERSION%%/views/mail/As_Sent_Folder.galview -%%DATADIR%%/%%VERSION%%/views/mail/By_Follow_Up_Flag.galview -%%DATADIR%%/%%VERSION%%/views/mail/By_Sender.galview -%%DATADIR%%/%%VERSION%%/views/mail/By_Status.galview -%%DATADIR%%/%%VERSION%%/views/mail/By_Subject.galview -%%DATADIR%%/%%VERSION%%/views/mail/Messages.galview -%%DATADIR%%/%%VERSION%%/views/mail/Wide_View_Normal.galview -%%DATADIR%%/%%VERSION%%/views/mail/Wide_View_Sent.galview -%%DATADIR%%/%%VERSION%%/views/mail/galview.xml -%%DATADIR%%/%%VERSION%%/views/memos/Memos.galview -%%DATADIR%%/%%VERSION%%/views/memos/galview.xml -%%DATADIR%%/%%VERSION%%/views/tasks/Tasks.galview -%%DATADIR%%/%%VERSION%%/views/tasks/With_DueDate.galview -%%DATADIR%%/%%VERSION%%/views/tasks/With_Status.galview -%%DATADIR%%/%%VERSION%%/views/tasks/galview.xml -%%DATADIR%%/%%VERSION%%/weather/category_weather_cloudy_16.png -%%DATADIR%%/%%VERSION%%/weather/category_weather_fog_16.png -%%DATADIR%%/%%VERSION%%/weather/category_weather_partly_cloudy_16.png -%%DATADIR%%/%%VERSION%%/weather/category_weather_rain_16.png -%%DATADIR%%/%%VERSION%%/weather/category_weather_snow_16.png -%%DATADIR%%/%%VERSION%%/weather/category_weather_sun_16.png -%%DATADIR%%/%%VERSION%%/weather/category_weather_tstorm_16.png -share/gnome/help/evolution/C/evolution.xml -share/gnome/help/evolution/C/figures/account_editor_a.png -share/gnome/help/evolution/C/figures/attach_reminder_a.png -share/gnome/help/evolution/C/figures/categories_a.png -share/gnome/help/evolution/C/figures/collap_head_a.png -share/gnome/help/evolution/C/figures/config-cal.png -share/gnome/help/evolution/C/figures/config-mail.png -share/gnome/help/evolution/C/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/C/figures/delgt-add.png -share/gnome/help/evolution/C/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/C/figures/evo_account_editor_a.png -share/gnome/help/evolution/C/figures/evo_adv_search_a.png -share/gnome/help/evolution/C/figures/evo_allday_a.png -share/gnome/help/evolution/C/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/C/figures/evo_backup.png -share/gnome/help/evolution/C/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/C/figures/evo_backup_warning.png -share/gnome/help/evolution/C/figures/evo_blink.png -share/gnome/help/evolution/C/figures/evo_cal_a.png -share/gnome/help/evolution/C/figures/evo_cal_advsearch.png -share/gnome/help/evolution/C/figures/evo_cal_callout_a.png -share/gnome/help/evolution/C/figures/evo_cal_prop_a.png -share/gnome/help/evolution/C/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/C/figures/evo_calstatus_a.png -share/gnome/help/evolution/C/figures/evo_caltasks_a.png -share/gnome/help/evolution/C/figures/evo_contacteditor_a.png -share/gnome/help/evolution/C/figures/evo_crash_recovery.png -share/gnome/help/evolution/C/figures/evo_custom_header.png -share/gnome/help/evolution/C/figures/evo_debuglogs_a.png -share/gnome/help/evolution/C/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/C/figures/evo_dialog-info.png -share/gnome/help/evolution/C/figures/evo_dialog-warning.png -share/gnome/help/evolution/C/figures/evo_edit_rule_a.png -share/gnome/help/evolution/C/figures/evo_edit_search.png -share/gnome/help/evolution/C/figures/evo_exchng_mapi.png -share/gnome/help/evolution/C/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/C/figures/evo_gwreceive_a.png -share/gnome/help/evolution/C/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/C/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/C/figures/evo_gwstatustrack.png -share/gnome/help/evolution/C/figures/evo_identity_a.png -share/gnome/help/evolution/C/figures/evo_identityedit_a.png -share/gnome/help/evolution/C/figures/evo_imapheader_a.png -share/gnome/help/evolution/C/figures/evo_imapreceive_a.png -share/gnome/help/evolution/C/figures/evo_import.png -share/gnome/help/evolution/C/figures/evo_import_asst_a.png -share/gnome/help/evolution/C/figures/evo_junk_a.png -share/gnome/help/evolution/C/figures/evo_label_a.png -share/gnome/help/evolution/C/figures/evo_labels_a.png -share/gnome/help/evolution/C/figures/evo_mail_a.png -share/gnome/help/evolution/C/figures/evo_mail_callout_a.png -share/gnome/help/evolution/C/figures/evo_mail_notifier.png -share/gnome/help/evolution/C/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/C/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/C/figures/evo_memo_a.png -share/gnome/help/evolution/C/figures/evo_mereceive_a.png -share/gnome/help/evolution/C/figures/evo_message_filters_a.png -share/gnome/help/evolution/C/figures/evo_mhreceive_a.png -share/gnome/help/evolution/C/figures/evo_newmail.png -share/gnome/help/evolution/C/figures/evo_newmess_a.png -share/gnome/help/evolution/C/figures/evo_offline.png -share/gnome/help/evolution/C/figures/evo_popreceive_a.png -share/gnome/help/evolution/C/figures/evo_proxyadd_a.png -share/gnome/help/evolution/C/figures/evo_receive_setup_a.png -share/gnome/help/evolution/C/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/C/figures/evo_rule_a.png -share/gnome/help/evolution/C/figures/evo_select_add_folder.png -share/gnome/help/evolution/C/figures/evo_select_folder.png -share/gnome/help/evolution/C/figures/evo_send_option_a.png -share/gnome/help/evolution/C/figures/evo_send_setup_a.png -share/gnome/help/evolution/C/figures/evo_sendstatus_a.png -share/gnome/help/evolution/C/figures/evo_shd_memo_a.png -share/gnome/help/evolution/C/figures/evo_timezone_a.png -share/gnome/help/evolution/C/figures/evo_usereceive_a.png -share/gnome/help/evolution/C/figures/exchg-identity.png -share/gnome/help/evolution/C/figures/exchng-identity.png -share/gnome/help/evolution/C/figures/exchng-rec-mail.png -share/gnome/help/evolution/C/figures/exchng-rec-mails.png -share/gnome/help/evolution/C/figures/exchng-rec-option.png -share/gnome/help/evolution/C/figures/exchng-rec-options.png -share/gnome/help/evolution/C/figures/exchng-settings.png -share/gnome/help/evolution/C/figures/filter-new-fig.png -share/gnome/help/evolution/C/figures/free_busy.png -share/gnome/help/evolution/C/figures/google_cal_view.png -share/gnome/help/evolution/C/figures/mail-threaded.png -share/gnome/help/evolution/C/figures/mailer_preferences.png -share/gnome/help/evolution/C/figures/minus.png -share/gnome/help/evolution/C/figures/plus.png -share/gnome/help/evolution/C/figures/proxy-cal.png -share/gnome/help/evolution/C/figures/proxy-login.png -share/gnome/help/evolution/C/figures/quick_add_a.png -share/gnome/help/evolution/C/figures/quick_reference.png -share/gnome/help/evolution/C/figures/stock_search.png -share/gnome/help/evolution/C/figures/sub-others-folder.png -share/gnome/help/evolution/C/figures/sub-pub-fold.png -share/gnome/help/evolution/C/figures/ver_view_a.png -share/gnome/help/evolution/cs/evolution.xml -share/gnome/help/evolution/cs/figures/account_editor_a.png -share/gnome/help/evolution/cs/figures/attach_reminder_a.png -share/gnome/help/evolution/cs/figures/categories_a.png -share/gnome/help/evolution/cs/figures/collap_head_a.png -share/gnome/help/evolution/cs/figures/config-cal.png -share/gnome/help/evolution/cs/figures/config-mail.png -share/gnome/help/evolution/cs/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/cs/figures/delgt-add.png -share/gnome/help/evolution/cs/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/cs/figures/evo_account_editor_a.png -share/gnome/help/evolution/cs/figures/evo_adv_search_a.png -share/gnome/help/evolution/cs/figures/evo_allday_a.png -share/gnome/help/evolution/cs/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/cs/figures/evo_backup.png -share/gnome/help/evolution/cs/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/cs/figures/evo_backup_warning.png -share/gnome/help/evolution/cs/figures/evo_blink.png -share/gnome/help/evolution/cs/figures/evo_cal_a.png -share/gnome/help/evolution/cs/figures/evo_cal_advsearch.png -share/gnome/help/evolution/cs/figures/evo_cal_callout_a.png -share/gnome/help/evolution/cs/figures/evo_cal_prop_a.png -share/gnome/help/evolution/cs/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/cs/figures/evo_calstatus_a.png -share/gnome/help/evolution/cs/figures/evo_caltasks_a.png -share/gnome/help/evolution/cs/figures/evo_contacteditor_a.png -share/gnome/help/evolution/cs/figures/evo_crash_recovery.png -share/gnome/help/evolution/cs/figures/evo_custom_header.png -share/gnome/help/evolution/cs/figures/evo_debuglogs_a.png -share/gnome/help/evolution/cs/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/cs/figures/evo_dialog-info.png -share/gnome/help/evolution/cs/figures/evo_dialog-warning.png -share/gnome/help/evolution/cs/figures/evo_edit_rule_a.png -share/gnome/help/evolution/cs/figures/evo_edit_search.png -share/gnome/help/evolution/cs/figures/evo_exchng_mapi.png -share/gnome/help/evolution/cs/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/cs/figures/evo_gwreceive_a.png -share/gnome/help/evolution/cs/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/cs/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/cs/figures/evo_gwstatustrack.png -share/gnome/help/evolution/cs/figures/evo_identity_a.png -share/gnome/help/evolution/cs/figures/evo_identityedit_a.png -share/gnome/help/evolution/cs/figures/evo_imapheader_a.png -share/gnome/help/evolution/cs/figures/evo_imapreceive_a.png -share/gnome/help/evolution/cs/figures/evo_import.png -share/gnome/help/evolution/cs/figures/evo_import_asst_a.png -share/gnome/help/evolution/cs/figures/evo_junk_a.png -share/gnome/help/evolution/cs/figures/evo_label_a.png -share/gnome/help/evolution/cs/figures/evo_labels_a.png -share/gnome/help/evolution/cs/figures/evo_mail_a.png -share/gnome/help/evolution/cs/figures/evo_mail_callout_a.png -share/gnome/help/evolution/cs/figures/evo_mail_notifier.png -share/gnome/help/evolution/cs/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/cs/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/cs/figures/evo_memo_a.png -share/gnome/help/evolution/cs/figures/evo_mereceive_a.png -share/gnome/help/evolution/cs/figures/evo_message_filters_a.png -share/gnome/help/evolution/cs/figures/evo_mhreceive_a.png -share/gnome/help/evolution/cs/figures/evo_newmail.png -share/gnome/help/evolution/cs/figures/evo_newmess_a.png -share/gnome/help/evolution/cs/figures/evo_offline.png -share/gnome/help/evolution/cs/figures/evo_popreceive_a.png -share/gnome/help/evolution/cs/figures/evo_proxyadd_a.png -share/gnome/help/evolution/cs/figures/evo_receive_setup_a.png -share/gnome/help/evolution/cs/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/cs/figures/evo_rule_a.png -share/gnome/help/evolution/cs/figures/evo_select_add_folder.png -share/gnome/help/evolution/cs/figures/evo_select_folder.png -share/gnome/help/evolution/cs/figures/evo_send_option_a.png -share/gnome/help/evolution/cs/figures/evo_send_setup_a.png -share/gnome/help/evolution/cs/figures/evo_sendstatus_a.png -share/gnome/help/evolution/cs/figures/evo_shd_memo_a.png -share/gnome/help/evolution/cs/figures/evo_timezone_a.png -share/gnome/help/evolution/cs/figures/evo_usereceive_a.png -share/gnome/help/evolution/cs/figures/exchg-identity.png -share/gnome/help/evolution/cs/figures/exchng-identity.png -share/gnome/help/evolution/cs/figures/exchng-rec-mail.png -share/gnome/help/evolution/cs/figures/exchng-rec-mails.png -share/gnome/help/evolution/cs/figures/exchng-rec-option.png -share/gnome/help/evolution/cs/figures/exchng-rec-options.png -share/gnome/help/evolution/cs/figures/exchng-settings.png -share/gnome/help/evolution/cs/figures/filter-new-fig.png -share/gnome/help/evolution/cs/figures/free_busy.png -share/gnome/help/evolution/cs/figures/google_cal_view.png -share/gnome/help/evolution/cs/figures/mail-threaded.png -share/gnome/help/evolution/cs/figures/mailer_preferences.png -share/gnome/help/evolution/cs/figures/minus.png -share/gnome/help/evolution/cs/figures/plus.png -share/gnome/help/evolution/cs/figures/proxy-cal.png -share/gnome/help/evolution/cs/figures/proxy-login.png -share/gnome/help/evolution/cs/figures/quick_add_a.png -share/gnome/help/evolution/cs/figures/quick_reference.png -share/gnome/help/evolution/cs/figures/stock_search.png -share/gnome/help/evolution/cs/figures/sub-others-folder.png -share/gnome/help/evolution/cs/figures/sub-pub-fold.png -share/gnome/help/evolution/cs/figures/ver_view_a.png -share/gnome/help/evolution/de/evolution.xml -share/gnome/help/evolution/de/figures/account_editor_a.png -share/gnome/help/evolution/de/figures/attach_reminder_a.png -share/gnome/help/evolution/de/figures/categories_a.png -share/gnome/help/evolution/de/figures/collap_head_a.png -share/gnome/help/evolution/de/figures/config-cal.png -share/gnome/help/evolution/de/figures/config-mail.png -share/gnome/help/evolution/de/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/de/figures/delgt-add.png -share/gnome/help/evolution/de/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/de/figures/evo_account_editor_a.png -share/gnome/help/evolution/de/figures/evo_adv_search_a.png -share/gnome/help/evolution/de/figures/evo_allday_a.png -share/gnome/help/evolution/de/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/de/figures/evo_backup.png -share/gnome/help/evolution/de/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/de/figures/evo_backup_warning.png -share/gnome/help/evolution/de/figures/evo_blink.png -share/gnome/help/evolution/de/figures/evo_cal_a.png -share/gnome/help/evolution/de/figures/evo_cal_advsearch.png -share/gnome/help/evolution/de/figures/evo_cal_callout_a.png -share/gnome/help/evolution/de/figures/evo_cal_prop_a.png -share/gnome/help/evolution/de/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/de/figures/evo_calstatus_a.png -share/gnome/help/evolution/de/figures/evo_caltasks_a.png -share/gnome/help/evolution/de/figures/evo_contacteditor_a.png -share/gnome/help/evolution/de/figures/evo_crash_recovery.png -share/gnome/help/evolution/de/figures/evo_custom_header.png -share/gnome/help/evolution/de/figures/evo_debuglogs_a.png -share/gnome/help/evolution/de/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/de/figures/evo_dialog-info.png -share/gnome/help/evolution/de/figures/evo_dialog-warning.png -share/gnome/help/evolution/de/figures/evo_edit_rule_a.png -share/gnome/help/evolution/de/figures/evo_edit_search.png -share/gnome/help/evolution/de/figures/evo_exchng_mapi.png -share/gnome/help/evolution/de/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/de/figures/evo_gwreceive_a.png -share/gnome/help/evolution/de/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/de/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/de/figures/evo_gwstatustrack.png -share/gnome/help/evolution/de/figures/evo_identity_a.png -share/gnome/help/evolution/de/figures/evo_identityedit_a.png -share/gnome/help/evolution/de/figures/evo_imapheader_a.png -share/gnome/help/evolution/de/figures/evo_imapreceive_a.png -share/gnome/help/evolution/de/figures/evo_import.png -share/gnome/help/evolution/de/figures/evo_import_asst_a.png -share/gnome/help/evolution/de/figures/evo_junk_a.png -share/gnome/help/evolution/de/figures/evo_label_a.png -share/gnome/help/evolution/de/figures/evo_labels_a.png -share/gnome/help/evolution/de/figures/evo_mail_a.png -share/gnome/help/evolution/de/figures/evo_mail_callout_a.png -share/gnome/help/evolution/de/figures/evo_mail_notifier.png -share/gnome/help/evolution/de/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/de/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/de/figures/evo_memo_a.png -share/gnome/help/evolution/de/figures/evo_mereceive_a.png -share/gnome/help/evolution/de/figures/evo_message_filters_a.png -share/gnome/help/evolution/de/figures/evo_mhreceive_a.png -share/gnome/help/evolution/de/figures/evo_newmail.png -share/gnome/help/evolution/de/figures/evo_newmess_a.png -share/gnome/help/evolution/de/figures/evo_offline.png -share/gnome/help/evolution/de/figures/evo_popreceive_a.png -share/gnome/help/evolution/de/figures/evo_proxyadd_a.png -share/gnome/help/evolution/de/figures/evo_receive_setup_a.png -share/gnome/help/evolution/de/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/de/figures/evo_rule_a.png -share/gnome/help/evolution/de/figures/evo_select_add_folder.png -share/gnome/help/evolution/de/figures/evo_select_folder.png -share/gnome/help/evolution/de/figures/evo_send_option_a.png -share/gnome/help/evolution/de/figures/evo_send_setup_a.png -share/gnome/help/evolution/de/figures/evo_sendstatus_a.png -share/gnome/help/evolution/de/figures/evo_shd_memo_a.png -share/gnome/help/evolution/de/figures/evo_timezone_a.png -share/gnome/help/evolution/de/figures/evo_usereceive_a.png -share/gnome/help/evolution/de/figures/exchg-identity.png -share/gnome/help/evolution/de/figures/exchng-identity.png -share/gnome/help/evolution/de/figures/exchng-rec-mail.png -share/gnome/help/evolution/de/figures/exchng-rec-mails.png -share/gnome/help/evolution/de/figures/exchng-rec-option.png -share/gnome/help/evolution/de/figures/exchng-rec-options.png -share/gnome/help/evolution/de/figures/exchng-settings.png -share/gnome/help/evolution/de/figures/filter-new-fig.png -share/gnome/help/evolution/de/figures/free_busy.png -share/gnome/help/evolution/de/figures/google_cal_view.png -share/gnome/help/evolution/de/figures/mail-threaded.png -share/gnome/help/evolution/de/figures/mailer_preferences.png -share/gnome/help/evolution/de/figures/minus.png -share/gnome/help/evolution/de/figures/plus.png -share/gnome/help/evolution/de/figures/proxy-cal.png -share/gnome/help/evolution/de/figures/proxy-login.png -share/gnome/help/evolution/de/figures/quick_add_a.png -share/gnome/help/evolution/de/figures/quick_reference.png -share/gnome/help/evolution/de/figures/stock_search.png -share/gnome/help/evolution/de/figures/sub-others-folder.png -share/gnome/help/evolution/de/figures/sub-pub-fold.png -share/gnome/help/evolution/de/figures/ver_view_a.png -share/gnome/help/evolution/el/evolution.xml -share/gnome/help/evolution/el/figures/account_editor_a.png -share/gnome/help/evolution/el/figures/attach_reminder_a.png -share/gnome/help/evolution/el/figures/categories_a.png -share/gnome/help/evolution/el/figures/collap_head_a.png -share/gnome/help/evolution/el/figures/config-cal.png -share/gnome/help/evolution/el/figures/config-mail.png -share/gnome/help/evolution/el/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/el/figures/delgt-add.png -share/gnome/help/evolution/el/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/el/figures/evo_account_editor_a.png -share/gnome/help/evolution/el/figures/evo_adv_search_a.png -share/gnome/help/evolution/el/figures/evo_allday_a.png -share/gnome/help/evolution/el/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/el/figures/evo_backup.png -share/gnome/help/evolution/el/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/el/figures/evo_backup_warning.png -share/gnome/help/evolution/el/figures/evo_blink.png -share/gnome/help/evolution/el/figures/evo_cal_a.png -share/gnome/help/evolution/el/figures/evo_cal_advsearch.png -share/gnome/help/evolution/el/figures/evo_cal_callout_a.png -share/gnome/help/evolution/el/figures/evo_cal_prop_a.png -share/gnome/help/evolution/el/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/el/figures/evo_calstatus_a.png -share/gnome/help/evolution/el/figures/evo_caltasks_a.png -share/gnome/help/evolution/el/figures/evo_contacteditor_a.png -share/gnome/help/evolution/el/figures/evo_crash_recovery.png -share/gnome/help/evolution/el/figures/evo_custom_header.png -share/gnome/help/evolution/el/figures/evo_debuglogs_a.png -share/gnome/help/evolution/el/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/el/figures/evo_dialog-info.png -share/gnome/help/evolution/el/figures/evo_dialog-warning.png -share/gnome/help/evolution/el/figures/evo_edit_rule_a.png -share/gnome/help/evolution/el/figures/evo_edit_search.png -share/gnome/help/evolution/el/figures/evo_exchng_mapi.png -share/gnome/help/evolution/el/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/el/figures/evo_gwreceive_a.png -share/gnome/help/evolution/el/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/el/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/el/figures/evo_gwstatustrack.png -share/gnome/help/evolution/el/figures/evo_identity_a.png -share/gnome/help/evolution/el/figures/evo_identityedit_a.png -share/gnome/help/evolution/el/figures/evo_imapheader_a.png -share/gnome/help/evolution/el/figures/evo_imapreceive_a.png -share/gnome/help/evolution/el/figures/evo_import.png -share/gnome/help/evolution/el/figures/evo_import_asst_a.png -share/gnome/help/evolution/el/figures/evo_junk_a.png -share/gnome/help/evolution/el/figures/evo_label_a.png -share/gnome/help/evolution/el/figures/evo_labels_a.png -share/gnome/help/evolution/el/figures/evo_mail_a.png -share/gnome/help/evolution/el/figures/evo_mail_callout_a.png -share/gnome/help/evolution/el/figures/evo_mail_notifier.png -share/gnome/help/evolution/el/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/el/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/el/figures/evo_memo_a.png -share/gnome/help/evolution/el/figures/evo_mereceive_a.png -share/gnome/help/evolution/el/figures/evo_message_filters_a.png -share/gnome/help/evolution/el/figures/evo_mhreceive_a.png -share/gnome/help/evolution/el/figures/evo_newmail.png -share/gnome/help/evolution/el/figures/evo_newmess_a.png -share/gnome/help/evolution/el/figures/evo_offline.png -share/gnome/help/evolution/el/figures/evo_popreceive_a.png -share/gnome/help/evolution/el/figures/evo_proxyadd_a.png -share/gnome/help/evolution/el/figures/evo_receive_setup_a.png -share/gnome/help/evolution/el/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/el/figures/evo_rule_a.png -share/gnome/help/evolution/el/figures/evo_select_add_folder.png -share/gnome/help/evolution/el/figures/evo_select_folder.png -share/gnome/help/evolution/el/figures/evo_send_option_a.png -share/gnome/help/evolution/el/figures/evo_send_setup_a.png -share/gnome/help/evolution/el/figures/evo_sendstatus_a.png -share/gnome/help/evolution/el/figures/evo_shd_memo_a.png -share/gnome/help/evolution/el/figures/evo_timezone_a.png -share/gnome/help/evolution/el/figures/evo_usereceive_a.png -share/gnome/help/evolution/el/figures/exchg-identity.png -share/gnome/help/evolution/el/figures/exchng-identity.png -share/gnome/help/evolution/el/figures/exchng-rec-mail.png -share/gnome/help/evolution/el/figures/exchng-rec-mails.png -share/gnome/help/evolution/el/figures/exchng-rec-option.png -share/gnome/help/evolution/el/figures/exchng-rec-options.png -share/gnome/help/evolution/el/figures/exchng-settings.png -share/gnome/help/evolution/el/figures/filter-new-fig.png -share/gnome/help/evolution/el/figures/free_busy.png -share/gnome/help/evolution/el/figures/google_cal_view.png -share/gnome/help/evolution/el/figures/mail-threaded.png -share/gnome/help/evolution/el/figures/mailer_preferences.png -share/gnome/help/evolution/el/figures/minus.png -share/gnome/help/evolution/el/figures/plus.png -share/gnome/help/evolution/el/figures/proxy-cal.png -share/gnome/help/evolution/el/figures/proxy-login.png -share/gnome/help/evolution/el/figures/quick_add_a.png -share/gnome/help/evolution/el/figures/quick_reference.png -share/gnome/help/evolution/el/figures/stock_search.png -share/gnome/help/evolution/el/figures/sub-others-folder.png -share/gnome/help/evolution/el/figures/sub-pub-fold.png -share/gnome/help/evolution/el/figures/ver_view_a.png -share/gnome/help/evolution/en_GB/evolution.xml -share/gnome/help/evolution/en_GB/figures/account_editor_a.png -share/gnome/help/evolution/en_GB/figures/attach_reminder_a.png -share/gnome/help/evolution/en_GB/figures/categories_a.png -share/gnome/help/evolution/en_GB/figures/collap_head_a.png -share/gnome/help/evolution/en_GB/figures/config-cal.png -share/gnome/help/evolution/en_GB/figures/config-mail.png -share/gnome/help/evolution/en_GB/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/en_GB/figures/delgt-add.png -share/gnome/help/evolution/en_GB/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/en_GB/figures/evo_account_editor_a.png -share/gnome/help/evolution/en_GB/figures/evo_adv_search_a.png -share/gnome/help/evolution/en_GB/figures/evo_allday_a.png -share/gnome/help/evolution/en_GB/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/en_GB/figures/evo_backup.png -share/gnome/help/evolution/en_GB/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/en_GB/figures/evo_backup_warning.png -share/gnome/help/evolution/en_GB/figures/evo_blink.png -share/gnome/help/evolution/en_GB/figures/evo_cal_a.png -share/gnome/help/evolution/en_GB/figures/evo_cal_advsearch.png -share/gnome/help/evolution/en_GB/figures/evo_cal_callout_a.png -share/gnome/help/evolution/en_GB/figures/evo_cal_prop_a.png -share/gnome/help/evolution/en_GB/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/en_GB/figures/evo_calstatus_a.png -share/gnome/help/evolution/en_GB/figures/evo_caltasks_a.png -share/gnome/help/evolution/en_GB/figures/evo_contacteditor_a.png -share/gnome/help/evolution/en_GB/figures/evo_crash_recovery.png -share/gnome/help/evolution/en_GB/figures/evo_custom_header.png -share/gnome/help/evolution/en_GB/figures/evo_debuglogs_a.png -share/gnome/help/evolution/en_GB/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/en_GB/figures/evo_dialog-info.png -share/gnome/help/evolution/en_GB/figures/evo_dialog-warning.png -share/gnome/help/evolution/en_GB/figures/evo_edit_rule_a.png -share/gnome/help/evolution/en_GB/figures/evo_edit_search.png -share/gnome/help/evolution/en_GB/figures/evo_exchng_mapi.png -share/gnome/help/evolution/en_GB/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/en_GB/figures/evo_gwreceive_a.png -share/gnome/help/evolution/en_GB/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/en_GB/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/en_GB/figures/evo_gwstatustrack.png -share/gnome/help/evolution/en_GB/figures/evo_identity_a.png -share/gnome/help/evolution/en_GB/figures/evo_identityedit_a.png -share/gnome/help/evolution/en_GB/figures/evo_imapheader_a.png -share/gnome/help/evolution/en_GB/figures/evo_imapreceive_a.png -share/gnome/help/evolution/en_GB/figures/evo_import.png -share/gnome/help/evolution/en_GB/figures/evo_import_asst_a.png -share/gnome/help/evolution/en_GB/figures/evo_junk_a.png -share/gnome/help/evolution/en_GB/figures/evo_label_a.png -share/gnome/help/evolution/en_GB/figures/evo_labels_a.png -share/gnome/help/evolution/en_GB/figures/evo_mail_a.png -share/gnome/help/evolution/en_GB/figures/evo_mail_callout_a.png -share/gnome/help/evolution/en_GB/figures/evo_mail_notifier.png -share/gnome/help/evolution/en_GB/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/en_GB/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/en_GB/figures/evo_memo_a.png -share/gnome/help/evolution/en_GB/figures/evo_mereceive_a.png -share/gnome/help/evolution/en_GB/figures/evo_message_filters_a.png -share/gnome/help/evolution/en_GB/figures/evo_mhreceive_a.png -share/gnome/help/evolution/en_GB/figures/evo_newmail.png -share/gnome/help/evolution/en_GB/figures/evo_newmess_a.png -share/gnome/help/evolution/en_GB/figures/evo_offline.png -share/gnome/help/evolution/en_GB/figures/evo_popreceive_a.png -share/gnome/help/evolution/en_GB/figures/evo_proxyadd_a.png -share/gnome/help/evolution/en_GB/figures/evo_receive_setup_a.png -share/gnome/help/evolution/en_GB/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/en_GB/figures/evo_rule_a.png -share/gnome/help/evolution/en_GB/figures/evo_select_add_folder.png -share/gnome/help/evolution/en_GB/figures/evo_select_folder.png -share/gnome/help/evolution/en_GB/figures/evo_send_option_a.png -share/gnome/help/evolution/en_GB/figures/evo_send_setup_a.png -share/gnome/help/evolution/en_GB/figures/evo_sendstatus_a.png -share/gnome/help/evolution/en_GB/figures/evo_shd_memo_a.png -share/gnome/help/evolution/en_GB/figures/evo_timezone_a.png -share/gnome/help/evolution/en_GB/figures/evo_usereceive_a.png -share/gnome/help/evolution/en_GB/figures/exchg-identity.png -share/gnome/help/evolution/en_GB/figures/exchng-identity.png -share/gnome/help/evolution/en_GB/figures/exchng-rec-mail.png -share/gnome/help/evolution/en_GB/figures/exchng-rec-mails.png -share/gnome/help/evolution/en_GB/figures/exchng-rec-option.png -share/gnome/help/evolution/en_GB/figures/exchng-rec-options.png -share/gnome/help/evolution/en_GB/figures/exchng-settings.png -share/gnome/help/evolution/en_GB/figures/filter-new-fig.png -share/gnome/help/evolution/en_GB/figures/free_busy.png -share/gnome/help/evolution/en_GB/figures/google_cal_view.png -share/gnome/help/evolution/en_GB/figures/mail-threaded.png -share/gnome/help/evolution/en_GB/figures/mailer_preferences.png -share/gnome/help/evolution/en_GB/figures/minus.png -share/gnome/help/evolution/en_GB/figures/plus.png -share/gnome/help/evolution/en_GB/figures/proxy-cal.png -share/gnome/help/evolution/en_GB/figures/proxy-login.png -share/gnome/help/evolution/en_GB/figures/quick_add_a.png -share/gnome/help/evolution/en_GB/figures/quick_reference.png -share/gnome/help/evolution/en_GB/figures/stock_search.png -share/gnome/help/evolution/en_GB/figures/sub-others-folder.png -share/gnome/help/evolution/en_GB/figures/sub-pub-fold.png -share/gnome/help/evolution/en_GB/figures/ver_view_a.png -share/gnome/help/evolution/es/evolution.xml -share/gnome/help/evolution/es/figures/account_editor_a.png -share/gnome/help/evolution/es/figures/attach_reminder_a.png -share/gnome/help/evolution/es/figures/categories_a.png -share/gnome/help/evolution/es/figures/collap_head_a.png -share/gnome/help/evolution/es/figures/config-cal.png -share/gnome/help/evolution/es/figures/config-mail.png -share/gnome/help/evolution/es/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/es/figures/delgt-add.png -share/gnome/help/evolution/es/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/es/figures/evo_account_editor_a.png -share/gnome/help/evolution/es/figures/evo_adv_search_a.png -share/gnome/help/evolution/es/figures/evo_allday_a.png -share/gnome/help/evolution/es/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/es/figures/evo_backup.png -share/gnome/help/evolution/es/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/es/figures/evo_backup_warning.png -share/gnome/help/evolution/es/figures/evo_blink.png -share/gnome/help/evolution/es/figures/evo_cal_a.png -share/gnome/help/evolution/es/figures/evo_cal_advsearch.png -share/gnome/help/evolution/es/figures/evo_cal_callout_a.png -share/gnome/help/evolution/es/figures/evo_cal_prop_a.png -share/gnome/help/evolution/es/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/es/figures/evo_calstatus_a.png -share/gnome/help/evolution/es/figures/evo_caltasks_a.png -share/gnome/help/evolution/es/figures/evo_contacteditor_a.png -share/gnome/help/evolution/es/figures/evo_crash_recovery.png -share/gnome/help/evolution/es/figures/evo_custom_header.png -share/gnome/help/evolution/es/figures/evo_debuglogs_a.png -share/gnome/help/evolution/es/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/es/figures/evo_dialog-info.png -share/gnome/help/evolution/es/figures/evo_dialog-warning.png -share/gnome/help/evolution/es/figures/evo_edit_rule_a.png -share/gnome/help/evolution/es/figures/evo_edit_search.png -share/gnome/help/evolution/es/figures/evo_exchng_mapi.png -share/gnome/help/evolution/es/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/es/figures/evo_gwreceive_a.png -share/gnome/help/evolution/es/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/es/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/es/figures/evo_gwstatustrack.png -share/gnome/help/evolution/es/figures/evo_identity_a.png -share/gnome/help/evolution/es/figures/evo_identityedit_a.png -share/gnome/help/evolution/es/figures/evo_imapheader_a.png -share/gnome/help/evolution/es/figures/evo_imapreceive_a.png -share/gnome/help/evolution/es/figures/evo_import.png -share/gnome/help/evolution/es/figures/evo_import_asst_a.png -share/gnome/help/evolution/es/figures/evo_junk_a.png -share/gnome/help/evolution/es/figures/evo_label_a.png -share/gnome/help/evolution/es/figures/evo_labels_a.png -share/gnome/help/evolution/es/figures/evo_mail_a.png -share/gnome/help/evolution/es/figures/evo_mail_callout_a.png -share/gnome/help/evolution/es/figures/evo_mail_notifier.png -share/gnome/help/evolution/es/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/es/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/es/figures/evo_memo_a.png -share/gnome/help/evolution/es/figures/evo_mereceive_a.png -share/gnome/help/evolution/es/figures/evo_message_filters_a.png -share/gnome/help/evolution/es/figures/evo_mhreceive_a.png -share/gnome/help/evolution/es/figures/evo_newmail.png -share/gnome/help/evolution/es/figures/evo_newmess_a.png -share/gnome/help/evolution/es/figures/evo_offline.png -share/gnome/help/evolution/es/figures/evo_popreceive_a.png -share/gnome/help/evolution/es/figures/evo_proxyadd_a.png -share/gnome/help/evolution/es/figures/evo_receive_setup_a.png -share/gnome/help/evolution/es/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/es/figures/evo_rule_a.png -share/gnome/help/evolution/es/figures/evo_select_add_folder.png -share/gnome/help/evolution/es/figures/evo_select_folder.png -share/gnome/help/evolution/es/figures/evo_send_option_a.png -share/gnome/help/evolution/es/figures/evo_send_setup_a.png -share/gnome/help/evolution/es/figures/evo_sendstatus_a.png -share/gnome/help/evolution/es/figures/evo_shd_memo_a.png -share/gnome/help/evolution/es/figures/evo_timezone_a.png -share/gnome/help/evolution/es/figures/evo_usereceive_a.png -share/gnome/help/evolution/es/figures/exchg-identity.png -share/gnome/help/evolution/es/figures/exchng-identity.png -share/gnome/help/evolution/es/figures/exchng-rec-mail.png -share/gnome/help/evolution/es/figures/exchng-rec-mails.png -share/gnome/help/evolution/es/figures/exchng-rec-option.png -share/gnome/help/evolution/es/figures/exchng-rec-options.png -share/gnome/help/evolution/es/figures/exchng-settings.png -share/gnome/help/evolution/es/figures/filter-new-fig.png -share/gnome/help/evolution/es/figures/free_busy.png -share/gnome/help/evolution/es/figures/google_cal_view.png -share/gnome/help/evolution/es/figures/mail-threaded.png -share/gnome/help/evolution/es/figures/mailer_preferences.png -share/gnome/help/evolution/es/figures/minus.png -share/gnome/help/evolution/es/figures/plus.png -share/gnome/help/evolution/es/figures/proxy-cal.png -share/gnome/help/evolution/es/figures/proxy-login.png -share/gnome/help/evolution/es/figures/quick_add_a.png -share/gnome/help/evolution/es/figures/quick_reference.png -share/gnome/help/evolution/es/figures/stock_search.png -share/gnome/help/evolution/es/figures/sub-others-folder.png -share/gnome/help/evolution/es/figures/sub-pub-fold.png -share/gnome/help/evolution/es/figures/ver_view_a.png -share/gnome/help/evolution/eu/evolution.xml -share/gnome/help/evolution/eu/figures/account_editor_a.png -share/gnome/help/evolution/eu/figures/attach_reminder_a.png -share/gnome/help/evolution/eu/figures/categories_a.png -share/gnome/help/evolution/eu/figures/collap_head_a.png -share/gnome/help/evolution/eu/figures/config-cal.png -share/gnome/help/evolution/eu/figures/config-mail.png -share/gnome/help/evolution/eu/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/eu/figures/delgt-add.png -share/gnome/help/evolution/eu/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/eu/figures/evo_account_editor_a.png -share/gnome/help/evolution/eu/figures/evo_adv_search_a.png -share/gnome/help/evolution/eu/figures/evo_allday_a.png -share/gnome/help/evolution/eu/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/eu/figures/evo_backup.png -share/gnome/help/evolution/eu/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/eu/figures/evo_backup_warning.png -share/gnome/help/evolution/eu/figures/evo_blink.png -share/gnome/help/evolution/eu/figures/evo_cal_a.png -share/gnome/help/evolution/eu/figures/evo_cal_advsearch.png -share/gnome/help/evolution/eu/figures/evo_cal_callout_a.png -share/gnome/help/evolution/eu/figures/evo_cal_prop_a.png -share/gnome/help/evolution/eu/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/eu/figures/evo_calstatus_a.png -share/gnome/help/evolution/eu/figures/evo_caltasks_a.png -share/gnome/help/evolution/eu/figures/evo_contacteditor_a.png -share/gnome/help/evolution/eu/figures/evo_crash_recovery.png -share/gnome/help/evolution/eu/figures/evo_custom_header.png -share/gnome/help/evolution/eu/figures/evo_debuglogs_a.png -share/gnome/help/evolution/eu/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/eu/figures/evo_dialog-info.png -share/gnome/help/evolution/eu/figures/evo_dialog-warning.png -share/gnome/help/evolution/eu/figures/evo_edit_rule_a.png -share/gnome/help/evolution/eu/figures/evo_edit_search.png -share/gnome/help/evolution/eu/figures/evo_exchng_mapi.png -share/gnome/help/evolution/eu/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/eu/figures/evo_gwreceive_a.png -share/gnome/help/evolution/eu/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/eu/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/eu/figures/evo_gwstatustrack.png -share/gnome/help/evolution/eu/figures/evo_identity_a.png -share/gnome/help/evolution/eu/figures/evo_identityedit_a.png -share/gnome/help/evolution/eu/figures/evo_imapheader_a.png -share/gnome/help/evolution/eu/figures/evo_imapreceive_a.png -share/gnome/help/evolution/eu/figures/evo_import.png -share/gnome/help/evolution/eu/figures/evo_import_asst_a.png -share/gnome/help/evolution/eu/figures/evo_junk_a.png -share/gnome/help/evolution/eu/figures/evo_label_a.png -share/gnome/help/evolution/eu/figures/evo_labels_a.png -share/gnome/help/evolution/eu/figures/evo_mail_a.png -share/gnome/help/evolution/eu/figures/evo_mail_callout_a.png -share/gnome/help/evolution/eu/figures/evo_mail_notifier.png -share/gnome/help/evolution/eu/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/eu/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/eu/figures/evo_memo_a.png -share/gnome/help/evolution/eu/figures/evo_mereceive_a.png -share/gnome/help/evolution/eu/figures/evo_message_filters_a.png -share/gnome/help/evolution/eu/figures/evo_mhreceive_a.png -share/gnome/help/evolution/eu/figures/evo_newmail.png -share/gnome/help/evolution/eu/figures/evo_newmess_a.png -share/gnome/help/evolution/eu/figures/evo_offline.png -share/gnome/help/evolution/eu/figures/evo_popreceive_a.png -share/gnome/help/evolution/eu/figures/evo_proxyadd_a.png -share/gnome/help/evolution/eu/figures/evo_receive_setup_a.png -share/gnome/help/evolution/eu/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/eu/figures/evo_rule_a.png -share/gnome/help/evolution/eu/figures/evo_select_add_folder.png -share/gnome/help/evolution/eu/figures/evo_select_folder.png -share/gnome/help/evolution/eu/figures/evo_send_option_a.png -share/gnome/help/evolution/eu/figures/evo_send_setup_a.png -share/gnome/help/evolution/eu/figures/evo_sendstatus_a.png -share/gnome/help/evolution/eu/figures/evo_shd_memo_a.png -share/gnome/help/evolution/eu/figures/evo_timezone_a.png -share/gnome/help/evolution/eu/figures/evo_usereceive_a.png -share/gnome/help/evolution/eu/figures/exchg-identity.png -share/gnome/help/evolution/eu/figures/exchng-identity.png -share/gnome/help/evolution/eu/figures/exchng-rec-mail.png -share/gnome/help/evolution/eu/figures/exchng-rec-mails.png -share/gnome/help/evolution/eu/figures/exchng-rec-option.png -share/gnome/help/evolution/eu/figures/exchng-rec-options.png -share/gnome/help/evolution/eu/figures/exchng-settings.png -share/gnome/help/evolution/eu/figures/filter-new-fig.png -share/gnome/help/evolution/eu/figures/free_busy.png -share/gnome/help/evolution/eu/figures/google_cal_view.png -share/gnome/help/evolution/eu/figures/mail-threaded.png -share/gnome/help/evolution/eu/figures/mailer_preferences.png -share/gnome/help/evolution/eu/figures/minus.png -share/gnome/help/evolution/eu/figures/plus.png -share/gnome/help/evolution/eu/figures/proxy-cal.png -share/gnome/help/evolution/eu/figures/proxy-login.png -share/gnome/help/evolution/eu/figures/quick_add_a.png -share/gnome/help/evolution/eu/figures/quick_reference.png -share/gnome/help/evolution/eu/figures/stock_search.png -share/gnome/help/evolution/eu/figures/sub-others-folder.png -share/gnome/help/evolution/eu/figures/sub-pub-fold.png -share/gnome/help/evolution/eu/figures/ver_view_a.png -share/gnome/help/evolution/fr/evolution.xml -share/gnome/help/evolution/fr/figures/account_editor_a.png -share/gnome/help/evolution/fr/figures/attach_reminder_a.png -share/gnome/help/evolution/fr/figures/categories_a.png -share/gnome/help/evolution/fr/figures/collap_head_a.png -share/gnome/help/evolution/fr/figures/config-cal.png -share/gnome/help/evolution/fr/figures/config-mail.png -share/gnome/help/evolution/fr/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/fr/figures/delgt-add.png -share/gnome/help/evolution/fr/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/fr/figures/evo_account_editor_a.png -share/gnome/help/evolution/fr/figures/evo_adv_search_a.png -share/gnome/help/evolution/fr/figures/evo_allday_a.png -share/gnome/help/evolution/fr/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/fr/figures/evo_backup.png -share/gnome/help/evolution/fr/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/fr/figures/evo_backup_warning.png -share/gnome/help/evolution/fr/figures/evo_blink.png -share/gnome/help/evolution/fr/figures/evo_cal_a.png -share/gnome/help/evolution/fr/figures/evo_cal_advsearch.png -share/gnome/help/evolution/fr/figures/evo_cal_callout_a.png -share/gnome/help/evolution/fr/figures/evo_cal_prop_a.png -share/gnome/help/evolution/fr/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/fr/figures/evo_calstatus_a.png -share/gnome/help/evolution/fr/figures/evo_caltasks_a.png -share/gnome/help/evolution/fr/figures/evo_contacteditor_a.png -share/gnome/help/evolution/fr/figures/evo_crash_recovery.png -share/gnome/help/evolution/fr/figures/evo_custom_header.png -share/gnome/help/evolution/fr/figures/evo_debuglogs_a.png -share/gnome/help/evolution/fr/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/fr/figures/evo_dialog-info.png -share/gnome/help/evolution/fr/figures/evo_dialog-warning.png -share/gnome/help/evolution/fr/figures/evo_edit_rule_a.png -share/gnome/help/evolution/fr/figures/evo_edit_search.png -share/gnome/help/evolution/fr/figures/evo_exchng_mapi.png -share/gnome/help/evolution/fr/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/fr/figures/evo_gwreceive_a.png -share/gnome/help/evolution/fr/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/fr/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/fr/figures/evo_gwstatustrack.png -share/gnome/help/evolution/fr/figures/evo_identity_a.png -share/gnome/help/evolution/fr/figures/evo_identityedit_a.png -share/gnome/help/evolution/fr/figures/evo_imapheader_a.png -share/gnome/help/evolution/fr/figures/evo_imapreceive_a.png -share/gnome/help/evolution/fr/figures/evo_import.png -share/gnome/help/evolution/fr/figures/evo_import_asst_a.png -share/gnome/help/evolution/fr/figures/evo_junk_a.png -share/gnome/help/evolution/fr/figures/evo_label_a.png -share/gnome/help/evolution/fr/figures/evo_labels_a.png -share/gnome/help/evolution/fr/figures/evo_mail_a.png -share/gnome/help/evolution/fr/figures/evo_mail_callout_a.png -share/gnome/help/evolution/fr/figures/evo_mail_notifier.png -share/gnome/help/evolution/fr/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/fr/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/fr/figures/evo_memo_a.png -share/gnome/help/evolution/fr/figures/evo_mereceive_a.png -share/gnome/help/evolution/fr/figures/evo_message_filters_a.png -share/gnome/help/evolution/fr/figures/evo_mhreceive_a.png -share/gnome/help/evolution/fr/figures/evo_newmail.png -share/gnome/help/evolution/fr/figures/evo_newmess_a.png -share/gnome/help/evolution/fr/figures/evo_offline.png -share/gnome/help/evolution/fr/figures/evo_popreceive_a.png -share/gnome/help/evolution/fr/figures/evo_proxyadd_a.png -share/gnome/help/evolution/fr/figures/evo_receive_setup_a.png -share/gnome/help/evolution/fr/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/fr/figures/evo_rule_a.png -share/gnome/help/evolution/fr/figures/evo_select_add_folder.png -share/gnome/help/evolution/fr/figures/evo_select_folder.png -share/gnome/help/evolution/fr/figures/evo_send_option_a.png -share/gnome/help/evolution/fr/figures/evo_send_setup_a.png -share/gnome/help/evolution/fr/figures/evo_sendstatus_a.png -share/gnome/help/evolution/fr/figures/evo_shd_memo_a.png -share/gnome/help/evolution/fr/figures/evo_timezone_a.png -share/gnome/help/evolution/fr/figures/evo_usereceive_a.png -share/gnome/help/evolution/fr/figures/exchg-identity.png -share/gnome/help/evolution/fr/figures/exchng-identity.png -share/gnome/help/evolution/fr/figures/exchng-rec-mail.png -share/gnome/help/evolution/fr/figures/exchng-rec-mails.png -share/gnome/help/evolution/fr/figures/exchng-rec-option.png -share/gnome/help/evolution/fr/figures/exchng-rec-options.png -share/gnome/help/evolution/fr/figures/exchng-settings.png -share/gnome/help/evolution/fr/figures/filter-new-fig.png -share/gnome/help/evolution/fr/figures/free_busy.png -share/gnome/help/evolution/fr/figures/google_cal_view.png -share/gnome/help/evolution/fr/figures/mail-threaded.png -share/gnome/help/evolution/fr/figures/mailer_preferences.png -share/gnome/help/evolution/fr/figures/minus.png -share/gnome/help/evolution/fr/figures/plus.png -share/gnome/help/evolution/fr/figures/proxy-cal.png -share/gnome/help/evolution/fr/figures/proxy-login.png -share/gnome/help/evolution/fr/figures/quick_add_a.png -share/gnome/help/evolution/fr/figures/quick_reference.png -share/gnome/help/evolution/fr/figures/stock_search.png -share/gnome/help/evolution/fr/figures/sub-others-folder.png -share/gnome/help/evolution/fr/figures/sub-pub-fold.png -share/gnome/help/evolution/fr/figures/ver_view_a.png -share/gnome/help/evolution/mk/evolution.xml -share/gnome/help/evolution/mk/figures/account_editor_a.png -share/gnome/help/evolution/mk/figures/attach_reminder_a.png -share/gnome/help/evolution/mk/figures/categories_a.png -share/gnome/help/evolution/mk/figures/collap_head_a.png -share/gnome/help/evolution/mk/figures/config-cal.png -share/gnome/help/evolution/mk/figures/config-mail.png -share/gnome/help/evolution/mk/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/mk/figures/delgt-add.png -share/gnome/help/evolution/mk/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/mk/figures/evo_account_editor_a.png -share/gnome/help/evolution/mk/figures/evo_adv_search_a.png -share/gnome/help/evolution/mk/figures/evo_allday_a.png -share/gnome/help/evolution/mk/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/mk/figures/evo_backup.png -share/gnome/help/evolution/mk/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/mk/figures/evo_backup_warning.png -share/gnome/help/evolution/mk/figures/evo_blink.png -share/gnome/help/evolution/mk/figures/evo_cal_a.png -share/gnome/help/evolution/mk/figures/evo_cal_advsearch.png -share/gnome/help/evolution/mk/figures/evo_cal_callout_a.png -share/gnome/help/evolution/mk/figures/evo_cal_prop_a.png -share/gnome/help/evolution/mk/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/mk/figures/evo_calstatus_a.png -share/gnome/help/evolution/mk/figures/evo_caltasks_a.png -share/gnome/help/evolution/mk/figures/evo_contacteditor_a.png -share/gnome/help/evolution/mk/figures/evo_crash_recovery.png -share/gnome/help/evolution/mk/figures/evo_custom_header.png -share/gnome/help/evolution/mk/figures/evo_debuglogs_a.png -share/gnome/help/evolution/mk/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/mk/figures/evo_dialog-info.png -share/gnome/help/evolution/mk/figures/evo_dialog-warning.png -share/gnome/help/evolution/mk/figures/evo_edit_rule_a.png -share/gnome/help/evolution/mk/figures/evo_edit_search.png -share/gnome/help/evolution/mk/figures/evo_exchng_mapi.png -share/gnome/help/evolution/mk/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/mk/figures/evo_gwreceive_a.png -share/gnome/help/evolution/mk/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/mk/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/mk/figures/evo_gwstatustrack.png -share/gnome/help/evolution/mk/figures/evo_identity_a.png -share/gnome/help/evolution/mk/figures/evo_identityedit_a.png -share/gnome/help/evolution/mk/figures/evo_imapheader_a.png -share/gnome/help/evolution/mk/figures/evo_imapreceive_a.png -share/gnome/help/evolution/mk/figures/evo_import.png -share/gnome/help/evolution/mk/figures/evo_import_asst_a.png -share/gnome/help/evolution/mk/figures/evo_junk_a.png -share/gnome/help/evolution/mk/figures/evo_label_a.png -share/gnome/help/evolution/mk/figures/evo_labels_a.png -share/gnome/help/evolution/mk/figures/evo_mail_a.png -share/gnome/help/evolution/mk/figures/evo_mail_callout_a.png -share/gnome/help/evolution/mk/figures/evo_mail_notifier.png -share/gnome/help/evolution/mk/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/mk/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/mk/figures/evo_memo_a.png -share/gnome/help/evolution/mk/figures/evo_mereceive_a.png -share/gnome/help/evolution/mk/figures/evo_message_filters_a.png -share/gnome/help/evolution/mk/figures/evo_mhreceive_a.png -share/gnome/help/evolution/mk/figures/evo_newmail.png -share/gnome/help/evolution/mk/figures/evo_newmess_a.png -share/gnome/help/evolution/mk/figures/evo_offline.png -share/gnome/help/evolution/mk/figures/evo_popreceive_a.png -share/gnome/help/evolution/mk/figures/evo_proxyadd_a.png -share/gnome/help/evolution/mk/figures/evo_receive_setup_a.png -share/gnome/help/evolution/mk/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/mk/figures/evo_rule_a.png -share/gnome/help/evolution/mk/figures/evo_select_add_folder.png -share/gnome/help/evolution/mk/figures/evo_select_folder.png -share/gnome/help/evolution/mk/figures/evo_send_option_a.png -share/gnome/help/evolution/mk/figures/evo_send_setup_a.png -share/gnome/help/evolution/mk/figures/evo_sendstatus_a.png -share/gnome/help/evolution/mk/figures/evo_shd_memo_a.png -share/gnome/help/evolution/mk/figures/evo_timezone_a.png -share/gnome/help/evolution/mk/figures/evo_usereceive_a.png -share/gnome/help/evolution/mk/figures/exchg-identity.png -share/gnome/help/evolution/mk/figures/exchng-identity.png -share/gnome/help/evolution/mk/figures/exchng-rec-mail.png -share/gnome/help/evolution/mk/figures/exchng-rec-mails.png -share/gnome/help/evolution/mk/figures/exchng-rec-option.png -share/gnome/help/evolution/mk/figures/exchng-rec-options.png -share/gnome/help/evolution/mk/figures/exchng-settings.png -share/gnome/help/evolution/mk/figures/filter-new-fig.png -share/gnome/help/evolution/mk/figures/free_busy.png -share/gnome/help/evolution/mk/figures/google_cal_view.png -share/gnome/help/evolution/mk/figures/mail-threaded.png -share/gnome/help/evolution/mk/figures/mailer_preferences.png -share/gnome/help/evolution/mk/figures/minus.png -share/gnome/help/evolution/mk/figures/plus.png -share/gnome/help/evolution/mk/figures/proxy-cal.png -share/gnome/help/evolution/mk/figures/proxy-login.png -share/gnome/help/evolution/mk/figures/quick_add_a.png -share/gnome/help/evolution/mk/figures/quick_reference.png -share/gnome/help/evolution/mk/figures/stock_search.png -share/gnome/help/evolution/mk/figures/sub-others-folder.png -share/gnome/help/evolution/mk/figures/sub-pub-fold.png -share/gnome/help/evolution/mk/figures/ver_view_a.png -share/gnome/help/evolution/oc/evolution.xml -share/gnome/help/evolution/oc/figures/account_editor_a.png -share/gnome/help/evolution/oc/figures/attach_reminder_a.png -share/gnome/help/evolution/oc/figures/categories_a.png -share/gnome/help/evolution/oc/figures/collap_head_a.png -share/gnome/help/evolution/oc/figures/config-cal.png -share/gnome/help/evolution/oc/figures/config-mail.png -share/gnome/help/evolution/oc/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/oc/figures/delgt-add.png -share/gnome/help/evolution/oc/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/oc/figures/evo_account_editor_a.png -share/gnome/help/evolution/oc/figures/evo_adv_search_a.png -share/gnome/help/evolution/oc/figures/evo_allday_a.png -share/gnome/help/evolution/oc/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/oc/figures/evo_backup.png -share/gnome/help/evolution/oc/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/oc/figures/evo_backup_warning.png -share/gnome/help/evolution/oc/figures/evo_blink.png -share/gnome/help/evolution/oc/figures/evo_cal_a.png -share/gnome/help/evolution/oc/figures/evo_cal_advsearch.png -share/gnome/help/evolution/oc/figures/evo_cal_callout_a.png -share/gnome/help/evolution/oc/figures/evo_cal_prop_a.png -share/gnome/help/evolution/oc/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/oc/figures/evo_calstatus_a.png -share/gnome/help/evolution/oc/figures/evo_caltasks_a.png -share/gnome/help/evolution/oc/figures/evo_contacteditor_a.png -share/gnome/help/evolution/oc/figures/evo_crash_recovery.png -share/gnome/help/evolution/oc/figures/evo_custom_header.png -share/gnome/help/evolution/oc/figures/evo_debuglogs_a.png -share/gnome/help/evolution/oc/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/oc/figures/evo_dialog-info.png -share/gnome/help/evolution/oc/figures/evo_dialog-warning.png -share/gnome/help/evolution/oc/figures/evo_edit_rule_a.png -share/gnome/help/evolution/oc/figures/evo_edit_search.png -share/gnome/help/evolution/oc/figures/evo_exchng_mapi.png -share/gnome/help/evolution/oc/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/oc/figures/evo_gwreceive_a.png -share/gnome/help/evolution/oc/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/oc/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/oc/figures/evo_gwstatustrack.png -share/gnome/help/evolution/oc/figures/evo_identity_a.png -share/gnome/help/evolution/oc/figures/evo_identityedit_a.png -share/gnome/help/evolution/oc/figures/evo_imapheader_a.png -share/gnome/help/evolution/oc/figures/evo_imapreceive_a.png -share/gnome/help/evolution/oc/figures/evo_import.png -share/gnome/help/evolution/oc/figures/evo_import_asst_a.png -share/gnome/help/evolution/oc/figures/evo_junk_a.png -share/gnome/help/evolution/oc/figures/evo_label_a.png -share/gnome/help/evolution/oc/figures/evo_labels_a.png -share/gnome/help/evolution/oc/figures/evo_mail_a.png -share/gnome/help/evolution/oc/figures/evo_mail_callout_a.png -share/gnome/help/evolution/oc/figures/evo_mail_notifier.png -share/gnome/help/evolution/oc/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/oc/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/oc/figures/evo_memo_a.png -share/gnome/help/evolution/oc/figures/evo_mereceive_a.png -share/gnome/help/evolution/oc/figures/evo_message_filters_a.png -share/gnome/help/evolution/oc/figures/evo_mhreceive_a.png -share/gnome/help/evolution/oc/figures/evo_newmail.png -share/gnome/help/evolution/oc/figures/evo_newmess_a.png -share/gnome/help/evolution/oc/figures/evo_offline.png -share/gnome/help/evolution/oc/figures/evo_popreceive_a.png -share/gnome/help/evolution/oc/figures/evo_proxyadd_a.png -share/gnome/help/evolution/oc/figures/evo_receive_setup_a.png -share/gnome/help/evolution/oc/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/oc/figures/evo_rule_a.png -share/gnome/help/evolution/oc/figures/evo_select_add_folder.png -share/gnome/help/evolution/oc/figures/evo_select_folder.png -share/gnome/help/evolution/oc/figures/evo_send_option_a.png -share/gnome/help/evolution/oc/figures/evo_send_setup_a.png -share/gnome/help/evolution/oc/figures/evo_sendstatus_a.png -share/gnome/help/evolution/oc/figures/evo_shd_memo_a.png -share/gnome/help/evolution/oc/figures/evo_timezone_a.png -share/gnome/help/evolution/oc/figures/evo_usereceive_a.png -share/gnome/help/evolution/oc/figures/exchg-identity.png -share/gnome/help/evolution/oc/figures/exchng-identity.png -share/gnome/help/evolution/oc/figures/exchng-rec-mail.png -share/gnome/help/evolution/oc/figures/exchng-rec-mails.png -share/gnome/help/evolution/oc/figures/exchng-rec-option.png -share/gnome/help/evolution/oc/figures/exchng-rec-options.png -share/gnome/help/evolution/oc/figures/exchng-settings.png -share/gnome/help/evolution/oc/figures/filter-new-fig.png -share/gnome/help/evolution/oc/figures/free_busy.png -share/gnome/help/evolution/oc/figures/google_cal_view.png -share/gnome/help/evolution/oc/figures/mail-threaded.png -share/gnome/help/evolution/oc/figures/mailer_preferences.png -share/gnome/help/evolution/oc/figures/minus.png -share/gnome/help/evolution/oc/figures/plus.png -share/gnome/help/evolution/oc/figures/proxy-cal.png -share/gnome/help/evolution/oc/figures/proxy-login.png -share/gnome/help/evolution/oc/figures/quick_add_a.png -share/gnome/help/evolution/oc/figures/quick_reference.png -share/gnome/help/evolution/oc/figures/stock_search.png -share/gnome/help/evolution/oc/figures/sub-others-folder.png -share/gnome/help/evolution/oc/figures/sub-pub-fold.png -share/gnome/help/evolution/oc/figures/ver_view_a.png -share/gnome/help/evolution/ru/evolution.xml -share/gnome/help/evolution/ru/figures/account_editor_a.png -share/gnome/help/evolution/ru/figures/attach_reminder_a.png -share/gnome/help/evolution/ru/figures/categories_a.png -share/gnome/help/evolution/ru/figures/collap_head_a.png -share/gnome/help/evolution/ru/figures/config-cal.png -share/gnome/help/evolution/ru/figures/config-mail.png -share/gnome/help/evolution/ru/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/ru/figures/delgt-add.png -share/gnome/help/evolution/ru/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/ru/figures/evo_account_editor_a.png -share/gnome/help/evolution/ru/figures/evo_adv_search_a.png -share/gnome/help/evolution/ru/figures/evo_allday_a.png -share/gnome/help/evolution/ru/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/ru/figures/evo_backup.png -share/gnome/help/evolution/ru/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/ru/figures/evo_backup_warning.png -share/gnome/help/evolution/ru/figures/evo_blink.png -share/gnome/help/evolution/ru/figures/evo_cal_a.png -share/gnome/help/evolution/ru/figures/evo_cal_advsearch.png -share/gnome/help/evolution/ru/figures/evo_cal_callout_a.png -share/gnome/help/evolution/ru/figures/evo_cal_prop_a.png -share/gnome/help/evolution/ru/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/ru/figures/evo_calstatus_a.png -share/gnome/help/evolution/ru/figures/evo_caltasks_a.png -share/gnome/help/evolution/ru/figures/evo_contacteditor_a.png -share/gnome/help/evolution/ru/figures/evo_crash_recovery.png -share/gnome/help/evolution/ru/figures/evo_custom_header.png -share/gnome/help/evolution/ru/figures/evo_debuglogs_a.png -share/gnome/help/evolution/ru/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/ru/figures/evo_dialog-info.png -share/gnome/help/evolution/ru/figures/evo_dialog-warning.png -share/gnome/help/evolution/ru/figures/evo_edit_rule_a.png -share/gnome/help/evolution/ru/figures/evo_edit_search.png -share/gnome/help/evolution/ru/figures/evo_exchng_mapi.png -share/gnome/help/evolution/ru/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/ru/figures/evo_gwreceive_a.png -share/gnome/help/evolution/ru/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/ru/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/ru/figures/evo_gwstatustrack.png -share/gnome/help/evolution/ru/figures/evo_identity_a.png -share/gnome/help/evolution/ru/figures/evo_identityedit_a.png -share/gnome/help/evolution/ru/figures/evo_imapheader_a.png -share/gnome/help/evolution/ru/figures/evo_imapreceive_a.png -share/gnome/help/evolution/ru/figures/evo_import.png -share/gnome/help/evolution/ru/figures/evo_import_asst_a.png -share/gnome/help/evolution/ru/figures/evo_junk_a.png -share/gnome/help/evolution/ru/figures/evo_label_a.png -share/gnome/help/evolution/ru/figures/evo_labels_a.png -share/gnome/help/evolution/ru/figures/evo_mail_a.png -share/gnome/help/evolution/ru/figures/evo_mail_callout_a.png -share/gnome/help/evolution/ru/figures/evo_mail_notifier.png -share/gnome/help/evolution/ru/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/ru/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/ru/figures/evo_memo_a.png -share/gnome/help/evolution/ru/figures/evo_mereceive_a.png -share/gnome/help/evolution/ru/figures/evo_message_filters_a.png -share/gnome/help/evolution/ru/figures/evo_mhreceive_a.png -share/gnome/help/evolution/ru/figures/evo_newmail.png -share/gnome/help/evolution/ru/figures/evo_newmess_a.png -share/gnome/help/evolution/ru/figures/evo_offline.png -share/gnome/help/evolution/ru/figures/evo_popreceive_a.png -share/gnome/help/evolution/ru/figures/evo_proxyadd_a.png -share/gnome/help/evolution/ru/figures/evo_receive_setup_a.png -share/gnome/help/evolution/ru/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/ru/figures/evo_rule_a.png -share/gnome/help/evolution/ru/figures/evo_select_add_folder.png -share/gnome/help/evolution/ru/figures/evo_select_folder.png -share/gnome/help/evolution/ru/figures/evo_send_option_a.png -share/gnome/help/evolution/ru/figures/evo_send_setup_a.png -share/gnome/help/evolution/ru/figures/evo_sendstatus_a.png -share/gnome/help/evolution/ru/figures/evo_shd_memo_a.png -share/gnome/help/evolution/ru/figures/evo_timezone_a.png -share/gnome/help/evolution/ru/figures/evo_usereceive_a.png -share/gnome/help/evolution/ru/figures/exchg-identity.png -share/gnome/help/evolution/ru/figures/exchng-identity.png -share/gnome/help/evolution/ru/figures/exchng-rec-mail.png -share/gnome/help/evolution/ru/figures/exchng-rec-mails.png -share/gnome/help/evolution/ru/figures/exchng-rec-option.png -share/gnome/help/evolution/ru/figures/exchng-rec-options.png -share/gnome/help/evolution/ru/figures/exchng-settings.png -share/gnome/help/evolution/ru/figures/filter-new-fig.png -share/gnome/help/evolution/ru/figures/free_busy.png -share/gnome/help/evolution/ru/figures/google_cal_view.png -share/gnome/help/evolution/ru/figures/mail-threaded.png -share/gnome/help/evolution/ru/figures/mailer_preferences.png -share/gnome/help/evolution/ru/figures/minus.png -share/gnome/help/evolution/ru/figures/plus.png -share/gnome/help/evolution/ru/figures/proxy-cal.png -share/gnome/help/evolution/ru/figures/proxy-login.png -share/gnome/help/evolution/ru/figures/quick_add_a.png -share/gnome/help/evolution/ru/figures/quick_reference.png -share/gnome/help/evolution/ru/figures/stock_search.png -share/gnome/help/evolution/ru/figures/sub-others-folder.png -share/gnome/help/evolution/ru/figures/sub-pub-fold.png -share/gnome/help/evolution/ru/figures/ver_view_a.png -share/gnome/help/evolution/sv/evolution.xml -share/gnome/help/evolution/sv/figures/account_editor_a.png -share/gnome/help/evolution/sv/figures/attach_reminder_a.png -share/gnome/help/evolution/sv/figures/categories_a.png -share/gnome/help/evolution/sv/figures/collap_head_a.png -share/gnome/help/evolution/sv/figures/config-cal.png -share/gnome/help/evolution/sv/figures/config-mail.png -share/gnome/help/evolution/sv/figures/contacts_mainwindow_a.png -share/gnome/help/evolution/sv/figures/delgt-add.png -share/gnome/help/evolution/sv/figures/evo_Wcal_prop_a.png -share/gnome/help/evolution/sv/figures/evo_account_editor_a.png -share/gnome/help/evolution/sv/figures/evo_adv_search_a.png -share/gnome/help/evolution/sv/figures/evo_allday_a.png -share/gnome/help/evolution/sv/figures/evo_attachreminder_plugin.png -share/gnome/help/evolution/sv/figures/evo_backup.png -share/gnome/help/evolution/sv/figures/evo_backup_prgsbar.png -share/gnome/help/evolution/sv/figures/evo_backup_warning.png -share/gnome/help/evolution/sv/figures/evo_blink.png -share/gnome/help/evolution/sv/figures/evo_cal_a.png -share/gnome/help/evolution/sv/figures/evo_cal_advsearch.png -share/gnome/help/evolution/sv/figures/evo_cal_callout_a.png -share/gnome/help/evolution/sv/figures/evo_cal_prop_a.png -share/gnome/help/evolution/sv/figures/evo_calender_appointmnt.png -share/gnome/help/evolution/sv/figures/evo_calstatus_a.png -share/gnome/help/evolution/sv/figures/evo_caltasks_a.png -share/gnome/help/evolution/sv/figures/evo_contacteditor_a.png -share/gnome/help/evolution/sv/figures/evo_crash_recovery.png -share/gnome/help/evolution/sv/figures/evo_custom_header.png -share/gnome/help/evolution/sv/figures/evo_debuglogs_a.png -share/gnome/help/evolution/sv/figures/evo_delegate_permission_a.png -share/gnome/help/evolution/sv/figures/evo_dialog-info.png -share/gnome/help/evolution/sv/figures/evo_dialog-warning.png -share/gnome/help/evolution/sv/figures/evo_edit_rule_a.png -share/gnome/help/evolution/sv/figures/evo_edit_search.png -share/gnome/help/evolution/sv/figures/evo_exchng_mapi.png -share/gnome/help/evolution/sv/figures/evo_flag_follow_up_a.png -share/gnome/help/evolution/sv/figures/evo_gwreceive_a.png -share/gnome/help/evolution/sv/figures/evo_gwreceiveedit_a.png -share/gnome/help/evolution/sv/figures/evo_gwreceiveoptedit_a.png -share/gnome/help/evolution/sv/figures/evo_gwstatustrack.png -share/gnome/help/evolution/sv/figures/evo_identity_a.png -share/gnome/help/evolution/sv/figures/evo_identityedit_a.png -share/gnome/help/evolution/sv/figures/evo_imapheader_a.png -share/gnome/help/evolution/sv/figures/evo_imapreceive_a.png -share/gnome/help/evolution/sv/figures/evo_import.png -share/gnome/help/evolution/sv/figures/evo_import_asst_a.png -share/gnome/help/evolution/sv/figures/evo_junk_a.png -share/gnome/help/evolution/sv/figures/evo_label_a.png -share/gnome/help/evolution/sv/figures/evo_labels_a.png -share/gnome/help/evolution/sv/figures/evo_mail_a.png -share/gnome/help/evolution/sv/figures/evo_mail_callout_a.png -share/gnome/help/evolution/sv/figures/evo_mail_notifier.png -share/gnome/help/evolution/sv/figures/evo_maildirreceive_a.png -share/gnome/help/evolution/sv/figures/evo_mboxreceive_a.png -share/gnome/help/evolution/sv/figures/evo_memo_a.png -share/gnome/help/evolution/sv/figures/evo_mereceive_a.png -share/gnome/help/evolution/sv/figures/evo_message_filters_a.png -share/gnome/help/evolution/sv/figures/evo_mhreceive_a.png -share/gnome/help/evolution/sv/figures/evo_newmail.png -share/gnome/help/evolution/sv/figures/evo_newmess_a.png -share/gnome/help/evolution/sv/figures/evo_offline.png -share/gnome/help/evolution/sv/figures/evo_popreceive_a.png -share/gnome/help/evolution/sv/figures/evo_proxyadd_a.png -share/gnome/help/evolution/sv/figures/evo_receive_setup_a.png -share/gnome/help/evolution/sv/figures/evo_rmdrnotes_a.png -share/gnome/help/evolution/sv/figures/evo_rule_a.png -share/gnome/help/evolution/sv/figures/evo_select_add_folder.png -share/gnome/help/evolution/sv/figures/evo_select_folder.png -share/gnome/help/evolution/sv/figures/evo_send_option_a.png -share/gnome/help/evolution/sv/figures/evo_send_setup_a.png -share/gnome/help/evolution/sv/figures/evo_sendstatus_a.png -share/gnome/help/evolution/sv/figures/evo_shd_memo_a.png -share/gnome/help/evolution/sv/figures/evo_timezone_a.png -share/gnome/help/evolution/sv/figures/evo_usereceive_a.png -share/gnome/help/evolution/sv/figures/exchg-identity.png -share/gnome/help/evolution/sv/figures/exchng-identity.png -share/gnome/help/evolution/sv/figures/exchng-rec-mail.png -share/gnome/help/evolution/sv/figures/exchng-rec-mails.png -share/gnome/help/evolution/sv/figures/exchng-rec-option.png -share/gnome/help/evolution/sv/figures/exchng-rec-options.png -share/gnome/help/evolution/sv/figures/exchng-settings.png -share/gnome/help/evolution/sv/figures/filter-new-fig.png -share/gnome/help/evolution/sv/figures/free_busy.png -share/gnome/help/evolution/sv/figures/google_cal_view.png -share/gnome/help/evolution/sv/figures/mail-threaded.png -share/gnome/help/evolution/sv/figures/mailer_preferences.png -share/gnome/help/evolution/sv/figures/minus.png -share/gnome/help/evolution/sv/figures/plus.png -share/gnome/help/evolution/sv/figures/proxy-cal.png -share/gnome/help/evolution/sv/figures/proxy-login.png -share/gnome/help/evolution/sv/figures/quick_add_a.png -share/gnome/help/evolution/sv/figures/quick_reference.png -share/gnome/help/evolution/sv/figures/stock_search.png -share/gnome/help/evolution/sv/figures/sub-others-folder.png -share/gnome/help/evolution/sv/figures/sub-pub-fold.png -share/gnome/help/evolution/sv/figures/ver_view_a.png -share/icons/hicolor/16x16/apps/evolution-mail.png -share/icons/hicolor/16x16/apps/evolution-memos.png -share/icons/hicolor/16x16/apps/evolution-tasks.png -share/icons/hicolor/16x16/apps/evolution.png -share/icons/hicolor/22x22/apps/evolution-mail.png -share/icons/hicolor/22x22/apps/evolution-memos.png -share/icons/hicolor/22x22/apps/evolution-tasks.png -share/icons/hicolor/22x22/apps/evolution.png -share/icons/hicolor/24x24/apps/evolution-mail.png -share/icons/hicolor/24x24/apps/evolution-memos.png -share/icons/hicolor/24x24/apps/evolution-tasks.png -share/icons/hicolor/24x24/apps/evolution.png -share/icons/hicolor/32x32/apps/evolution-mail.png -share/icons/hicolor/32x32/apps/evolution-memos.png -share/icons/hicolor/32x32/apps/evolution-tasks.png -share/icons/hicolor/32x32/apps/evolution.png -share/icons/hicolor/48x48/apps/evolution-mail.png -share/icons/hicolor/48x48/apps/evolution-memos.png -share/icons/hicolor/48x48/apps/evolution-tasks.png -share/icons/hicolor/48x48/apps/evolution.png -share/icons/hicolor/scalable/apps/evolution.svg -share/idl/evolution-%%VERSION%%/Evolution-Component.idl -share/idl/evolution-%%VERSION%%/Evolution-ConfigControl.idl -share/idl/evolution-%%VERSION%%/Evolution-Mail.idl -share/idl/evolution-%%VERSION%%/Evolution-Shell.idl -share/idl/evolution-%%VERSION%%/Evolution.idl -share/idl/evolution-%%VERSION%%/evolution-calendar.idl -share/locale/af/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/am/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ar/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/as/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ast/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/az/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/be/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/be@latin/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/bg/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/bn/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/bn_IN/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/bs/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ca/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/cs/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/cy/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/da/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/de/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/dz/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/el/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/en_AU/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/en_CA/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/en_GB/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/es/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/et/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/eu/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/fa/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/fi/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/fr/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ga/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/gl/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/gu/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/he/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/hi/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/hr/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/hu/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/id/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/is/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/it/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ja/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ka/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/kn/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ko/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ku/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/lt/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/lv/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/mai/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/mk/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ml/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/mn/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/mr/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ms/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/nb/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ne/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/nl/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/nn/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/oc/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/or/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/pa/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/pl/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ps/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/pt/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/pt_BR/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ro/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ru/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/rw/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/si/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/sk/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/sl/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/sq/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/sr/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/sr@latin/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/sv/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/ta/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/te/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/th/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/tr/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/uk/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/vi/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/wa/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/xh/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/zh_CN/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/zh_HK/LC_MESSAGES/evolution-%%VERSION%%.mo -share/locale/zh_TW/LC_MESSAGES/evolution-%%VERSION%%.mo -share/mime-info/evolution.keys -share/mime-info/evolution.mime -share/omf/evolution/evolution-C.omf -share/omf/evolution/evolution-cs.omf -share/omf/evolution/evolution-de.omf -share/omf/evolution/evolution-el.omf -share/omf/evolution/evolution-en_GB.omf -share/omf/evolution/evolution-es.omf -share/omf/evolution/evolution-eu.omf -share/omf/evolution/evolution-fr.omf -share/omf/evolution/evolution-mk.omf -share/omf/evolution/evolution-oc.omf -share/omf/evolution/evolution-ru.omf -share/omf/evolution/evolution-sv.omf -@dirrm share/omf/evolution -@dirrm share/idl/evolution-%%VERSION%% -@dirrm share/gnome/help/evolution/sv/figures -@dirrm share/gnome/help/evolution/sv -@dirrm share/gnome/help/evolution/ru/figures -@dirrm share/gnome/help/evolution/ru -@dirrm share/gnome/help/evolution/oc/figures -@dirrm share/gnome/help/evolution/oc -@dirrm share/gnome/help/evolution/mk/figures -@dirrm share/gnome/help/evolution/mk -@dirrm share/gnome/help/evolution/fr/figures -@dirrm share/gnome/help/evolution/fr -@dirrm share/gnome/help/evolution/eu/figures -@dirrm share/gnome/help/evolution/eu -@dirrm share/gnome/help/evolution/es/figures -@dirrm share/gnome/help/evolution/es -@dirrm share/gnome/help/evolution/en_GB/figures -@dirrm share/gnome/help/evolution/en_GB -@dirrm share/gnome/help/evolution/el/figures -@dirrm share/gnome/help/evolution/el -@dirrm share/gnome/help/evolution/de/figures -@dirrm share/gnome/help/evolution/de -@dirrm share/gnome/help/evolution/cs/figures -@dirrm share/gnome/help/evolution/cs -@dirrm share/gnome/help/evolution/C/figures -@dirrm share/gnome/help/evolution/C -@dirrm share/gnome/help/evolution -@dirrm %%DATADIR%%/%%VERSION%%/weather -@dirrm %%DATADIR%%/%%VERSION%%/views/tasks -@dirrm %%DATADIR%%/%%VERSION%%/views/memos -@dirrm %%DATADIR%%/%%VERSION%%/views/mail -@dirrm %%DATADIR%%/%%VERSION%%/views/calendar -@dirrm %%DATADIR%%/%%VERSION%%/views/addressbook -@dirrm %%DATADIR%%/%%VERSION%%/views -@dirrm %%DATADIR%%/%%VERSION%%/ui -@dirrm %%DATADIR%%/%%VERSION%%/sounds -@dirrm %%DATADIR%%/%%VERSION%%/images -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/categories -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48/apps -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/status -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/apps -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/places -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/apps -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/places -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/apps -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/places -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/apps -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/%%VERSION%%/icons/hicolor -@dirrm %%DATADIR%%/%%VERSION%%/icons -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/sv -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/sq -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/pt -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/pl -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/it -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/hu -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/fr -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/es -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/de -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/cs -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/ca -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref/C -@dirrm %%DATADIR%%/%%VERSION%%/help/quickref -@dirrm %%DATADIR%%/%%VERSION%%/help -@dirrm %%DATADIR%%/%%VERSION%%/glade -@dirrm %%DATADIR%%/%%VERSION%%/etspec -@dirrm %%DATADIR%%/%%VERSION%%/errors -@dirrm %%DATADIR%%/%%VERSION%%/ecps -@dirrm %%DATADIR%%/%%VERSION%%/default/zh_CN/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/zh_CN/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/zh_CN -@dirrm %%DATADIR%%/%%VERSION%%/default/sv/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/sv/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/sv -@dirrm %%DATADIR%%/%%VERSION%%/default/sr@latin/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/sr@latin/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/sr@latin -@dirrm %%DATADIR%%/%%VERSION%%/default/sr/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/sr/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/sr -@dirrm %%DATADIR%%/%%VERSION%%/default/pt/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/pt/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/pt -@dirrm %%DATADIR%%/%%VERSION%%/default/pl/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/pl/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/pl -@dirrm %%DATADIR%%/%%VERSION%%/default/nl/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/nl/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/nl -@dirrm %%DATADIR%%/%%VERSION%%/default/mk/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/mk/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/mk -@dirrm %%DATADIR%%/%%VERSION%%/default/lt/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/lt/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/lt -@dirrm %%DATADIR%%/%%VERSION%%/default/ko/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/ko/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/ko -@dirrm %%DATADIR%%/%%VERSION%%/default/ja/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/ja/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/ja -@dirrm %%DATADIR%%/%%VERSION%%/default/it/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/it/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/it -@dirrm %%DATADIR%%/%%VERSION%%/default/hu/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/hu/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/hu -@dirrm %%DATADIR%%/%%VERSION%%/default/fr/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/fr/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/fr -@dirrm %%DATADIR%%/%%VERSION%%/default/fi/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/fi/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/fi -@dirrm %%DATADIR%%/%%VERSION%%/default/es/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/es/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/es -@dirrm %%DATADIR%%/%%VERSION%%/default/de/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/de/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/de -@dirrm %%DATADIR%%/%%VERSION%%/default/cs/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/cs/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/cs -@dirrm %%DATADIR%%/%%VERSION%%/default/ca/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/ca/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/ca -@dirrm %%DATADIR%%/%%VERSION%%/default/C/mail/local -@dirrm %%DATADIR%%/%%VERSION%%/default/C/mail -@dirrm %%DATADIR%%/%%VERSION%%/default/C -@dirrm %%DATADIR%%/%%VERSION%%/default -@dirrm %%DATADIR%%/%%VERSION%% -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm libexec/evolution/%%VERSION%% -@dirrm libexec/evolution -@dirrm lib/evolution/%%VERSION%%/plugins -@dirrm lib/evolution/%%VERSION%%/components -@dirrm lib/evolution/%%VERSION%% -@dirrm lib/evolution -@dirrm include/evolution-%%VERSION%%/text -@dirrm include/evolution-%%VERSION%%/table -@dirrm include/evolution-%%VERSION%%/shell -@dirrm include/evolution-%%VERSION%%/misc -@dirrm include/evolution-%%VERSION%%/menus -@dirrm include/evolution-%%VERSION%%/mail -@dirrm include/evolution-%%VERSION%%/e-util -@dirrm include/evolution-%%VERSION%%/e-conduit -@dirrm include/evolution-%%VERSION%%/composer -@dirrm include/evolution-%%VERSION%%/calendar/gui/dialogs -@dirrm include/evolution-%%VERSION%%/calendar/gui -@dirrm include/evolution-%%VERSION%%/calendar -@dirrm include/evolution-%%VERSION%%/addressbook/gui/widgets -@dirrm include/evolution-%%VERSION%%/addressbook/gui -@dirrm include/evolution-%%VERSION%%/addressbook -@dirrm include/evolution-%%VERSION%% -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/mail/mail-notification/Makefile b/mail/mail-notification/Makefile deleted file mode 100644 index 5098958f5..000000000 --- a/mail/mail-notification/Makefile +++ /dev/null @@ -1,142 +0,0 @@ -# New ports collection makefile for: mail-notification -# Date created: 18 Sep 2003 -# Whom: Jean-Yves Lefort <jylefort@brutele.be> -# -# $FreeBSD$ -# - -PORTNAME= mail-notification -DISTVERSION= 5.4 -PORTREVISION= 1 -CATEGORIES= mail ipv6 -MASTER_SITES= ${MASTER_SITE_SAVANNAH} -MASTER_SITE_SUBDIR= mailnotify - -MAINTAINER= mwisnicki+freebsd@gmail.com -COMMENT= A mail notification for freedesktop.org-compliant system trays - -LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring \ - notify:${PORTSDIR}/devel/libnotify - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_GNOME= gconf2 gnomeprefix gnomevfs2 libglade2 libgnomeui libxml2 -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib -JB_CONF_ARGS= cc="${CC}" cflags="${CFLAGS}" cppflags="${CPPFLAGS}" ldflags="${LDFLAGS}" prefix="${PREFIX}" -JB_CONF_ENV= jb_cppflags="${CPPFLAGS}" jb_ldflags="${LDFLAGS}" -GCONF_SCHEMAS= mail-notification.schemas -INSTALLS_OMF= yes -INSTALLS_ICONS= yes - -OPTIONS= EVOLUTION "Evolution support" off \ - GMAIL "Gmail support" on \ - HOTMAIL "Windows Live Hotmail support" on \ - IMAP "IMAP support" on \ - MAILDIR "Maildir support" on \ - MBOX "mbox support" on \ - MH "MH support" on \ - MOZILLA "Mozilla products support" on \ - POP3 "POP3 support" on \ - SASL "SASL authentication support" on \ - SSL "SSL/TLS support" on \ - SYLPHEED "Sylpheed support" on \ - YAHOO "Yahoo! Mail support" on - -.include <bsd.port.pre.mk> - -.if defined(WITHOUT_MBOX) -JB_CONF_ARGS+= mbox=no -.endif -.if defined(WITHOUT_MH) -JB_CONF_ARGS+= mh=no -.endif -.if defined(WITHOUT_MAILDIR) -JB_CONF_ARGS+= maildir=no -.endif -.if defined(WITHOUT_POP3) -JB_CONF_ARGS+= pop3=no -.endif -.if defined(WITHOUT_IMAP) -JB_CONF_ARGS+= imap=no -.endif -.if defined(WITHOUT_POP3) && defined(WITHOUT_IMAP) -# only POP3 and IMAP use SSL and SASL -WITHOUT_SSL= yes -WITHOUT_SASL= yes -.endif -.if defined(WITHOUT_GMAIL) -JB_CONF_ARGS+= gmail=no -PLIST_SUB+= GMAIL="@comment " -.else -PLIST_SUB+= GMAIL="" -.endif -.if defined(WITHOUT_HOTMAIL) -JB_CONF_ARGS+= hotmail=no -PLIST_SUB+= HOTMAIL="@comment " -.else -RUN_DEPENDS+= getlive:${PORTSDIR}/mail/getlive -PLIST_SUB+= HOTMAIL="" -.endif -.if defined(WITHOUT_YAHOO) -JB_CONF_ARGS+= yahoo=no -PLIST_SUB+= YAHOO="@comment " -.else -RUN_DEPENDS+= fetchyahoo:${PORTSDIR}/mail/fetchyahoo -PLIST_SUB+= YAHOO="" -.endif -.if defined(WITHOUT_EVOLUTION) -JB_CONF_ARGS+= evolution=no -PLIST_SUB+= EVOLUTION="@comment " -.else -EVO_VERSION= 2.22 -BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/evolution-plugin.pc:${PORTSDIR}/mail/evolution -RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/evolution-plugin.pc:${PORTSDIR}/mail/evolution -PLIST_SUB+= EVOLUTION="" EVO_VERSION=${EVO_VERSION} -.endif -.if defined(WITHOUT_MOZILLA) -JB_CONF_ARGS+= mozilla=no -.endif -.if defined(WITHOUT_SYLPHEED) -JB_CONF_ARGS+= sylpheed=no -.endif -.if defined(WITH_MBOX) \ - || defined(WITH_MH) \ - || defined(WITH_MAILDIR) \ - || defined(WITH_POP3) \ - || defined(WITH_IMAP) \ - || defined(WITH_MOZILLA) \ - || defined(WITH_SYLPHEED) \ - || defined(WITH_HOTMAIL) \ - || defined(WITH_YAHOO) -LIB_DEPENDS+= gmime-2.0.4:${PORTSDIR}/mail/gmime2 -.endif -.if defined(WITHOUT_SSL) -JB_CONF_ARGS+= ssl=no -.else -# we can't use USE_OPENSSL=yes after including bsd.port.pre.mk -.include "${PORTSDIR}/Mk/bsd.openssl.mk" -.endif -.if defined(WITHOUT_SASL) -JB_CONF_ARGS+= sasl=no -.else -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 -.endif - -post-patch: -.if ${OSVERSION} < 700042 - @${REINPLACE_CMD} -e "s,-Wno-pointer-sign,," ${WRKSRC}/jb -.endif - -do-configure: - cd ${WRKSRC} && ${JB_CONF_ENV} ./jb configure ${JB_CONF_ARGS} - -do-build: - cd ${WRKSRC} && ./jb build - -do-install: - cd ${WRKSRC} && ./jb install - -.include <bsd.port.post.mk> diff --git a/mail/mail-notification/distinfo b/mail/mail-notification/distinfo deleted file mode 100644 index 9f3d34071..000000000 --- a/mail/mail-notification/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mail-notification-5.4.tar.bz2) = c8dc33a61251acb5474e56eab6b18f43 -SHA256 (mail-notification-5.4.tar.bz2) = 5dec5f3852437e7735269697c77a29a24ea230987c764523fe66dabdca815af5 -SIZE (mail-notification-5.4.tar.bz2) = 570008 diff --git a/mail/mail-notification/files/patch-openssl-threads b/mail/mail-notification/files/patch-openssl-threads deleted file mode 100644 index 8c935adef..000000000 --- a/mail/mail-notification/files/patch-openssl-threads +++ /dev/null @@ -1,11 +0,0 @@ ---- jbsrc/lib/src/extras/jb-openssl.c.orig 2008-04-27 16:47:43.000000000 +0200 -+++ jbsrc/lib/src/extras/jb-openssl.c 2008-07-10 22:48:53.000000000 +0200 -@@ -91,7 +91,7 @@ - result = jb_test_compile_string("#define OPENSSL_THREAD_DEFINES\n" - "#include <openssl/opensslconf.h>\n" - "int main () {\n" -- "#ifndef OPENSSL_THREADS\n" -+ "#if !defined(OPENSSL_THREADS) && !defined(THREADS)\n" - "#error \"no thread support\"\n" - "#endif\n" - "}\n", diff --git a/mail/mail-notification/files/patch-po_pl.po b/mail/mail-notification/files/patch-po_pl.po deleted file mode 100644 index 24bf6f940..000000000 --- a/mail/mail-notification/files/patch-po_pl.po +++ /dev/null @@ -1,15 +0,0 @@ ---- po/pl.po.orig 2008-05-22 17:38:01.000000000 +0200 -+++ po/pl.po 2008-07-11 01:44:09.000000000 +0200 -@@ -777,9 +777,9 @@ - #, c-format - msgid "feed retrieved successfully (%i byte)" - msgid_plural "feed retrieved successfully (%i bytes)" --msgstr[0] "nagłówek pobrany pomyślnie (%s bajt)" --msgstr[1] "nagłówek pobrany pomyślnie (%s bajty)" --msgstr[2] "nagłówek pobrany pomyślnie (%s bajtów)" -+msgstr[0] "nagłówek pobrany pomyślnie (%i bajt)" -+msgstr[1] "nagłówek pobrany pomyślnie (%i bajty)" -+msgstr[2] "nagłówek pobrany pomyślnie (%i bajtów)" - - #: ../src/mn-gmail-mailbox.gob:203 ../src/mn-gmail-mailbox.gob:254 - msgid "unable to parse feed" diff --git a/mail/mail-notification/pkg-descr b/mail/mail-notification/pkg-descr deleted file mode 100644 index 227c14361..000000000 --- a/mail/mail-notification/pkg-descr +++ /dev/null @@ -1,25 +0,0 @@ -Mail Notification is a status icon (aka tray icon) that informs you if you -have new mail. - -It works with system trays implementing the freedesktop.org System Tray -Specification, such as the GNOME Panel Notification Area, the Xfce -Notification Area and the KDE System Tray. - -Mail Notification features include: - - * multiple mailbox support - * mbox, MH, Maildir, POP3, IMAP, Gmail, Evolution, Mozilla products - (Mozilla, SeaMonkey, Thunderbird, ...) and Sylpheed support - * SASL authentication support - * APOP authentication support - * SSL/TLS support - * automatic detection of mailbox format - * immediate notification (the status icon is updated immediately or - within seconds after a mailbox changes) - * message popups - * HIG 2.0 compliance - -WWW: http://www.nongnu.org/mailnotify/ - -- Jean-Yves Lefort -jylefort@FreeBSD.org diff --git a/mail/mail-notification/pkg-plist b/mail/mail-notification/pkg-plist deleted file mode 100644 index aa5729cbb..000000000 --- a/mail/mail-notification/pkg-plist +++ /dev/null @@ -1,44 +0,0 @@ -bin/mail-notification -etc/xdg/autostart/mail-notification.desktop -share/applications/mail-notification-properties.desktop -share/gnome/help/mail-notification/C/documentation-license.xml -share/gnome/help/mail-notification/C/figures/mail.png -share/gnome/help/mail-notification/C/mail-notification.xml -share/gnome/help/mail-notification/C/software-license.xml -%%GMAIL%%share/mail-notification/gmail.png -%%HOTMAIL%%share/mail-notification/hotmail.png -share/mail-notification/logo.png -share/mail-notification/new-mail.wav -%%YAHOO%%share/mail-notification/yahoo.png -share/mail-notification/mailbox-properties-dialog.glade -share/mail-notification/properties-dialog.glade -share/omf/mail-notification/mail-notification-C.omf -share/icons/hicolor/16x16/apps/mail-notification.png -share/icons/hicolor/22x22/apps/mail-notification.png -share/icons/hicolor/24x24/apps/mail-notification.png -share/icons/hicolor/32x32/apps/mail-notification.png -share/icons/hicolor/48x48/apps/mail-notification.png -share/icons/hicolor/scalable/apps/mail-notification.svg -share/locale/bg/LC_MESSAGES/mail-notification.mo -share/locale/ca/LC_MESSAGES/mail-notification.mo -share/locale/cs/LC_MESSAGES/mail-notification.mo -share/locale/de/LC_MESSAGES/mail-notification.mo -share/locale/es/LC_MESSAGES/mail-notification.mo -share/locale/fr/LC_MESSAGES/mail-notification.mo -share/locale/ja/LC_MESSAGES/mail-notification.mo -share/locale/nl/LC_MESSAGES/mail-notification.mo -share/locale/pl/LC_MESSAGES/mail-notification.mo -share/locale/pt/LC_MESSAGES/mail-notification.mo -share/locale/pt_BR/LC_MESSAGES/mail-notification.mo -share/locale/ru/LC_MESSAGES/mail-notification.mo -share/locale/sr/LC_MESSAGES/mail-notification.mo -share/locale/sr@Latn/LC_MESSAGES/mail-notification.mo -share/locale/sv/LC_MESSAGES/mail-notification.mo -%%EVOLUTION%%lib/evolution/%%EVO_VERSION%%/plugins/liborg-jylefort-mail-notification.so -%%EVOLUTION%%lib/evolution/%%EVO_VERSION%%/plugins/org-jylefort-mail-notification.eplug -@dirrm share/omf/mail-notification -@dirrm share/mail-notification -@dirrm share/gnome/help/mail-notification/C/figures -@dirrm share/gnome/help/mail-notification/C -@dirrm share/gnome/help/mail-notification -@dirrmtry share/applications diff --git a/math/gcalctool/Makefile b/math/gcalctool/Makefile deleted file mode 100644 index c012c4fe7..000000000 --- a/math/gcalctool/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: gcalctool -# Date created: 12 Jun 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/math/gcalctool/Makefile,v 1.109 2009/03/05 04:31:57 marcus Exp $ -# - -PORTNAME= gcalctool -PORTVERSION= 5.26.0 -PORTEPOCH= 2 -CATEGORIES= math gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A GNOME 2 calculator tool based on the old calctool for OpenWindows - -USE_BZIP2= yes -USE_BISON= build -INSTALLS_OMF= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomeprefix gnomehack intlhack gconf2 gnomedocutils libglade2 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gcalctool.1 -GCONF_SCHEMAS= gcalctool.schemas - -.include <bsd.port.mk> diff --git a/math/gcalctool/distinfo b/math/gcalctool/distinfo deleted file mode 100644 index 4d900f9f3..000000000 --- a/math/gcalctool/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gcalctool-5.26.0.tar.bz2) = c2162ac18e9c1dae145cb79e677023c5 -SHA256 (gnome2/gcalctool-5.26.0.tar.bz2) = 3e1aafb46e8eef36a7bc9c60b3fa00bb3ff80f1fee7980f8077a9451faebf8f4 -SIZE (gnome2/gcalctool-5.26.0.tar.bz2) = 1994858 diff --git a/math/gcalctool/pkg-descr b/math/gcalctool/pkg-descr deleted file mode 100644 index 30e69fa21..000000000 --- a/math/gcalctool/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Gcalctool is a powerful graphical calulator with financial, logical and -scientific modes. It uses a multiple precision package to do its arithmetic to -give a high degree of accuracy. - -WWW: http://calctool.sourceforge.net/ diff --git a/math/gcalctool/pkg-plist b/math/gcalctool/pkg-plist deleted file mode 100644 index d40960c5f..000000000 --- a/math/gcalctool/pkg-plist +++ /dev/null @@ -1,296 +0,0 @@ -bin/gcalctool -bin/gnome-calculator -share/applications/gcalctool.desktop -%%DATADIR%%/gcalctool.glade -%%DATADIR%%/financial.glade -share/gnome/help/gcalctool/C/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/C/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/C/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/C/gcalctool.xml -share/gnome/help/gcalctool/C/legal.xml -share/gnome/help/gcalctool/bg/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/bg/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/bg/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/bg/gcalctool.xml -share/gnome/help/gcalctool/ca/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ca/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ca/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ca/gcalctool.xml -share/gnome/help/gcalctool/de/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/de/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/de/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/de/gcalctool.xml -share/gnome/help/gcalctool/es/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/es/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/es/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/es/gcalctool.xml -share/gnome/help/gcalctool/eu/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/eu/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/eu/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/eu/gcalctool.xml -share/gnome/help/gcalctool/fr/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/fr/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/fr/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/fr/gcalctool.xml -share/gnome/help/gcalctool/it/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/it/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/it/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/it/gcalctool.xml -share/gnome/help/gcalctool/ja/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ja/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ja/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ja/gcalctool.xml -share/gnome/help/gcalctool/ko/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ko/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ko/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ko/gcalctool.xml -share/gnome/help/gcalctool/oc/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/oc/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/oc/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/oc/gcalctool.xml -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/pt_BR/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/pt_BR/gcalctool.xml -share/gnome/help/gcalctool/ru/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/ru/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/ru/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/ru/gcalctool.xml -share/gnome/help/gcalctool/sv/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/sv/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/sv/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/sv/gcalctool.xml -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/zh_CN/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/zh_CN/gcalctool.xml -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/zh_HK/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/zh_HK/gcalctool.xml -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_advanced_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_basic_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_financial_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_menu_symbol.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_programming_window.png -share/gnome/help/gcalctool/zh_TW/figures/gcalctool_scientific_window.png -share/gnome/help/gcalctool/zh_TW/gcalctool.xml -share/locale/af/LC_MESSAGES/gcalctool.mo -share/locale/am/LC_MESSAGES/gcalctool.mo -share/locale/ar/LC_MESSAGES/gcalctool.mo -share/locale/as/LC_MESSAGES/gcalctool.mo -share/locale/ast/LC_MESSAGES/gcalctool.mo -share/locale/az/LC_MESSAGES/gcalctool.mo -share/locale/be/LC_MESSAGES/gcalctool.mo -share/locale/be@latin/LC_MESSAGES/gcalctool.mo -share/locale/bg/LC_MESSAGES/gcalctool.mo -share/locale/bn/LC_MESSAGES/gcalctool.mo -share/locale/bn_IN/LC_MESSAGES/gcalctool.mo -share/locale/bs/LC_MESSAGES/gcalctool.mo -share/locale/ca/LC_MESSAGES/gcalctool.mo -share/locale/cs/LC_MESSAGES/gcalctool.mo -share/locale/cy/LC_MESSAGES/gcalctool.mo -share/locale/da/LC_MESSAGES/gcalctool.mo -share/locale/de/LC_MESSAGES/gcalctool.mo -share/locale/dz/LC_MESSAGES/gcalctool.mo -share/locale/el/LC_MESSAGES/gcalctool.mo -share/locale/en_CA/LC_MESSAGES/gcalctool.mo -share/locale/en_GB/LC_MESSAGES/gcalctool.mo -share/locale/en_US/LC_MESSAGES/gcalctool.mo -share/locale/es/LC_MESSAGES/gcalctool.mo -share/locale/et/LC_MESSAGES/gcalctool.mo -share/locale/eu/LC_MESSAGES/gcalctool.mo -share/locale/fa/LC_MESSAGES/gcalctool.mo -share/locale/fi/LC_MESSAGES/gcalctool.mo -share/locale/fr/LC_MESSAGES/gcalctool.mo -share/locale/ga/LC_MESSAGES/gcalctool.mo -share/locale/gl/LC_MESSAGES/gcalctool.mo -share/locale/gu/LC_MESSAGES/gcalctool.mo -share/locale/he/LC_MESSAGES/gcalctool.mo -share/locale/hi/LC_MESSAGES/gcalctool.mo -share/locale/hr/LC_MESSAGES/gcalctool.mo -share/locale/hu/LC_MESSAGES/gcalctool.mo -share/locale/id/LC_MESSAGES/gcalctool.mo -share/locale/it/LC_MESSAGES/gcalctool.mo -share/locale/ja/LC_MESSAGES/gcalctool.mo -share/locale/ka/LC_MESSAGES/gcalctool.mo -share/locale/kn/LC_MESSAGES/gcalctool.mo -share/locale/ko/LC_MESSAGES/gcalctool.mo -share/locale/ku/LC_MESSAGES/gcalctool.mo -share/locale/lt/LC_MESSAGES/gcalctool.mo -share/locale/lv/LC_MESSAGES/gcalctool.mo -share/locale/mai/LC_MESSAGES/gcalctool.mo -share/locale/mg/LC_MESSAGES/gcalctool.mo -share/locale/mk/LC_MESSAGES/gcalctool.mo -share/locale/ml/LC_MESSAGES/gcalctool.mo -share/locale/mn/LC_MESSAGES/gcalctool.mo -share/locale/mr/LC_MESSAGES/gcalctool.mo -share/locale/ms/LC_MESSAGES/gcalctool.mo -share/locale/nb/LC_MESSAGES/gcalctool.mo -share/locale/ne/LC_MESSAGES/gcalctool.mo -share/locale/nl/LC_MESSAGES/gcalctool.mo -share/locale/nn/LC_MESSAGES/gcalctool.mo -share/locale/oc/LC_MESSAGES/gcalctool.mo -share/locale/or/LC_MESSAGES/gcalctool.mo -share/locale/pa/LC_MESSAGES/gcalctool.mo -share/locale/pl/LC_MESSAGES/gcalctool.mo -share/locale/pt/LC_MESSAGES/gcalctool.mo -share/locale/pt_BR/LC_MESSAGES/gcalctool.mo -share/locale/ro/LC_MESSAGES/gcalctool.mo -share/locale/ru/LC_MESSAGES/gcalctool.mo -share/locale/rw/LC_MESSAGES/gcalctool.mo -share/locale/si/LC_MESSAGES/gcalctool.mo -share/locale/sk/LC_MESSAGES/gcalctool.mo -share/locale/sl/LC_MESSAGES/gcalctool.mo -share/locale/sq/LC_MESSAGES/gcalctool.mo -share/locale/sr/LC_MESSAGES/gcalctool.mo -share/locale/sr@latin/LC_MESSAGES/gcalctool.mo -share/locale/sv/LC_MESSAGES/gcalctool.mo -share/locale/ta/LC_MESSAGES/gcalctool.mo -share/locale/te/LC_MESSAGES/gcalctool.mo -share/locale/th/LC_MESSAGES/gcalctool.mo -share/locale/tk/LC_MESSAGES/gcalctool.mo -share/locale/tr/LC_MESSAGES/gcalctool.mo -share/locale/uk/LC_MESSAGES/gcalctool.mo -share/locale/vi/LC_MESSAGES/gcalctool.mo -share/locale/xh/LC_MESSAGES/gcalctool.mo -share/locale/zh_CN/LC_MESSAGES/gcalctool.mo -share/locale/zh_HK/LC_MESSAGES/gcalctool.mo -share/locale/zh_TW/LC_MESSAGES/gcalctool.mo -share/omf/gcalctool/gcalctool-C.omf -share/omf/gcalctool/gcalctool-bg.omf -share/omf/gcalctool/gcalctool-ca.omf -share/omf/gcalctool/gcalctool-de.omf -share/omf/gcalctool/gcalctool-es.omf -share/omf/gcalctool/gcalctool-eu.omf -share/omf/gcalctool/gcalctool-fr.omf -share/omf/gcalctool/gcalctool-it.omf -share/omf/gcalctool/gcalctool-ja.omf -share/omf/gcalctool/gcalctool-ko.omf -share/omf/gcalctool/gcalctool-oc.omf -share/omf/gcalctool/gcalctool-pt_BR.omf -share/omf/gcalctool/gcalctool-ru.omf -share/omf/gcalctool/gcalctool-sv.omf -share/omf/gcalctool/gcalctool-zh_CN.omf -share/omf/gcalctool/gcalctool-zh_HK.omf -share/omf/gcalctool/gcalctool-zh_TW.omf -@dirrm share/omf/gcalctool -@dirrm share/gnome/help/gcalctool/zh_TW/figures -@dirrm share/gnome/help/gcalctool/zh_TW -@dirrm share/gnome/help/gcalctool/zh_HK/figures -@dirrm share/gnome/help/gcalctool/zh_HK -@dirrm share/gnome/help/gcalctool/zh_CN/figures -@dirrm share/gnome/help/gcalctool/zh_CN -@dirrm share/gnome/help/gcalctool/sv/figures -@dirrm share/gnome/help/gcalctool/sv -@dirrm share/gnome/help/gcalctool/ru/figures -@dirrm share/gnome/help/gcalctool/ru -@dirrm share/gnome/help/gcalctool/pt_BR/figures -@dirrm share/gnome/help/gcalctool/pt_BR -@dirrm share/gnome/help/gcalctool/oc/figures -@dirrm share/gnome/help/gcalctool/oc -@dirrm share/gnome/help/gcalctool/ko/figures -@dirrm share/gnome/help/gcalctool/ko -@dirrm share/gnome/help/gcalctool/ja/figures -@dirrm share/gnome/help/gcalctool/ja -@dirrm share/gnome/help/gcalctool/it/figures -@dirrm share/gnome/help/gcalctool/it -@dirrm share/gnome/help/gcalctool/fr/figures -@dirrm share/gnome/help/gcalctool/fr -@dirrm share/gnome/help/gcalctool/eu/figures -@dirrm share/gnome/help/gcalctool/eu -@dirrm share/gnome/help/gcalctool/es/figures -@dirrm share/gnome/help/gcalctool/es -@dirrm share/gnome/help/gcalctool/de/figures -@dirrm share/gnome/help/gcalctool/de -@dirrm share/gnome/help/gcalctool/ca/figures -@dirrm share/gnome/help/gcalctool/ca -@dirrm share/gnome/help/gcalctool/bg/figures -@dirrm share/gnome/help/gcalctool/bg -@dirrm share/gnome/help/gcalctool/C/figures -@dirrm share/gnome/help/gcalctool/C -@dirrm share/gnome/help/gcalctool -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/en_US/LC_MESSAGES -@dirrmtry share/locale/en_US -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/misc/gnome-devel-docs/Makefile b/misc/gnome-devel-docs/Makefile deleted file mode 100644 index b0fd7165b..000000000 --- a/misc/gnome-devel-docs/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: gnome-devel-docs -# Date created: 2007-09-18 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/misc/gnome-devel-docs/Makefile,v 1.8 2008/12/18 04:06:57 mezz Exp $ -# - -PORTNAME= gnome-devel-docs -PORTVERSION= 2.26.0 -CATEGORIES= misc gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= ahze@FreeBSD.org -COMMENT= Documents targeted for GNOME developers - -BUILD_DEPENDS= gnome-doc-prepare:${PORTSDIR}/textproc/gnome-doc-utils -RUN_DEPENDS= gnome-doc-prepare:${PORTSDIR}/textproc/gnome-doc-utils - -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_GNOME= gnomehier -INSTALLS_OMF= yes - -.include <bsd.port.mk> diff --git a/misc/gnome-devel-docs/distinfo b/misc/gnome-devel-docs/distinfo deleted file mode 100644 index eb71a6e03..000000000 --- a/misc/gnome-devel-docs/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-devel-docs-2.26.0.tar.bz2) = 122e1a90a2ff7bdea199ad9cb477c7a5 -SHA256 (gnome2/gnome-devel-docs-2.26.0.tar.bz2) = 000a6c42331190c0ce622ed491deffcf909d43b92eac5180a2b95d7392592c2e -SIZE (gnome2/gnome-devel-docs-2.26.0.tar.bz2) = 3420092 diff --git a/misc/gnome-devel-docs/pkg-descr b/misc/gnome-devel-docs/pkg-descr deleted file mode 100644 index 141383ea3..000000000 --- a/misc/gnome-devel-docs/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Documents targeted for GNOME developers diff --git a/misc/gnome-devel-docs/pkg-plist b/misc/gnome-devel-docs/pkg-plist deleted file mode 100644 index 3017ede02..000000000 --- a/misc/gnome-devel-docs/pkg-plist +++ /dev/null @@ -1,447 +0,0 @@ -share/gnome/help/accessibility-devel-guide/C/accessibility-devel-guide.xml -share/gnome/help/accessibility-devel-guide/C/figures/GNOME_desktop_Accessibility.png -share/gnome/help/accessibility-devel-guide/C/figures/at-arch.png -share/gnome/help/accessibility-devel-guide/C/figures/badfocus1.png -share/gnome/help/accessibility-devel-guide/C/figures/badfocus2.png -share/gnome/help/accessibility-devel-guide/C/figures/badfocus3.png -share/gnome/help/accessibility-devel-guide/C/figures/colour_and_arrows.png -share/gnome/help/accessibility-devel-guide/C/figures/colour_only.png -share/gnome/help/accessibility-devel-guide/C/figures/depend1.png -share/gnome/help/accessibility-devel-guide/C/figures/depend1a.png -share/gnome/help/accessibility-devel-guide/C/figures/depend2.png -share/gnome/help/accessibility-devel-guide/C/figures/depend2a.png -share/gnome/help/accessibility-devel-guide/C/figures/depend3.png -share/gnome/help/accessibility-devel-guide/C/figures/goodfocus.png -share/gnome/help/accessibility-devel-guide/C/figures/goodfocus2.png -share/gnome/help/accessibility-devel-guide/C/figures/goodfocus3.png -share/gnome/help/accessibility-devel-guide/C/figures/label_above.png -share/gnome/help/accessibility-devel-guide/C/figures/label_below.png -share/gnome/help/accessibility-devel-guide/C/figures/label_left.png -share/gnome/help/accessibility-devel-guide/C/figures/label_right.png -share/gnome/help/accessibility-devel-guide/C/figures/nodrop.png -share/gnome/help/accessibility-devel-guide/C/gad.xml -share/gnome/help/accessibility-devel-guide/C/gtest.xml -share/gnome/help/accessibility-devel-guide/C/legal.xml -share/gnome/help/gdp-handbook/C/builddocs.xml -share/gnome/help/gdp-handbook/C/callout_procedure.xml -share/gnome/help/gdp-handbook/C/contexthelp.xml -share/gnome/help/gdp-handbook/C/conventions.xml -share/gnome/help/gdp-handbook/C/crossreferencing.xml -share/gnome/help/gdp-handbook/C/docbook.xml -share/gnome/help/gdp-handbook/C/docsystem.xml -share/gnome/help/gdp-handbook/C/finish.xml -share/gnome/help/gdp-handbook/C/gdp-handbook.xml -share/gnome/help/gdp-handbook/C/getstarted.xml -share/gnome/help/gdp-handbook/C/introduction.xml -share/gnome/help/gdp-handbook/C/legal.xml -share/gnome/help/gdp-handbook/C/manuals.xml -share/gnome/help/gdp-handbook/C/resources.xml -share/gnome/help/gdp-handbook/C/screenshot_procedure.xml -share/gnome/help/gdp-handbook/C/sectids.xml -share/gnome/help/gdp-handbook/C/teamwork.xml -share/gnome/help/gdp-style-guide/C/Authorlist.xml -share/gnome/help/gdp-style-guide/C/accessibility.xml -share/gnome/help/gdp-style-guide/C/figures/applet_popup_menu.png -share/gnome/help/gdp-style-guide/C/figures/arrow_button1.png -share/gnome/help/gdp-style-guide/C/figures/arrow_button2.png -share/gnome/help/gdp-style-guide/C/figures/callout_notflow.png -share/gnome/help/gdp-style-guide/C/figures/check_box.png -share/gnome/help/gdp-style-guide/C/figures/color_selector_button.png -share/gnome/help/gdp-style-guide/C/figures/color_wheel1.png -share/gnome/help/gdp-style-guide/C/figures/color_wheel2.png -share/gnome/help/gdp-style-guide/C/figures/column_heading.png -share/gnome/help/gdp-style-guide/C/figures/command_button.png -share/gnome/help/gdp-style-guide/C/figures/desktop_background_menu.png -share/gnome/help/gdp-style-guide/C/figures/desktop_elements.png -share/gnome/help/gdp-style-guide/C/figures/dropdown_combination_box.png -share/gnome/help/gdp-style-guide/C/figures/dropdown_list_box.png -share/gnome/help/gdp-style-guide/C/figures/dropdown_section1.png -share/gnome/help/gdp-style-guide/C/figures/dropdown_section2.png -share/gnome/help/gdp-style-guide/C/figures/field.png -share/gnome/help/gdp-style-guide/C/figures/font_selector_button.png -share/gnome/help/gdp-style-guide/C/figures/footprint_icon.png -share/gnome/help/gdp-style-guide/C/figures/gnome_menu.png -share/gnome/help/gdp-style-guide/C/figures/group_box.png -share/gnome/help/gdp-style-guide/C/figures/icon_selector_button1.png -share/gnome/help/gdp-style-guide/C/figures/icon_selector_button2.png -share/gnome/help/gdp-style-guide/C/figures/launcher_popup_menu.png -share/gnome/help/gdp-style-guide/C/figures/list_box.png -share/gnome/help/gdp-style-guide/C/figures/panel_elements.png -share/gnome/help/gdp-style-guide/C/figures/panel_object_popup_menu.png -share/gnome/help/gdp-style-guide/C/figures/panel_popup_menu.png -share/gnome/help/gdp-style-guide/C/figures/radio_button.png -share/gnome/help/gdp-style-guide/C/figures/sample_anno_panel.png -share/gnome/help/gdp-style-guide/C/figures/scrollbar.png -share/gnome/help/gdp-style-guide/C/figures/slider.png -share/gnome/help/gdp-style-guide/C/figures/spin_box.png -share/gnome/help/gdp-style-guide/C/figures/tabbed_section.png -share/gnome/help/gdp-style-guide/C/figures/table.png -share/gnome/help/gdp-style-guide/C/figures/tabs.png -share/gnome/help/gdp-style-guide/C/figures/text_box.png -share/gnome/help/gdp-style-guide/C/figures/toggle_button.png -share/gnome/help/gdp-style-guide/C/figures/toolbar_button.png -share/gnome/help/gdp-style-guide/C/figures/window_elements.png -share/gnome/help/gdp-style-guide/C/figures/window_frame_button.png -share/gnome/help/gdp-style-guide/C/figures/window_list_button.png -share/gnome/help/gdp-style-guide/C/figures/window_menu.png -share/gnome/help/gdp-style-guide/C/figures/window_panes.png -share/gnome/help/gdp-style-guide/C/figures/window_titlebar_elements.png -share/gnome/help/gdp-style-guide/C/fundamentals.xml -share/gnome/help/gdp-style-guide/C/gdp-style-guide.xml -share/gnome/help/gdp-style-guide/C/grammar_usage.xml -share/gnome/help/gdp-style-guide/C/gui.xml -share/gnome/help/gdp-style-guide/C/improving.xml -share/gnome/help/gdp-style-guide/C/indexing.xml -share/gnome/help/gdp-style-guide/C/infoblocks.xml -share/gnome/help/gdp-style-guide/C/infodesign.xml -share/gnome/help/gdp-style-guide/C/language.xml -share/gnome/help/gdp-style-guide/C/legal.xml -share/gnome/help/gdp-style-guide/C/legal_issues.xml -share/gnome/help/gdp-style-guide/C/locale.xml -share/gnome/help/gdp-style-guide/C/preface.xml -share/gnome/help/gdp-style-guide/C/screenshot.xml -share/gnome/help/gdp-style-guide/C/units.xml -share/gnome/help/gdp-style-guide/C/usability.xml -share/gnome/help/gdp-style-guide/C/wordlist.xml -share/gnome/help/hig-book/C/hig-book.xml -share/gnome/help/hig-book/C/hig-ch-bibliography.xml -share/gnome/help/hig-book/C/hig-ch-checks.xml -share/gnome/help/hig-book/C/hig-ch-controls.xml -share/gnome/help/hig-book/C/hig-ch-credits.xml -share/gnome/help/hig-book/C/hig-ch-desktop.xml -share/gnome/help/hig-book/C/hig-ch-feedback.xml -share/gnome/help/hig-book/C/hig-ch-icons-new.xml -share/gnome/help/hig-book/C/hig-ch-icons.xml -share/gnome/help/hig-book/C/hig-ch-input.xml -share/gnome/help/hig-book/C/hig-ch-intro.xml -share/gnome/help/hig-book/C/hig-ch-language.xml -share/gnome/help/hig-book/C/hig-ch-layout.xml -share/gnome/help/hig-book/C/hig-ch-menus.xml -share/gnome/help/hig-book/C/hig-ch-principles.xml -share/gnome/help/hig-book/C/hig-ch-toolbars.xml -share/gnome/help/hig-book/C/hig-ch-whatsnew.xml -share/gnome/help/hig-book/C/hig-ch-windows.xml -share/gnome/help/hig-book/C/images/controls-buttons.png -share/gnome/help/hig-book/C/images/controls-check-box-ambiguous.png -share/gnome/help/hig-book/C/images/controls-check-boxes-mixed.png -share/gnome/help/hig-book/C/images/controls-check-boxes.png -share/gnome/help/hig-book/C/images/controls-combo.png -share/gnome/help/hig-book/C/images/controls-frames.png -share/gnome/help/hig-book/C/images/controls-list-checkbox.png -share/gnome/help/hig-book/C/images/controls-list.png -share/gnome/help/hig-book/C/images/controls-locked.png -share/gnome/help/hig-book/C/images/controls-notebook-list.png -share/gnome/help/hig-book/C/images/controls-notebook-tabs.png -share/gnome/help/hig-book/C/images/controls-notebook.png -share/gnome/help/hig-book/C/images/controls-old-frames.png -share/gnome/help/hig-book/C/images/controls-option-menu.png -share/gnome/help/hig-book/C/images/controls-progress-indeterminate.png -share/gnome/help/hig-book/C/images/controls-progress-time.png -share/gnome/help/hig-book/C/images/controls-progress-typical.png -share/gnome/help/hig-book/C/images/controls-radio-button-mixed.png -share/gnome/help/hig-book/C/images/controls-radio-buttons.png -share/gnome/help/hig-book/C/images/controls-sensitivity.png -share/gnome/help/hig-book/C/images/controls-slider-spinbox.png -share/gnome/help/hig-book/C/images/controls-slider.png -share/gnome/help/hig-book/C/images/controls-spin-box.png -share/gnome/help/hig-book/C/images/controls-status-bar-interactive.png -share/gnome/help/hig-book/C/images/controls-status-bar.png -share/gnome/help/hig-book/C/images/controls-text-choose.png -share/gnome/help/hig-book/C/images/controls-text-prompt.png -share/gnome/help/hig-book/C/images/controls-text.png -share/gnome/help/hig-book/C/images/controls-toggle-button-mixed.png -share/gnome/help/hig-book/C/images/controls-toggle-buttons.png -share/gnome/help/hig-book/C/images/controls-tree-checkbox.png -share/gnome/help/hig-book/C/images/controls-tree.png -share/gnome/help/hig-book/C/images/desktop-applications-menu.png -share/gnome/help/hig-book/C/images/feedback-checklist-running.png -share/gnome/help/hig-book/C/images/feedback-pointers-busy.png -share/gnome/help/hig-book/C/images/icon-design-process-1.png -share/gnome/help/hig-book/C/images/icon-design-process-10.png -share/gnome/help/hig-book/C/images/icon-design-process-11.png -share/gnome/help/hig-book/C/images/icon-design-process-12.png -share/gnome/help/hig-book/C/images/icon-design-process-2.png -share/gnome/help/hig-book/C/images/icon-design-process-3.png -share/gnome/help/hig-book/C/images/icon-design-process-4.png -share/gnome/help/hig-book/C/images/icon-design-process-5.png -share/gnome/help/hig-book/C/images/icon-design-process-6.png -share/gnome/help/hig-book/C/images/icon-design-process-7.png -share/gnome/help/hig-book/C/images/icon-design-process-8.png -share/gnome/help/hig-book/C/images/icon-design-process-9.png -share/gnome/help/hig-book/C/images/icons-applications.png -share/gnome/help/hig-book/C/images/icons-evolution.png -share/gnome/help/hig-book/C/images/icons-floppy-dissected.png -share/gnome/help/hig-book/C/images/icons-font-selection-good.png -share/gnome/help/hig-book/C/images/icons-font-selection-poor.png -share/gnome/help/hig-book/C/images/icons-gedit.png -share/gnome/help/hig-book/C/images/icons-gnumeric.png -share/gnome/help/hig-book/C/images/icons-hc-book-blur.png -share/gnome/help/hig-book/C/images/icons-hc-book.png -share/gnome/help/hig-book/C/images/icons-hc-cdrom-blur.png -share/gnome/help/hig-book/C/images/icons-hc-cdrom.png -share/gnome/help/hig-book/C/images/icons-hc-copy-blur.png -share/gnome/help/hig-book/C/images/icons-hc-copy.png -share/gnome/help/hig-book/C/images/icons-hc-metaphors.png -share/gnome/help/hig-book/C/images/icons-lowcontrast-levels.png -share/gnome/help/hig-book/C/images/icons-menu.png -share/gnome/help/hig-book/C/images/icons-nautilus.png -share/gnome/help/hig-book/C/images/icons-objects.png -share/gnome/help/hig-book/C/images/icons-perspective-shelf.png -share/gnome/help/hig-book/C/images/icons-perspective-table.png -share/gnome/help/hig-book/C/images/icons-shut-down.png -share/gnome/help/hig-book/C/images/icons-silhouette.png -share/gnome/help/hig-book/C/images/icons-sodipodi.png -share/gnome/help/hig-book/C/images/icons-style-aqua.png -share/gnome/help/hig-book/C/images/icons-style-gnome.png -share/gnome/help/hig-book/C/images/icons-style-java.png -share/gnome/help/hig-book/C/images/icons-system-log.png -share/gnome/help/hig-book/C/images/icons-toolbar.png -share/gnome/help/hig-book/C/images/icons-underline-text.png -share/gnome/help/hig-book/C/images/icons-word-processor.png -share/gnome/help/hig-book/C/images/input-accesskeys-shortcuts.png -share/gnome/help/hig-book/C/images/input-drag-cursor-copy.png -share/gnome/help/hig-book/C/images/input-drag-cursor-link.png -share/gnome/help/hig-book/C/images/input-drag-cursor-move.png -share/gnome/help/hig-book/C/images/input-drag-cursor-nodrop.png -share/gnome/help/hig-book/C/images/input-drag-cursor-query.png -share/gnome/help/hig-book/C/images/input-drag-cursor.png -share/gnome/help/hig-book/C/images/input-drag-select-files.png -share/gnome/help/hig-book/C/images/input-drag-select-graphics.png -share/gnome/help/hig-book/C/images/input-pointing-devices.png -share/gnome/help/hig-book/C/images/menus-application.png -share/gnome/help/hig-book/C/images/menus-bookmarks.png -share/gnome/help/hig-book/C/images/menus-checkbox-group.png -share/gnome/help/hig-book/C/images/menus-command-group.png -share/gnome/help/hig-book/C/images/menus-dropdown.png -share/gnome/help/hig-book/C/images/menus-edit.png -share/gnome/help/hig-book/C/images/menus-file.png -share/gnome/help/hig-book/C/images/menus-format.png -share/gnome/help/hig-book/C/images/menus-go-browser.png -share/gnome/help/hig-book/C/images/menus-go-document.png -share/gnome/help/hig-book/C/images/menus-help.png -share/gnome/help/hig-book/C/images/menus-insert.png -share/gnome/help/hig-book/C/images/menus-popup.png -share/gnome/help/hig-book/C/images/menus-radiobutton-group.png -share/gnome/help/hig-book/C/images/menus-submenu.png -share/gnome/help/hig-book/C/images/menus-view.png -share/gnome/help/hig-book/C/images/menus-windows.png -share/gnome/help/hig-book/C/images/toolbars-configure-menu.png -share/gnome/help/hig-book/C/images/toolbars-labels-below.png -share/gnome/help/hig-book/C/images/toolbars-labels-beside.png -share/gnome/help/hig-book/C/images/toolbars-mail.png -share/gnome/help/hig-book/C/images/visdes-button-label.png -share/gnome/help/hig-book/C/images/visdes-colorblind-deutan.png -share/gnome/help/hig-book/C/images/visdes-colorblind-normal.png -share/gnome/help/hig-book/C/images/visdes-colorblind-tritan.png -share/gnome/help/hig-book/C/images/visdes-large-icon-label.png -share/gnome/help/hig-book/C/images/visdes-layout-annotated.png -share/gnome/help/hig-book/C/images/visdes-layout-good.png -share/gnome/help/hig-book/C/images/visdes-layout-poor.png -share/gnome/help/hig-book/C/images/visdes-list-label.png -share/gnome/help/hig-book/C/images/visdes-other-labels.png -share/gnome/help/hig-book/C/images/visdes-palette-1.png -share/gnome/help/hig-book/C/images/visdes-palette-10.png -share/gnome/help/hig-book/C/images/visdes-palette-11.png -share/gnome/help/hig-book/C/images/visdes-palette-12.png -share/gnome/help/hig-book/C/images/visdes-palette-13.png -share/gnome/help/hig-book/C/images/visdes-palette-14.png -share/gnome/help/hig-book/C/images/visdes-palette-15.png -share/gnome/help/hig-book/C/images/visdes-palette-16.png -share/gnome/help/hig-book/C/images/visdes-palette-17.png -share/gnome/help/hig-book/C/images/visdes-palette-18.png -share/gnome/help/hig-book/C/images/visdes-palette-19.png -share/gnome/help/hig-book/C/images/visdes-palette-2.png -share/gnome/help/hig-book/C/images/visdes-palette-20.png -share/gnome/help/hig-book/C/images/visdes-palette-21.png -share/gnome/help/hig-book/C/images/visdes-palette-22.png -share/gnome/help/hig-book/C/images/visdes-palette-23.png -share/gnome/help/hig-book/C/images/visdes-palette-24.png -share/gnome/help/hig-book/C/images/visdes-palette-25.png -share/gnome/help/hig-book/C/images/visdes-palette-26.png -share/gnome/help/hig-book/C/images/visdes-palette-27.png -share/gnome/help/hig-book/C/images/visdes-palette-28.png -share/gnome/help/hig-book/C/images/visdes-palette-29.png -share/gnome/help/hig-book/C/images/visdes-palette-3.png -share/gnome/help/hig-book/C/images/visdes-palette-30.png -share/gnome/help/hig-book/C/images/visdes-palette-31.png -share/gnome/help/hig-book/C/images/visdes-palette-32.png -share/gnome/help/hig-book/C/images/visdes-palette-4.png -share/gnome/help/hig-book/C/images/visdes-palette-5.png -share/gnome/help/hig-book/C/images/visdes-palette-6.png -share/gnome/help/hig-book/C/images/visdes-palette-7.png -share/gnome/help/hig-book/C/images/visdes-palette-8.png -share/gnome/help/hig-book/C/images/visdes-palette-9.png -share/gnome/help/hig-book/C/images/visdes-palette.png -share/gnome/help/hig-book/C/images/visdes-radiobutton-label.png -share/gnome/help/hig-book/C/images/visdes-small-icon-label.png -share/gnome/help/hig-book/C/images/visdes-textbox-label.png -share/gnome/help/hig-book/C/images/windows-alert-authentication.png -share/gnome/help/hig-book/C/images/windows-alert-buttons.png -share/gnome/help/hig-book/C/images/windows-alert-confirmation.png -share/gnome/help/hig-book/C/images/windows-alert-error.png -share/gnome/help/hig-book/C/images/windows-alert-information.png -share/gnome/help/hig-book/C/images/windows-alert-save.png -share/gnome/help/hig-book/C/images/windows-alert-spacing.png -share/gnome/help/hig-book/C/images/windows-alert-text.png -share/gnome/help/hig-book/C/images/windows-assistant-first-page.png -share/gnome/help/hig-book/C/images/windows-assistant-middle-page.png -share/gnome/help/hig-book/C/images/windows-dialog-tabbed.png -share/gnome/help/hig-book/C/images/windows-explicit-apply.png -share/gnome/help/hig-book/C/images/windows-mdi.png -share/gnome/help/hig-book/C/images/windows-preferences.png -share/gnome/help/hig-book/C/images/windows-primary.png -share/gnome/help/hig-book/C/images/windows-progress-checklist-done.png -share/gnome/help/hig-book/C/images/windows-progress-checklist-start.png -share/gnome/help/hig-book/C/images/windows-progress-checklist.png -share/gnome/help/hig-book/C/images/windows-progress-copy-file.png -share/gnome/help/hig-book/C/images/windows-progress.png -share/gnome/help/hig-book/C/images/windows-properties.png -share/gnome/help/hig-book/C/images/windows-sdi.png -share/gnome/help/hig-book/C/images/windows-titlebar.png -share/gnome/help/hig-book/C/images/windows-toolbox-large.png -share/gnome/help/hig-book/C/images/windows-toolbox-small.png -share/gnome/help/integration-guide/C/integration-guide.xml -share/gnome/help/integration-guide/cs/integration-guide.xml -share/gnome/help/integration-guide/en_GB/integration-guide.xml -share/gnome/help/integration-guide/es/integration-guide.xml -share/gnome/help/integration-guide/pt_BR/integration-guide.xml -share/gnome/help/integration-guide/sv/integration-guide.xml -share/gnome/help/integration-guide/zh_CN/integration-guide.xml -share/gnome/help/optimization-guide/C/figures/massif-after.png -share/gnome/help/optimization-guide/C/figures/massif-before.png -share/gnome/help/optimization-guide/C/optimization-guide.xml -share/gnome/help/optimization-guide/C/optimization-harmful.xml -share/gnome/help/optimization-guide/C/optimization-intro.xml -share/gnome/help/optimization-guide/C/optimization-massif.xml -share/gnome/help/platform-overview/C/apx-modules.xml -share/gnome/help/platform-overview/C/bindings.xml -share/gnome/help/platform-overview/C/core-tech.xml -share/gnome/help/platform-overview/C/desktop-tech.xml -share/gnome/help/platform-overview/C/figures/graphics.png -share/gnome/help/platform-overview/C/figures/i18n.png -share/gnome/help/platform-overview/C/figures/pango.png -share/gnome/help/platform-overview/C/intro.xml -share/gnome/help/platform-overview/C/ipc-network.xml -share/gnome/help/platform-overview/C/legal-fdl.xml -share/gnome/help/platform-overview/C/platform-overview.xml -share/gnome/help/platform-overview/C/platform.xml -share/gnome/help/platform-overview/es/apx-modules.xml -share/gnome/help/platform-overview/es/bindings.xml -share/gnome/help/platform-overview/es/core-tech.xml -share/gnome/help/platform-overview/es/desktop-tech.xml -share/gnome/help/platform-overview/es/figures/graphics.png -share/gnome/help/platform-overview/es/figures/i18n.png -share/gnome/help/platform-overview/es/figures/pango.png -share/gnome/help/platform-overview/es/intro.xml -share/gnome/help/platform-overview/es/ipc-network.xml -share/gnome/help/platform-overview/es/legal-fdl.xml -share/gnome/help/platform-overview/es/platform-overview.xml -share/gnome/help/platform-overview/es/platform.xml -share/gnome/help/platform-overview/fr/apx-modules.xml -share/gnome/help/platform-overview/fr/bindings.xml -share/gnome/help/platform-overview/fr/core-tech.xml -share/gnome/help/platform-overview/fr/desktop-tech.xml -share/gnome/help/platform-overview/fr/figures/graphics.png -share/gnome/help/platform-overview/fr/figures/i18n.png -share/gnome/help/platform-overview/fr/figures/pango.png -share/gnome/help/platform-overview/fr/intro.xml -share/gnome/help/platform-overview/fr/ipc-network.xml -share/gnome/help/platform-overview/fr/legal-fdl.xml -share/gnome/help/platform-overview/fr/platform-overview.xml -share/gnome/help/platform-overview/fr/platform.xml -share/gnome/help/platform-overview/it/apx-modules.xml -share/gnome/help/platform-overview/it/bindings.xml -share/gnome/help/platform-overview/it/core-tech.xml -share/gnome/help/platform-overview/it/desktop-tech.xml -share/gnome/help/platform-overview/it/figures/graphics.png -share/gnome/help/platform-overview/it/figures/i18n.png -share/gnome/help/platform-overview/it/figures/pango.png -share/gnome/help/platform-overview/it/intro.xml -share/gnome/help/platform-overview/it/ipc-network.xml -share/gnome/help/platform-overview/it/legal-fdl.xml -share/gnome/help/platform-overview/it/platform-overview.xml -share/gnome/help/platform-overview/it/platform.xml -share/gnome/help/platform-overview/oc/apx-modules.xml -share/gnome/help/platform-overview/oc/bindings.xml -share/gnome/help/platform-overview/oc/core-tech.xml -share/gnome/help/platform-overview/oc/desktop-tech.xml -share/gnome/help/platform-overview/oc/figures/graphics.png -share/gnome/help/platform-overview/oc/figures/i18n.png -share/gnome/help/platform-overview/oc/figures/pango.png -share/gnome/help/platform-overview/oc/intro.xml -share/gnome/help/platform-overview/oc/ipc-network.xml -share/gnome/help/platform-overview/oc/legal-fdl.xml -share/gnome/help/platform-overview/oc/platform-overview.xml -share/gnome/help/platform-overview/oc/platform.xml -share/gnome/help/platform-overview/ru/apx-modules.xml -share/gnome/help/platform-overview/ru/bindings.xml -share/gnome/help/platform-overview/ru/core-tech.xml -share/gnome/help/platform-overview/ru/desktop-tech.xml -share/gnome/help/platform-overview/ru/figures/graphics.png -share/gnome/help/platform-overview/ru/figures/i18n.png -share/gnome/help/platform-overview/ru/figures/pango.png -share/gnome/help/platform-overview/ru/intro.xml -share/gnome/help/platform-overview/ru/ipc-network.xml -share/gnome/help/platform-overview/ru/legal-fdl.xml -share/gnome/help/platform-overview/ru/platform-overview.xml -share/gnome/help/platform-overview/ru/platform.xml -share/omf/accessibility-devel-guide/accessibility-devel-guide-C.omf -share/omf/gdp-handbook/gdp-handbook-C.omf -share/omf/gdp-style-guide/gdp-style-guide-C.omf -share/omf/hig-book/hig-book-C.omf -share/omf/integration-guide/integration-guide-C.omf -share/omf/integration-guide/integration-guide-cs.omf -share/omf/integration-guide/integration-guide-en_GB.omf -share/omf/integration-guide/integration-guide-es.omf -share/omf/integration-guide/integration-guide-pt_BR.omf -share/omf/integration-guide/integration-guide-sv.omf -share/omf/integration-guide/integration-guide-zh_CN.omf -share/omf/optimization-guide/optimization-guide-C.omf -share/omf/platform-overview/platform-overview-C.omf -share/omf/platform-overview/platform-overview-es.omf -share/omf/platform-overview/platform-overview-fr.omf -share/omf/platform-overview/platform-overview-it.omf -share/omf/platform-overview/platform-overview-oc.omf -share/omf/platform-overview/platform-overview-ru.omf -@dirrm share/omf/platform-overview -@dirrm share/omf/optimization-guide -@dirrm share/omf/integration-guide -@dirrm share/omf/hig-book -@dirrm share/omf/gdp-style-guide -@dirrm share/omf/gdp-handbook -@dirrm share/omf/accessibility-devel-guide -@dirrm share/gnome/help/platform-overview/ru/figures -@dirrm share/gnome/help/platform-overview/ru -@dirrm share/gnome/help/platform-overview/oc/figures -@dirrm share/gnome/help/platform-overview/oc -@dirrm share/gnome/help/platform-overview/it/figures -@dirrm share/gnome/help/platform-overview/it -@dirrm share/gnome/help/platform-overview/fr/figures -@dirrm share/gnome/help/platform-overview/fr -@dirrm share/gnome/help/platform-overview/es/figures -@dirrm share/gnome/help/platform-overview/es -@dirrm share/gnome/help/platform-overview/C/figures -@dirrm share/gnome/help/platform-overview/C -@dirrm share/gnome/help/platform-overview -@dirrm share/gnome/help/optimization-guide/C/figures -@dirrm share/gnome/help/optimization-guide/C -@dirrm share/gnome/help/optimization-guide -@dirrm share/gnome/help/integration-guide/zh_CN -@dirrm share/gnome/help/integration-guide/sv -@dirrm share/gnome/help/integration-guide/pt_BR -@dirrm share/gnome/help/integration-guide/es -@dirrm share/gnome/help/integration-guide/en_GB -@dirrm share/gnome/help/integration-guide/cs -@dirrm share/gnome/help/integration-guide/C -@dirrm share/gnome/help/integration-guide -@dirrm share/gnome/help/hig-book/C/images -@dirrm share/gnome/help/hig-book/C -@dirrm share/gnome/help/hig-book -@dirrm share/gnome/help/gdp-style-guide/C/figures -@dirrm share/gnome/help/gdp-style-guide/C -@dirrm share/gnome/help/gdp-style-guide -@dirrm share/gnome/help/gdp-handbook/C -@dirrm share/gnome/help/gdp-handbook -@dirrm share/gnome/help/accessibility-devel-guide/C/figures -@dirrm share/gnome/help/accessibility-devel-guide/C -@dirrm share/gnome/help/accessibility-devel-guide diff --git a/misc/gnome-icon-theme/Makefile b/misc/gnome-icon-theme/Makefile deleted file mode 100644 index 6871ff422..000000000 --- a/misc/gnome-icon-theme/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: gnome-icon-theme -# Date Created: 05 October 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/misc/gnome-icon-theme/Makefile,v 1.128 2009/03/17 23:44:58 kwm Exp $ -# - -PORTNAME= gnome-icon-theme -PORTVERSION= 2.26.0 -PORTREVISION= 1 -CATEGORIES= misc gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A collection of icons for the GNOME 2 desktop - -BUILD_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme \ - icon-naming-utils>=0.8.1:${PORTSDIR}/x11-themes/icon-naming-utils -RUN_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme - -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_GNOME= gnomehack intlhack gtk20 -INSTALLS_ICONS= yes -CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -post-patch: - @${REINPLACE_CMD} -e 's|[(]datadir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e 's|@mkdir_p@|mkdir -p|g' \ - ${WRKSRC}/po/Makefile.in.in - -post-install: - @${MKDIR} ${PREFIX}/share/icons/gnome/48x48/apps - -.include <bsd.port.mk> diff --git a/misc/gnome-icon-theme/distinfo b/misc/gnome-icon-theme/distinfo deleted file mode 100644 index 1b7fb55d0..000000000 --- a/misc/gnome-icon-theme/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-icon-theme-2.26.0.tar.bz2) = 36a4e5e1b2c7c053779a9a399f6146a2 -SHA256 (gnome2/gnome-icon-theme-2.26.0.tar.bz2) = 4320c937d4d211ac39633aa39b55e770b9a996697c857e2b8033c40323384709 -SIZE (gnome2/gnome-icon-theme-2.26.0.tar.bz2) = 3456985 diff --git a/misc/gnome-icon-theme/pkg-descr b/misc/gnome-icon-theme/pkg-descr deleted file mode 100644 index 426526f6d..000000000 --- a/misc/gnome-icon-theme/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -gnome-icon-theme is a collection of icons and emblems for the -GNOME 2 desktop. Included are the images used in toolbars, -dialog boxes, etc. diff --git a/misc/gnome-icon-theme/pkg-plist b/misc/gnome-icon-theme/pkg-plist deleted file mode 100644 index f05db2181..000000000 --- a/misc/gnome-icon-theme/pkg-plist +++ /dev/null @@ -1,6456 +0,0 @@ -libdata/pkgconfig/gnome-icon-theme.pc -share/icons/gnome/16x16/actions/add.png -share/icons/gnome/16x16/actions/address-book-new.png -share/icons/gnome/16x16/actions/application-exit.png -share/icons/gnome/16x16/actions/appointment-new.png -share/icons/gnome/16x16/actions/appointment.png -share/icons/gnome/16x16/actions/back.png -share/icons/gnome/16x16/actions/bookmark-new.png -share/icons/gnome/16x16/actions/bookmark_add.png -share/icons/gnome/16x16/actions/bookmarks_list_add.png -share/icons/gnome/16x16/actions/bottom.png -share/icons/gnome/16x16/actions/call-start.png -share/icons/gnome/16x16/actions/call-stop.png -share/icons/gnome/16x16/actions/centrejust.png -share/icons/gnome/16x16/actions/contact-new.png -share/icons/gnome/16x16/actions/document-new.png -share/icons/gnome/16x16/actions/document-open-recent.png -share/icons/gnome/16x16/actions/document-open.png -share/icons/gnome/16x16/actions/document-page-setup.png -share/icons/gnome/16x16/actions/document-print-preview.png -share/icons/gnome/16x16/actions/document-print.png -share/icons/gnome/16x16/actions/document-properties.png -share/icons/gnome/16x16/actions/document-revert.png -share/icons/gnome/16x16/actions/document-save-as.png -share/icons/gnome/16x16/actions/document-save.png -share/icons/gnome/16x16/actions/document-send.png -share/icons/gnome/16x16/actions/down.png -share/icons/gnome/16x16/actions/edit-clear.png -share/icons/gnome/16x16/actions/edit-copy.png -share/icons/gnome/16x16/actions/edit-cut.png -share/icons/gnome/16x16/actions/edit-delete.png -share/icons/gnome/16x16/actions/edit-find-replace.png -share/icons/gnome/16x16/actions/edit-find.png -share/icons/gnome/16x16/actions/edit-paste.png -share/icons/gnome/16x16/actions/edit-redo.png -share/icons/gnome/16x16/actions/edit-select-all.png -share/icons/gnome/16x16/actions/edit-undo.png -share/icons/gnome/16x16/actions/editclear.png -share/icons/gnome/16x16/actions/editcopy.png -share/icons/gnome/16x16/actions/editcut.png -share/icons/gnome/16x16/actions/editdelete.png -share/icons/gnome/16x16/actions/editpaste.png -share/icons/gnome/16x16/actions/exit.png -share/icons/gnome/16x16/actions/filefind.png -share/icons/gnome/16x16/actions/filenew.png -share/icons/gnome/16x16/actions/fileopen.png -share/icons/gnome/16x16/actions/fileprint.png -share/icons/gnome/16x16/actions/filequickprint.png -share/icons/gnome/16x16/actions/filesave.png -share/icons/gnome/16x16/actions/filesaveas.png -share/icons/gnome/16x16/actions/find.png -share/icons/gnome/16x16/actions/finish.png -share/icons/gnome/16x16/actions/folder-new.png -share/icons/gnome/16x16/actions/folder_new.png -share/icons/gnome/16x16/actions/format-indent-less.png -share/icons/gnome/16x16/actions/format-indent-more.png -share/icons/gnome/16x16/actions/format-justify-center.png -share/icons/gnome/16x16/actions/format-justify-fill.png -share/icons/gnome/16x16/actions/format-justify-left.png -share/icons/gnome/16x16/actions/format-justify-right.png -share/icons/gnome/16x16/actions/format-text-bold.png -share/icons/gnome/16x16/actions/format-text-direction-ltr.png -share/icons/gnome/16x16/actions/format-text-direction-rtl.png -share/icons/gnome/16x16/actions/format-text-italic.png -share/icons/gnome/16x16/actions/format-text-strikethrough.png -share/icons/gnome/16x16/actions/format-text-underline.png -share/icons/gnome/16x16/actions/forward.png -share/icons/gnome/16x16/actions/gnome-lockscreen.png -share/icons/gnome/16x16/actions/gnome-logout.png -share/icons/gnome/16x16/actions/gnome-run.png -share/icons/gnome/16x16/actions/gnome-searchtool.png -share/icons/gnome/16x16/actions/gnome-shutdown.png -share/icons/gnome/16x16/actions/gnome-stock-mail-fwd.png -share/icons/gnome/16x16/actions/gnome-stock-mail-new.png -share/icons/gnome/16x16/actions/gnome-stock-mail-rpl.png -share/icons/gnome/16x16/actions/gnome-stock-mail-snd.png -share/icons/gnome/16x16/actions/gnome-stock-text-indent.png -share/icons/gnome/16x16/actions/gnome-stock-text-unindent.png -share/icons/gnome/16x16/actions/go-bottom.png -share/icons/gnome/16x16/actions/go-down.png -share/icons/gnome/16x16/actions/go-first.png -share/icons/gnome/16x16/actions/go-home.png -share/icons/gnome/16x16/actions/go-jump.png -share/icons/gnome/16x16/actions/go-last.png -share/icons/gnome/16x16/actions/go-next.png -share/icons/gnome/16x16/actions/go-previous.png -share/icons/gnome/16x16/actions/go-top.png -share/icons/gnome/16x16/actions/go-up.png -share/icons/gnome/16x16/actions/gohome.png -share/icons/gnome/16x16/actions/gtk-about.png -share/icons/gnome/16x16/actions/gtk-add.png -share/icons/gnome/16x16/actions/gtk-bold.png -share/icons/gnome/16x16/actions/gtk-cancel.png -share/icons/gnome/16x16/actions/gtk-clear.png -share/icons/gnome/16x16/actions/gtk-close.png -share/icons/gnome/16x16/actions/gtk-copy.png -share/icons/gnome/16x16/actions/gtk-cut.png -share/icons/gnome/16x16/actions/gtk-delete.png -share/icons/gnome/16x16/actions/gtk-edit.png -share/icons/gnome/16x16/actions/gtk-execute.png -share/icons/gnome/16x16/actions/gtk-find-and-replace.png -share/icons/gnome/16x16/actions/gtk-find.png -share/icons/gnome/16x16/actions/gtk-fullscreen.png -share/icons/gnome/16x16/actions/gtk-go-back-ltr.png -share/icons/gnome/16x16/actions/gtk-go-back-rtl.png -share/icons/gnome/16x16/actions/gtk-go-down.png -share/icons/gnome/16x16/actions/gtk-go-forward-ltr.png -share/icons/gnome/16x16/actions/gtk-go-forward-rtl.png -share/icons/gnome/16x16/actions/gtk-go-up.png -share/icons/gnome/16x16/actions/gtk-goto-bottom.png -share/icons/gnome/16x16/actions/gtk-goto-first-ltr.png -share/icons/gnome/16x16/actions/gtk-goto-first-rtl.png -share/icons/gnome/16x16/actions/gtk-goto-last-ltr.png -share/icons/gnome/16x16/actions/gtk-goto-last-rtl.png -share/icons/gnome/16x16/actions/gtk-goto-top.png -share/icons/gnome/16x16/actions/gtk-home.png -share/icons/gnome/16x16/actions/gtk-indent-ltr.png -share/icons/gnome/16x16/actions/gtk-indent-rtl.png -share/icons/gnome/16x16/actions/gtk-italic.png -share/icons/gnome/16x16/actions/gtk-jump-to-ltr.png -share/icons/gnome/16x16/actions/gtk-jump-to-rtl.png -share/icons/gnome/16x16/actions/gtk-justify-center.png -share/icons/gnome/16x16/actions/gtk-justify-fill.png -share/icons/gnome/16x16/actions/gtk-justify-left.png -share/icons/gnome/16x16/actions/gtk-justify-right.png -share/icons/gnome/16x16/actions/gtk-leave-fullscreen.png -share/icons/gnome/16x16/actions/gtk-media-forward-ltr.png -share/icons/gnome/16x16/actions/gtk-media-forward-rtl.png -share/icons/gnome/16x16/actions/gtk-media-next-ltr.png -share/icons/gnome/16x16/actions/gtk-media-next-rtl.png -share/icons/gnome/16x16/actions/gtk-media-pause.png -share/icons/gnome/16x16/actions/gtk-media-play-ltr.png -share/icons/gnome/16x16/actions/gtk-media-previous-ltr.png -share/icons/gnome/16x16/actions/gtk-media-previous-rtl.png -share/icons/gnome/16x16/actions/gtk-media-record.png -share/icons/gnome/16x16/actions/gtk-media-rewind-ltr.png -share/icons/gnome/16x16/actions/gtk-media-rewind-rtl.png -share/icons/gnome/16x16/actions/gtk-media-stop.png -share/icons/gnome/16x16/actions/gtk-new.png -share/icons/gnome/16x16/actions/gtk-open.png -share/icons/gnome/16x16/actions/gtk-paste.png -share/icons/gnome/16x16/actions/gtk-print-preview.png -share/icons/gnome/16x16/actions/gtk-print.png -share/icons/gnome/16x16/actions/gtk-properties.png -share/icons/gnome/16x16/actions/gtk-quit.png -share/icons/gnome/16x16/actions/gtk-redo-ltr.png -share/icons/gnome/16x16/actions/gtk-refresh.png -share/icons/gnome/16x16/actions/gtk-remove.png -share/icons/gnome/16x16/actions/gtk-revert-to-saved-ltr.png -share/icons/gnome/16x16/actions/gtk-revert-to-saved-rtl.png -share/icons/gnome/16x16/actions/gtk-save-as.png -share/icons/gnome/16x16/actions/gtk-save.png -share/icons/gnome/16x16/actions/gtk-select-all.png -share/icons/gnome/16x16/actions/gtk-sort-ascending.png -share/icons/gnome/16x16/actions/gtk-sort-descending.png -share/icons/gnome/16x16/actions/gtk-spell-check.png -share/icons/gnome/16x16/actions/gtk-stop.png -share/icons/gnome/16x16/actions/gtk-strikethrough.png -share/icons/gnome/16x16/actions/gtk-underline.png -share/icons/gnome/16x16/actions/gtk-undo-ltr.png -share/icons/gnome/16x16/actions/gtk-unindent-ltr.png -share/icons/gnome/16x16/actions/gtk-unindent-rtl.png -share/icons/gnome/16x16/actions/gtk-zoom-100.png -share/icons/gnome/16x16/actions/gtk-zoom-fit.png -share/icons/gnome/16x16/actions/gtk-zoom-in.png -share/icons/gnome/16x16/actions/gtk-zoom-out.png -share/icons/gnome/16x16/actions/help-about.png -share/icons/gnome/16x16/actions/help-contents.png -share/icons/gnome/16x16/actions/help-faq.png -share/icons/gnome/16x16/actions/insert-image.png -share/icons/gnome/16x16/actions/insert-link.png -share/icons/gnome/16x16/actions/insert-object.png -share/icons/gnome/16x16/actions/insert-text.png -share/icons/gnome/16x16/actions/kfind.png -share/icons/gnome/16x16/actions/kfm_home.png -share/icons/gnome/16x16/actions/leftjust.png -share/icons/gnome/16x16/actions/list-add.png -share/icons/gnome/16x16/actions/list-remove.png -share/icons/gnome/16x16/actions/lock.png -share/icons/gnome/16x16/actions/mail-forward.png -share/icons/gnome/16x16/actions/mail-mark-important.png -share/icons/gnome/16x16/actions/mail-mark-junk.png -share/icons/gnome/16x16/actions/mail-mark-notjunk.png -share/icons/gnome/16x16/actions/mail-mark-read.png -share/icons/gnome/16x16/actions/mail-mark-unread.png -share/icons/gnome/16x16/actions/mail-message-new.png -share/icons/gnome/16x16/actions/mail-reply-all.png -share/icons/gnome/16x16/actions/mail-reply-sender.png -share/icons/gnome/16x16/actions/mail-send-receive.png -share/icons/gnome/16x16/actions/mail-send.png -share/icons/gnome/16x16/actions/mail_forward.png -share/icons/gnome/16x16/actions/mail_new.png -share/icons/gnome/16x16/actions/mail_reply.png -share/icons/gnome/16x16/actions/mail_replyall.png -share/icons/gnome/16x16/actions/mail_send.png -share/icons/gnome/16x16/actions/mail_spam.png -share/icons/gnome/16x16/actions/media-eject.png -share/icons/gnome/16x16/actions/media-playback-pause.png -share/icons/gnome/16x16/actions/media-playback-start.png -share/icons/gnome/16x16/actions/media-playback-stop.png -share/icons/gnome/16x16/actions/media-record.png -share/icons/gnome/16x16/actions/media-seek-backward.png -share/icons/gnome/16x16/actions/media-seek-forward.png -share/icons/gnome/16x16/actions/media-skip-backward.png -share/icons/gnome/16x16/actions/media-skip-forward.png -share/icons/gnome/16x16/actions/next.png -share/icons/gnome/16x16/actions/object-flip-horizontal.png -share/icons/gnome/16x16/actions/object-flip-vertical.png -share/icons/gnome/16x16/actions/object-rotate-left.png -share/icons/gnome/16x16/actions/object-rotate-right.png -share/icons/gnome/16x16/actions/player_eject.png -share/icons/gnome/16x16/actions/player_end.png -share/icons/gnome/16x16/actions/player_fwd.png -share/icons/gnome/16x16/actions/player_pause.png -share/icons/gnome/16x16/actions/player_play.png -share/icons/gnome/16x16/actions/player_record.png -share/icons/gnome/16x16/actions/player_rew.png -share/icons/gnome/16x16/actions/player_start.png -share/icons/gnome/16x16/actions/player_stop.png -share/icons/gnome/16x16/actions/previous.png -share/icons/gnome/16x16/actions/process-stop.png -share/icons/gnome/16x16/actions/redhat-home.png -share/icons/gnome/16x16/actions/redo.png -share/icons/gnome/16x16/actions/reload.png -share/icons/gnome/16x16/actions/reload3.png -share/icons/gnome/16x16/actions/reload_all_tabs.png -share/icons/gnome/16x16/actions/reload_page.png -share/icons/gnome/16x16/actions/remove.png -share/icons/gnome/16x16/actions/revert.png -share/icons/gnome/16x16/actions/rightjust.png -share/icons/gnome/16x16/actions/search.png -share/icons/gnome/16x16/actions/start.png -share/icons/gnome/16x16/actions/stock_about.png -share/icons/gnome/16x16/actions/stock_add-bookmark.png -share/icons/gnome/16x16/actions/stock_bottom.png -share/icons/gnome/16x16/actions/stock_close.png -share/icons/gnome/16x16/actions/stock_copy.png -share/icons/gnome/16x16/actions/stock_cut.png -share/icons/gnome/16x16/actions/stock_delete.png -share/icons/gnome/16x16/actions/stock_down.png -share/icons/gnome/16x16/actions/stock_file-properites.png -share/icons/gnome/16x16/actions/stock_first.png -share/icons/gnome/16x16/actions/stock_fullscreen.png -share/icons/gnome/16x16/actions/stock_help-add-bookmark.png -share/icons/gnome/16x16/actions/stock_home.png -share/icons/gnome/16x16/actions/stock_last.png -share/icons/gnome/16x16/actions/stock_leave-fullscreen.png -share/icons/gnome/16x16/actions/stock_left.png -share/icons/gnome/16x16/actions/stock_mail-compose.png -share/icons/gnome/16x16/actions/stock_mail-forward.png -share/icons/gnome/16x16/actions/stock_mail-reply-to-all.png -share/icons/gnome/16x16/actions/stock_mail-reply.png -share/icons/gnome/16x16/actions/stock_mail-send-receive.png -share/icons/gnome/16x16/actions/stock_mail-send.png -share/icons/gnome/16x16/actions/stock_media-fwd.png -share/icons/gnome/16x16/actions/stock_media-next.png -share/icons/gnome/16x16/actions/stock_media-pause.png -share/icons/gnome/16x16/actions/stock_media-play.png -share/icons/gnome/16x16/actions/stock_media-prev.png -share/icons/gnome/16x16/actions/stock_media-rec.png -share/icons/gnome/16x16/actions/stock_media-rew.png -share/icons/gnome/16x16/actions/stock_media-stop.png -share/icons/gnome/16x16/actions/stock_new-address-book.png -share/icons/gnome/16x16/actions/stock_new-appointment.png -share/icons/gnome/16x16/actions/stock_new-bcard.png -share/icons/gnome/16x16/actions/stock_new-dir.png -share/icons/gnome/16x16/actions/stock_new-tab.png -share/icons/gnome/16x16/actions/stock_new-text.png -share/icons/gnome/16x16/actions/stock_new-window.png -share/icons/gnome/16x16/actions/stock_paste.png -share/icons/gnome/16x16/actions/stock_print-preview.png -share/icons/gnome/16x16/actions/stock_print-setup.png -share/icons/gnome/16x16/actions/stock_print.png -share/icons/gnome/16x16/actions/stock_properties.png -share/icons/gnome/16x16/actions/stock_redo.png -share/icons/gnome/16x16/actions/stock_refresh.png -share/icons/gnome/16x16/actions/stock_right.png -share/icons/gnome/16x16/actions/stock_save-as.png -share/icons/gnome/16x16/actions/stock_save.png -share/icons/gnome/16x16/actions/stock_search-and-replace.png -share/icons/gnome/16x16/actions/stock_search.png -share/icons/gnome/16x16/actions/stock_select-all.png -share/icons/gnome/16x16/actions/stock_spam.png -share/icons/gnome/16x16/actions/stock_spellcheck.png -share/icons/gnome/16x16/actions/stock_stop.png -share/icons/gnome/16x16/actions/stock_text-strikethrough.png -share/icons/gnome/16x16/actions/stock_text_bold.png -share/icons/gnome/16x16/actions/stock_text_center.png -share/icons/gnome/16x16/actions/stock_text_indent.png -share/icons/gnome/16x16/actions/stock_text_italic.png -share/icons/gnome/16x16/actions/stock_text_justify.png -share/icons/gnome/16x16/actions/stock_text_left.png -share/icons/gnome/16x16/actions/stock_text_right.png -share/icons/gnome/16x16/actions/stock_text_underlined.png -share/icons/gnome/16x16/actions/stock_text_unindent.png -share/icons/gnome/16x16/actions/stock_top.png -share/icons/gnome/16x16/actions/stock_undo.png -share/icons/gnome/16x16/actions/stock_up.png -share/icons/gnome/16x16/actions/stock_zoom-1.png -share/icons/gnome/16x16/actions/stock_zoom-in.png -share/icons/gnome/16x16/actions/stock_zoom-out.png -share/icons/gnome/16x16/actions/stock_zoom-page.png -share/icons/gnome/16x16/actions/stop.png -share/icons/gnome/16x16/actions/system-lock-screen.png -share/icons/gnome/16x16/actions/system-log-out.png -share/icons/gnome/16x16/actions/system-run.png -share/icons/gnome/16x16/actions/system-search.png -share/icons/gnome/16x16/actions/system-shutdown.png -share/icons/gnome/16x16/actions/tab-new.png -share/icons/gnome/16x16/actions/tab_new.png -share/icons/gnome/16x16/actions/text_bold.png -share/icons/gnome/16x16/actions/text_italic.png -share/icons/gnome/16x16/actions/text_strike.png -share/icons/gnome/16x16/actions/text_under.png -share/icons/gnome/16x16/actions/tools-check-spelling.png -share/icons/gnome/16x16/actions/top.png -share/icons/gnome/16x16/actions/undo.png -share/icons/gnome/16x16/actions/up.png -share/icons/gnome/16x16/actions/view-fullscreen.png -share/icons/gnome/16x16/actions/view-refresh.png -share/icons/gnome/16x16/actions/view-restore.png -share/icons/gnome/16x16/actions/view-sort-ascending.png -share/icons/gnome/16x16/actions/view-sort-descending.png -share/icons/gnome/16x16/actions/viewmag+.png -share/icons/gnome/16x16/actions/viewmag-.png -share/icons/gnome/16x16/actions/viewmag1.png -share/icons/gnome/16x16/actions/viewmagfit.png -share/icons/gnome/16x16/actions/window-close.png -share/icons/gnome/16x16/actions/window-new.png -share/icons/gnome/16x16/actions/window_fullscreen.png -share/icons/gnome/16x16/actions/window_new.png -share/icons/gnome/16x16/actions/window_nofullscreen.png -share/icons/gnome/16x16/actions/xfce-system-exit.png -share/icons/gnome/16x16/actions/xfce-system-lock.png -share/icons/gnome/16x16/actions/zoom-best-fit.png -share/icons/gnome/16x16/actions/zoom-fit-best.png -share/icons/gnome/16x16/actions/zoom-in.png -share/icons/gnome/16x16/actions/zoom-original.png -share/icons/gnome/16x16/actions/zoom-out.png -share/icons/gnome/16x16/animations/gnome-spinner.png -share/icons/gnome/16x16/animations/process-working.png -share/icons/gnome/16x16/apps/access.png -share/icons/gnome/16x16/apps/accessibility-directory.png -share/icons/gnome/16x16/apps/accessories-calculator.png -share/icons/gnome/16x16/apps/accessories-character-map.png -share/icons/gnome/16x16/apps/accessories-dictionary.png -share/icons/gnome/16x16/apps/accessories-text-editor.png -share/icons/gnome/16x16/apps/applets-screenshooter.png -share/icons/gnome/16x16/apps/arts.png -share/icons/gnome/16x16/apps/background.png -share/icons/gnome/16x16/apps/calc.png -share/icons/gnome/16x16/apps/config-language.png -share/icons/gnome/16x16/apps/config-users.png -share/icons/gnome/16x16/apps/file-manager.png -share/icons/gnome/16x16/apps/fonts.png -share/icons/gnome/16x16/apps/gnome-calculator.png -share/icons/gnome/16x16/apps/gnome-character-map.png -share/icons/gnome/16x16/apps/gnome-help.png -share/icons/gnome/16x16/apps/gnome-mixer.png -share/icons/gnome/16x16/apps/gnome-monitor.png -share/icons/gnome/16x16/apps/gnome-remote-desktop.png -share/icons/gnome/16x16/apps/gnome-settings-accessibility-technologies.png -share/icons/gnome/16x16/apps/gnome-settings-background.png -share/icons/gnome/16x16/apps/gnome-settings-font.png -share/icons/gnome/16x16/apps/gnome-settings-keybindings.png -share/icons/gnome/16x16/apps/gnome-settings-theme.png -share/icons/gnome/16x16/apps/gnome-terminal.png -share/icons/gnome/16x16/apps/gnome-window-manager.png -share/icons/gnome/16x16/apps/gtk-help.png -share/icons/gnome/16x16/apps/gucharmap.png -share/icons/gnome/16x16/apps/help-browser.png -share/icons/gnome/16x16/apps/help.png -share/icons/gnome/16x16/apps/im-aim.png -share/icons/gnome/16x16/apps/im-icq.png -share/icons/gnome/16x16/apps/im-jabber.png -share/icons/gnome/16x16/apps/im-msn.png -share/icons/gnome/16x16/apps/im-nov.png -share/icons/gnome/16x16/apps/im-yahoo.png -share/icons/gnome/16x16/apps/im.png -share/icons/gnome/16x16/apps/kcalc.png -share/icons/gnome/16x16/apps/kcharselect.png -share/icons/gnome/16x16/apps/kcmkwm.png -share/icons/gnome/16x16/apps/kcmsound.png -share/icons/gnome/16x16/apps/kedit.png -share/icons/gnome/16x16/apps/key_bindings.png -share/icons/gnome/16x16/apps/kfm.png -share/icons/gnome/16x16/apps/khelpcenter.png -share/icons/gnome/16x16/apps/konsole.png -share/icons/gnome/16x16/apps/krfb.png -share/icons/gnome/16x16/apps/kscreensaver.png -share/icons/gnome/16x16/apps/ksysguard.png -share/icons/gnome/16x16/apps/kuser.png -share/icons/gnome/16x16/apps/kwin.png -share/icons/gnome/16x16/apps/locale.png -share/icons/gnome/16x16/apps/logviewer.png -share/icons/gnome/16x16/apps/multimedia-volume-control.png -share/icons/gnome/16x16/apps/multimedia.png -share/icons/gnome/16x16/apps/openterm.png -share/icons/gnome/16x16/apps/preferences-desktop-accessibility.png -share/icons/gnome/16x16/apps/preferences-desktop-font.png -share/icons/gnome/16x16/apps/preferences-desktop-keyboard-shortcuts.png -share/icons/gnome/16x16/apps/preferences-desktop-keyboard.png -share/icons/gnome/16x16/apps/preferences-desktop-locale.png -share/icons/gnome/16x16/apps/preferences-desktop-remote-desktop.png -share/icons/gnome/16x16/apps/preferences-desktop-screensaver.png -share/icons/gnome/16x16/apps/preferences-desktop-theme.png -share/icons/gnome/16x16/apps/preferences-desktop-wallpaper.png -share/icons/gnome/16x16/apps/preferences-system-windows.png -share/icons/gnome/16x16/apps/redhat-filemanager.png -share/icons/gnome/16x16/apps/screensaver.png -share/icons/gnome/16x16/apps/stock_help.png -share/icons/gnome/16x16/apps/style.png -share/icons/gnome/16x16/apps/susehelpcenter.png -share/icons/gnome/16x16/apps/system-config-users.png -share/icons/gnome/16x16/apps/system-file-manager.png -share/icons/gnome/16x16/apps/system-software-install.png -share/icons/gnome/16x16/apps/system-software-update.png -share/icons/gnome/16x16/apps/system-users.png -share/icons/gnome/16x16/apps/terminal.png -share/icons/gnome/16x16/apps/text-editor.png -share/icons/gnome/16x16/apps/update-manager.png -share/icons/gnome/16x16/apps/user-info.png -share/icons/gnome/16x16/apps/utilities-system-monitor.png -share/icons/gnome/16x16/apps/utilities-terminal.png -share/icons/gnome/16x16/apps/volume-knob.png -share/icons/gnome/16x16/apps/wallpaper.png -share/icons/gnome/16x16/apps/web-browser.png -share/icons/gnome/16x16/apps/xfce-filemanager.png -share/icons/gnome/16x16/apps/xfce-terminal.png -share/icons/gnome/16x16/apps/xfce4-backdrop.png -share/icons/gnome/16x16/apps/xfce4-mixer.png -share/icons/gnome/16x16/apps/xfwm4.png -share/icons/gnome/16x16/apps/xscreensaver.png -share/icons/gnome/16x16/apps/zen-icon.png -share/icons/gnome/16x16/categories/applications-accessories.png -share/icons/gnome/16x16/categories/applications-development.png -share/icons/gnome/16x16/categories/applications-engineering.png -share/icons/gnome/16x16/categories/applications-games.png -share/icons/gnome/16x16/categories/applications-graphics.png -share/icons/gnome/16x16/categories/applications-internet.png -share/icons/gnome/16x16/categories/applications-multimedia.png -share/icons/gnome/16x16/categories/applications-office.png -share/icons/gnome/16x16/categories/applications-other.png -share/icons/gnome/16x16/categories/applications-science.png -share/icons/gnome/16x16/categories/applications-system.png -share/icons/gnome/16x16/categories/applications-utilities.png -share/icons/gnome/16x16/categories/gnome-applications.png -share/icons/gnome/16x16/categories/gnome-control-center.png -share/icons/gnome/16x16/categories/gnome-devel.png -share/icons/gnome/16x16/categories/gnome-globe.png -share/icons/gnome/16x16/categories/gnome-graphics.png -share/icons/gnome/16x16/categories/gnome-joystick.png -share/icons/gnome/16x16/categories/gnome-multimedia.png -share/icons/gnome/16x16/categories/gnome-other.png -share/icons/gnome/16x16/categories/gnome-settings.png -share/icons/gnome/16x16/categories/gnome-system.png -share/icons/gnome/16x16/categories/gnome-util.png -share/icons/gnome/16x16/categories/gtk-preferences.png -share/icons/gnome/16x16/categories/input_devices_settings.png -share/icons/gnome/16x16/categories/kcontrol.png -share/icons/gnome/16x16/categories/package_development.png -share/icons/gnome/16x16/categories/package_games.png -share/icons/gnome/16x16/categories/package_graphics.png -share/icons/gnome/16x16/categories/package_multimedia.png -share/icons/gnome/16x16/categories/package_network.png -share/icons/gnome/16x16/categories/package_office.png -share/icons/gnome/16x16/categories/package_settings.png -share/icons/gnome/16x16/categories/package_system.png -share/icons/gnome/16x16/categories/package_utilities.png -share/icons/gnome/16x16/categories/preferences-desktop-peripherals.png -share/icons/gnome/16x16/categories/preferences-desktop-personal.png -share/icons/gnome/16x16/categories/preferences-desktop.png -share/icons/gnome/16x16/categories/preferences-other.png -share/icons/gnome/16x16/categories/preferences-system-network.png -share/icons/gnome/16x16/categories/preferences-system.png -share/icons/gnome/16x16/categories/redhat-accessories.png -share/icons/gnome/16x16/categories/redhat-games.png -share/icons/gnome/16x16/categories/redhat-graphics.png -share/icons/gnome/16x16/categories/redhat-internet.png -share/icons/gnome/16x16/categories/redhat-office.png -share/icons/gnome/16x16/categories/redhat-preferences.png -share/icons/gnome/16x16/categories/redhat-programming.png -share/icons/gnome/16x16/categories/redhat-sound_video.png -share/icons/gnome/16x16/categories/redhat-system_settings.png -share/icons/gnome/16x16/categories/redhat-system_tools.png -share/icons/gnome/16x16/categories/stock_internet.png -share/icons/gnome/16x16/categories/system-help.png -share/icons/gnome/16x16/categories/xfce-games.png -share/icons/gnome/16x16/categories/xfce-graphics.png -share/icons/gnome/16x16/categories/xfce-internet.png -share/icons/gnome/16x16/categories/xfce-multimedia.png -share/icons/gnome/16x16/categories/xfce-office.png -share/icons/gnome/16x16/categories/xfce-system-settings.png -share/icons/gnome/16x16/categories/xfce-utils.png -share/icons/gnome/16x16/categories/xfce4-settings.png -share/icons/gnome/16x16/devices/3floppy_unmount.png -share/icons/gnome/16x16/devices/audio-card.png -share/icons/gnome/16x16/devices/audio-input-microphone.png -share/icons/gnome/16x16/devices/battery.png -share/icons/gnome/16x16/devices/camera-photo.png -share/icons/gnome/16x16/devices/camera-video.png -share/icons/gnome/16x16/devices/camera-web.png -share/icons/gnome/16x16/devices/camera.png -share/icons/gnome/16x16/devices/camera_unmount.png -share/icons/gnome/16x16/devices/cdrom_unmount.png -share/icons/gnome/16x16/devices/cdwriter_unmount.png -share/icons/gnome/16x16/devices/chardevice.png -share/icons/gnome/16x16/devices/computer.png -share/icons/gnome/16x16/devices/display.png -share/icons/gnome/16x16/devices/drive-cdrom.png -share/icons/gnome/16x16/devices/drive-harddisk.png -share/icons/gnome/16x16/devices/drive-optical.png -share/icons/gnome/16x16/devices/drive-removable-media.png -share/icons/gnome/16x16/devices/dvd_unmount.png -share/icons/gnome/16x16/devices/gnome-dev-battery.png -share/icons/gnome/16x16/devices/gnome-dev-cdrom-audio.png -share/icons/gnome/16x16/devices/gnome-dev-cdrom.png -share/icons/gnome/16x16/devices/gnome-dev-computer.png -share/icons/gnome/16x16/devices/gnome-dev-disc-cdr.png -share/icons/gnome/16x16/devices/gnome-dev-disc-cdrw.png -share/icons/gnome/16x16/devices/gnome-dev-disc-dvdr-plus.png -share/icons/gnome/16x16/devices/gnome-dev-disc-dvdr.png -share/icons/gnome/16x16/devices/gnome-dev-disc-dvdram.png -share/icons/gnome/16x16/devices/gnome-dev-disc-dvdrom.png -share/icons/gnome/16x16/devices/gnome-dev-disc-dvdrw.png -share/icons/gnome/16x16/devices/gnome-dev-dvd.png -share/icons/gnome/16x16/devices/gnome-dev-ethernet.png -share/icons/gnome/16x16/devices/gnome-dev-floppy.png -share/icons/gnome/16x16/devices/gnome-dev-harddisk-1394.png -share/icons/gnome/16x16/devices/gnome-dev-harddisk-usb.png -share/icons/gnome/16x16/devices/gnome-dev-harddisk.png -share/icons/gnome/16x16/devices/gnome-dev-ipod.png -share/icons/gnome/16x16/devices/gnome-dev-keyboard.png -share/icons/gnome/16x16/devices/gnome-dev-media-cf.png -share/icons/gnome/16x16/devices/gnome-dev-media-ms.png -share/icons/gnome/16x16/devices/gnome-dev-media-sdmmc.png -share/icons/gnome/16x16/devices/gnome-dev-media-sm.png -share/icons/gnome/16x16/devices/gnome-dev-mouse-ball.png -share/icons/gnome/16x16/devices/gnome-dev-mouse-optical.png -share/icons/gnome/16x16/devices/gnome-dev-printer.png -share/icons/gnome/16x16/devices/gnome-dev-removable-1394.png -share/icons/gnome/16x16/devices/gnome-dev-removable-usb.png -share/icons/gnome/16x16/devices/gnome-dev-removable.png -share/icons/gnome/16x16/devices/gnome-dev-wavelan.png -share/icons/gnome/16x16/devices/gnome-dev-zipdisk.png -share/icons/gnome/16x16/devices/gnome-fs-client.png -share/icons/gnome/16x16/devices/gnome-modem.png -share/icons/gnome/16x16/devices/gnome-stock-mic.png -share/icons/gnome/16x16/devices/gtk-cdrom.png -share/icons/gnome/16x16/devices/gtk-floppy.png -share/icons/gnome/16x16/devices/gtk-harddisk.png -share/icons/gnome/16x16/devices/harddrive.png -share/icons/gnome/16x16/devices/hdd_unmount.png -share/icons/gnome/16x16/devices/input-gaming.png -share/icons/gnome/16x16/devices/input-keyboard.png -share/icons/gnome/16x16/devices/input-mouse.png -share/icons/gnome/16x16/devices/input-tablet.png -share/icons/gnome/16x16/devices/ipod_mount.png -share/icons/gnome/16x16/devices/joystick.png -share/icons/gnome/16x16/devices/keyboard.png -share/icons/gnome/16x16/devices/kjobviewer.png -share/icons/gnome/16x16/devices/kxkb.png -share/icons/gnome/16x16/devices/media-cdrom.png -share/icons/gnome/16x16/devices/media-flash.png -share/icons/gnome/16x16/devices/media-floppy.png -share/icons/gnome/16x16/devices/media-optical.png -share/icons/gnome/16x16/devices/media-tape.png -share/icons/gnome/16x16/devices/media-zip.png -share/icons/gnome/16x16/devices/modem.png -share/icons/gnome/16x16/devices/mouse.png -share/icons/gnome/16x16/devices/multimedia-player.png -share/icons/gnome/16x16/devices/network-wired.png -share/icons/gnome/16x16/devices/network-wireless.png -share/icons/gnome/16x16/devices/pda.png -share/icons/gnome/16x16/devices/phone.png -share/icons/gnome/16x16/devices/printer-remote.png -share/icons/gnome/16x16/devices/printer.png -share/icons/gnome/16x16/devices/printer1.png -share/icons/gnome/16x16/devices/printmgr.png -share/icons/gnome/16x16/devices/scanner.png -share/icons/gnome/16x16/devices/stock_cell-phone.png -share/icons/gnome/16x16/devices/stock_mic.png -share/icons/gnome/16x16/devices/stock_printers.png -share/icons/gnome/16x16/devices/system-floppy.png -share/icons/gnome/16x16/devices/system.png -share/icons/gnome/16x16/devices/usbpendrive_unmount.png -share/icons/gnome/16x16/devices/video-display.png -share/icons/gnome/16x16/devices/xfce-printer.png -share/icons/gnome/16x16/devices/xfce4-display.png -share/icons/gnome/16x16/devices/xfce4-keyboard.png -share/icons/gnome/16x16/devices/xfce4-mouse.png -share/icons/gnome/16x16/devices/yast_HD.png -share/icons/gnome/16x16/devices/yast_idetude.png -share/icons/gnome/16x16/devices/yast_joystick.png -share/icons/gnome/16x16/devices/yast_mouse.png -share/icons/gnome/16x16/devices/yast_printer.png -share/icons/gnome/16x16/devices/yast_soundcard.png -share/icons/gnome/16x16/emblems/emblem-default.png -share/icons/gnome/16x16/emblems/emblem-documents.png -share/icons/gnome/16x16/emblems/emblem-downloads.png -share/icons/gnome/16x16/emblems/emblem-favorite.png -share/icons/gnome/16x16/emblems/emblem-generic.png -share/icons/gnome/16x16/emblems/emblem-important.png -share/icons/gnome/16x16/emblems/emblem-mail.png -share/icons/gnome/16x16/emblems/emblem-new.png -share/icons/gnome/16x16/emblems/emblem-noread.png -share/icons/gnome/16x16/emblems/emblem-nowrite.png -share/icons/gnome/16x16/emblems/emblem-package.png -share/icons/gnome/16x16/emblems/emblem-photos.png -share/icons/gnome/16x16/emblems/emblem-readonly.png -share/icons/gnome/16x16/emblems/emblem-shared.png -share/icons/gnome/16x16/emblems/emblem-symbolic-link.png -share/icons/gnome/16x16/emblems/emblem-system.png -share/icons/gnome/16x16/emblems/emblem-unreadable.png -share/icons/gnome/16x16/emblems/emblem-urgent.png -share/icons/gnome/16x16/emblems/emblem-web.png -share/icons/gnome/16x16/emblems/stock_mail-priority-high.png -share/icons/gnome/16x16/emotes/face-angel.png -share/icons/gnome/16x16/emotes/face-angry.png -share/icons/gnome/16x16/emotes/face-cool.png -share/icons/gnome/16x16/emotes/face-crying.png -share/icons/gnome/16x16/emotes/face-devilish.png -share/icons/gnome/16x16/emotes/face-embarrassed.png -share/icons/gnome/16x16/emotes/face-kiss.png -share/icons/gnome/16x16/emotes/face-laugh.png -share/icons/gnome/16x16/emotes/face-monkey.png -share/icons/gnome/16x16/emotes/face-plain.png -share/icons/gnome/16x16/emotes/face-raspberry.png -share/icons/gnome/16x16/emotes/face-sad.png -share/icons/gnome/16x16/emotes/face-sick.png -share/icons/gnome/16x16/emotes/face-smile-big.png -share/icons/gnome/16x16/emotes/face-smile.png -share/icons/gnome/16x16/emotes/face-smirk.png -share/icons/gnome/16x16/emotes/face-surprise.png -share/icons/gnome/16x16/emotes/face-tired.png -share/icons/gnome/16x16/emotes/face-uncertain.png -share/icons/gnome/16x16/emotes/face-wink.png -share/icons/gnome/16x16/emotes/face-worried.png -share/icons/gnome/16x16/emotes/stock_smiley-1.png -share/icons/gnome/16x16/emotes/stock_smiley-10.png -share/icons/gnome/16x16/emotes/stock_smiley-11.png -share/icons/gnome/16x16/emotes/stock_smiley-13.png -share/icons/gnome/16x16/emotes/stock_smiley-15.png -share/icons/gnome/16x16/emotes/stock_smiley-18.png -share/icons/gnome/16x16/emotes/stock_smiley-2.png -share/icons/gnome/16x16/emotes/stock_smiley-22.png -share/icons/gnome/16x16/emotes/stock_smiley-3.png -share/icons/gnome/16x16/emotes/stock_smiley-4.png -share/icons/gnome/16x16/emotes/stock_smiley-5.png -share/icons/gnome/16x16/emotes/stock_smiley-6.png -share/icons/gnome/16x16/emotes/stock_smiley-7.png -share/icons/gnome/16x16/emotes/stock_smiley-8.png -share/icons/gnome/16x16/filesystems/gnome-fs-bookmark-missing.png -share/icons/gnome/16x16/filesystems/gnome-fs-bookmark.png -share/icons/gnome/16x16/mimetypes/application-certificate.png -share/icons/gnome/16x16/mimetypes/application-x-executable.png -share/icons/gnome/16x16/mimetypes/ascii.png -share/icons/gnome/16x16/mimetypes/audio-x-generic.png -share/icons/gnome/16x16/mimetypes/binary.png -share/icons/gnome/16x16/mimetypes/contents2.png -share/icons/gnome/16x16/mimetypes/deb.png -share/icons/gnome/16x16/mimetypes/document.png -share/icons/gnome/16x16/mimetypes/empty.png -share/icons/gnome/16x16/mimetypes/exec.png -share/icons/gnome/16x16/mimetypes/folder_tar.png -share/icons/gnome/16x16/mimetypes/font-x-generic.png -share/icons/gnome/16x16/mimetypes/font.png -share/icons/gnome/16x16/mimetypes/font_bitmap.png -share/icons/gnome/16x16/mimetypes/font_truetype.png -share/icons/gnome/16x16/mimetypes/font_type1.png -share/icons/gnome/16x16/mimetypes/gnome-fs-executable.png -share/icons/gnome/16x16/mimetypes/gnome-fs-regular.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-magicpoint.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-msword.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-ogg.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-pdf.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-postscript.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-rtf.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.ms-excel.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-wordperfect.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-7z-compressed.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-abiword.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-applix-word.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-archive.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-arj.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-bzip.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-compress.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-compressed-tar.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-cpio-compressed.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-cpio.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-deb.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-dvi.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-executable.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-font-afm.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-font-bdf.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-font-linux-psf.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-font-pcf.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-font-sunos-news.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-font-ttf.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-gnumeric.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-gzip.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-gzpostscript.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-jar.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-killustrator.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-kpresenter.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-kspread.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-kword.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-lha.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-lhz.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-lzma.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-ms-dos-executable.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-perl.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-php.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-python-bytecode.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-rar.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-rpm.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-scribus.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-shellscript.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-shockwave-flash.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-stuffit.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-tar.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-tarz.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-x-tex.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-xhtml+xml.png -share/icons/gnome/16x16/mimetypes/gnome-mime-application-zip.png -share/icons/gnome/16x16/mimetypes/gnome-mime-audio.png -share/icons/gnome/16x16/mimetypes/gnome-mime-image.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-html.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-vnd.wap.wml.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-x-csh.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-x-python.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-x-sh.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-x-vcalendar.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-x-vcard.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text-x-zsh.png -share/icons/gnome/16x16/mimetypes/gnome-mime-text.png -share/icons/gnome/16x16/mimetypes/gnome-mime-video.png -share/icons/gnome/16x16/mimetypes/gnome-mime-x-font-afm.png -share/icons/gnome/16x16/mimetypes/gnome-package.png -share/icons/gnome/16x16/mimetypes/gtk-file.png -share/icons/gnome/16x16/mimetypes/html.png -share/icons/gnome/16x16/mimetypes/image-x-generic.png -share/icons/gnome/16x16/mimetypes/image.png -share/icons/gnome/16x16/mimetypes/kpresenter_kpr.png -share/icons/gnome/16x16/mimetypes/mime_ascii.png -share/icons/gnome/16x16/mimetypes/misc.png -share/icons/gnome/16x16/mimetypes/package-x-generic.png -share/icons/gnome/16x16/mimetypes/package.png -share/icons/gnome/16x16/mimetypes/package_editors.png -share/icons/gnome/16x16/mimetypes/package_wordprocessing.png -share/icons/gnome/16x16/mimetypes/plan.png -share/icons/gnome/16x16/mimetypes/rpm.png -share/icons/gnome/16x16/mimetypes/shellscript.png -share/icons/gnome/16x16/mimetypes/sound.png -share/icons/gnome/16x16/mimetypes/spreadsheet.png -share/icons/gnome/16x16/mimetypes/stock_addressbook.png -share/icons/gnome/16x16/mimetypes/stock_calendar.png -share/icons/gnome/16x16/mimetypes/stock_certificate.png -share/icons/gnome/16x16/mimetypes/stock_script.png -share/icons/gnome/16x16/mimetypes/tar.png -share/icons/gnome/16x16/mimetypes/template_source.png -share/icons/gnome/16x16/mimetypes/text-html.png -share/icons/gnome/16x16/mimetypes/text-x-generic-template.png -share/icons/gnome/16x16/mimetypes/text-x-generic.png -share/icons/gnome/16x16/mimetypes/text-x-preview.png -share/icons/gnome/16x16/mimetypes/text-x-script.png -share/icons/gnome/16x16/mimetypes/tgz.png -share/icons/gnome/16x16/mimetypes/txt.png -share/icons/gnome/16x16/mimetypes/txt2.png -share/icons/gnome/16x16/mimetypes/unknown.png -share/icons/gnome/16x16/mimetypes/vcalendar.png -share/icons/gnome/16x16/mimetypes/vcard.png -share/icons/gnome/16x16/mimetypes/video-x-generic.png -share/icons/gnome/16x16/mimetypes/video.png -share/icons/gnome/16x16/mimetypes/wordprocessing.png -share/icons/gnome/16x16/mimetypes/www.png -share/icons/gnome/16x16/mimetypes/x-office-address-book.png -share/icons/gnome/16x16/mimetypes/x-office-calendar.png -share/icons/gnome/16x16/mimetypes/x-office-document.png -share/icons/gnome/16x16/mimetypes/x-office-drawing.png -share/icons/gnome/16x16/mimetypes/x-office-presentation.png -share/icons/gnome/16x16/mimetypes/x-office-spreadsheet.png -share/icons/gnome/16x16/mimetypes/zip.png -share/icons/gnome/16x16/places/application-x-gnome-saved-search.png -share/icons/gnome/16x16/places/desktop.png -share/icons/gnome/16x16/places/distributor-logo.png -share/icons/gnome/16x16/places/emptytrash.png -share/icons/gnome/16x16/places/folder-remote.png -share/icons/gnome/16x16/places/folder-saved-search.png -share/icons/gnome/16x16/places/folder.icon -share/icons/gnome/16x16/places/folder.png -share/icons/gnome/16x16/places/folder_home.png -share/icons/gnome/16x16/places/gnome-fs-desktop.png -share/icons/gnome/16x16/places/gnome-fs-directory.icon -share/icons/gnome/16x16/places/gnome-fs-directory.png -share/icons/gnome/16x16/places/gnome-fs-ftp.png -share/icons/gnome/16x16/places/gnome-fs-home.png -share/icons/gnome/16x16/places/gnome-fs-network.png -share/icons/gnome/16x16/places/gnome-fs-nfs.png -share/icons/gnome/16x16/places/gnome-fs-server.png -share/icons/gnome/16x16/places/gnome-fs-share.png -share/icons/gnome/16x16/places/gnome-fs-smb.png -share/icons/gnome/16x16/places/gnome-fs-ssh.png -share/icons/gnome/16x16/places/gnome-fs-trash-empty.png -share/icons/gnome/16x16/places/gnome-main-menu.png -share/icons/gnome/16x16/places/gnome-mime-x-directory-nfs-server.png -share/icons/gnome/16x16/places/gnome-mime-x-directory-smb-server.png -share/icons/gnome/16x16/places/gnome-mime-x-directory-smb-share.png -share/icons/gnome/16x16/places/gnome-mime-x-directory-smb-workgroup.png -share/icons/gnome/16x16/places/gnome-stock-trash.png -share/icons/gnome/16x16/places/gtk-directory.icon -share/icons/gnome/16x16/places/gtk-directory.png -share/icons/gnome/16x16/places/gtk-network.png -share/icons/gnome/16x16/places/inode-directory.icon -share/icons/gnome/16x16/places/inode-directory.png -share/icons/gnome/16x16/places/network-server.png -share/icons/gnome/16x16/places/network-workgroup.png -share/icons/gnome/16x16/places/network.png -share/icons/gnome/16x16/places/network_local.png -share/icons/gnome/16x16/places/novell-button.png -share/icons/gnome/16x16/places/redhat-network-server.png -share/icons/gnome/16x16/places/server.png -share/icons/gnome/16x16/places/start-here.png -share/icons/gnome/16x16/places/stock_folder.icon -share/icons/gnome/16x16/places/stock_folder.png -share/icons/gnome/16x16/places/trashcan_empty.png -share/icons/gnome/16x16/places/user-bookmarks.png -share/icons/gnome/16x16/places/user-desktop.png -share/icons/gnome/16x16/places/user-home.png -share/icons/gnome/16x16/places/user-trash.png -share/icons/gnome/16x16/places/xfce-trash_empty.png -share/icons/gnome/16x16/status/appointment-missed.png -share/icons/gnome/16x16/status/appointment-soon.png -share/icons/gnome/16x16/status/audio-volume-high.png -share/icons/gnome/16x16/status/audio-volume-low.png -share/icons/gnome/16x16/status/audio-volume-medium.png -share/icons/gnome/16x16/status/audio-volume-muted.png -share/icons/gnome/16x16/status/battery-caution.png -share/icons/gnome/16x16/status/battery-low.png -share/icons/gnome/16x16/status/connect_creating.png -share/icons/gnome/16x16/status/connect_established.png -share/icons/gnome/16x16/status/connect_no.png -share/icons/gnome/16x16/status/dialog-error.png -share/icons/gnome/16x16/status/dialog-information.png -share/icons/gnome/16x16/status/dialog-password.png -share/icons/gnome/16x16/status/dialog-question.png -share/icons/gnome/16x16/status/dialog-warning.png -share/icons/gnome/16x16/status/edittrash.png -share/icons/gnome/16x16/status/error.png -share/icons/gnome/16x16/status/folder-drag-accept.png -share/icons/gnome/16x16/status/folder-open.png -share/icons/gnome/16x16/status/folder-visiting.png -share/icons/gnome/16x16/status/folder_open.png -share/icons/gnome/16x16/status/gnome-dev-wavelan-encrypted.png -share/icons/gnome/16x16/status/gnome-fs-directory-accept.png -share/icons/gnome/16x16/status/gnome-fs-directory-visiting.png -share/icons/gnome/16x16/status/gnome-fs-loading-icon.png -share/icons/gnome/16x16/status/gnome-fs-trash-full.png -share/icons/gnome/16x16/status/gnome-netstatus-disconn.png -share/icons/gnome/16x16/status/gnome-netstatus-error.png -share/icons/gnome/16x16/status/gnome-netstatus-idle.png -share/icons/gnome/16x16/status/gnome-netstatus-rx.png -share/icons/gnome/16x16/status/gnome-netstatus-tx.png -share/icons/gnome/16x16/status/gnome-netstatus-txrx.png -share/icons/gnome/16x16/status/gnome-stock-trash-full.png -share/icons/gnome/16x16/status/gtk-dialog-authentication.png -share/icons/gnome/16x16/status/gtk-dialog-error.png -share/icons/gnome/16x16/status/gtk-dialog-info.png -share/icons/gnome/16x16/status/gtk-dialog-question.png -share/icons/gnome/16x16/status/gtk-dialog-warning.png -share/icons/gnome/16x16/status/gtk-missing-image.png -share/icons/gnome/16x16/status/image-loading.png -share/icons/gnome/16x16/status/image-missing.png -share/icons/gnome/16x16/status/important.png -share/icons/gnome/16x16/status/info.png -share/icons/gnome/16x16/status/mail-attachment.png -share/icons/gnome/16x16/status/mail-read.png -share/icons/gnome/16x16/status/mail-replied.png -share/icons/gnome/16x16/status/mail-signed-verified.png -share/icons/gnome/16x16/status/mail-signed.png -share/icons/gnome/16x16/status/mail-unread.png -share/icons/gnome/16x16/status/media-playlist-repeat.png -share/icons/gnome/16x16/status/media-playlist-shuffle.png -share/icons/gnome/16x16/status/messagebox_critical.png -share/icons/gnome/16x16/status/messagebox_info.png -share/icons/gnome/16x16/status/messagebox_warning.png -share/icons/gnome/16x16/status/network-error.png -share/icons/gnome/16x16/status/network-idle.png -share/icons/gnome/16x16/status/network-offline.png -share/icons/gnome/16x16/status/network-receive.png -share/icons/gnome/16x16/status/network-transmit-receive.png -share/icons/gnome/16x16/status/network-transmit.png -share/icons/gnome/16x16/status/network-wireless-encrypted.png -share/icons/gnome/16x16/status/nm-adhoc.png -share/icons/gnome/16x16/status/nm-device-wired.png -share/icons/gnome/16x16/status/nm-device-wireless.png -share/icons/gnome/16x16/status/nm-no-connection.png -share/icons/gnome/16x16/status/printer-error.png -share/icons/gnome/16x16/status/printer-printing.png -share/icons/gnome/16x16/status/security-high.png -share/icons/gnome/16x16/status/security-low.png -share/icons/gnome/16x16/status/security-medium.png -share/icons/gnome/16x16/status/software-update-available.png -share/icons/gnome/16x16/status/software-update-urgent.png -share/icons/gnome/16x16/status/stock_appointment-reminder-excl.png -share/icons/gnome/16x16/status/stock_appointment-reminder.png -share/icons/gnome/16x16/status/stock_attach.png -share/icons/gnome/16x16/status/stock_dialog-error.png -share/icons/gnome/16x16/status/stock_dialog-info.png -share/icons/gnome/16x16/status/stock_dialog-question.png -share/icons/gnome/16x16/status/stock_dialog-warning.png -share/icons/gnome/16x16/status/stock_lock-broken.png -share/icons/gnome/16x16/status/stock_lock-ok.png -share/icons/gnome/16x16/status/stock_lock-open.png -share/icons/gnome/16x16/status/stock_lock.png -share/icons/gnome/16x16/status/stock_mail-open.png -share/icons/gnome/16x16/status/stock_mail-replied.png -share/icons/gnome/16x16/status/stock_mail-unread.png -share/icons/gnome/16x16/status/stock_open.png -share/icons/gnome/16x16/status/stock_repeat.png -share/icons/gnome/16x16/status/stock_shuffle.png -share/icons/gnome/16x16/status/stock_trash_full.png -share/icons/gnome/16x16/status/stock_volume-0.png -share/icons/gnome/16x16/status/stock_volume-max.png -share/icons/gnome/16x16/status/stock_volume-med.png -share/icons/gnome/16x16/status/stock_volume-min.png -share/icons/gnome/16x16/status/stock_volume-mute.png -share/icons/gnome/16x16/status/stock_volume.png -share/icons/gnome/16x16/status/stock_weather-cloudy.png -share/icons/gnome/16x16/status/stock_weather-few-clouds.png -share/icons/gnome/16x16/status/stock_weather-fog.png -share/icons/gnome/16x16/status/stock_weather-night-clear.png -share/icons/gnome/16x16/status/stock_weather-night-few-clouds.png -share/icons/gnome/16x16/status/stock_weather-showers.png -share/icons/gnome/16x16/status/stock_weather-snow.png -share/icons/gnome/16x16/status/stock_weather-storm.png -share/icons/gnome/16x16/status/stock_weather-sunny.png -share/icons/gnome/16x16/status/sunny.png -share/icons/gnome/16x16/status/task-due.png -share/icons/gnome/16x16/status/task-past-due.png -share/icons/gnome/16x16/status/trashcan_full.png -share/icons/gnome/16x16/status/user-trash-full.png -share/icons/gnome/16x16/status/weather-clear-night.png -share/icons/gnome/16x16/status/weather-clear.png -share/icons/gnome/16x16/status/weather-few-clouds-night.png -share/icons/gnome/16x16/status/weather-few-clouds.png -share/icons/gnome/16x16/status/weather-fog.png -share/icons/gnome/16x16/status/weather-overcast.png -share/icons/gnome/16x16/status/weather-severe-alert.png -share/icons/gnome/16x16/status/weather-showers-scattered.png -share/icons/gnome/16x16/status/weather-showers.png -share/icons/gnome/16x16/status/weather-snow.png -share/icons/gnome/16x16/status/weather-storm.png -share/icons/gnome/16x16/status/xfce-trash_full.png -share/icons/gnome/16x16/stock/chart/stock_chart-autoformat.png -share/icons/gnome/16x16/stock/chart/stock_chart-data-in-columns.png -share/icons/gnome/16x16/stock/chart/stock_chart-data-in-rows.png -share/icons/gnome/16x16/stock/chart/stock_chart-edit-type.png -share/icons/gnome/16x16/stock/chart/stock_chart-reorganize.png -share/icons/gnome/16x16/stock/chart/stock_chart-toggle-axes-title.png -share/icons/gnome/16x16/stock/chart/stock_chart-toggle-axes.png -share/icons/gnome/16x16/stock/chart/stock_chart-toggle-hgrid.png -share/icons/gnome/16x16/stock/chart/stock_chart-toggle-legend.png -share/icons/gnome/16x16/stock/chart/stock_chart-toggle-title.png -share/icons/gnome/16x16/stock/chart/stock_chart-toggle-vgrid.png -share/icons/gnome/16x16/stock/chart/stock_glue.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-down.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-horizontal-center.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-horizontal-left.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-horizontal-right.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-left.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-relative.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-right.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-up.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-vertical-bottom.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-vertical-center.png -share/icons/gnome/16x16/stock/chart/stock_gluepoint-vertical-top.png -share/icons/gnome/16x16/stock/chart/stock_insert-chart.png -share/icons/gnome/16x16/stock/code/stock_compile.png -share/icons/gnome/16x16/stock/code/stock_error-next.png -share/icons/gnome/16x16/stock/code/stock_error-previous.png -share/icons/gnome/16x16/stock/code/stock_macro-check-brackets.png -share/icons/gnome/16x16/stock/code/stock_macro-insert-breakpoint.png -share/icons/gnome/16x16/stock/code/stock_macro-insert.png -share/icons/gnome/16x16/stock/code/stock_macro-jump-back.png -share/icons/gnome/16x16/stock/code/stock_macro-objects.png -share/icons/gnome/16x16/stock/code/stock_macro-organizer.png -share/icons/gnome/16x16/stock/code/stock_macro-stop-after-command.png -share/icons/gnome/16x16/stock/code/stock_macro-stop-after-procedure.png -share/icons/gnome/16x16/stock/code/stock_macro-stop-watching.png -share/icons/gnome/16x16/stock/code/stock_macro-watch-variable.png -share/icons/gnome/16x16/stock/code/stock_record-macro.png -share/icons/gnome/16x16/stock/code/stock_run-macro.png -share/icons/gnome/16x16/stock/code/stock_script.png -share/icons/gnome/16x16/stock/code/stock_tools-macro.png -share/icons/gnome/16x16/stock/data/stock_add-decimal-place.png -share/icons/gnome/16x16/stock/data/stock_advanced-filter.png -share/icons/gnome/16x16/stock/data/stock_autofilter.png -share/icons/gnome/16x16/stock/data/stock_data-delete-link.png -share/icons/gnome/16x16/stock/data/stock_data-delete-query.png -share/icons/gnome/16x16/stock/data/stock_data-delete-record.png -share/icons/gnome/16x16/stock/data/stock_data-delete-sql-query.png -share/icons/gnome/16x16/stock/data/stock_data-delete-table.png -share/icons/gnome/16x16/stock/data/stock_data-edit-link.png -share/icons/gnome/16x16/stock/data/stock_data-edit-query.png -share/icons/gnome/16x16/stock/data/stock_data-edit-sql-query.png -share/icons/gnome/16x16/stock/data/stock_data-edit-table.png -share/icons/gnome/16x16/stock/data/stock_data-explorer.png -share/icons/gnome/16x16/stock/data/stock_data-first.png -share/icons/gnome/16x16/stock/data/stock_data-last.png -share/icons/gnome/16x16/stock/data/stock_data-link.png -share/icons/gnome/16x16/stock/data/stock_data-linked-table.png -share/icons/gnome/16x16/stock/data/stock_data-links.png -share/icons/gnome/16x16/stock/data/stock_data-new-link.png -share/icons/gnome/16x16/stock/data/stock_data-new-query.png -share/icons/gnome/16x16/stock/data/stock_data-new-record.png -share/icons/gnome/16x16/stock/data/stock_data-new-sql-query.png -share/icons/gnome/16x16/stock/data/stock_data-new-table.png -share/icons/gnome/16x16/stock/data/stock_data-next.png -share/icons/gnome/16x16/stock/data/stock_data-previous.png -share/icons/gnome/16x16/stock/data/stock_data-queries.png -share/icons/gnome/16x16/stock/data/stock_data-query-rename.png -share/icons/gnome/16x16/stock/data/stock_data-query.png -share/icons/gnome/16x16/stock/data/stock_data-save.png -share/icons/gnome/16x16/stock/data/stock_data-sources-delete.png -share/icons/gnome/16x16/stock/data/stock_data-sources-hand.png -share/icons/gnome/16x16/stock/data/stock_data-sources-modified.png -share/icons/gnome/16x16/stock/data/stock_data-sources-new.png -share/icons/gnome/16x16/stock/data/stock_data-sources.png -share/icons/gnome/16x16/stock/data/stock_data-table.png -share/icons/gnome/16x16/stock/data/stock_data-tables.png -share/icons/gnome/16x16/stock/data/stock_data-undo.png -share/icons/gnome/16x16/stock/data/stock_database.png -share/icons/gnome/16x16/stock/data/stock_delete-autofilter.png -share/icons/gnome/16x16/stock/data/stock_delete-decimal-place.png -share/icons/gnome/16x16/stock/data/stock_filter-data-by-criteria.png -share/icons/gnome/16x16/stock/data/stock_filter-navigator.png -share/icons/gnome/16x16/stock/data/stock_filters.png -share/icons/gnome/16x16/stock/data/stock_format-default.png -share/icons/gnome/16x16/stock/data/stock_format-percent.png -share/icons/gnome/16x16/stock/data/stock_format-scientific.png -share/icons/gnome/16x16/stock/data/stock_function-autopilot.png -share/icons/gnome/16x16/stock/data/stock_goal-seek.png -share/icons/gnome/16x16/stock/data/stock_insert-fields.png -share/icons/gnome/16x16/stock/data/stock_lock-broken.png -share/icons/gnome/16x16/stock/data/stock_lock-ok.png -share/icons/gnome/16x16/stock/data/stock_lock-open.png -share/icons/gnome/16x16/stock/data/stock_lock.png -share/icons/gnome/16x16/stock/data/stock_record-number.png -share/icons/gnome/16x16/stock/data/stock_signature-bad.png -share/icons/gnome/16x16/stock/data/stock_signature-ok.png -share/icons/gnome/16x16/stock/data/stock_signature.png -share/icons/gnome/16x16/stock/data/stock_sort-ascending.png -share/icons/gnome/16x16/stock/data/stock_sort-column-ascending.png -share/icons/gnome/16x16/stock/data/stock_sort-criteria.png -share/icons/gnome/16x16/stock/data/stock_sort-descending.png -share/icons/gnome/16x16/stock/data/stock_sort-row-ascending.png -share/icons/gnome/16x16/stock/data/stock_standard-filter.png -share/icons/gnome/16x16/stock/data/stock_sum.png -share/icons/gnome/16x16/stock/data/stock_update-data.png -share/icons/gnome/16x16/stock/document/stock_certificate.png -share/icons/gnome/16x16/stock/document/stock_new-drawing.png -share/icons/gnome/16x16/stock/document/stock_new-formula.png -share/icons/gnome/16x16/stock/document/stock_new-html.png -share/icons/gnome/16x16/stock/document/stock_new-labels.png -share/icons/gnome/16x16/stock/document/stock_new-master-document.png -share/icons/gnome/16x16/stock/document/stock_new-presentation.png -share/icons/gnome/16x16/stock/document/stock_new-spreadsheet.png -share/icons/gnome/16x16/stock/document/stock_new-template.png -share/icons/gnome/16x16/stock/document/stock_new-text.png -share/icons/gnome/16x16/stock/document/stock_new.png -share/icons/gnome/16x16/stock/document/stock_preview-four-pages.png -share/icons/gnome/16x16/stock/document/stock_preview-two-pages.png -share/icons/gnome/16x16/stock/document/stock_print-layout.png -share/icons/gnome/16x16/stock/document/stock_print-options.png -share/icons/gnome/16x16/stock/document/stock_print-resolution.png -share/icons/gnome/16x16/stock/document/stock_script.png -share/icons/gnome/16x16/stock/document/stock_scripts.png -share/icons/gnome/16x16/stock/document/stock_task-assigned-to.png -share/icons/gnome/16x16/stock/document/stock_task-assigned.png -share/icons/gnome/16x16/stock/document/stock_task-recurring.png -share/icons/gnome/16x16/stock/document/stock_task.png -share/icons/gnome/16x16/stock/document/stock_todo.png -share/icons/gnome/16x16/stock/document/stock_view-html-source.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-14.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-16.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-17.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-19.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-20.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-21.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-23.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-24.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-25.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-26.png -share/icons/gnome/16x16/stock/emoticons/stock_smiley-9.png -share/icons/gnome/16x16/stock/form/stock_form-activation-order.png -share/icons/gnome/16x16/stock/form/stock_form-add-field.png -share/icons/gnome/16x16/stock/form/stock_form-automatic-control-focus.png -share/icons/gnome/16x16/stock/form/stock_form-autopilots.png -share/icons/gnome/16x16/stock/form/stock_form-button.png -share/icons/gnome/16x16/stock/form/stock_form-checkbox.png -share/icons/gnome/16x16/stock/form/stock_form-combobox.png -share/icons/gnome/16x16/stock/form/stock_form-control-properties.png -share/icons/gnome/16x16/stock/form/stock_form-currency-field.png -share/icons/gnome/16x16/stock/form/stock_form-date-field.png -share/icons/gnome/16x16/stock/form/stock_form-design-mode.png -share/icons/gnome/16x16/stock/form/stock_form-file-selection.png -share/icons/gnome/16x16/stock/form/stock_form-formatted-field.png -share/icons/gnome/16x16/stock/form/stock_form-frame.png -share/icons/gnome/16x16/stock/form/stock_form-image-button.png -share/icons/gnome/16x16/stock/form/stock_form-image-control.png -share/icons/gnome/16x16/stock/form/stock_form-label.png -share/icons/gnome/16x16/stock/form/stock_form-letter-dialog.png -share/icons/gnome/16x16/stock/form/stock_form-listbox.png -share/icons/gnome/16x16/stock/form/stock_form-navigator.png -share/icons/gnome/16x16/stock/form/stock_form-numerical-field.png -share/icons/gnome/16x16/stock/form/stock_form-open-in-design-mode.png -share/icons/gnome/16x16/stock/form/stock_form-pattern-field.png -share/icons/gnome/16x16/stock/form/stock_form-progressbar.png -share/icons/gnome/16x16/stock/form/stock_form-properties.png -share/icons/gnome/16x16/stock/form/stock_form-radio.png -share/icons/gnome/16x16/stock/form/stock_form-table-control.png -share/icons/gnome/16x16/stock/form/stock_form-text-box.png -share/icons/gnome/16x16/stock/form/stock_form-time-field.png -share/icons/gnome/16x16/stock/form/stock_insert-form.png -share/icons/gnome/16x16/stock/form/stock_macro-controls.png -share/icons/gnome/16x16/stock/form/stock_show-form-dialog.png -share/icons/gnome/16x16/stock/form/stock_show-hidden-controls.png -share/icons/gnome/16x16/stock/form/stock_view-fields.png -share/icons/gnome/16x16/stock/generic/stock_3d-favourites.png -share/icons/gnome/16x16/stock/generic/stock_about.png -share/icons/gnome/16x16/stock/generic/stock_active.png -share/icons/gnome/16x16/stock/generic/stock_allow-effects.png -share/icons/gnome/16x16/stock/generic/stock_anchor.png -share/icons/gnome/16x16/stock/generic/stock_animation.png -share/icons/gnome/16x16/stock/generic/stock_autocompletion.png -share/icons/gnome/16x16/stock/generic/stock_autopilot.png -share/icons/gnome/16x16/stock/generic/stock_bell.png -share/icons/gnome/16x16/stock/generic/stock_book_blue.png -share/icons/gnome/16x16/stock/generic/stock_book_green.png -share/icons/gnome/16x16/stock/generic/stock_book_open.png -share/icons/gnome/16x16/stock/generic/stock_book_red.png -share/icons/gnome/16x16/stock/generic/stock_book_yellow.png -share/icons/gnome/16x16/stock/generic/stock_briefcase.png -share/icons/gnome/16x16/stock/generic/stock_calc-accept.png -share/icons/gnome/16x16/stock/generic/stock_calc-cancel.png -share/icons/gnome/16x16/stock/generic/stock_calendar-and-tasks.png -share/icons/gnome/16x16/stock/generic/stock_check-filled.png -share/icons/gnome/16x16/stock/generic/stock_color.png -share/icons/gnome/16x16/stock/generic/stock_default-folder.png -share/icons/gnome/16x16/stock/generic/stock_drag-mode.png -share/icons/gnome/16x16/stock/generic/stock_edit.png -share/icons/gnome/16x16/stock/generic/stock_equals.png -share/icons/gnome/16x16/stock/generic/stock_example.png -share/icons/gnome/16x16/stock/generic/stock_exit.png -share/icons/gnome/16x16/stock/generic/stock_extended-help.png -share/icons/gnome/16x16/stock/generic/stock_file-properties.png -share/icons/gnome/16x16/stock/generic/stock_flip-horizontally.png -share/icons/gnome/16x16/stock/generic/stock_flip-vertically.png -share/icons/gnome/16x16/stock/generic/stock_folder-copy.png -share/icons/gnome/16x16/stock/generic/stock_folder-move.png -share/icons/gnome/16x16/stock/generic/stock_folder-properties.png -share/icons/gnome/16x16/stock/generic/stock_format-page.png -share/icons/gnome/16x16/stock/generic/stock_help-add-bookmark.png -share/icons/gnome/16x16/stock/generic/stock_help-agent.png -share/icons/gnome/16x16/stock/generic/stock_help-book-open.png -share/icons/gnome/16x16/stock/generic/stock_help-book.png -share/icons/gnome/16x16/stock/generic/stock_help-chat.png -share/icons/gnome/16x16/stock/generic/stock_help-document.png -share/icons/gnome/16x16/stock/generic/stock_help-pane-off.png -share/icons/gnome/16x16/stock/generic/stock_help-pane-on.png -share/icons/gnome/16x16/stock/generic/stock_id.png -share/icons/gnome/16x16/stock/generic/stock_keyring.png -share/icons/gnome/16x16/stock/generic/stock_landline-phone.png -share/icons/gnome/16x16/stock/generic/stock_mark.png -share/icons/gnome/16x16/stock/generic/stock_new-24h-appointment.png -share/icons/gnome/16x16/stock/generic/stock_new-meeting.png -share/icons/gnome/16x16/stock/generic/stock_news.png -share/icons/gnome/16x16/stock/generic/stock_notebook.png -share/icons/gnome/16x16/stock/generic/stock_notes.png -share/icons/gnome/16x16/stock/generic/stock_openoffice.png -share/icons/gnome/16x16/stock/generic/stock_people.png -share/icons/gnome/16x16/stock/generic/stock_person.png -share/icons/gnome/16x16/stock/generic/stock_presentation-box.png -share/icons/gnome/16x16/stock/generic/stock_presentation-styles.png -share/icons/gnome/16x16/stock/generic/stock_properties.png -share/icons/gnome/16x16/stock/generic/stock_score-high.png -share/icons/gnome/16x16/stock/generic/stock_score-higher.png -share/icons/gnome/16x16/stock/generic/stock_score-highest.png -share/icons/gnome/16x16/stock/generic/stock_score-low.png -share/icons/gnome/16x16/stock/generic/stock_score-lower.png -share/icons/gnome/16x16/stock/generic/stock_score-lowest.png -share/icons/gnome/16x16/stock/generic/stock_score-normal.png -share/icons/gnome/16x16/stock/generic/stock_send-fax.png -share/icons/gnome/16x16/stock/generic/stock_show-all.png -share/icons/gnome/16x16/stock/generic/stock_styles.png -share/icons/gnome/16x16/stock/generic/stock_summary.png -share/icons/gnome/16x16/stock/generic/stock_test-mode.png -share/icons/gnome/16x16/stock/generic/stock_timer.png -share/icons/gnome/16x16/stock/generic/stock_timer_stopped.png -share/icons/gnome/16x16/stock/generic/stock_timezone.png -share/icons/gnome/16x16/stock/generic/stock_toggle-info.png -share/icons/gnome/16x16/stock/generic/stock_toggle-preview.png -share/icons/gnome/16x16/stock/generic/stock_toilet-paper.png -share/icons/gnome/16x16/stock/generic/stock_trash_full.png -share/icons/gnome/16x16/stock/generic/stock_undelete.png -share/icons/gnome/16x16/stock/generic/stock_unknown.png -share/icons/gnome/16x16/stock/generic/stock_view-details.png -share/icons/gnome/16x16/stock/generic/stock_web-calendar.png -share/icons/gnome/16x16/stock/generic/stock_web-support.png -share/icons/gnome/16x16/stock/image/stock_3d-color-picker.png -share/icons/gnome/16x16/stock/image/stock_3d-colors.png -share/icons/gnome/16x16/stock/image/stock_3d-custom-color.png -share/icons/gnome/16x16/stock/image/stock_3d-effects.png -share/icons/gnome/16x16/stock/image/stock_arrowstyle.png -share/icons/gnome/16x16/stock/image/stock_brightness.png -share/icons/gnome/16x16/stock/image/stock_bucketfill.png -share/icons/gnome/16x16/stock/image/stock_channel-blue.png -share/icons/gnome/16x16/stock/image/stock_channel-green.png -share/icons/gnome/16x16/stock/image/stock_channel-red.png -share/icons/gnome/16x16/stock/image/stock_contrast.png -share/icons/gnome/16x16/stock/image/stock_crop.png -share/icons/gnome/16x16/stock/image/stock_display-grid.png -share/icons/gnome/16x16/stock/image/stock_display-guides.png -share/icons/gnome/16x16/stock/image/stock_distort.png -share/icons/gnome/16x16/stock/image/stock_draw-arc.png -share/icons/gnome/16x16/stock/image/stock_draw-callouts.png -share/icons/gnome/16x16/stock/image/stock_draw-circle-arc.png -share/icons/gnome/16x16/stock/image/stock_draw-circle-pie-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-circle-pie.png -share/icons/gnome/16x16/stock/image/stock_draw-circle-segment-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-circle-segment.png -share/icons/gnome/16x16/stock/image/stock_draw-circle-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-cone.png -share/icons/gnome/16x16/stock/image/stock_draw-connector-ends-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-connector-ends-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-connector-starts-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-connector-starts-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-connector-with-arrows.png -share/icons/gnome/16x16/stock/image/stock_draw-connector-with-circles.png -share/icons/gnome/16x16/stock/image/stock_draw-connector.png -share/icons/gnome/16x16/stock/image/stock_draw-cube.png -share/icons/gnome/16x16/stock/image/stock_draw-curve-filled.png -share/icons/gnome/16x16/stock/image/stock_draw-curve.png -share/icons/gnome/16x16/stock/image/stock_draw-curved-connector-ends-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-curved-connector-ends-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-curved-connector-starts-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-curved-connector-starts-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-curved-connector-with-arrows.png -share/icons/gnome/16x16/stock/image/stock_draw-curved-connector-with-circles.png -share/icons/gnome/16x16/stock/image/stock_draw-curved-connector.png -share/icons/gnome/16x16/stock/image/stock_draw-cylinder.png -share/icons/gnome/16x16/stock/image/stock_draw-dimension-line.png -share/icons/gnome/16x16/stock/image/stock_draw-ellipse-pie-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-ellipse-pie.png -share/icons/gnome/16x16/stock/image/stock_draw-ellipse-segment-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-ellipse-segment.png -share/icons/gnome/16x16/stock/image/stock_draw-ellipse-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-ellipse.png -share/icons/gnome/16x16/stock/image/stock_draw-freeform-line-filled.png -share/icons/gnome/16x16/stock/image/stock_draw-freeform-line.png -share/icons/gnome/16x16/stock/image/stock_draw-half-sphere.png -share/icons/gnome/16x16/stock/image/stock_draw-line-45.png -share/icons/gnome/16x16/stock/image/stock_draw-line-connector-ends-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-line-connector-ends-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-line-connector-starts-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-line-connector-starts-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-line-connector-with-arrows.png -share/icons/gnome/16x16/stock/image/stock_draw-line-connector-with-circles.png -share/icons/gnome/16x16/stock/image/stock_draw-line-connector.png -share/icons/gnome/16x16/stock/image/stock_draw-line-ends-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-line-starts-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-line-with-arrow-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-line-with-arrow-square.png -share/icons/gnome/16x16/stock/image/stock_draw-line-with-arrows.png -share/icons/gnome/16x16/stock/image/stock_draw-line-with-circle-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-line-with-square-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-line.png -share/icons/gnome/16x16/stock/image/stock_draw-polygon-45-filled.png -share/icons/gnome/16x16/stock/image/stock_draw-polygon-45.png -share/icons/gnome/16x16/stock/image/stock_draw-polygon-filled.png -share/icons/gnome/16x16/stock/image/stock_draw-polygon.png -share/icons/gnome/16x16/stock/image/stock_draw-pyramid.png -share/icons/gnome/16x16/stock/image/stock_draw-rectangle-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-rectangle.png -share/icons/gnome/16x16/stock/image/stock_draw-rounded-rectangle-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-rounded-rectangle.png -share/icons/gnome/16x16/stock/image/stock_draw-rounded-square-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-rounded-square.png -share/icons/gnome/16x16/stock/image/stock_draw-selection.png -share/icons/gnome/16x16/stock/image/stock_draw-shell.png -share/icons/gnome/16x16/stock/image/stock_draw-sphere.png -share/icons/gnome/16x16/stock/image/stock_draw-square-unfilled.png -share/icons/gnome/16x16/stock/image/stock_draw-square.png -share/icons/gnome/16x16/stock/image/stock_draw-straight-connector-ends-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-straight-connector-ends-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-straight-connector-starts-with-arrow.png -share/icons/gnome/16x16/stock/image/stock_draw-straight-connector-starts-with-circle.png -share/icons/gnome/16x16/stock/image/stock_draw-straight-connector-with-arrows.png -share/icons/gnome/16x16/stock/image/stock_draw-straight-connector-with-circles.png -share/icons/gnome/16x16/stock/image/stock_draw-straight-connector.png -share/icons/gnome/16x16/stock/image/stock_draw-torus.png -share/icons/gnome/16x16/stock/image/stock_draw-vertical-callouts.png -share/icons/gnome/16x16/stock/image/stock_edit-points.png -share/icons/gnome/16x16/stock/image/stock_filters-aging.png -share/icons/gnome/16x16/stock/image/stock_filters-charcoal.png -share/icons/gnome/16x16/stock/image/stock_filters-invert.png -share/icons/gnome/16x16/stock/image/stock_filters-pixelize.png -share/icons/gnome/16x16/stock/image/stock_filters-pop-art.png -share/icons/gnome/16x16/stock/image/stock_filters-posterize.png -share/icons/gnome/16x16/stock/image/stock_filters-relief.png -share/icons/gnome/16x16/stock/image/stock_filters-remove-noise.png -share/icons/gnome/16x16/stock/image/stock_filters-sharpen.png -share/icons/gnome/16x16/stock/image/stock_filters-smooth.png -share/icons/gnome/16x16/stock/image/stock_filters-solarize.png -share/icons/gnome/16x16/stock/image/stock_flip.png -share/icons/gnome/16x16/stock/image/stock_gamma.png -share/icons/gnome/16x16/stock/image/stock_gradient.png -share/icons/gnome/16x16/stock/image/stock_graphic-styles.png -share/icons/gnome/16x16/stock/image/stock_graphics-align-bottom.png -share/icons/gnome/16x16/stock/image/stock_graphics-align-center.png -share/icons/gnome/16x16/stock/image/stock_graphics-align-centered.png -share/icons/gnome/16x16/stock/image/stock_graphics-align-left.png -share/icons/gnome/16x16/stock/image/stock_graphics-align-right.png -share/icons/gnome/16x16/stock/image/stock_graphics-align-top.png -share/icons/gnome/16x16/stock/image/stock_guides.png -share/icons/gnome/16x16/stock/image/stock_imagemap-editor.png -share/icons/gnome/16x16/stock/image/stock_insert_image.png -share/icons/gnome/16x16/stock/image/stock_linepen.png -share/icons/gnome/16x16/stock/image/stock_modify-layout.png -share/icons/gnome/16x16/stock/image/stock_node-add.png -share/icons/gnome/16x16/stock/image/stock_node-close-path.png -share/icons/gnome/16x16/stock/image/stock_node-convert.png -share/icons/gnome/16x16/stock/image/stock_node-corner-to-smooth.png -share/icons/gnome/16x16/stock/image/stock_node-corner.png -share/icons/gnome/16x16/stock/image/stock_node-curve-split.png -share/icons/gnome/16x16/stock/image/stock_node-delete.png -share/icons/gnome/16x16/stock/image/stock_node-mark-for-deletion.png -share/icons/gnome/16x16/stock/image/stock_node-move.png -share/icons/gnome/16x16/stock/image/stock_node-smooth-to-symmetrical.png -share/icons/gnome/16x16/stock/image/stock_placeholder-graphic.png -share/icons/gnome/16x16/stock/image/stock_placeholder-line-contour.png -share/icons/gnome/16x16/stock/image/stock_placeholder-picture.png -share/icons/gnome/16x16/stock/image/stock_placeholder-text.png -share/icons/gnome/16x16/stock/image/stock_quickmask.png -share/icons/gnome/16x16/stock/image/stock_rotate-3d.png -share/icons/gnome/16x16/stock/image/stock_rotate.png -share/icons/gnome/16x16/stock/image/stock_rotation-mode.png -share/icons/gnome/16x16/stock/image/stock_shadow.png -share/icons/gnome/16x16/stock/image/stock_show-draw-functions.png -share/icons/gnome/16x16/stock/image/stock_toggle-graphics.png -share/icons/gnome/16x16/stock/image/stock_transform-circle-perspective.png -share/icons/gnome/16x16/stock/image/stock_transform-circle-slant.png -share/icons/gnome/16x16/stock/image/stock_transparency.png -share/icons/gnome/16x16/stock/image/stock_wallpaper-center.png -share/icons/gnome/16x16/stock/image/stock_wallpaper-fill.png -share/icons/gnome/16x16/stock/image/stock_wallpaper-scale.png -share/icons/gnome/16x16/stock/image/stock_wallpaper-tile.png -share/icons/gnome/16x16/stock/io/stock_export.png -share/icons/gnome/16x16/stock/io/stock_insert-file.png -share/icons/gnome/16x16/stock/io/stock_network-printer.png -share/icons/gnome/16x16/stock/io/stock_open-read-only.png -share/icons/gnome/16x16/stock/io/stock_print-driver.png -share/icons/gnome/16x16/stock/io/stock_print-preview-print.png -share/icons/gnome/16x16/stock/io/stock_print-setup.png -share/icons/gnome/16x16/stock/io/stock_printers.png -share/icons/gnome/16x16/stock/io/stock_reload.png -share/icons/gnome/16x16/stock/io/stock_save-pdf.png -share/icons/gnome/16x16/stock/io/stock_save-template.png -share/icons/gnome/16x16/stock/io/stock_up-one-dir.png -share/icons/gnome/16x16/stock/media/stock_3dsound.png -share/icons/gnome/16x16/stock/media/stock_effects-sound.png -share/icons/gnome/16x16/stock/media/stock_headphones.png -share/icons/gnome/16x16/stock/media/stock_insert-video-plugin.png -share/icons/gnome/16x16/stock/media/stock_line_in.png -share/icons/gnome/16x16/stock/media/stock_midi.png -share/icons/gnome/16x16/stock/media/stock_music-library.png -share/icons/gnome/16x16/stock/media/stock_playlist.png -share/icons/gnome/16x16/stock/media/stock_smart-playlist.png -share/icons/gnome/16x16/stock/navigation/stock_down-with-subpoints.png -share/icons/gnome/16x16/stock/navigation/stock_first-page.png -share/icons/gnome/16x16/stock/navigation/stock_last-page.png -share/icons/gnome/16x16/stock/navigation/stock_left-with-subpoints.png -share/icons/gnome/16x16/stock/navigation/stock_live-mode.png -share/icons/gnome/16x16/stock/navigation/stock_navigate-next.png -share/icons/gnome/16x16/stock/navigation/stock_navigate-prev.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-all-or-sel-toggle.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-database-ranges.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-drag-mode.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-edit-entry.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-foonote-body-toggle.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-footer-body-toggle.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-header-body-toggle.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-headings.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-indexes.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-insert-as-copy.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-insert-as-link.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-insert-index.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-insert-linked.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-levels.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-list-box-toggle.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-master-toggle.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-next-object.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-open-toolbar.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-previous-object.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-range-names.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-references.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-reminder.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-scenarios.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-sections.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-shift-down.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-shift-left.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-shift-right.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-shift-up.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-table-formula.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-text.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-update-entry.png -share/icons/gnome/16x16/stock/navigation/stock_navigator-wrong-table-formula.png -share/icons/gnome/16x16/stock/navigation/stock_navigator.png -share/icons/gnome/16x16/stock/navigation/stock_next-page.png -share/icons/gnome/16x16/stock/navigation/stock_next.png -share/icons/gnome/16x16/stock/navigation/stock_previous-page.png -share/icons/gnome/16x16/stock/navigation/stock_previous.png -share/icons/gnome/16x16/stock/navigation/stock_right-with-subpoints.png -share/icons/gnome/16x16/stock/navigation/stock_undo-history.png -share/icons/gnome/16x16/stock/navigation/stock_up-with-subpoints.png -share/icons/gnome/16x16/stock/navigation/stock_zoom-next.png -share/icons/gnome/16x16/stock/navigation/stock_zoom-object.png -share/icons/gnome/16x16/stock/navigation/stock_zoom-optimal.png -share/icons/gnome/16x16/stock/navigation/stock_zoom-page-width.png -share/icons/gnome/16x16/stock/navigation/stock_zoom-page.png -share/icons/gnome/16x16/stock/navigation/stock_zoom-previous.png -share/icons/gnome/16x16/stock/navigation/stock_zoom-shift.png -share/icons/gnome/16x16/stock/navigation/stock_zoom.png -share/icons/gnome/16x16/stock/net/stock_addressbook.png -share/icons/gnome/16x16/stock/net/stock_channel.png -share/icons/gnome/16x16/stock/net/stock_connect-to-url.png -share/icons/gnome/16x16/stock/net/stock_connect.png -share/icons/gnome/16x16/stock/net/stock_contact-list.png -share/icons/gnome/16x16/stock/net/stock_contact.png -share/icons/gnome/16x16/stock/net/stock_directory-server.png -share/icons/gnome/16x16/stock/net/stock_disconnect.png -share/icons/gnome/16x16/stock/net/stock_exchange-connector.png -share/icons/gnome/16x16/stock/net/stock_groupwise-connector.png -share/icons/gnome/16x16/stock/net/stock_hand-signed.png -share/icons/gnome/16x16/stock/net/stock_hyperlink-internet-search.png -share/icons/gnome/16x16/stock/net/stock_hyperlink-target.png -share/icons/gnome/16x16/stock/net/stock_hyperlink-toolbar.png -share/icons/gnome/16x16/stock/net/stock_hyperlink.png -share/icons/gnome/16x16/stock/net/stock_inbox.png -share/icons/gnome/16x16/stock/net/stock_insert-url.png -share/icons/gnome/16x16/stock/net/stock_internet.png -share/icons/gnome/16x16/stock/net/stock_link.png -share/icons/gnome/16x16/stock/net/stock_mail-accounts.png -share/icons/gnome/16x16/stock/net/stock_mail-copy.png -share/icons/gnome/16x16/stock/net/stock_mail-filters-apply.png -share/icons/gnome/16x16/stock/net/stock_mail-flag-for-followup-done.png -share/icons/gnome/16x16/stock/net/stock_mail-flag-for-followup.png -share/icons/gnome/16x16/stock/net/stock_mail-handling.png -share/icons/gnome/16x16/stock/net/stock_mail-hide-deleted.png -share/icons/gnome/16x16/stock/net/stock_mail-hide-read.png -share/icons/gnome/16x16/stock/net/stock_mail-hide-selected.png -share/icons/gnome/16x16/stock/net/stock_mail-import.png -share/icons/gnome/16x16/stock/net/stock_mail-merge.png -share/icons/gnome/16x16/stock/net/stock_mail-move.png -share/icons/gnome/16x16/stock/net/stock_mail-open-multiple.png -share/icons/gnome/16x16/stock/net/stock_mail-open.png -share/icons/gnome/16x16/stock/net/stock_mail-receive.png -share/icons/gnome/16x16/stock/net/stock_mail-replied.png -share/icons/gnome/16x16/stock/net/stock_mail-send.png -share/icons/gnome/16x16/stock/net/stock_mail-unread-multiple.png -share/icons/gnome/16x16/stock/net/stock_mail-unread.png -share/icons/gnome/16x16/stock/net/stock_mail.png -share/icons/gnome/16x16/stock/net/stock_message-display.png -share/icons/gnome/16x16/stock/net/stock_online-layout.png -share/icons/gnome/16x16/stock/net/stock_outbox.png -share/icons/gnome/16x16/stock/net/stock_post-message.png -share/icons/gnome/16x16/stock/net/stock_sent-mail.png -share/icons/gnome/16x16/stock/net/stock_shared-by-me.png -share/icons/gnome/16x16/stock/net/stock_shared-to-me.png -share/icons/gnome/16x16/stock/net/stock_video-conferencing.png -share/icons/gnome/16x16/stock/object/stock_3d-3d-attributes-only.png -share/icons/gnome/16x16/stock/object/stock_3d-all-attributes.png -share/icons/gnome/16x16/stock/object/stock_3d-geometry.png -share/icons/gnome/16x16/stock/object/stock_3d-light-off.png -share/icons/gnome/16x16/stock/object/stock_3d-light-on.png -share/icons/gnome/16x16/stock/object/stock_3d-light.png -share/icons/gnome/16x16/stock/object/stock_3d-material.png -share/icons/gnome/16x16/stock/object/stock_3d-normals-double-sided-closed-body.png -share/icons/gnome/16x16/stock/object/stock_3d-normals-double-sided.png -share/icons/gnome/16x16/stock/object/stock_3d-normals-flat.png -share/icons/gnome/16x16/stock/object/stock_3d-normals-flip-illumination.png -share/icons/gnome/16x16/stock/object/stock_3d-normals-object-specific.png -share/icons/gnome/16x16/stock/object/stock_3d-normals-spherical.png -share/icons/gnome/16x16/stock/object/stock_3d-perspective.png -share/icons/gnome/16x16/stock/object/stock_3d-shading.png -share/icons/gnome/16x16/stock/object/stock_3d-texture-and-shading.png -share/icons/gnome/16x16/stock/object/stock_3d-texture-object-specific.png -share/icons/gnome/16x16/stock/object/stock_3d-texture-only.png -share/icons/gnome/16x16/stock/object/stock_3d-texture-parallel.png -share/icons/gnome/16x16/stock/object/stock_3d-texture-spherical.png -share/icons/gnome/16x16/stock/object/stock_3d-texture.png -share/icons/gnome/16x16/stock/object/stock_auto-contour.png -share/icons/gnome/16x16/stock/object/stock_bookmark.png -share/icons/gnome/16x16/stock/object/stock_bring-backward.png -share/icons/gnome/16x16/stock/object/stock_bring-forward.png -share/icons/gnome/16x16/stock/object/stock_create-with-attributes.png -share/icons/gnome/16x16/stock/object/stock_delete-bookmark.png -share/icons/gnome/16x16/stock/object/stock_edit-bookmark.png -share/icons/gnome/16x16/stock/object/stock_effects-more-options.png -share/icons/gnome/16x16/stock/object/stock_effects-object-colorize.png -share/icons/gnome/16x16/stock/object/stock_effects-object-hide.png -share/icons/gnome/16x16/stock/object/stock_effects-object.png -share/icons/gnome/16x16/stock/object/stock_effects-play-in-full.png -share/icons/gnome/16x16/stock/object/stock_effects-preview.png -share/icons/gnome/16x16/stock/object/stock_effects.png -share/icons/gnome/16x16/stock/object/stock_enter-group.png -share/icons/gnome/16x16/stock/object/stock_exit-group.png -share/icons/gnome/16x16/stock/object/stock_file-with-objects.png -share/icons/gnome/16x16/stock/object/stock_format-object.png -share/icons/gnome/16x16/stock/object/stock_formula-cursor.png -share/icons/gnome/16x16/stock/object/stock_frame.png -share/icons/gnome/16x16/stock/object/stock_group.png -share/icons/gnome/16x16/stock/object/stock_handles-big.png -share/icons/gnome/16x16/stock/object/stock_handles-simple.png -share/icons/gnome/16x16/stock/object/stock_insert-applet.png -share/icons/gnome/16x16/stock/object/stock_insert-floating-frame.png -share/icons/gnome/16x16/stock/object/stock_insert-gluepoint.png -share/icons/gnome/16x16/stock/object/stock_insert-math-object.png -share/icons/gnome/16x16/stock/object/stock_insert-note.png -share/icons/gnome/16x16/stock/object/stock_insert-ole-object.png -share/icons/gnome/16x16/stock/object/stock_insert-plugin.png -share/icons/gnome/16x16/stock/object/stock_insert-rule.png -share/icons/gnome/16x16/stock/object/stock_insert-single-column-text-frame.png -share/icons/gnome/16x16/stock/object/stock_insert-slide.png -share/icons/gnome/16x16/stock/object/stock_insert-sound-plugin.png -share/icons/gnome/16x16/stock/object/stock_insert-text-frame.png -share/icons/gnome/16x16/stock/object/stock_insert_graphic.png -share/icons/gnome/16x16/stock/object/stock_insert_special_character.png -share/icons/gnome/16x16/stock/object/stock_interaction.png -share/icons/gnome/16x16/stock/object/stock_new-bcard.png -share/icons/gnome/16x16/stock/object/stock_object-behind.png -share/icons/gnome/16x16/stock/object/stock_object-infront.png -share/icons/gnome/16x16/stock/object/stock_pin.png -share/icons/gnome/16x16/stock/object/stock_position-size.png -share/icons/gnome/16x16/stock/object/stock_reverse-order.png -share/icons/gnome/16x16/stock/object/stock_slide-design.png -share/icons/gnome/16x16/stock/object/stock_slide-duplicate.png -share/icons/gnome/16x16/stock/object/stock_slide-expand.png -share/icons/gnome/16x16/stock/object/stock_slide-reherse-timings.png -share/icons/gnome/16x16/stock/object/stock_slide-show.png -share/icons/gnome/16x16/stock/object/stock_slide-showhide.png -share/icons/gnome/16x16/stock/object/stock_snap-grid.png -share/icons/gnome/16x16/stock/object/stock_snap-guides.png -share/icons/gnome/16x16/stock/object/stock_snap-margins.png -share/icons/gnome/16x16/stock/object/stock_snap-object-points.png -share/icons/gnome/16x16/stock/object/stock_snap-object.png -share/icons/gnome/16x16/stock/object/stock_symbol-selection.png -share/icons/gnome/16x16/stock/object/stock_to-3d-rotation-object.png -share/icons/gnome/16x16/stock/object/stock_to-3d.png -share/icons/gnome/16x16/stock/object/stock_to-bottom.png -share/icons/gnome/16x16/stock/object/stock_to-curve.png -share/icons/gnome/16x16/stock/object/stock_to-polygon.png -share/icons/gnome/16x16/stock/object/stock_to-top.png -share/icons/gnome/16x16/stock/object/stock_ungroup.png -share/icons/gnome/16x16/stock/object/stock_unlink.png -share/icons/gnome/16x16/stock/object/stock_view-function-selection.png -share/icons/gnome/16x16/stock/table/stock_alignment-bottom.png -share/icons/gnome/16x16/stock/table/stock_alignment-centered-vertically.png -share/icons/gnome/16x16/stock/table/stock_alignment-centered.png -share/icons/gnome/16x16/stock/table/stock_alignment-left.png -share/icons/gnome/16x16/stock/table/stock_alignment-right.png -share/icons/gnome/16x16/stock/table/stock_alignment-top.png -share/icons/gnome/16x16/stock/table/stock_alignment.png -share/icons/gnome/16x16/stock/table/stock_cell-align-bottom.png -share/icons/gnome/16x16/stock/table/stock_cell-align-center.png -share/icons/gnome/16x16/stock/table/stock_cell-align-top.png -share/icons/gnome/16x16/stock/table/stock_choose-themes.png -share/icons/gnome/16x16/stock/table/stock_datapilot.png -share/icons/gnome/16x16/stock/table/stock_delete-column.png -share/icons/gnome/16x16/stock/table/stock_delete-row.png -share/icons/gnome/16x16/stock/table/stock_exchange-columns.png -share/icons/gnome/16x16/stock/table/stock_exchange-rows.png -share/icons/gnome/16x16/stock/table/stock_group-cells.png -share/icons/gnome/16x16/stock/table/stock_insert-cells-down.png -share/icons/gnome/16x16/stock/table/stock_insert-cells-right.png -share/icons/gnome/16x16/stock/table/stock_insert-cells.png -share/icons/gnome/16x16/stock/table/stock_insert-columns.png -share/icons/gnome/16x16/stock/table/stock_insert-names-define.png -share/icons/gnome/16x16/stock/table/stock_insert-rows.png -share/icons/gnome/16x16/stock/table/stock_insert-table.png -share/icons/gnome/16x16/stock/table/stock_select-cell.png -share/icons/gnome/16x16/stock/table/stock_select-column.png -share/icons/gnome/16x16/stock/table/stock_select-row.png -share/icons/gnome/16x16/stock/table/stock_select-table.png -share/icons/gnome/16x16/stock/table/stock_sort-table-column-ascending.png -share/icons/gnome/16x16/stock/table/stock_sort-table-row-ascending.png -share/icons/gnome/16x16/stock/table/stock_table-align-bottom.png -share/icons/gnome/16x16/stock/table/stock_table-align-center.png -share/icons/gnome/16x16/stock/table/stock_table-align-top.png -share/icons/gnome/16x16/stock/table/stock_table-borders.png -share/icons/gnome/16x16/stock/table/stock_table-combine.png -share/icons/gnome/16x16/stock/table/stock_table-fit-height.png -share/icons/gnome/16x16/stock/table/stock_table-fit-width.png -share/icons/gnome/16x16/stock/table/stock_table-fixed-proportional.png -share/icons/gnome/16x16/stock/table/stock_table-fixed.png -share/icons/gnome/16x16/stock/table/stock_table-line-color.png -share/icons/gnome/16x16/stock/table/stock_table-line-style.png -share/icons/gnome/16x16/stock/table/stock_table-optimize.png -share/icons/gnome/16x16/stock/table/stock_table-same-height.png -share/icons/gnome/16x16/stock/table/stock_table-same-width.png -share/icons/gnome/16x16/stock/table/stock_table-split.png -share/icons/gnome/16x16/stock/table/stock_table-variable.png -share/icons/gnome/16x16/stock/table/stock_table_borders.png -share/icons/gnome/16x16/stock/table/stock_table_fill.png -share/icons/gnome/16x16/stock/table/stock_ungroup-cells.png -share/icons/gnome/16x16/stock/text/stock_autoformat.png -share/icons/gnome/16x16/stock/text/stock_autospellcheck.png -share/icons/gnome/16x16/stock/text/stock_autotext.png -share/icons/gnome/16x16/stock/text/stock_chart-scale-text.png -share/icons/gnome/16x16/stock/text/stock_decrease-font.png -share/icons/gnome/16x16/stock/text/stock_directcursor.png -share/icons/gnome/16x16/stock/text/stock_draw-text-animation.png -share/icons/gnome/16x16/stock/text/stock_draw-text-frame.png -share/icons/gnome/16x16/stock/text/stock_draw-text.png -share/icons/gnome/16x16/stock/text/stock_draw-vertical-text-frame.png -share/icons/gnome/16x16/stock/text/stock_draw-vertical-text.png -share/icons/gnome/16x16/stock/text/stock_edit-contour.png -share/icons/gnome/16x16/stock/text/stock_edit-headers-and-footers.png -share/icons/gnome/16x16/stock/text/stock_effects-text.png -share/icons/gnome/16x16/stock/text/stock_euro.png -share/icons/gnome/16x16/stock/text/stock_font-formatting-toggle.png -share/icons/gnome/16x16/stock/text/stock_font-size.png -share/icons/gnome/16x16/stock/text/stock_font.png -share/icons/gnome/16x16/stock/text/stock_fontwork-2dshadow.png -share/icons/gnome/16x16/stock/text/stock_fontwork-3dshadow.png -share/icons/gnome/16x16/stock/text/stock_fontwork-adaptation-off.png -share/icons/gnome/16x16/stock/text/stock_fontwork-adaptation-rotate.png -share/icons/gnome/16x16/stock/text/stock_fontwork-adaptation-slant-h.png -share/icons/gnome/16x16/stock/text/stock_fontwork-adaptation-slant-v.png -share/icons/gnome/16x16/stock/text/stock_fontwork-adaptation-straight.png -share/icons/gnome/16x16/stock/text/stock_fontwork-align-fill.png -share/icons/gnome/16x16/stock/text/stock_fontwork-noshadow.png -share/icons/gnome/16x16/stock/text/stock_fontwork-preview-spline.png -share/icons/gnome/16x16/stock/text/stock_fontwork-reverse-text-flow.png -share/icons/gnome/16x16/stock/text/stock_fontwork-shadow-angle.png -share/icons/gnome/16x16/stock/text/stock_fontwork-shadow-length.png -share/icons/gnome/16x16/stock/text/stock_fontwork-shadow-x-offset.png -share/icons/gnome/16x16/stock/text/stock_fontwork-shadow-y-offset.png -share/icons/gnome/16x16/stock/text/stock_fontwork-spline-distance.png -share/icons/gnome/16x16/stock/text/stock_fontwork-spline-indent.png -share/icons/gnome/16x16/stock/text/stock_fontwork-text-border.png -share/icons/gnome/16x16/stock/text/stock_fontwork.png -share/icons/gnome/16x16/stock/text/stock_format-character.png -share/icons/gnome/16x16/stock/text/stock_format-numbering-bullets.png -share/icons/gnome/16x16/stock/text/stock_format-paragraph.png -share/icons/gnome/16x16/stock/text/stock_increase-font.png -share/icons/gnome/16x16/stock/text/stock_insert-caption.png -share/icons/gnome/16x16/stock/text/stock_insert-cross-reference.png -share/icons/gnome/16x16/stock/text/stock_insert-fields-author.png -share/icons/gnome/16x16/stock/text/stock_insert-fields-subject.png -share/icons/gnome/16x16/stock/text/stock_insert-fields-title.png -share/icons/gnome/16x16/stock/text/stock_insert-footer.png -share/icons/gnome/16x16/stock/text/stock_insert-header.png -share/icons/gnome/16x16/stock/text/stock_insert_endnote.png -share/icons/gnome/16x16/stock/text/stock_insert_footnote.png -share/icons/gnome/16x16/stock/text/stock_insert_index_marker.png -share/icons/gnome/16x16/stock/text/stock_insert_section.png -share/icons/gnome/16x16/stock/text/stock_line-spacing-1.5.png -share/icons/gnome/16x16/stock/text/stock_line-spacing-1.png -share/icons/gnome/16x16/stock/text/stock_line-spacing-2.png -share/icons/gnome/16x16/stock/text/stock_list-insert-unnumbered.png -share/icons/gnome/16x16/stock/text/stock_list_bullet.png -share/icons/gnome/16x16/stock/text/stock_list_enum-off.png -share/icons/gnome/16x16/stock/text/stock_list_enum-restart.png -share/icons/gnome/16x16/stock/text/stock_list_enum.png -share/icons/gnome/16x16/stock/text/stock_nonprinting-chars.png -share/icons/gnome/16x16/stock/text/stock_page-number.png -share/icons/gnome/16x16/stock/text/stock_page-total-number.png -share/icons/gnome/16x16/stock/text/stock_paragraph-spacing-decrease.png -share/icons/gnome/16x16/stock/text/stock_paragraph-spacing-increase.png -share/icons/gnome/16x16/stock/text/stock_spellcheck.png -share/icons/gnome/16x16/stock/text/stock_styles-character-styles.png -share/icons/gnome/16x16/stock/text/stock_styles-fill-format-mode.png -share/icons/gnome/16x16/stock/text/stock_styles-frame-styles.png -share/icons/gnome/16x16/stock/text/stock_styles-new-style-from-selection.png -share/icons/gnome/16x16/stock/text/stock_styles-numbering-styles.png -share/icons/gnome/16x16/stock/text/stock_styles-page-styles.png -share/icons/gnome/16x16/stock/text/stock_styles-paragraph-styles.png -share/icons/gnome/16x16/stock/text/stock_styles-update-style.png -share/icons/gnome/16x16/stock/text/stock_subscript.png -share/icons/gnome/16x16/stock/text/stock_superscript.png -share/icons/gnome/16x16/stock/text/stock_text-direction-ltr.png -share/icons/gnome/16x16/stock/text/stock_text-direction-ttb.png -share/icons/gnome/16x16/stock/text/stock_text-double-click-to-edit.png -share/icons/gnome/16x16/stock/text/stock_text-monospaced.png -share/icons/gnome/16x16/stock/text/stock_text-outline.png -share/icons/gnome/16x16/stock/text/stock_text-quickedit.png -share/icons/gnome/16x16/stock/text/stock_text-select-text-only.png -share/icons/gnome/16x16/stock/text/stock_text-shadow.png -share/icons/gnome/16x16/stock/text/stock_text-spacing.png -share/icons/gnome/16x16/stock/text/stock_text_color_background.png -share/icons/gnome/16x16/stock/text/stock_text_color_foreground.png -share/icons/gnome/16x16/stock/text/stock_text_color_hilight.png -share/icons/gnome/16x16/stock/text/stock_text_underlined-double.png -share/icons/gnome/16x16/stock/text/stock_thesaurus.png -share/icons/gnome/16x16/stock/text/stock_to-background.png -share/icons/gnome/16x16/stock/text/stock_to-foreground.png -share/icons/gnome/16x16/stock/text/stock_tools-hyphenation.png -share/icons/gnome/16x16/stock/text/stock_update-fields.png -share/icons/gnome/16x16/stock/text/stock_view-field-shadings.png -share/icons/gnome/16x16/stock/text/stock_wrap-around.png -share/icons/gnome/16x16/stock/text/stock_wrap-behind.png -share/icons/gnome/16x16/stock/text/stock_wrap-contour.png -share/icons/gnome/16x16/stock/text/stock_wrap-interrupt.png -share/icons/gnome/16x16/stock/text/stock_wrap-left.png -share/icons/gnome/16x16/stock/text/stock_wrap-optimal.png -share/icons/gnome/16x16/stock/text/stock_wrap-right.png -share/icons/gnome/22x22/actions/add.png -share/icons/gnome/22x22/actions/address-book-new.png -share/icons/gnome/22x22/actions/application-exit.png -share/icons/gnome/22x22/actions/appointment-new.png -share/icons/gnome/22x22/actions/appointment.png -share/icons/gnome/22x22/actions/back.png -share/icons/gnome/22x22/actions/bookmark-new.png -share/icons/gnome/22x22/actions/bookmark_add.png -share/icons/gnome/22x22/actions/bookmarks_list_add.png -share/icons/gnome/22x22/actions/bottom.png -share/icons/gnome/22x22/actions/call-start.png -share/icons/gnome/22x22/actions/call-stop.png -share/icons/gnome/22x22/actions/centrejust.png -share/icons/gnome/22x22/actions/contact-new.png -share/icons/gnome/22x22/actions/document-new.png -share/icons/gnome/22x22/actions/document-open-recent.png -share/icons/gnome/22x22/actions/document-open.png -share/icons/gnome/22x22/actions/document-page-setup.png -share/icons/gnome/22x22/actions/document-print-preview.png -share/icons/gnome/22x22/actions/document-print.png -share/icons/gnome/22x22/actions/document-properties.png -share/icons/gnome/22x22/actions/document-revert.png -share/icons/gnome/22x22/actions/document-save-as.png -share/icons/gnome/22x22/actions/document-save.png -share/icons/gnome/22x22/actions/document-send.png -share/icons/gnome/22x22/actions/down.png -share/icons/gnome/22x22/actions/edit-clear.png -share/icons/gnome/22x22/actions/edit-copy.png -share/icons/gnome/22x22/actions/edit-cut.png -share/icons/gnome/22x22/actions/edit-delete.png -share/icons/gnome/22x22/actions/edit-find-replace.png -share/icons/gnome/22x22/actions/edit-find.png -share/icons/gnome/22x22/actions/edit-paste.png -share/icons/gnome/22x22/actions/edit-redo.png -share/icons/gnome/22x22/actions/edit-select-all.png -share/icons/gnome/22x22/actions/edit-undo.png -share/icons/gnome/22x22/actions/editclear.png -share/icons/gnome/22x22/actions/editcopy.png -share/icons/gnome/22x22/actions/editcut.png -share/icons/gnome/22x22/actions/editdelete.png -share/icons/gnome/22x22/actions/editpaste.png -share/icons/gnome/22x22/actions/exit.png -share/icons/gnome/22x22/actions/filefind.png -share/icons/gnome/22x22/actions/filenew.png -share/icons/gnome/22x22/actions/fileopen.png -share/icons/gnome/22x22/actions/fileprint.png -share/icons/gnome/22x22/actions/filequickprint.png -share/icons/gnome/22x22/actions/filesave.png -share/icons/gnome/22x22/actions/filesaveas.png -share/icons/gnome/22x22/actions/find.png -share/icons/gnome/22x22/actions/finish.png -share/icons/gnome/22x22/actions/folder-new.png -share/icons/gnome/22x22/actions/folder_new.png -share/icons/gnome/22x22/actions/format-indent-less.png -share/icons/gnome/22x22/actions/format-indent-more.png -share/icons/gnome/22x22/actions/format-justify-center.png -share/icons/gnome/22x22/actions/format-justify-fill.png -share/icons/gnome/22x22/actions/format-justify-left.png -share/icons/gnome/22x22/actions/format-justify-right.png -share/icons/gnome/22x22/actions/format-text-bold.png -share/icons/gnome/22x22/actions/format-text-direction-ltr.png -share/icons/gnome/22x22/actions/format-text-direction-rtl.png -share/icons/gnome/22x22/actions/format-text-italic.png -share/icons/gnome/22x22/actions/format-text-strikethrough.png -share/icons/gnome/22x22/actions/format-text-underline.png -share/icons/gnome/22x22/actions/forward.png -share/icons/gnome/22x22/actions/gnome-lockscreen.png -share/icons/gnome/22x22/actions/gnome-logout.png -share/icons/gnome/22x22/actions/gnome-run.png -share/icons/gnome/22x22/actions/gnome-searchtool.png -share/icons/gnome/22x22/actions/gnome-shutdown.png -share/icons/gnome/22x22/actions/gnome-stock-mail-fwd.png -share/icons/gnome/22x22/actions/gnome-stock-mail-new.png -share/icons/gnome/22x22/actions/gnome-stock-mail-rpl.png -share/icons/gnome/22x22/actions/gnome-stock-mail-snd.png -share/icons/gnome/22x22/actions/gnome-stock-text-indent.png -share/icons/gnome/22x22/actions/gnome-stock-text-unindent.png -share/icons/gnome/22x22/actions/go-bottom.png -share/icons/gnome/22x22/actions/go-down.png -share/icons/gnome/22x22/actions/go-first.png -share/icons/gnome/22x22/actions/go-home.png -share/icons/gnome/22x22/actions/go-jump.png -share/icons/gnome/22x22/actions/go-last.png -share/icons/gnome/22x22/actions/go-next.png -share/icons/gnome/22x22/actions/go-previous.png -share/icons/gnome/22x22/actions/go-top.png -share/icons/gnome/22x22/actions/go-up.png -share/icons/gnome/22x22/actions/gohome.png -share/icons/gnome/22x22/actions/gtk-about.png -share/icons/gnome/22x22/actions/gtk-add.png -share/icons/gnome/22x22/actions/gtk-bold.png -share/icons/gnome/22x22/actions/gtk-cancel.png -share/icons/gnome/22x22/actions/gtk-clear.png -share/icons/gnome/22x22/actions/gtk-close.png -share/icons/gnome/22x22/actions/gtk-copy.png -share/icons/gnome/22x22/actions/gtk-cut.png -share/icons/gnome/22x22/actions/gtk-delete.png -share/icons/gnome/22x22/actions/gtk-edit.png -share/icons/gnome/22x22/actions/gtk-execute.png -share/icons/gnome/22x22/actions/gtk-find-and-replace.png -share/icons/gnome/22x22/actions/gtk-find.png -share/icons/gnome/22x22/actions/gtk-fullscreen.png -share/icons/gnome/22x22/actions/gtk-go-back-ltr.png -share/icons/gnome/22x22/actions/gtk-go-back-rtl.png -share/icons/gnome/22x22/actions/gtk-go-down.png -share/icons/gnome/22x22/actions/gtk-go-forward-ltr.png -share/icons/gnome/22x22/actions/gtk-go-forward-rtl.png -share/icons/gnome/22x22/actions/gtk-go-up.png -share/icons/gnome/22x22/actions/gtk-goto-bottom.png -share/icons/gnome/22x22/actions/gtk-goto-first-ltr.png -share/icons/gnome/22x22/actions/gtk-goto-first-rtl.png -share/icons/gnome/22x22/actions/gtk-goto-last-ltr.png -share/icons/gnome/22x22/actions/gtk-goto-last-rtl.png -share/icons/gnome/22x22/actions/gtk-goto-top.png -share/icons/gnome/22x22/actions/gtk-home.png -share/icons/gnome/22x22/actions/gtk-indent-ltr.png -share/icons/gnome/22x22/actions/gtk-indent-rtl.png -share/icons/gnome/22x22/actions/gtk-italic.png -share/icons/gnome/22x22/actions/gtk-jump-to-ltr.png -share/icons/gnome/22x22/actions/gtk-jump-to-rtl.png -share/icons/gnome/22x22/actions/gtk-justify-center.png -share/icons/gnome/22x22/actions/gtk-justify-fill.png -share/icons/gnome/22x22/actions/gtk-justify-left.png -share/icons/gnome/22x22/actions/gtk-justify-right.png -share/icons/gnome/22x22/actions/gtk-leave-fullscreen.png -share/icons/gnome/22x22/actions/gtk-media-forward-ltr.png -share/icons/gnome/22x22/actions/gtk-media-forward-rtl.png -share/icons/gnome/22x22/actions/gtk-media-next-ltr.png -share/icons/gnome/22x22/actions/gtk-media-next-rtl.png -share/icons/gnome/22x22/actions/gtk-media-pause.png -share/icons/gnome/22x22/actions/gtk-media-play-ltr.png -share/icons/gnome/22x22/actions/gtk-media-previous-ltr.png -share/icons/gnome/22x22/actions/gtk-media-previous-rtl.png -share/icons/gnome/22x22/actions/gtk-media-record.png -share/icons/gnome/22x22/actions/gtk-media-rewind-ltr.png -share/icons/gnome/22x22/actions/gtk-media-rewind-rtl.png -share/icons/gnome/22x22/actions/gtk-media-stop.png -share/icons/gnome/22x22/actions/gtk-new.png -share/icons/gnome/22x22/actions/gtk-open.png -share/icons/gnome/22x22/actions/gtk-paste.png -share/icons/gnome/22x22/actions/gtk-print-preview.png -share/icons/gnome/22x22/actions/gtk-print.png -share/icons/gnome/22x22/actions/gtk-properties.png -share/icons/gnome/22x22/actions/gtk-quit.png -share/icons/gnome/22x22/actions/gtk-redo-ltr.png -share/icons/gnome/22x22/actions/gtk-refresh.png -share/icons/gnome/22x22/actions/gtk-remove.png -share/icons/gnome/22x22/actions/gtk-revert-to-saved-ltr.png -share/icons/gnome/22x22/actions/gtk-revert-to-saved-rtl.png -share/icons/gnome/22x22/actions/gtk-save-as.png -share/icons/gnome/22x22/actions/gtk-save.png -share/icons/gnome/22x22/actions/gtk-select-all.png -share/icons/gnome/22x22/actions/gtk-sort-ascending.png -share/icons/gnome/22x22/actions/gtk-sort-descending.png -share/icons/gnome/22x22/actions/gtk-spell-check.png -share/icons/gnome/22x22/actions/gtk-stop.png -share/icons/gnome/22x22/actions/gtk-strikethrough.png -share/icons/gnome/22x22/actions/gtk-underline.png -share/icons/gnome/22x22/actions/gtk-undo-ltr.png -share/icons/gnome/22x22/actions/gtk-unindent-ltr.png -share/icons/gnome/22x22/actions/gtk-unindent-rtl.png -share/icons/gnome/22x22/actions/gtk-zoom-100.png -share/icons/gnome/22x22/actions/gtk-zoom-fit.png -share/icons/gnome/22x22/actions/gtk-zoom-in.png -share/icons/gnome/22x22/actions/gtk-zoom-out.png -share/icons/gnome/22x22/actions/help-about.png -share/icons/gnome/22x22/actions/help-contents.png -share/icons/gnome/22x22/actions/help-faq.png -share/icons/gnome/22x22/actions/insert-image.png -share/icons/gnome/22x22/actions/insert-link.png -share/icons/gnome/22x22/actions/insert-object.png -share/icons/gnome/22x22/actions/insert-text.png -share/icons/gnome/22x22/actions/kfind.png -share/icons/gnome/22x22/actions/kfm_home.png -share/icons/gnome/22x22/actions/leftjust.png -share/icons/gnome/22x22/actions/list-add.png -share/icons/gnome/22x22/actions/list-remove.png -share/icons/gnome/22x22/actions/lock.png -share/icons/gnome/22x22/actions/mail-forward.png -share/icons/gnome/22x22/actions/mail-mark-important.png -share/icons/gnome/22x22/actions/mail-mark-junk.png -share/icons/gnome/22x22/actions/mail-mark-notjunk.png -share/icons/gnome/22x22/actions/mail-mark-read.png -share/icons/gnome/22x22/actions/mail-mark-unread.png -share/icons/gnome/22x22/actions/mail-message-new.png -share/icons/gnome/22x22/actions/mail-reply-all.png -share/icons/gnome/22x22/actions/mail-reply-sender.png -share/icons/gnome/22x22/actions/mail-send-receive.png -share/icons/gnome/22x22/actions/mail-send.png -share/icons/gnome/22x22/actions/mail_forward.png -share/icons/gnome/22x22/actions/mail_new.png -share/icons/gnome/22x22/actions/mail_reply.png -share/icons/gnome/22x22/actions/mail_replyall.png -share/icons/gnome/22x22/actions/mail_send.png -share/icons/gnome/22x22/actions/mail_spam.png -share/icons/gnome/22x22/actions/media-eject.png -share/icons/gnome/22x22/actions/media-playback-pause.png -share/icons/gnome/22x22/actions/media-playback-start.png -share/icons/gnome/22x22/actions/media-playback-stop.png -share/icons/gnome/22x22/actions/media-record.png -share/icons/gnome/22x22/actions/media-seek-backward.png -share/icons/gnome/22x22/actions/media-seek-forward.png -share/icons/gnome/22x22/actions/media-skip-backward.png -share/icons/gnome/22x22/actions/media-skip-forward.png -share/icons/gnome/22x22/actions/next.png -share/icons/gnome/22x22/actions/object-flip-horizontal.png -share/icons/gnome/22x22/actions/object-flip-vertical.png -share/icons/gnome/22x22/actions/object-rotate-left.png -share/icons/gnome/22x22/actions/object-rotate-right.png -share/icons/gnome/22x22/actions/player_eject.png -share/icons/gnome/22x22/actions/player_end.png -share/icons/gnome/22x22/actions/player_fwd.png -share/icons/gnome/22x22/actions/player_pause.png -share/icons/gnome/22x22/actions/player_play.png -share/icons/gnome/22x22/actions/player_record.png -share/icons/gnome/22x22/actions/player_rew.png -share/icons/gnome/22x22/actions/player_start.png -share/icons/gnome/22x22/actions/player_stop.png -share/icons/gnome/22x22/actions/previous.png -share/icons/gnome/22x22/actions/process-stop.png -share/icons/gnome/22x22/actions/redhat-home.png -share/icons/gnome/22x22/actions/redo.png -share/icons/gnome/22x22/actions/reload.png -share/icons/gnome/22x22/actions/reload3.png -share/icons/gnome/22x22/actions/reload_all_tabs.png -share/icons/gnome/22x22/actions/reload_page.png -share/icons/gnome/22x22/actions/remove.png -share/icons/gnome/22x22/actions/revert.png -share/icons/gnome/22x22/actions/rightjust.png -share/icons/gnome/22x22/actions/search.png -share/icons/gnome/22x22/actions/start.png -share/icons/gnome/22x22/actions/stock_about.png -share/icons/gnome/22x22/actions/stock_add-bookmark.png -share/icons/gnome/22x22/actions/stock_bottom.png -share/icons/gnome/22x22/actions/stock_close.png -share/icons/gnome/22x22/actions/stock_copy.png -share/icons/gnome/22x22/actions/stock_cut.png -share/icons/gnome/22x22/actions/stock_delete.png -share/icons/gnome/22x22/actions/stock_down.png -share/icons/gnome/22x22/actions/stock_file-properites.png -share/icons/gnome/22x22/actions/stock_first.png -share/icons/gnome/22x22/actions/stock_fullscreen.png -share/icons/gnome/22x22/actions/stock_help-add-bookmark.png -share/icons/gnome/22x22/actions/stock_home.png -share/icons/gnome/22x22/actions/stock_last.png -share/icons/gnome/22x22/actions/stock_leave-fullscreen.png -share/icons/gnome/22x22/actions/stock_left.png -share/icons/gnome/22x22/actions/stock_mail-compose.png -share/icons/gnome/22x22/actions/stock_mail-forward.png -share/icons/gnome/22x22/actions/stock_mail-reply-to-all.png -share/icons/gnome/22x22/actions/stock_mail-reply.png -share/icons/gnome/22x22/actions/stock_mail-send-receive.png -share/icons/gnome/22x22/actions/stock_mail-send.png -share/icons/gnome/22x22/actions/stock_media-fwd.png -share/icons/gnome/22x22/actions/stock_media-next.png -share/icons/gnome/22x22/actions/stock_media-pause.png -share/icons/gnome/22x22/actions/stock_media-play.png -share/icons/gnome/22x22/actions/stock_media-prev.png -share/icons/gnome/22x22/actions/stock_media-rec.png -share/icons/gnome/22x22/actions/stock_media-rew.png -share/icons/gnome/22x22/actions/stock_media-stop.png -share/icons/gnome/22x22/actions/stock_new-address-book.png -share/icons/gnome/22x22/actions/stock_new-appointment.png -share/icons/gnome/22x22/actions/stock_new-bcard.png -share/icons/gnome/22x22/actions/stock_new-dir.png -share/icons/gnome/22x22/actions/stock_new-tab.png -share/icons/gnome/22x22/actions/stock_new-text.png -share/icons/gnome/22x22/actions/stock_new-window.png -share/icons/gnome/22x22/actions/stock_paste.png -share/icons/gnome/22x22/actions/stock_print-preview.png -share/icons/gnome/22x22/actions/stock_print-setup.png -share/icons/gnome/22x22/actions/stock_print.png -share/icons/gnome/22x22/actions/stock_properties.png -share/icons/gnome/22x22/actions/stock_redo.png -share/icons/gnome/22x22/actions/stock_refresh.png -share/icons/gnome/22x22/actions/stock_right.png -share/icons/gnome/22x22/actions/stock_save-as.png -share/icons/gnome/22x22/actions/stock_save.png -share/icons/gnome/22x22/actions/stock_search-and-replace.png -share/icons/gnome/22x22/actions/stock_search.png -share/icons/gnome/22x22/actions/stock_select-all.png -share/icons/gnome/22x22/actions/stock_spam.png -share/icons/gnome/22x22/actions/stock_spellcheck.png -share/icons/gnome/22x22/actions/stock_stop.png -share/icons/gnome/22x22/actions/stock_text-strikethrough.png -share/icons/gnome/22x22/actions/stock_text_bold.png -share/icons/gnome/22x22/actions/stock_text_center.png -share/icons/gnome/22x22/actions/stock_text_indent.png -share/icons/gnome/22x22/actions/stock_text_italic.png -share/icons/gnome/22x22/actions/stock_text_justify.png -share/icons/gnome/22x22/actions/stock_text_left.png -share/icons/gnome/22x22/actions/stock_text_right.png -share/icons/gnome/22x22/actions/stock_text_underlined.png -share/icons/gnome/22x22/actions/stock_text_unindent.png -share/icons/gnome/22x22/actions/stock_top.png -share/icons/gnome/22x22/actions/stock_undo.png -share/icons/gnome/22x22/actions/stock_up.png -share/icons/gnome/22x22/actions/stock_zoom-1.png -share/icons/gnome/22x22/actions/stock_zoom-in.png -share/icons/gnome/22x22/actions/stock_zoom-out.png -share/icons/gnome/22x22/actions/stock_zoom-page.png -share/icons/gnome/22x22/actions/stop.png -share/icons/gnome/22x22/actions/system-lock-screen.png -share/icons/gnome/22x22/actions/system-log-out.png -share/icons/gnome/22x22/actions/system-run.png -share/icons/gnome/22x22/actions/system-search.png -share/icons/gnome/22x22/actions/system-shutdown.png -share/icons/gnome/22x22/actions/tab-new.png -share/icons/gnome/22x22/actions/tab_new.png -share/icons/gnome/22x22/actions/text_bold.png -share/icons/gnome/22x22/actions/text_italic.png -share/icons/gnome/22x22/actions/text_strike.png -share/icons/gnome/22x22/actions/text_under.png -share/icons/gnome/22x22/actions/tools-check-spelling.png -share/icons/gnome/22x22/actions/top.png -share/icons/gnome/22x22/actions/undo.png -share/icons/gnome/22x22/actions/up.png -share/icons/gnome/22x22/actions/view-fullscreen.png -share/icons/gnome/22x22/actions/view-refresh.png -share/icons/gnome/22x22/actions/view-restore.png -share/icons/gnome/22x22/actions/view-sort-ascending.png -share/icons/gnome/22x22/actions/view-sort-descending.png -share/icons/gnome/22x22/actions/viewmag+.png -share/icons/gnome/22x22/actions/viewmag-.png -share/icons/gnome/22x22/actions/viewmag1.png -share/icons/gnome/22x22/actions/viewmagfit.png -share/icons/gnome/22x22/actions/window-close.png -share/icons/gnome/22x22/actions/window-new.png -share/icons/gnome/22x22/actions/window_fullscreen.png -share/icons/gnome/22x22/actions/window_new.png -share/icons/gnome/22x22/actions/window_nofullscreen.png -share/icons/gnome/22x22/actions/xfce-system-exit.png -share/icons/gnome/22x22/actions/xfce-system-lock.png -share/icons/gnome/22x22/actions/zoom-best-fit.png -share/icons/gnome/22x22/actions/zoom-fit-best.png -share/icons/gnome/22x22/actions/zoom-in.png -share/icons/gnome/22x22/actions/zoom-original.png -share/icons/gnome/22x22/actions/zoom-out.png -share/icons/gnome/22x22/animations/gnome-spinner.png -share/icons/gnome/22x22/animations/process-working.png -share/icons/gnome/22x22/apps/access.png -share/icons/gnome/22x22/apps/accessibility-directory.png -share/icons/gnome/22x22/apps/accessories-calculator.png -share/icons/gnome/22x22/apps/accessories-character-map.png -share/icons/gnome/22x22/apps/accessories-dictionary.png -share/icons/gnome/22x22/apps/accessories-text-editor.png -share/icons/gnome/22x22/apps/applets-screenshooter.png -share/icons/gnome/22x22/apps/arts.png -share/icons/gnome/22x22/apps/background.png -share/icons/gnome/22x22/apps/calc.png -share/icons/gnome/22x22/apps/config-language.png -share/icons/gnome/22x22/apps/config-users.png -share/icons/gnome/22x22/apps/file-manager.png -share/icons/gnome/22x22/apps/fonts.png -share/icons/gnome/22x22/apps/gnome-calculator.png -share/icons/gnome/22x22/apps/gnome-character-map.png -share/icons/gnome/22x22/apps/gnome-help.png -share/icons/gnome/22x22/apps/gnome-mixer.png -share/icons/gnome/22x22/apps/gnome-monitor.png -share/icons/gnome/22x22/apps/gnome-remote-desktop.png -share/icons/gnome/22x22/apps/gnome-settings-accessibility-technologies.png -share/icons/gnome/22x22/apps/gnome-settings-background.png -share/icons/gnome/22x22/apps/gnome-settings-font.png -share/icons/gnome/22x22/apps/gnome-settings-keybindings.png -share/icons/gnome/22x22/apps/gnome-settings-theme.png -share/icons/gnome/22x22/apps/gnome-terminal.png -share/icons/gnome/22x22/apps/gnome-window-manager.png -share/icons/gnome/22x22/apps/gtk-help.png -share/icons/gnome/22x22/apps/gucharmap.png -share/icons/gnome/22x22/apps/help-browser.png -share/icons/gnome/22x22/apps/help.png -share/icons/gnome/22x22/apps/im-aim.png -share/icons/gnome/22x22/apps/im-icq.png -share/icons/gnome/22x22/apps/im-jabber.png -share/icons/gnome/22x22/apps/im-msn.png -share/icons/gnome/22x22/apps/im-nov.png -share/icons/gnome/22x22/apps/im-yahoo.png -share/icons/gnome/22x22/apps/kcalc.png -share/icons/gnome/22x22/apps/kcharselect.png -share/icons/gnome/22x22/apps/kcmkwm.png -share/icons/gnome/22x22/apps/kcmsound.png -share/icons/gnome/22x22/apps/kedit.png -share/icons/gnome/22x22/apps/key_bindings.png -share/icons/gnome/22x22/apps/kfm.png -share/icons/gnome/22x22/apps/khelpcenter.png -share/icons/gnome/22x22/apps/konsole.png -share/icons/gnome/22x22/apps/krfb.png -share/icons/gnome/22x22/apps/kscreensaver.png -share/icons/gnome/22x22/apps/ksysguard.png -share/icons/gnome/22x22/apps/kuser.png -share/icons/gnome/22x22/apps/kwin.png -share/icons/gnome/22x22/apps/locale.png -share/icons/gnome/22x22/apps/logviewer.png -share/icons/gnome/22x22/apps/multimedia-volume-control.png -share/icons/gnome/22x22/apps/multimedia.png -share/icons/gnome/22x22/apps/openterm.png -share/icons/gnome/22x22/apps/preferences-desktop-accessibility.png -share/icons/gnome/22x22/apps/preferences-desktop-font.png -share/icons/gnome/22x22/apps/preferences-desktop-keyboard-shortcuts.png -share/icons/gnome/22x22/apps/preferences-desktop-keyboard.png -share/icons/gnome/22x22/apps/preferences-desktop-locale.png -share/icons/gnome/22x22/apps/preferences-desktop-remote-desktop.png -share/icons/gnome/22x22/apps/preferences-desktop-screensaver.png -share/icons/gnome/22x22/apps/preferences-desktop-theme.png -share/icons/gnome/22x22/apps/preferences-desktop-wallpaper.png -share/icons/gnome/22x22/apps/preferences-system-windows.png -share/icons/gnome/22x22/apps/redhat-filemanager.png -share/icons/gnome/22x22/apps/screensaver.png -share/icons/gnome/22x22/apps/stock_help.png -share/icons/gnome/22x22/apps/style.png -share/icons/gnome/22x22/apps/susehelpcenter.png -share/icons/gnome/22x22/apps/system-config-users.png -share/icons/gnome/22x22/apps/system-file-manager.png -share/icons/gnome/22x22/apps/system-software-install.png -share/icons/gnome/22x22/apps/system-software-update.png -share/icons/gnome/22x22/apps/system-users.png -share/icons/gnome/22x22/apps/terminal.png -share/icons/gnome/22x22/apps/text-editor.png -share/icons/gnome/22x22/apps/update-manager.png -share/icons/gnome/22x22/apps/user-info.png -share/icons/gnome/22x22/apps/utilities-system-monitor.png -share/icons/gnome/22x22/apps/utilities-terminal.png -share/icons/gnome/22x22/apps/volume-knob.png -share/icons/gnome/22x22/apps/wallpaper.png -share/icons/gnome/22x22/apps/web-browser.png -share/icons/gnome/22x22/apps/xfce-filemanager.png -share/icons/gnome/22x22/apps/xfce-terminal.png -share/icons/gnome/22x22/apps/xfce4-backdrop.png -share/icons/gnome/22x22/apps/xfce4-mixer.png -share/icons/gnome/22x22/apps/xfwm4.png -share/icons/gnome/22x22/apps/xscreensaver.png -share/icons/gnome/22x22/apps/zen-icon.png -share/icons/gnome/22x22/categories/applications-accessories.png -share/icons/gnome/22x22/categories/applications-development.png -share/icons/gnome/22x22/categories/applications-engineering.png -share/icons/gnome/22x22/categories/applications-games.png -share/icons/gnome/22x22/categories/applications-graphics.png -share/icons/gnome/22x22/categories/applications-internet.png -share/icons/gnome/22x22/categories/applications-multimedia.png -share/icons/gnome/22x22/categories/applications-office.png -share/icons/gnome/22x22/categories/applications-other.png -share/icons/gnome/22x22/categories/applications-science.png -share/icons/gnome/22x22/categories/applications-system.png -share/icons/gnome/22x22/categories/applications-utilities.png -share/icons/gnome/22x22/categories/gnome-applications.png -share/icons/gnome/22x22/categories/gnome-control-center.png -share/icons/gnome/22x22/categories/gnome-devel.png -share/icons/gnome/22x22/categories/gnome-globe.png -share/icons/gnome/22x22/categories/gnome-graphics.png -share/icons/gnome/22x22/categories/gnome-joystick.png -share/icons/gnome/22x22/categories/gnome-multimedia.png -share/icons/gnome/22x22/categories/gnome-other.png -share/icons/gnome/22x22/categories/gnome-settings.png -share/icons/gnome/22x22/categories/gnome-system.png -share/icons/gnome/22x22/categories/gnome-util.png -share/icons/gnome/22x22/categories/gtk-preferences.png -share/icons/gnome/22x22/categories/input_devices_settings.png -share/icons/gnome/22x22/categories/kcontrol.png -share/icons/gnome/22x22/categories/package_development.png -share/icons/gnome/22x22/categories/package_games.png -share/icons/gnome/22x22/categories/package_graphics.png -share/icons/gnome/22x22/categories/package_multimedia.png -share/icons/gnome/22x22/categories/package_network.png -share/icons/gnome/22x22/categories/package_office.png -share/icons/gnome/22x22/categories/package_settings.png -share/icons/gnome/22x22/categories/package_system.png -share/icons/gnome/22x22/categories/package_utilities.png -share/icons/gnome/22x22/categories/preferences-desktop-peripherals.png -share/icons/gnome/22x22/categories/preferences-desktop-personal.png -share/icons/gnome/22x22/categories/preferences-desktop.png -share/icons/gnome/22x22/categories/preferences-other.png -share/icons/gnome/22x22/categories/preferences-system-network.png -share/icons/gnome/22x22/categories/preferences-system.png -share/icons/gnome/22x22/categories/redhat-accessories.png -share/icons/gnome/22x22/categories/redhat-games.png -share/icons/gnome/22x22/categories/redhat-graphics.png -share/icons/gnome/22x22/categories/redhat-internet.png -share/icons/gnome/22x22/categories/redhat-office.png -share/icons/gnome/22x22/categories/redhat-preferences.png -share/icons/gnome/22x22/categories/redhat-programming.png -share/icons/gnome/22x22/categories/redhat-sound_video.png -share/icons/gnome/22x22/categories/redhat-system_settings.png -share/icons/gnome/22x22/categories/redhat-system_tools.png -share/icons/gnome/22x22/categories/stock_internet.png -share/icons/gnome/22x22/categories/system-help.png -share/icons/gnome/22x22/categories/xfce-games.png -share/icons/gnome/22x22/categories/xfce-graphics.png -share/icons/gnome/22x22/categories/xfce-internet.png -share/icons/gnome/22x22/categories/xfce-multimedia.png -share/icons/gnome/22x22/categories/xfce-office.png -share/icons/gnome/22x22/categories/xfce-system-settings.png -share/icons/gnome/22x22/categories/xfce-utils.png -share/icons/gnome/22x22/categories/xfce4-settings.png -share/icons/gnome/22x22/devices/3floppy_unmount.png -share/icons/gnome/22x22/devices/audio-card.png -share/icons/gnome/22x22/devices/audio-input-microphone.png -share/icons/gnome/22x22/devices/battery.png -share/icons/gnome/22x22/devices/camera-photo.png -share/icons/gnome/22x22/devices/camera-video.png -share/icons/gnome/22x22/devices/camera-web.png -share/icons/gnome/22x22/devices/camera.png -share/icons/gnome/22x22/devices/camera_unmount.png -share/icons/gnome/22x22/devices/cdrom_unmount.png -share/icons/gnome/22x22/devices/cdwriter_unmount.png -share/icons/gnome/22x22/devices/chardevice.png -share/icons/gnome/22x22/devices/computer.png -share/icons/gnome/22x22/devices/display.png -share/icons/gnome/22x22/devices/drive-cdrom.png -share/icons/gnome/22x22/devices/drive-harddisk.png -share/icons/gnome/22x22/devices/drive-optical.png -share/icons/gnome/22x22/devices/drive-removable-media.png -share/icons/gnome/22x22/devices/dvd_unmount.png -share/icons/gnome/22x22/devices/gnome-dev-battery.png -share/icons/gnome/22x22/devices/gnome-dev-cdrom-audio.png -share/icons/gnome/22x22/devices/gnome-dev-cdrom.png -share/icons/gnome/22x22/devices/gnome-dev-computer.png -share/icons/gnome/22x22/devices/gnome-dev-disc-cdr.png -share/icons/gnome/22x22/devices/gnome-dev-disc-cdrw.png -share/icons/gnome/22x22/devices/gnome-dev-disc-dvdr-plus.png -share/icons/gnome/22x22/devices/gnome-dev-disc-dvdr.png -share/icons/gnome/22x22/devices/gnome-dev-disc-dvdram.png -share/icons/gnome/22x22/devices/gnome-dev-disc-dvdrom.png -share/icons/gnome/22x22/devices/gnome-dev-disc-dvdrw.png -share/icons/gnome/22x22/devices/gnome-dev-dvd.png -share/icons/gnome/22x22/devices/gnome-dev-ethernet.png -share/icons/gnome/22x22/devices/gnome-dev-floppy.png -share/icons/gnome/22x22/devices/gnome-dev-harddisk-1394.png -share/icons/gnome/22x22/devices/gnome-dev-harddisk-usb.png -share/icons/gnome/22x22/devices/gnome-dev-harddisk.png -share/icons/gnome/22x22/devices/gnome-dev-ipod.png -share/icons/gnome/22x22/devices/gnome-dev-keyboard.png -share/icons/gnome/22x22/devices/gnome-dev-media-cf.png -share/icons/gnome/22x22/devices/gnome-dev-media-ms.png -share/icons/gnome/22x22/devices/gnome-dev-media-sdmmc.png -share/icons/gnome/22x22/devices/gnome-dev-media-sm.png -share/icons/gnome/22x22/devices/gnome-dev-mouse-ball.png -share/icons/gnome/22x22/devices/gnome-dev-mouse-optical.png -share/icons/gnome/22x22/devices/gnome-dev-printer.png -share/icons/gnome/22x22/devices/gnome-dev-removable-1394.png -share/icons/gnome/22x22/devices/gnome-dev-removable-usb.png -share/icons/gnome/22x22/devices/gnome-dev-removable.png -share/icons/gnome/22x22/devices/gnome-dev-wavelan.png -share/icons/gnome/22x22/devices/gnome-dev-zipdisk.png -share/icons/gnome/22x22/devices/gnome-fs-client.png -share/icons/gnome/22x22/devices/gnome-modem.png -share/icons/gnome/22x22/devices/gnome-stock-mic.png -share/icons/gnome/22x22/devices/gtk-cdrom.png -share/icons/gnome/22x22/devices/gtk-floppy.png -share/icons/gnome/22x22/devices/gtk-harddisk.png -share/icons/gnome/22x22/devices/harddrive.png -share/icons/gnome/22x22/devices/hdd_unmount.png -share/icons/gnome/22x22/devices/input-gaming.png -share/icons/gnome/22x22/devices/input-keyboard.png -share/icons/gnome/22x22/devices/input-mouse.png -share/icons/gnome/22x22/devices/input-tablet.png -share/icons/gnome/22x22/devices/ipod_mount.png -share/icons/gnome/22x22/devices/joystick.png -share/icons/gnome/22x22/devices/keyboard.png -share/icons/gnome/22x22/devices/kjobviewer.png -share/icons/gnome/22x22/devices/kxkb.png -share/icons/gnome/22x22/devices/media-cdrom.png -share/icons/gnome/22x22/devices/media-flash.png -share/icons/gnome/22x22/devices/media-floppy.png -share/icons/gnome/22x22/devices/media-optical.png -share/icons/gnome/22x22/devices/media-tape.png -share/icons/gnome/22x22/devices/media-zip.png -share/icons/gnome/22x22/devices/modem.png -share/icons/gnome/22x22/devices/mouse.png -share/icons/gnome/22x22/devices/multimedia-player.png -share/icons/gnome/22x22/devices/network-wired.png -share/icons/gnome/22x22/devices/network-wireless.png -share/icons/gnome/22x22/devices/pda.png -share/icons/gnome/22x22/devices/phone.png -share/icons/gnome/22x22/devices/printer-remote.png -share/icons/gnome/22x22/devices/printer.png -share/icons/gnome/22x22/devices/printer1.png -share/icons/gnome/22x22/devices/printmgr.png -share/icons/gnome/22x22/devices/scanner.png -share/icons/gnome/22x22/devices/stock_cell-phone.png -share/icons/gnome/22x22/devices/stock_mic.png -share/icons/gnome/22x22/devices/stock_printers.png -share/icons/gnome/22x22/devices/system-floppy.png -share/icons/gnome/22x22/devices/system.png -share/icons/gnome/22x22/devices/usbpendrive_unmount.png -share/icons/gnome/22x22/devices/video-display.png -share/icons/gnome/22x22/devices/xfce-printer.png -share/icons/gnome/22x22/devices/xfce4-display.png -share/icons/gnome/22x22/devices/xfce4-keyboard.png -share/icons/gnome/22x22/devices/xfce4-mouse.png -share/icons/gnome/22x22/devices/yast_HD.png -share/icons/gnome/22x22/devices/yast_idetude.png -share/icons/gnome/22x22/devices/yast_joystick.png -share/icons/gnome/22x22/devices/yast_mouse.png -share/icons/gnome/22x22/devices/yast_printer.png -share/icons/gnome/22x22/devices/yast_soundcard.png -share/icons/gnome/22x22/emblems/emblem-default.png -share/icons/gnome/22x22/emblems/emblem-documents.png -share/icons/gnome/22x22/emblems/emblem-downloads.png -share/icons/gnome/22x22/emblems/emblem-favorite.png -share/icons/gnome/22x22/emblems/emblem-generic.png -share/icons/gnome/22x22/emblems/emblem-important.png -share/icons/gnome/22x22/emblems/emblem-mail.png -share/icons/gnome/22x22/emblems/emblem-new.png -share/icons/gnome/22x22/emblems/emblem-noread.png -share/icons/gnome/22x22/emblems/emblem-nowrite.png -share/icons/gnome/22x22/emblems/emblem-package.png -share/icons/gnome/22x22/emblems/emblem-photos.png -share/icons/gnome/22x22/emblems/emblem-readonly.png -share/icons/gnome/22x22/emblems/emblem-shared.png -share/icons/gnome/22x22/emblems/emblem-symbolic-link.png -share/icons/gnome/22x22/emblems/emblem-system.png -share/icons/gnome/22x22/emblems/emblem-unreadable.png -share/icons/gnome/22x22/emblems/emblem-urgent.png -share/icons/gnome/22x22/emblems/emblem-web.png -share/icons/gnome/22x22/emblems/stock_mail-priority-high.png -share/icons/gnome/22x22/emotes/face-angel.png -share/icons/gnome/22x22/emotes/face-angry.png -share/icons/gnome/22x22/emotes/face-cool.png -share/icons/gnome/22x22/emotes/face-crying.png -share/icons/gnome/22x22/emotes/face-devilish.png -share/icons/gnome/22x22/emotes/face-embarrassed.png -share/icons/gnome/22x22/emotes/face-kiss.png -share/icons/gnome/22x22/emotes/face-laugh.png -share/icons/gnome/22x22/emotes/face-monkey.png -share/icons/gnome/22x22/emotes/face-plain.png -share/icons/gnome/22x22/emotes/face-raspberry.png -share/icons/gnome/22x22/emotes/face-sad.png -share/icons/gnome/22x22/emotes/face-sick.png -share/icons/gnome/22x22/emotes/face-smile-big.png -share/icons/gnome/22x22/emotes/face-smile.png -share/icons/gnome/22x22/emotes/face-smirk.png -share/icons/gnome/22x22/emotes/face-surprise.png -share/icons/gnome/22x22/emotes/face-tired.png -share/icons/gnome/22x22/emotes/face-uncertain.png -share/icons/gnome/22x22/emotes/face-wink.png -share/icons/gnome/22x22/emotes/face-worried.png -share/icons/gnome/22x22/emotes/stock_smiley-1.png -share/icons/gnome/22x22/emotes/stock_smiley-10.png -share/icons/gnome/22x22/emotes/stock_smiley-11.png -share/icons/gnome/22x22/emotes/stock_smiley-13.png -share/icons/gnome/22x22/emotes/stock_smiley-15.png -share/icons/gnome/22x22/emotes/stock_smiley-18.png -share/icons/gnome/22x22/emotes/stock_smiley-2.png -share/icons/gnome/22x22/emotes/stock_smiley-22.png -share/icons/gnome/22x22/emotes/stock_smiley-3.png -share/icons/gnome/22x22/emotes/stock_smiley-4.png -share/icons/gnome/22x22/emotes/stock_smiley-5.png -share/icons/gnome/22x22/emotes/stock_smiley-6.png -share/icons/gnome/22x22/emotes/stock_smiley-7.png -share/icons/gnome/22x22/emotes/stock_smiley-8.png -share/icons/gnome/22x22/mimetypes/application-certificate.png -share/icons/gnome/22x22/mimetypes/application-x-executable.png -share/icons/gnome/22x22/mimetypes/ascii.png -share/icons/gnome/22x22/mimetypes/audio-x-generic.png -share/icons/gnome/22x22/mimetypes/binary.png -share/icons/gnome/22x22/mimetypes/contents2.png -share/icons/gnome/22x22/mimetypes/deb.png -share/icons/gnome/22x22/mimetypes/document.png -share/icons/gnome/22x22/mimetypes/empty.png -share/icons/gnome/22x22/mimetypes/exec.png -share/icons/gnome/22x22/mimetypes/folder_tar.png -share/icons/gnome/22x22/mimetypes/font-x-generic.png -share/icons/gnome/22x22/mimetypes/font.png -share/icons/gnome/22x22/mimetypes/font_bitmap.png -share/icons/gnome/22x22/mimetypes/font_truetype.png -share/icons/gnome/22x22/mimetypes/font_type1.png -share/icons/gnome/22x22/mimetypes/gnome-fs-executable.png -share/icons/gnome/22x22/mimetypes/gnome-fs-regular.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-magicpoint.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-msword.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-ogg.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-pdf.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-postscript.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-rtf.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.ms-excel.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-wordperfect.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-7z-compressed.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-abiword.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-applix-word.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-archive.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-arj.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-bzip.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-compress.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-compressed-tar.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-cpio-compressed.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-cpio.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-deb.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-dvi.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-executable.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-font-afm.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-font-bdf.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-font-linux-psf.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-font-pcf.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-font-sunos-news.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-font-ttf.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-gnumeric.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-gzip.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-gzpostscript.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-jar.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-killustrator.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-kpresenter.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-kspread.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-kword.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-lha.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-lhz.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-lzma.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-ms-dos-executable.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-perl.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-php.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-python-bytecode.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-rar.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-rpm.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-scribus.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-shellscript.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-shockwave-flash.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-stuffit.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-tar.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-tarz.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-x-tex.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-xhtml+xml.png -share/icons/gnome/22x22/mimetypes/gnome-mime-application-zip.png -share/icons/gnome/22x22/mimetypes/gnome-mime-audio.png -share/icons/gnome/22x22/mimetypes/gnome-mime-image.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-html.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-vnd.wap.wml.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-x-csh.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-x-python.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-x-sh.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-x-vcalendar.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-x-vcard.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text-x-zsh.png -share/icons/gnome/22x22/mimetypes/gnome-mime-text.png -share/icons/gnome/22x22/mimetypes/gnome-mime-video.png -share/icons/gnome/22x22/mimetypes/gnome-mime-x-font-afm.png -share/icons/gnome/22x22/mimetypes/gnome-package.png -share/icons/gnome/22x22/mimetypes/gtk-file.png -share/icons/gnome/22x22/mimetypes/html.png -share/icons/gnome/22x22/mimetypes/image-x-generic.png -share/icons/gnome/22x22/mimetypes/image.png -share/icons/gnome/22x22/mimetypes/kpresenter_kpr.png -share/icons/gnome/22x22/mimetypes/mime_ascii.png -share/icons/gnome/22x22/mimetypes/misc.png -share/icons/gnome/22x22/mimetypes/package-x-generic.png -share/icons/gnome/22x22/mimetypes/package.png -share/icons/gnome/22x22/mimetypes/package_editors.png -share/icons/gnome/22x22/mimetypes/package_wordprocessing.png -share/icons/gnome/22x22/mimetypes/plan.png -share/icons/gnome/22x22/mimetypes/rpm.png -share/icons/gnome/22x22/mimetypes/shellscript.png -share/icons/gnome/22x22/mimetypes/sound.png -share/icons/gnome/22x22/mimetypes/spreadsheet.png -share/icons/gnome/22x22/mimetypes/stock_addressbook.png -share/icons/gnome/22x22/mimetypes/stock_calendar.png -share/icons/gnome/22x22/mimetypes/stock_certificate.png -share/icons/gnome/22x22/mimetypes/stock_script.png -share/icons/gnome/22x22/mimetypes/tar.png -share/icons/gnome/22x22/mimetypes/template_source.png -share/icons/gnome/22x22/mimetypes/text-html.png -share/icons/gnome/22x22/mimetypes/text-x-generic-template.png -share/icons/gnome/22x22/mimetypes/text-x-generic.png -share/icons/gnome/22x22/mimetypes/text-x-preview.png -share/icons/gnome/22x22/mimetypes/text-x-script.png -share/icons/gnome/22x22/mimetypes/tgz.png -share/icons/gnome/22x22/mimetypes/txt.png -share/icons/gnome/22x22/mimetypes/txt2.png -share/icons/gnome/22x22/mimetypes/unknown.png -share/icons/gnome/22x22/mimetypes/vcalendar.png -share/icons/gnome/22x22/mimetypes/vcard.png -share/icons/gnome/22x22/mimetypes/video-x-generic.png -share/icons/gnome/22x22/mimetypes/video.png -share/icons/gnome/22x22/mimetypes/wordprocessing.png -share/icons/gnome/22x22/mimetypes/www.png -share/icons/gnome/22x22/mimetypes/x-office-address-book.png -share/icons/gnome/22x22/mimetypes/x-office-calendar.png -share/icons/gnome/22x22/mimetypes/x-office-document.png -share/icons/gnome/22x22/mimetypes/x-office-drawing.png -share/icons/gnome/22x22/mimetypes/x-office-presentation.png -share/icons/gnome/22x22/mimetypes/x-office-spreadsheet.png -share/icons/gnome/22x22/mimetypes/zip.png -share/icons/gnome/22x22/places/application-x-gnome-saved-search.png -share/icons/gnome/22x22/places/desktop.png -share/icons/gnome/22x22/places/distributor-logo.png -share/icons/gnome/22x22/places/emptytrash.png -share/icons/gnome/22x22/places/folder-remote.png -share/icons/gnome/22x22/places/folder-saved-search.png -share/icons/gnome/22x22/places/folder.icon -share/icons/gnome/22x22/places/folder.png -share/icons/gnome/22x22/places/folder_home.png -share/icons/gnome/22x22/places/gnome-fs-desktop.png -share/icons/gnome/22x22/places/gnome-fs-directory.icon -share/icons/gnome/22x22/places/gnome-fs-directory.png -share/icons/gnome/22x22/places/gnome-fs-ftp.png -share/icons/gnome/22x22/places/gnome-fs-home.png -share/icons/gnome/22x22/places/gnome-fs-network.png -share/icons/gnome/22x22/places/gnome-fs-nfs.png -share/icons/gnome/22x22/places/gnome-fs-server.png -share/icons/gnome/22x22/places/gnome-fs-share.png -share/icons/gnome/22x22/places/gnome-fs-smb.png -share/icons/gnome/22x22/places/gnome-fs-ssh.png -share/icons/gnome/22x22/places/gnome-fs-trash-empty.png -share/icons/gnome/22x22/places/gnome-main-menu.png -share/icons/gnome/22x22/places/gnome-mime-x-directory-nfs-server.png -share/icons/gnome/22x22/places/gnome-mime-x-directory-smb-server.png -share/icons/gnome/22x22/places/gnome-mime-x-directory-smb-share.png -share/icons/gnome/22x22/places/gnome-mime-x-directory-smb-workgroup.png -share/icons/gnome/22x22/places/gnome-stock-trash.png -share/icons/gnome/22x22/places/gtk-directory.icon -share/icons/gnome/22x22/places/gtk-directory.png -share/icons/gnome/22x22/places/gtk-network.png -share/icons/gnome/22x22/places/inode-directory.icon -share/icons/gnome/22x22/places/inode-directory.png -share/icons/gnome/22x22/places/network-server.png -share/icons/gnome/22x22/places/network-workgroup.png -share/icons/gnome/22x22/places/network.png -share/icons/gnome/22x22/places/network_local.png -share/icons/gnome/22x22/places/novell-button.png -share/icons/gnome/22x22/places/redhat-network-server.png -share/icons/gnome/22x22/places/server.png -share/icons/gnome/22x22/places/start-here.png -share/icons/gnome/22x22/places/stock_folder.icon -share/icons/gnome/22x22/places/stock_folder.png -share/icons/gnome/22x22/places/trashcan_empty.png -share/icons/gnome/22x22/places/user-bookmarks.png -share/icons/gnome/22x22/places/user-desktop.png -share/icons/gnome/22x22/places/user-home.png -share/icons/gnome/22x22/places/user-trash.png -share/icons/gnome/22x22/places/xfce-trash_empty.png -share/icons/gnome/22x22/status/appointment-missed.png -share/icons/gnome/22x22/status/appointment-soon.png -share/icons/gnome/22x22/status/audio-volume-high.png -share/icons/gnome/22x22/status/audio-volume-low.png -share/icons/gnome/22x22/status/audio-volume-medium.png -share/icons/gnome/22x22/status/audio-volume-muted.png -share/icons/gnome/22x22/status/battery-caution.png -share/icons/gnome/22x22/status/battery-low.png -share/icons/gnome/22x22/status/connect_creating.png -share/icons/gnome/22x22/status/connect_established.png -share/icons/gnome/22x22/status/connect_no.png -share/icons/gnome/22x22/status/dialog-error.png -share/icons/gnome/22x22/status/dialog-information.png -share/icons/gnome/22x22/status/dialog-password.png -share/icons/gnome/22x22/status/dialog-question.png -share/icons/gnome/22x22/status/dialog-warning.png -share/icons/gnome/22x22/status/edittrash.png -share/icons/gnome/22x22/status/error.png -share/icons/gnome/22x22/status/folder-drag-accept.png -share/icons/gnome/22x22/status/folder-open.png -share/icons/gnome/22x22/status/folder-visiting.png -share/icons/gnome/22x22/status/folder_open.png -share/icons/gnome/22x22/status/gnome-dev-wavelan-encrypted.png -share/icons/gnome/22x22/status/gnome-fs-directory-accept.png -share/icons/gnome/22x22/status/gnome-fs-directory-visiting.png -share/icons/gnome/22x22/status/gnome-fs-loading-icon.png -share/icons/gnome/22x22/status/gnome-fs-trash-full.png -share/icons/gnome/22x22/status/gnome-netstatus-disconn.png -share/icons/gnome/22x22/status/gnome-netstatus-error.png -share/icons/gnome/22x22/status/gnome-netstatus-idle.png -share/icons/gnome/22x22/status/gnome-netstatus-rx.png -share/icons/gnome/22x22/status/gnome-netstatus-tx.png -share/icons/gnome/22x22/status/gnome-netstatus-txrx.png -share/icons/gnome/22x22/status/gnome-stock-trash-full.png -share/icons/gnome/22x22/status/gtk-dialog-authentication.png -share/icons/gnome/22x22/status/gtk-dialog-error.png -share/icons/gnome/22x22/status/gtk-dialog-info.png -share/icons/gnome/22x22/status/gtk-dialog-question.png -share/icons/gnome/22x22/status/gtk-dialog-warning.png -share/icons/gnome/22x22/status/gtk-missing-image.png -share/icons/gnome/22x22/status/image-loading.png -share/icons/gnome/22x22/status/image-missing.png -share/icons/gnome/22x22/status/important.png -share/icons/gnome/22x22/status/info.png -share/icons/gnome/22x22/status/mail-attachment.png -share/icons/gnome/22x22/status/mail-read.png -share/icons/gnome/22x22/status/mail-replied.png -share/icons/gnome/22x22/status/mail-signed-verified.png -share/icons/gnome/22x22/status/mail-signed.png -share/icons/gnome/22x22/status/mail-unread.png -share/icons/gnome/22x22/status/media-playlist-repeat.png -share/icons/gnome/22x22/status/media-playlist-shuffle.png -share/icons/gnome/22x22/status/messagebox_critical.png -share/icons/gnome/22x22/status/messagebox_info.png -share/icons/gnome/22x22/status/messagebox_warning.png -share/icons/gnome/22x22/status/network-error.png -share/icons/gnome/22x22/status/network-idle.png -share/icons/gnome/22x22/status/network-offline.png -share/icons/gnome/22x22/status/network-receive.png -share/icons/gnome/22x22/status/network-transmit-receive.png -share/icons/gnome/22x22/status/network-transmit.png -share/icons/gnome/22x22/status/network-wireless-encrypted.png -share/icons/gnome/22x22/status/nm-adhoc.png -share/icons/gnome/22x22/status/nm-device-wired.png -share/icons/gnome/22x22/status/nm-device-wireless.png -share/icons/gnome/22x22/status/nm-no-connection.png -share/icons/gnome/22x22/status/printer-error.png -share/icons/gnome/22x22/status/printer-printing.png -share/icons/gnome/22x22/status/security-high.png -share/icons/gnome/22x22/status/security-low.png -share/icons/gnome/22x22/status/security-medium.png -share/icons/gnome/22x22/status/software-update-available.png -share/icons/gnome/22x22/status/software-update-urgent.png -share/icons/gnome/22x22/status/stock_appointment-reminder-excl.png -share/icons/gnome/22x22/status/stock_appointment-reminder.png -share/icons/gnome/22x22/status/stock_attach.png -share/icons/gnome/22x22/status/stock_dialog-error.png -share/icons/gnome/22x22/status/stock_dialog-info.png -share/icons/gnome/22x22/status/stock_dialog-question.png -share/icons/gnome/22x22/status/stock_dialog-warning.png -share/icons/gnome/22x22/status/stock_lock-broken.png -share/icons/gnome/22x22/status/stock_lock-ok.png -share/icons/gnome/22x22/status/stock_lock-open.png -share/icons/gnome/22x22/status/stock_lock.png -share/icons/gnome/22x22/status/stock_mail-open.png -share/icons/gnome/22x22/status/stock_mail-replied.png -share/icons/gnome/22x22/status/stock_mail-unread.png -share/icons/gnome/22x22/status/stock_open.png -share/icons/gnome/22x22/status/stock_repeat.png -share/icons/gnome/22x22/status/stock_shuffle.png -share/icons/gnome/22x22/status/stock_trash_full.png -share/icons/gnome/22x22/status/stock_volume-0.png -share/icons/gnome/22x22/status/stock_volume-max.png -share/icons/gnome/22x22/status/stock_volume-med.png -share/icons/gnome/22x22/status/stock_volume-min.png -share/icons/gnome/22x22/status/stock_volume-mute.png -share/icons/gnome/22x22/status/stock_volume.png -share/icons/gnome/22x22/status/stock_weather-cloudy.png -share/icons/gnome/22x22/status/stock_weather-few-clouds.png -share/icons/gnome/22x22/status/stock_weather-fog.png -share/icons/gnome/22x22/status/stock_weather-night-clear.png -share/icons/gnome/22x22/status/stock_weather-night-few-clouds.png -share/icons/gnome/22x22/status/stock_weather-showers.png -share/icons/gnome/22x22/status/stock_weather-snow.png -share/icons/gnome/22x22/status/stock_weather-storm.png -share/icons/gnome/22x22/status/stock_weather-sunny.png -share/icons/gnome/22x22/status/sunny.png -share/icons/gnome/22x22/status/task-due.png -share/icons/gnome/22x22/status/task-past-due.png -share/icons/gnome/22x22/status/trashcan_full.png -share/icons/gnome/22x22/status/user-trash-full.png -share/icons/gnome/22x22/status/weather-clear-night.png -share/icons/gnome/22x22/status/weather-clear.png -share/icons/gnome/22x22/status/weather-few-clouds-night.png -share/icons/gnome/22x22/status/weather-few-clouds.png -share/icons/gnome/22x22/status/weather-fog.png -share/icons/gnome/22x22/status/weather-overcast.png -share/icons/gnome/22x22/status/weather-severe-alert.png -share/icons/gnome/22x22/status/weather-showers-scattered.png -share/icons/gnome/22x22/status/weather-showers.png -share/icons/gnome/22x22/status/weather-snow.png -share/icons/gnome/22x22/status/weather-storm.png -share/icons/gnome/22x22/status/xfce-trash_full.png -share/icons/gnome/24x24/actions/add.png -share/icons/gnome/24x24/actions/address-book-new.png -share/icons/gnome/24x24/actions/application-exit.png -share/icons/gnome/24x24/actions/appointment-new.png -share/icons/gnome/24x24/actions/appointment.png -share/icons/gnome/24x24/actions/back.png -share/icons/gnome/24x24/actions/bookmark-new.png -share/icons/gnome/24x24/actions/bookmark_add.png -share/icons/gnome/24x24/actions/bookmarks_list_add.png -share/icons/gnome/24x24/actions/bottom.png -share/icons/gnome/24x24/actions/call-start.png -share/icons/gnome/24x24/actions/call-stop.png -share/icons/gnome/24x24/actions/centrejust.png -share/icons/gnome/24x24/actions/contact-new.png -share/icons/gnome/24x24/actions/document-new.png -share/icons/gnome/24x24/actions/document-open-recent.png -share/icons/gnome/24x24/actions/document-open.png -share/icons/gnome/24x24/actions/document-page-setup.png -share/icons/gnome/24x24/actions/document-print-preview.png -share/icons/gnome/24x24/actions/document-print.png -share/icons/gnome/24x24/actions/document-properties.png -share/icons/gnome/24x24/actions/document-revert.png -share/icons/gnome/24x24/actions/document-save-as.png -share/icons/gnome/24x24/actions/document-save.png -share/icons/gnome/24x24/actions/document-send.png -share/icons/gnome/24x24/actions/down.png -share/icons/gnome/24x24/actions/edit-clear.png -share/icons/gnome/24x24/actions/edit-copy.png -share/icons/gnome/24x24/actions/edit-cut.png -share/icons/gnome/24x24/actions/edit-delete.png -share/icons/gnome/24x24/actions/edit-find-replace.png -share/icons/gnome/24x24/actions/edit-find.png -share/icons/gnome/24x24/actions/edit-paste.png -share/icons/gnome/24x24/actions/edit-redo.png -share/icons/gnome/24x24/actions/edit-select-all.png -share/icons/gnome/24x24/actions/edit-undo.png -share/icons/gnome/24x24/actions/editclear.png -share/icons/gnome/24x24/actions/editcopy.png -share/icons/gnome/24x24/actions/editcut.png -share/icons/gnome/24x24/actions/editdelete.png -share/icons/gnome/24x24/actions/editpaste.png -share/icons/gnome/24x24/actions/exit.png -share/icons/gnome/24x24/actions/filefind.png -share/icons/gnome/24x24/actions/filenew.png -share/icons/gnome/24x24/actions/fileopen.png -share/icons/gnome/24x24/actions/fileprint.png -share/icons/gnome/24x24/actions/filequickprint.png -share/icons/gnome/24x24/actions/filesave.png -share/icons/gnome/24x24/actions/filesaveas.png -share/icons/gnome/24x24/actions/find.png -share/icons/gnome/24x24/actions/finish.png -share/icons/gnome/24x24/actions/folder-new.png -share/icons/gnome/24x24/actions/folder_new.png -share/icons/gnome/24x24/actions/format-indent-less.png -share/icons/gnome/24x24/actions/format-indent-more.png -share/icons/gnome/24x24/actions/format-justify-center.png -share/icons/gnome/24x24/actions/format-justify-fill.png -share/icons/gnome/24x24/actions/format-justify-left.png -share/icons/gnome/24x24/actions/format-justify-right.png -share/icons/gnome/24x24/actions/format-text-bold.png -share/icons/gnome/24x24/actions/format-text-direction-ltr.png -share/icons/gnome/24x24/actions/format-text-direction-rtl.png -share/icons/gnome/24x24/actions/format-text-italic.png -share/icons/gnome/24x24/actions/format-text-strikethrough.png -share/icons/gnome/24x24/actions/format-text-underline.png -share/icons/gnome/24x24/actions/forward.png -share/icons/gnome/24x24/actions/gnome-lockscreen.png -share/icons/gnome/24x24/actions/gnome-logout.png -share/icons/gnome/24x24/actions/gnome-run.png -share/icons/gnome/24x24/actions/gnome-searchtool.png -share/icons/gnome/24x24/actions/gnome-shutdown.png -share/icons/gnome/24x24/actions/gnome-stock-mail-fwd.png -share/icons/gnome/24x24/actions/gnome-stock-mail-new.png -share/icons/gnome/24x24/actions/gnome-stock-mail-rpl.png -share/icons/gnome/24x24/actions/gnome-stock-mail-snd.png -share/icons/gnome/24x24/actions/gnome-stock-text-indent.png -share/icons/gnome/24x24/actions/gnome-stock-text-unindent.png -share/icons/gnome/24x24/actions/go-bottom.png -share/icons/gnome/24x24/actions/go-down.png -share/icons/gnome/24x24/actions/go-first.png -share/icons/gnome/24x24/actions/go-home.png -share/icons/gnome/24x24/actions/go-jump.png -share/icons/gnome/24x24/actions/go-last.png -share/icons/gnome/24x24/actions/go-next.png -share/icons/gnome/24x24/actions/go-previous.png -share/icons/gnome/24x24/actions/go-top.png -share/icons/gnome/24x24/actions/go-up.png -share/icons/gnome/24x24/actions/gohome.png -share/icons/gnome/24x24/actions/gtk-about.png -share/icons/gnome/24x24/actions/gtk-add.png -share/icons/gnome/24x24/actions/gtk-bold.png -share/icons/gnome/24x24/actions/gtk-cancel.png -share/icons/gnome/24x24/actions/gtk-clear.png -share/icons/gnome/24x24/actions/gtk-close.png -share/icons/gnome/24x24/actions/gtk-copy.png -share/icons/gnome/24x24/actions/gtk-cut.png -share/icons/gnome/24x24/actions/gtk-delete.png -share/icons/gnome/24x24/actions/gtk-edit.png -share/icons/gnome/24x24/actions/gtk-execute.png -share/icons/gnome/24x24/actions/gtk-find-and-replace.png -share/icons/gnome/24x24/actions/gtk-find.png -share/icons/gnome/24x24/actions/gtk-fullscreen.png -share/icons/gnome/24x24/actions/gtk-go-back-ltr.png -share/icons/gnome/24x24/actions/gtk-go-back-rtl.png -share/icons/gnome/24x24/actions/gtk-go-down.png -share/icons/gnome/24x24/actions/gtk-go-forward-ltr.png -share/icons/gnome/24x24/actions/gtk-go-forward-rtl.png -share/icons/gnome/24x24/actions/gtk-go-up.png -share/icons/gnome/24x24/actions/gtk-goto-bottom.png -share/icons/gnome/24x24/actions/gtk-goto-first-ltr.png -share/icons/gnome/24x24/actions/gtk-goto-first-rtl.png -share/icons/gnome/24x24/actions/gtk-goto-last-ltr.png -share/icons/gnome/24x24/actions/gtk-goto-last-rtl.png -share/icons/gnome/24x24/actions/gtk-goto-top.png -share/icons/gnome/24x24/actions/gtk-home.png -share/icons/gnome/24x24/actions/gtk-indent-ltr.png -share/icons/gnome/24x24/actions/gtk-indent-rtl.png -share/icons/gnome/24x24/actions/gtk-italic.png -share/icons/gnome/24x24/actions/gtk-jump-to-ltr.png -share/icons/gnome/24x24/actions/gtk-jump-to-rtl.png -share/icons/gnome/24x24/actions/gtk-justify-center.png -share/icons/gnome/24x24/actions/gtk-justify-fill.png -share/icons/gnome/24x24/actions/gtk-justify-left.png -share/icons/gnome/24x24/actions/gtk-justify-right.png -share/icons/gnome/24x24/actions/gtk-leave-fullscreen.png -share/icons/gnome/24x24/actions/gtk-media-forward-ltr.png -share/icons/gnome/24x24/actions/gtk-media-forward-rtl.png -share/icons/gnome/24x24/actions/gtk-media-next-ltr.png -share/icons/gnome/24x24/actions/gtk-media-next-rtl.png -share/icons/gnome/24x24/actions/gtk-media-pause.png -share/icons/gnome/24x24/actions/gtk-media-play-ltr.png -share/icons/gnome/24x24/actions/gtk-media-previous-ltr.png -share/icons/gnome/24x24/actions/gtk-media-previous-rtl.png -share/icons/gnome/24x24/actions/gtk-media-record.png -share/icons/gnome/24x24/actions/gtk-media-rewind-ltr.png -share/icons/gnome/24x24/actions/gtk-media-rewind-rtl.png -share/icons/gnome/24x24/actions/gtk-media-stop.png -share/icons/gnome/24x24/actions/gtk-new.png -share/icons/gnome/24x24/actions/gtk-open.png -share/icons/gnome/24x24/actions/gtk-paste.png -share/icons/gnome/24x24/actions/gtk-print-preview.png -share/icons/gnome/24x24/actions/gtk-print.png -share/icons/gnome/24x24/actions/gtk-properties.png -share/icons/gnome/24x24/actions/gtk-quit.png -share/icons/gnome/24x24/actions/gtk-redo-ltr.png -share/icons/gnome/24x24/actions/gtk-refresh.png -share/icons/gnome/24x24/actions/gtk-remove.png -share/icons/gnome/24x24/actions/gtk-revert-to-saved-ltr.png -share/icons/gnome/24x24/actions/gtk-revert-to-saved-rtl.png -share/icons/gnome/24x24/actions/gtk-save-as.png -share/icons/gnome/24x24/actions/gtk-save.png -share/icons/gnome/24x24/actions/gtk-select-all.png -share/icons/gnome/24x24/actions/gtk-sort-ascending.png -share/icons/gnome/24x24/actions/gtk-sort-descending.png -share/icons/gnome/24x24/actions/gtk-spell-check.png -share/icons/gnome/24x24/actions/gtk-stop.png -share/icons/gnome/24x24/actions/gtk-strikethrough.png -share/icons/gnome/24x24/actions/gtk-underline.png -share/icons/gnome/24x24/actions/gtk-undo-ltr.png -share/icons/gnome/24x24/actions/gtk-unindent-ltr.png -share/icons/gnome/24x24/actions/gtk-unindent-rtl.png -share/icons/gnome/24x24/actions/gtk-zoom-100.png -share/icons/gnome/24x24/actions/gtk-zoom-fit.png -share/icons/gnome/24x24/actions/gtk-zoom-in.png -share/icons/gnome/24x24/actions/gtk-zoom-out.png -share/icons/gnome/24x24/actions/help-about.png -share/icons/gnome/24x24/actions/help-contents.png -share/icons/gnome/24x24/actions/help-faq.png -share/icons/gnome/24x24/actions/insert-image.png -share/icons/gnome/24x24/actions/insert-link.png -share/icons/gnome/24x24/actions/insert-object.png -share/icons/gnome/24x24/actions/insert-text.png -share/icons/gnome/24x24/actions/kfind.png -share/icons/gnome/24x24/actions/kfm_home.png -share/icons/gnome/24x24/actions/leftjust.png -share/icons/gnome/24x24/actions/list-add.png -share/icons/gnome/24x24/actions/list-remove.png -share/icons/gnome/24x24/actions/lock.png -share/icons/gnome/24x24/actions/mail-forward.png -share/icons/gnome/24x24/actions/mail-mark-important.png -share/icons/gnome/24x24/actions/mail-mark-junk.png -share/icons/gnome/24x24/actions/mail-mark-notjunk.png -share/icons/gnome/24x24/actions/mail-mark-read.png -share/icons/gnome/24x24/actions/mail-mark-unread.png -share/icons/gnome/24x24/actions/mail-message-new.png -share/icons/gnome/24x24/actions/mail-reply-all.png -share/icons/gnome/24x24/actions/mail-reply-sender.png -share/icons/gnome/24x24/actions/mail-send-receive.png -share/icons/gnome/24x24/actions/mail-send.png -share/icons/gnome/24x24/actions/mail_forward.png -share/icons/gnome/24x24/actions/mail_new.png -share/icons/gnome/24x24/actions/mail_reply.png -share/icons/gnome/24x24/actions/mail_replyall.png -share/icons/gnome/24x24/actions/mail_send.png -share/icons/gnome/24x24/actions/mail_spam.png -share/icons/gnome/24x24/actions/media-eject.png -share/icons/gnome/24x24/actions/media-playback-pause.png -share/icons/gnome/24x24/actions/media-playback-start.png -share/icons/gnome/24x24/actions/media-playback-stop.png -share/icons/gnome/24x24/actions/media-record.png -share/icons/gnome/24x24/actions/media-seek-backward.png -share/icons/gnome/24x24/actions/media-seek-forward.png -share/icons/gnome/24x24/actions/media-skip-backward.png -share/icons/gnome/24x24/actions/media-skip-forward.png -share/icons/gnome/24x24/actions/next.png -share/icons/gnome/24x24/actions/object-flip-horizontal.png -share/icons/gnome/24x24/actions/object-flip-vertical.png -share/icons/gnome/24x24/actions/object-rotate-left.png -share/icons/gnome/24x24/actions/object-rotate-right.png -share/icons/gnome/24x24/actions/player_eject.png -share/icons/gnome/24x24/actions/player_end.png -share/icons/gnome/24x24/actions/player_fwd.png -share/icons/gnome/24x24/actions/player_pause.png -share/icons/gnome/24x24/actions/player_play.png -share/icons/gnome/24x24/actions/player_record.png -share/icons/gnome/24x24/actions/player_rew.png -share/icons/gnome/24x24/actions/player_start.png -share/icons/gnome/24x24/actions/player_stop.png -share/icons/gnome/24x24/actions/previous.png -share/icons/gnome/24x24/actions/process-stop.png -share/icons/gnome/24x24/actions/redhat-home.png -share/icons/gnome/24x24/actions/redo.png -share/icons/gnome/24x24/actions/reload.png -share/icons/gnome/24x24/actions/reload3.png -share/icons/gnome/24x24/actions/reload_all_tabs.png -share/icons/gnome/24x24/actions/reload_page.png -share/icons/gnome/24x24/actions/remove.png -share/icons/gnome/24x24/actions/revert.png -share/icons/gnome/24x24/actions/rightjust.png -share/icons/gnome/24x24/actions/search.png -share/icons/gnome/24x24/actions/start.png -share/icons/gnome/24x24/actions/stock_about.png -share/icons/gnome/24x24/actions/stock_add-bookmark.png -share/icons/gnome/24x24/actions/stock_bottom.png -share/icons/gnome/24x24/actions/stock_close.png -share/icons/gnome/24x24/actions/stock_copy.png -share/icons/gnome/24x24/actions/stock_cut.png -share/icons/gnome/24x24/actions/stock_delete.png -share/icons/gnome/24x24/actions/stock_down.png -share/icons/gnome/24x24/actions/stock_file-properites.png -share/icons/gnome/24x24/actions/stock_first.png -share/icons/gnome/24x24/actions/stock_fullscreen.png -share/icons/gnome/24x24/actions/stock_help-add-bookmark.png -share/icons/gnome/24x24/actions/stock_home.png -share/icons/gnome/24x24/actions/stock_last.png -share/icons/gnome/24x24/actions/stock_leave-fullscreen.png -share/icons/gnome/24x24/actions/stock_left.png -share/icons/gnome/24x24/actions/stock_mail-compose.png -share/icons/gnome/24x24/actions/stock_mail-forward.png -share/icons/gnome/24x24/actions/stock_mail-reply-to-all.png -share/icons/gnome/24x24/actions/stock_mail-reply.png -share/icons/gnome/24x24/actions/stock_mail-send-receive.png -share/icons/gnome/24x24/actions/stock_mail-send.png -share/icons/gnome/24x24/actions/stock_media-fwd.png -share/icons/gnome/24x24/actions/stock_media-next.png -share/icons/gnome/24x24/actions/stock_media-pause.png -share/icons/gnome/24x24/actions/stock_media-play.png -share/icons/gnome/24x24/actions/stock_media-prev.png -share/icons/gnome/24x24/actions/stock_media-rec.png -share/icons/gnome/24x24/actions/stock_media-rew.png -share/icons/gnome/24x24/actions/stock_media-stop.png -share/icons/gnome/24x24/actions/stock_new-address-book.png -share/icons/gnome/24x24/actions/stock_new-appointment.png -share/icons/gnome/24x24/actions/stock_new-bcard.png -share/icons/gnome/24x24/actions/stock_new-dir.png -share/icons/gnome/24x24/actions/stock_new-tab.png -share/icons/gnome/24x24/actions/stock_new-text.png -share/icons/gnome/24x24/actions/stock_new-window.png -share/icons/gnome/24x24/actions/stock_paste.png -share/icons/gnome/24x24/actions/stock_print-preview.png -share/icons/gnome/24x24/actions/stock_print-setup.png -share/icons/gnome/24x24/actions/stock_print.png -share/icons/gnome/24x24/actions/stock_properties.png -share/icons/gnome/24x24/actions/stock_redo.png -share/icons/gnome/24x24/actions/stock_refresh.png -share/icons/gnome/24x24/actions/stock_right.png -share/icons/gnome/24x24/actions/stock_save-as.png -share/icons/gnome/24x24/actions/stock_save.png -share/icons/gnome/24x24/actions/stock_search-and-replace.png -share/icons/gnome/24x24/actions/stock_search.png -share/icons/gnome/24x24/actions/stock_select-all.png -share/icons/gnome/24x24/actions/stock_spam.png -share/icons/gnome/24x24/actions/stock_spellcheck.png -share/icons/gnome/24x24/actions/stock_stop.png -share/icons/gnome/24x24/actions/stock_text-strikethrough.png -share/icons/gnome/24x24/actions/stock_text_bold.png -share/icons/gnome/24x24/actions/stock_text_center.png -share/icons/gnome/24x24/actions/stock_text_indent.png -share/icons/gnome/24x24/actions/stock_text_italic.png -share/icons/gnome/24x24/actions/stock_text_justify.png -share/icons/gnome/24x24/actions/stock_text_left.png -share/icons/gnome/24x24/actions/stock_text_right.png -share/icons/gnome/24x24/actions/stock_text_underlined.png -share/icons/gnome/24x24/actions/stock_text_unindent.png -share/icons/gnome/24x24/actions/stock_top.png -share/icons/gnome/24x24/actions/stock_undo.png -share/icons/gnome/24x24/actions/stock_up.png -share/icons/gnome/24x24/actions/stock_zoom-1.png -share/icons/gnome/24x24/actions/stock_zoom-in.png -share/icons/gnome/24x24/actions/stock_zoom-out.png -share/icons/gnome/24x24/actions/stock_zoom-page.png -share/icons/gnome/24x24/actions/stop.png -share/icons/gnome/24x24/actions/system-lock-screen.png -share/icons/gnome/24x24/actions/system-log-out.png -share/icons/gnome/24x24/actions/system-run.png -share/icons/gnome/24x24/actions/system-search.png -share/icons/gnome/24x24/actions/system-shutdown.png -share/icons/gnome/24x24/actions/tab-new.png -share/icons/gnome/24x24/actions/tab_new.png -share/icons/gnome/24x24/actions/text_bold.png -share/icons/gnome/24x24/actions/text_italic.png -share/icons/gnome/24x24/actions/text_strike.png -share/icons/gnome/24x24/actions/text_under.png -share/icons/gnome/24x24/actions/tools-check-spelling.png -share/icons/gnome/24x24/actions/top.png -share/icons/gnome/24x24/actions/undo.png -share/icons/gnome/24x24/actions/up.png -share/icons/gnome/24x24/actions/view-fullscreen.png -share/icons/gnome/24x24/actions/view-refresh.png -share/icons/gnome/24x24/actions/view-restore.png -share/icons/gnome/24x24/actions/view-sort-ascending.png -share/icons/gnome/24x24/actions/view-sort-descending.png -share/icons/gnome/24x24/actions/viewmag+.png -share/icons/gnome/24x24/actions/viewmag-.png -share/icons/gnome/24x24/actions/viewmag1.png -share/icons/gnome/24x24/actions/viewmagfit.png -share/icons/gnome/24x24/actions/window-close.png -share/icons/gnome/24x24/actions/window-new.png -share/icons/gnome/24x24/actions/window_fullscreen.png -share/icons/gnome/24x24/actions/window_new.png -share/icons/gnome/24x24/actions/window_nofullscreen.png -share/icons/gnome/24x24/actions/xfce-system-exit.png -share/icons/gnome/24x24/actions/xfce-system-lock.png -share/icons/gnome/24x24/actions/zoom-best-fit.png -share/icons/gnome/24x24/actions/zoom-fit-best.png -share/icons/gnome/24x24/actions/zoom-in.png -share/icons/gnome/24x24/actions/zoom-original.png -share/icons/gnome/24x24/actions/zoom-out.png -share/icons/gnome/24x24/apps/access.png -share/icons/gnome/24x24/apps/accessibility-directory.png -share/icons/gnome/24x24/apps/accessories-calculator.png -share/icons/gnome/24x24/apps/accessories-character-map.png -share/icons/gnome/24x24/apps/accessories-dictionary.png -share/icons/gnome/24x24/apps/accessories-text-editor.png -share/icons/gnome/24x24/apps/applets-screenshooter.png -share/icons/gnome/24x24/apps/arts.png -share/icons/gnome/24x24/apps/background.png -share/icons/gnome/24x24/apps/calc.png -share/icons/gnome/24x24/apps/config-language.png -share/icons/gnome/24x24/apps/config-users.png -share/icons/gnome/24x24/apps/file-manager.png -share/icons/gnome/24x24/apps/fonts.png -share/icons/gnome/24x24/apps/gnome-calculator.png -share/icons/gnome/24x24/apps/gnome-character-map.png -share/icons/gnome/24x24/apps/gnome-help.png -share/icons/gnome/24x24/apps/gnome-mixer.png -share/icons/gnome/24x24/apps/gnome-monitor.png -share/icons/gnome/24x24/apps/gnome-remote-desktop.png -share/icons/gnome/24x24/apps/gnome-settings-accessibility-technologies.png -share/icons/gnome/24x24/apps/gnome-settings-background.png -share/icons/gnome/24x24/apps/gnome-settings-font.png -share/icons/gnome/24x24/apps/gnome-settings-keybindings.png -share/icons/gnome/24x24/apps/gnome-settings-theme.png -share/icons/gnome/24x24/apps/gnome-terminal.png -share/icons/gnome/24x24/apps/gnome-window-manager.png -share/icons/gnome/24x24/apps/gtk-help.png -share/icons/gnome/24x24/apps/gucharmap.png -share/icons/gnome/24x24/apps/help-browser.png -share/icons/gnome/24x24/apps/help.png -share/icons/gnome/24x24/apps/im-aim.png -share/icons/gnome/24x24/apps/im-icq.png -share/icons/gnome/24x24/apps/im-jabber.png -share/icons/gnome/24x24/apps/im-msn.png -share/icons/gnome/24x24/apps/im-nov.png -share/icons/gnome/24x24/apps/im-yahoo.png -share/icons/gnome/24x24/apps/kcalc.png -share/icons/gnome/24x24/apps/kcharselect.png -share/icons/gnome/24x24/apps/kcmkwm.png -share/icons/gnome/24x24/apps/kcmsound.png -share/icons/gnome/24x24/apps/kedit.png -share/icons/gnome/24x24/apps/key_bindings.png -share/icons/gnome/24x24/apps/kfm.png -share/icons/gnome/24x24/apps/khelpcenter.png -share/icons/gnome/24x24/apps/konsole.png -share/icons/gnome/24x24/apps/krfb.png -share/icons/gnome/24x24/apps/kscreensaver.png -share/icons/gnome/24x24/apps/ksysguard.png -share/icons/gnome/24x24/apps/kuser.png -share/icons/gnome/24x24/apps/kwin.png -share/icons/gnome/24x24/apps/locale.png -share/icons/gnome/24x24/apps/logviewer.png -share/icons/gnome/24x24/apps/multimedia-volume-control.png -share/icons/gnome/24x24/apps/multimedia.png -share/icons/gnome/24x24/apps/openterm.png -share/icons/gnome/24x24/apps/preferences-desktop-accessibility.png -share/icons/gnome/24x24/apps/preferences-desktop-font.png -share/icons/gnome/24x24/apps/preferences-desktop-keyboard-shortcuts.png -share/icons/gnome/24x24/apps/preferences-desktop-keyboard.png -share/icons/gnome/24x24/apps/preferences-desktop-locale.png -share/icons/gnome/24x24/apps/preferences-desktop-remote-desktop.png -share/icons/gnome/24x24/apps/preferences-desktop-screensaver.png -share/icons/gnome/24x24/apps/preferences-desktop-theme.png -share/icons/gnome/24x24/apps/preferences-desktop-wallpaper.png -share/icons/gnome/24x24/apps/preferences-system-windows.png -share/icons/gnome/24x24/apps/redhat-filemanager.png -share/icons/gnome/24x24/apps/screensaver.png -share/icons/gnome/24x24/apps/stock_help.png -share/icons/gnome/24x24/apps/style.png -share/icons/gnome/24x24/apps/susehelpcenter.png -share/icons/gnome/24x24/apps/system-config-users.png -share/icons/gnome/24x24/apps/system-file-manager.png -share/icons/gnome/24x24/apps/system-software-install.png -share/icons/gnome/24x24/apps/system-software-update.png -share/icons/gnome/24x24/apps/system-users.png -share/icons/gnome/24x24/apps/terminal.png -share/icons/gnome/24x24/apps/text-editor.png -share/icons/gnome/24x24/apps/update-manager.png -share/icons/gnome/24x24/apps/user-info.png -share/icons/gnome/24x24/apps/utilities-system-monitor.png -share/icons/gnome/24x24/apps/utilities-terminal.png -share/icons/gnome/24x24/apps/volume-knob.png -share/icons/gnome/24x24/apps/wallpaper.png -share/icons/gnome/24x24/apps/web-browser.png -share/icons/gnome/24x24/apps/xfce-filemanager.png -share/icons/gnome/24x24/apps/xfce-terminal.png -share/icons/gnome/24x24/apps/xfce4-backdrop.png -share/icons/gnome/24x24/apps/xfce4-mixer.png -share/icons/gnome/24x24/apps/xfwm4.png -share/icons/gnome/24x24/apps/xscreensaver.png -share/icons/gnome/24x24/apps/zen-icon.png -share/icons/gnome/24x24/categories/applications-accessories.png -share/icons/gnome/24x24/categories/applications-development.png -share/icons/gnome/24x24/categories/applications-engineering.png -share/icons/gnome/24x24/categories/applications-games.png -share/icons/gnome/24x24/categories/applications-graphics.png -share/icons/gnome/24x24/categories/applications-internet.png -share/icons/gnome/24x24/categories/applications-multimedia.png -share/icons/gnome/24x24/categories/applications-office.png -share/icons/gnome/24x24/categories/applications-other.png -share/icons/gnome/24x24/categories/applications-science.png -share/icons/gnome/24x24/categories/applications-system.png -share/icons/gnome/24x24/categories/applications-utilities.png -share/icons/gnome/24x24/categories/gnome-applications.png -share/icons/gnome/24x24/categories/gnome-control-center.png -share/icons/gnome/24x24/categories/gnome-devel.png -share/icons/gnome/24x24/categories/gnome-globe.png -share/icons/gnome/24x24/categories/gnome-graphics.png -share/icons/gnome/24x24/categories/gnome-joystick.png -share/icons/gnome/24x24/categories/gnome-multimedia.png -share/icons/gnome/24x24/categories/gnome-other.png -share/icons/gnome/24x24/categories/gnome-settings.png -share/icons/gnome/24x24/categories/gnome-system.png -share/icons/gnome/24x24/categories/gnome-util.png -share/icons/gnome/24x24/categories/gtk-preferences.png -share/icons/gnome/24x24/categories/input_devices_settings.png -share/icons/gnome/24x24/categories/kcontrol.png -share/icons/gnome/24x24/categories/package_development.png -share/icons/gnome/24x24/categories/package_games.png -share/icons/gnome/24x24/categories/package_graphics.png -share/icons/gnome/24x24/categories/package_multimedia.png -share/icons/gnome/24x24/categories/package_network.png -share/icons/gnome/24x24/categories/package_office.png -share/icons/gnome/24x24/categories/package_settings.png -share/icons/gnome/24x24/categories/package_system.png -share/icons/gnome/24x24/categories/package_utilities.png -share/icons/gnome/24x24/categories/preferences-desktop-peripherals.png -share/icons/gnome/24x24/categories/preferences-desktop-personal.png -share/icons/gnome/24x24/categories/preferences-desktop.png -share/icons/gnome/24x24/categories/preferences-other.png -share/icons/gnome/24x24/categories/preferences-system-network.png -share/icons/gnome/24x24/categories/preferences-system.png -share/icons/gnome/24x24/categories/redhat-accessories.png -share/icons/gnome/24x24/categories/redhat-games.png -share/icons/gnome/24x24/categories/redhat-graphics.png -share/icons/gnome/24x24/categories/redhat-internet.png -share/icons/gnome/24x24/categories/redhat-office.png -share/icons/gnome/24x24/categories/redhat-preferences.png -share/icons/gnome/24x24/categories/redhat-programming.png -share/icons/gnome/24x24/categories/redhat-sound_video.png -share/icons/gnome/24x24/categories/redhat-system_settings.png -share/icons/gnome/24x24/categories/redhat-system_tools.png -share/icons/gnome/24x24/categories/stock_internet.png -share/icons/gnome/24x24/categories/system-help.png -share/icons/gnome/24x24/categories/xfce-games.png -share/icons/gnome/24x24/categories/xfce-graphics.png -share/icons/gnome/24x24/categories/xfce-internet.png -share/icons/gnome/24x24/categories/xfce-multimedia.png -share/icons/gnome/24x24/categories/xfce-office.png -share/icons/gnome/24x24/categories/xfce-system-settings.png -share/icons/gnome/24x24/categories/xfce-utils.png -share/icons/gnome/24x24/categories/xfce4-settings.png -share/icons/gnome/24x24/devices/3floppy_unmount.png -share/icons/gnome/24x24/devices/audio-card.png -share/icons/gnome/24x24/devices/audio-input-microphone.png -share/icons/gnome/24x24/devices/battery.png -share/icons/gnome/24x24/devices/camera-photo.png -share/icons/gnome/24x24/devices/camera-video.png -share/icons/gnome/24x24/devices/camera-web.png -share/icons/gnome/24x24/devices/camera.png -share/icons/gnome/24x24/devices/camera_unmount.png -share/icons/gnome/24x24/devices/cdrom_unmount.png -share/icons/gnome/24x24/devices/cdwriter_unmount.png -share/icons/gnome/24x24/devices/chardevice.png -share/icons/gnome/24x24/devices/computer.png -share/icons/gnome/24x24/devices/display.png -share/icons/gnome/24x24/devices/drive-cdrom.png -share/icons/gnome/24x24/devices/drive-harddisk.png -share/icons/gnome/24x24/devices/drive-optical.png -share/icons/gnome/24x24/devices/drive-removable-media.png -share/icons/gnome/24x24/devices/dvd_unmount.png -share/icons/gnome/24x24/devices/gnome-dev-battery.png -share/icons/gnome/24x24/devices/gnome-dev-cdrom-audio.png -share/icons/gnome/24x24/devices/gnome-dev-cdrom.png -share/icons/gnome/24x24/devices/gnome-dev-computer.png -share/icons/gnome/24x24/devices/gnome-dev-disc-cdr.png -share/icons/gnome/24x24/devices/gnome-dev-disc-cdrw.png -share/icons/gnome/24x24/devices/gnome-dev-disc-dvdr-plus.png -share/icons/gnome/24x24/devices/gnome-dev-disc-dvdr.png -share/icons/gnome/24x24/devices/gnome-dev-disc-dvdram.png -share/icons/gnome/24x24/devices/gnome-dev-disc-dvdrom.png -share/icons/gnome/24x24/devices/gnome-dev-disc-dvdrw.png -share/icons/gnome/24x24/devices/gnome-dev-dvd.png -share/icons/gnome/24x24/devices/gnome-dev-ethernet.png -share/icons/gnome/24x24/devices/gnome-dev-floppy.png -share/icons/gnome/24x24/devices/gnome-dev-harddisk-1394.png -share/icons/gnome/24x24/devices/gnome-dev-harddisk-usb.png -share/icons/gnome/24x24/devices/gnome-dev-harddisk.png -share/icons/gnome/24x24/devices/gnome-dev-ipod.png -share/icons/gnome/24x24/devices/gnome-dev-keyboard.png -share/icons/gnome/24x24/devices/gnome-dev-media-cf.png -share/icons/gnome/24x24/devices/gnome-dev-media-ms.png -share/icons/gnome/24x24/devices/gnome-dev-media-sdmmc.png -share/icons/gnome/24x24/devices/gnome-dev-media-sm.png -share/icons/gnome/24x24/devices/gnome-dev-mouse-ball.png -share/icons/gnome/24x24/devices/gnome-dev-mouse-optical.png -share/icons/gnome/24x24/devices/gnome-dev-printer.png -share/icons/gnome/24x24/devices/gnome-dev-removable-1394.png -share/icons/gnome/24x24/devices/gnome-dev-removable-usb.png -share/icons/gnome/24x24/devices/gnome-dev-removable.png -share/icons/gnome/24x24/devices/gnome-dev-wavelan.png -share/icons/gnome/24x24/devices/gnome-dev-zipdisk.png -share/icons/gnome/24x24/devices/gnome-fs-client.png -share/icons/gnome/24x24/devices/gnome-modem.png -share/icons/gnome/24x24/devices/gnome-stock-mic.png -share/icons/gnome/24x24/devices/gtk-cdrom.png -share/icons/gnome/24x24/devices/gtk-floppy.png -share/icons/gnome/24x24/devices/gtk-harddisk.png -share/icons/gnome/24x24/devices/harddrive.png -share/icons/gnome/24x24/devices/hdd_unmount.png -share/icons/gnome/24x24/devices/input-gaming.png -share/icons/gnome/24x24/devices/input-keyboard.png -share/icons/gnome/24x24/devices/input-mouse.png -share/icons/gnome/24x24/devices/input-tablet.png -share/icons/gnome/24x24/devices/ipod_mount.png -share/icons/gnome/24x24/devices/joystick.png -share/icons/gnome/24x24/devices/keyboard.png -share/icons/gnome/24x24/devices/kjobviewer.png -share/icons/gnome/24x24/devices/kxkb.png -share/icons/gnome/24x24/devices/media-cdrom.png -share/icons/gnome/24x24/devices/media-flash.png -share/icons/gnome/24x24/devices/media-floppy.png -share/icons/gnome/24x24/devices/media-optical.png -share/icons/gnome/24x24/devices/media-tape.png -share/icons/gnome/24x24/devices/media-zip.png -share/icons/gnome/24x24/devices/modem.png -share/icons/gnome/24x24/devices/mouse.png -share/icons/gnome/24x24/devices/multimedia-player.png -share/icons/gnome/24x24/devices/network-wired.png -share/icons/gnome/24x24/devices/network-wireless.png -share/icons/gnome/24x24/devices/pda.png -share/icons/gnome/24x24/devices/phone.png -share/icons/gnome/24x24/devices/printer-remote.png -share/icons/gnome/24x24/devices/printer.png -share/icons/gnome/24x24/devices/printer1.png -share/icons/gnome/24x24/devices/printmgr.png -share/icons/gnome/24x24/devices/scanner.png -share/icons/gnome/24x24/devices/stock_cell-phone.png -share/icons/gnome/24x24/devices/stock_mic.png -share/icons/gnome/24x24/devices/stock_printers.png -share/icons/gnome/24x24/devices/system-floppy.png -share/icons/gnome/24x24/devices/system.png -share/icons/gnome/24x24/devices/usbpendrive_unmount.png -share/icons/gnome/24x24/devices/video-display.png -share/icons/gnome/24x24/devices/xfce-printer.png -share/icons/gnome/24x24/devices/xfce4-display.png -share/icons/gnome/24x24/devices/xfce4-keyboard.png -share/icons/gnome/24x24/devices/xfce4-mouse.png -share/icons/gnome/24x24/devices/yast_HD.png -share/icons/gnome/24x24/devices/yast_idetude.png -share/icons/gnome/24x24/devices/yast_joystick.png -share/icons/gnome/24x24/devices/yast_mouse.png -share/icons/gnome/24x24/devices/yast_printer.png -share/icons/gnome/24x24/devices/yast_soundcard.png -share/icons/gnome/24x24/emblems/emblem-default.png -share/icons/gnome/24x24/emblems/emblem-documents.png -share/icons/gnome/24x24/emblems/emblem-downloads.png -share/icons/gnome/24x24/emblems/emblem-favorite.png -share/icons/gnome/24x24/emblems/emblem-generic.png -share/icons/gnome/24x24/emblems/emblem-important.png -share/icons/gnome/24x24/emblems/emblem-mail.png -share/icons/gnome/24x24/emblems/emblem-new.png -share/icons/gnome/24x24/emblems/emblem-noread.png -share/icons/gnome/24x24/emblems/emblem-nowrite.png -share/icons/gnome/24x24/emblems/emblem-package.png -share/icons/gnome/24x24/emblems/emblem-photos.png -share/icons/gnome/24x24/emblems/emblem-readonly.png -share/icons/gnome/24x24/emblems/emblem-shared.png -share/icons/gnome/24x24/emblems/emblem-symbolic-link.png -share/icons/gnome/24x24/emblems/emblem-system.png -share/icons/gnome/24x24/emblems/emblem-unreadable.png -share/icons/gnome/24x24/emblems/emblem-urgent.png -share/icons/gnome/24x24/emblems/emblem-web.png -share/icons/gnome/24x24/emblems/stock_mail-priority-high.png -share/icons/gnome/24x24/emotes/face-angel.png -share/icons/gnome/24x24/emotes/face-angry.png -share/icons/gnome/24x24/emotes/face-cool.png -share/icons/gnome/24x24/emotes/face-crying.png -share/icons/gnome/24x24/emotes/face-devilish.png -share/icons/gnome/24x24/emotes/face-embarrassed.png -share/icons/gnome/24x24/emotes/face-kiss.png -share/icons/gnome/24x24/emotes/face-laugh.png -share/icons/gnome/24x24/emotes/face-monkey.png -share/icons/gnome/24x24/emotes/face-plain.png -share/icons/gnome/24x24/emotes/face-raspberry.png -share/icons/gnome/24x24/emotes/face-sad.png -share/icons/gnome/24x24/emotes/face-sick.png -share/icons/gnome/24x24/emotes/face-smile-big.png -share/icons/gnome/24x24/emotes/face-smile.png -share/icons/gnome/24x24/emotes/face-smirk.png -share/icons/gnome/24x24/emotes/face-surprise.png -share/icons/gnome/24x24/emotes/face-tired.png -share/icons/gnome/24x24/emotes/face-uncertain.png -share/icons/gnome/24x24/emotes/face-wink.png -share/icons/gnome/24x24/emotes/face-worried.png -share/icons/gnome/24x24/emotes/stock_smiley-1.png -share/icons/gnome/24x24/emotes/stock_smiley-10.png -share/icons/gnome/24x24/emotes/stock_smiley-11.png -share/icons/gnome/24x24/emotes/stock_smiley-13.png -share/icons/gnome/24x24/emotes/stock_smiley-15.png -share/icons/gnome/24x24/emotes/stock_smiley-18.png -share/icons/gnome/24x24/emotes/stock_smiley-2.png -share/icons/gnome/24x24/emotes/stock_smiley-22.png -share/icons/gnome/24x24/emotes/stock_smiley-3.png -share/icons/gnome/24x24/emotes/stock_smiley-4.png -share/icons/gnome/24x24/emotes/stock_smiley-5.png -share/icons/gnome/24x24/emotes/stock_smiley-6.png -share/icons/gnome/24x24/emotes/stock_smiley-7.png -share/icons/gnome/24x24/emotes/stock_smiley-8.png -share/icons/gnome/24x24/filesystems/gnome-fs-bookmark-missing.png -share/icons/gnome/24x24/filesystems/gnome-fs-bookmark.png -share/icons/gnome/24x24/mimetypes/application-certificate.png -share/icons/gnome/24x24/mimetypes/application-x-executable.png -share/icons/gnome/24x24/mimetypes/ascii.png -share/icons/gnome/24x24/mimetypes/audio-x-generic.png -share/icons/gnome/24x24/mimetypes/binary.png -share/icons/gnome/24x24/mimetypes/contents2.png -share/icons/gnome/24x24/mimetypes/deb.png -share/icons/gnome/24x24/mimetypes/document.png -share/icons/gnome/24x24/mimetypes/empty.png -share/icons/gnome/24x24/mimetypes/exec.png -share/icons/gnome/24x24/mimetypes/folder_tar.png -share/icons/gnome/24x24/mimetypes/font-x-generic.png -share/icons/gnome/24x24/mimetypes/font.png -share/icons/gnome/24x24/mimetypes/font_bitmap.png -share/icons/gnome/24x24/mimetypes/font_truetype.png -share/icons/gnome/24x24/mimetypes/font_type1.png -share/icons/gnome/24x24/mimetypes/gnome-fs-executable.png -share/icons/gnome/24x24/mimetypes/gnome-fs-regular.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-magicpoint.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-msword.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-ogg.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-pdf.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-postscript.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-rtf.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.ms-excel.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-wordperfect.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-7z-compressed.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-abiword.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-applix-word.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-archive.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-arj.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-bzip.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-compress.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-compressed-tar.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-cpio-compressed.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-cpio.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-deb.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-dvi.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-executable.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-font-afm.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-font-bdf.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-font-linux-psf.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-font-pcf.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-font-sunos-news.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-font-ttf.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-gnumeric.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-gzip.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-gzpostscript.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-jar.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-killustrator.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-kpresenter.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-kspread.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-kword.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-lha.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-lhz.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-lzma.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-ms-dos-executable.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-perl.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-php.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-python-bytecode.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-rar.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-rpm.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-scribus.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-shellscript.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-shockwave-flash.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-stuffit.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-tar.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-tarz.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-x-tex.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-xhtml+xml.png -share/icons/gnome/24x24/mimetypes/gnome-mime-application-zip.png -share/icons/gnome/24x24/mimetypes/gnome-mime-audio.png -share/icons/gnome/24x24/mimetypes/gnome-mime-image.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-html.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-vnd.wap.wml.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-x-csh.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-x-python.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-x-sh.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-x-vcalendar.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-x-vcard.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text-x-zsh.png -share/icons/gnome/24x24/mimetypes/gnome-mime-text.png -share/icons/gnome/24x24/mimetypes/gnome-mime-video.png -share/icons/gnome/24x24/mimetypes/gnome-mime-x-font-afm.png -share/icons/gnome/24x24/mimetypes/gnome-package.png -share/icons/gnome/24x24/mimetypes/gtk-file.png -share/icons/gnome/24x24/mimetypes/html.png -share/icons/gnome/24x24/mimetypes/image-x-generic.png -share/icons/gnome/24x24/mimetypes/image.png -share/icons/gnome/24x24/mimetypes/kpresenter_kpr.png -share/icons/gnome/24x24/mimetypes/mime_ascii.png -share/icons/gnome/24x24/mimetypes/misc.png -share/icons/gnome/24x24/mimetypes/package-x-generic.png -share/icons/gnome/24x24/mimetypes/package.png -share/icons/gnome/24x24/mimetypes/package_editors.png -share/icons/gnome/24x24/mimetypes/package_wordprocessing.png -share/icons/gnome/24x24/mimetypes/plan.png -share/icons/gnome/24x24/mimetypes/rpm.png -share/icons/gnome/24x24/mimetypes/shellscript.png -share/icons/gnome/24x24/mimetypes/sound.png -share/icons/gnome/24x24/mimetypes/spreadsheet.png -share/icons/gnome/24x24/mimetypes/stock_addressbook.png -share/icons/gnome/24x24/mimetypes/stock_calendar.png -share/icons/gnome/24x24/mimetypes/stock_certificate.png -share/icons/gnome/24x24/mimetypes/stock_script.png -share/icons/gnome/24x24/mimetypes/tar.png -share/icons/gnome/24x24/mimetypes/template_source.png -share/icons/gnome/24x24/mimetypes/text-html.png -share/icons/gnome/24x24/mimetypes/text-x-generic-template.png -share/icons/gnome/24x24/mimetypes/text-x-generic.png -share/icons/gnome/24x24/mimetypes/text-x-preview.png -share/icons/gnome/24x24/mimetypes/text-x-script.png -share/icons/gnome/24x24/mimetypes/tgz.png -share/icons/gnome/24x24/mimetypes/txt.png -share/icons/gnome/24x24/mimetypes/txt2.png -share/icons/gnome/24x24/mimetypes/unknown.png -share/icons/gnome/24x24/mimetypes/vcalendar.png -share/icons/gnome/24x24/mimetypes/vcard.png -share/icons/gnome/24x24/mimetypes/video-x-generic.png -share/icons/gnome/24x24/mimetypes/video.png -share/icons/gnome/24x24/mimetypes/wordprocessing.png -share/icons/gnome/24x24/mimetypes/www.png -share/icons/gnome/24x24/mimetypes/x-office-address-book.png -share/icons/gnome/24x24/mimetypes/x-office-calendar.png -share/icons/gnome/24x24/mimetypes/x-office-document.png -share/icons/gnome/24x24/mimetypes/x-office-drawing.png -share/icons/gnome/24x24/mimetypes/x-office-presentation.png -share/icons/gnome/24x24/mimetypes/x-office-spreadsheet.png -share/icons/gnome/24x24/mimetypes/zip.png -share/icons/gnome/24x24/places/application-x-gnome-saved-search.png -share/icons/gnome/24x24/places/desktop.png -share/icons/gnome/24x24/places/distributor-logo.png -share/icons/gnome/24x24/places/emptytrash.png -share/icons/gnome/24x24/places/folder-remote.png -share/icons/gnome/24x24/places/folder-saved-search.png -share/icons/gnome/24x24/places/folder.icon -share/icons/gnome/24x24/places/folder.png -share/icons/gnome/24x24/places/folder_home.png -share/icons/gnome/24x24/places/gnome-fs-desktop.png -share/icons/gnome/24x24/places/gnome-fs-directory.icon -share/icons/gnome/24x24/places/gnome-fs-directory.png -share/icons/gnome/24x24/places/gnome-fs-ftp.png -share/icons/gnome/24x24/places/gnome-fs-home.png -share/icons/gnome/24x24/places/gnome-fs-network.png -share/icons/gnome/24x24/places/gnome-fs-nfs.png -share/icons/gnome/24x24/places/gnome-fs-server.png -share/icons/gnome/24x24/places/gnome-fs-share.png -share/icons/gnome/24x24/places/gnome-fs-smb.png -share/icons/gnome/24x24/places/gnome-fs-ssh.png -share/icons/gnome/24x24/places/gnome-fs-trash-empty.png -share/icons/gnome/24x24/places/gnome-main-menu.png -share/icons/gnome/24x24/places/gnome-mime-x-directory-nfs-server.png -share/icons/gnome/24x24/places/gnome-mime-x-directory-smb-server.png -share/icons/gnome/24x24/places/gnome-mime-x-directory-smb-share.png -share/icons/gnome/24x24/places/gnome-mime-x-directory-smb-workgroup.png -share/icons/gnome/24x24/places/gnome-stock-trash.png -share/icons/gnome/24x24/places/gtk-directory.icon -share/icons/gnome/24x24/places/gtk-directory.png -share/icons/gnome/24x24/places/gtk-network.png -share/icons/gnome/24x24/places/inode-directory.icon -share/icons/gnome/24x24/places/inode-directory.png -share/icons/gnome/24x24/places/network-server.png -share/icons/gnome/24x24/places/network-workgroup.png -share/icons/gnome/24x24/places/network.png -share/icons/gnome/24x24/places/network_local.png -share/icons/gnome/24x24/places/novell-button.png -share/icons/gnome/24x24/places/redhat-network-server.png -share/icons/gnome/24x24/places/server.png -share/icons/gnome/24x24/places/start-here.png -share/icons/gnome/24x24/places/stock_folder.icon -share/icons/gnome/24x24/places/stock_folder.png -share/icons/gnome/24x24/places/trashcan_empty.png -share/icons/gnome/24x24/places/user-bookmarks.png -share/icons/gnome/24x24/places/user-desktop.png -share/icons/gnome/24x24/places/user-home.png -share/icons/gnome/24x24/places/user-trash.png -share/icons/gnome/24x24/places/xfce-trash_empty.png -share/icons/gnome/24x24/status/appointment-missed.png -share/icons/gnome/24x24/status/appointment-soon.png -share/icons/gnome/24x24/status/audio-volume-high.png -share/icons/gnome/24x24/status/audio-volume-low.png -share/icons/gnome/24x24/status/audio-volume-medium.png -share/icons/gnome/24x24/status/audio-volume-muted.png -share/icons/gnome/24x24/status/battery-caution.png -share/icons/gnome/24x24/status/battery-low.png -share/icons/gnome/24x24/status/connect_creating.png -share/icons/gnome/24x24/status/connect_established.png -share/icons/gnome/24x24/status/connect_no.png -share/icons/gnome/24x24/status/dialog-error.png -share/icons/gnome/24x24/status/dialog-information.png -share/icons/gnome/24x24/status/dialog-password.png -share/icons/gnome/24x24/status/dialog-question.png -share/icons/gnome/24x24/status/dialog-warning.png -share/icons/gnome/24x24/status/edittrash.png -share/icons/gnome/24x24/status/error.png -share/icons/gnome/24x24/status/folder-drag-accept.icon -share/icons/gnome/24x24/status/folder-drag-accept.png -share/icons/gnome/24x24/status/folder-open.png -share/icons/gnome/24x24/status/folder-visiting.icon -share/icons/gnome/24x24/status/folder-visiting.png -share/icons/gnome/24x24/status/folder_open.png -share/icons/gnome/24x24/status/gnome-dev-wavelan-encrypted.png -share/icons/gnome/24x24/status/gnome-fs-directory-accept.icon -share/icons/gnome/24x24/status/gnome-fs-directory-accept.png -share/icons/gnome/24x24/status/gnome-fs-directory-visiting.icon -share/icons/gnome/24x24/status/gnome-fs-directory-visiting.png -share/icons/gnome/24x24/status/gnome-fs-loading-icon.png -share/icons/gnome/24x24/status/gnome-fs-trash-full.png -share/icons/gnome/24x24/status/gnome-netstatus-disconn.png -share/icons/gnome/24x24/status/gnome-netstatus-error.png -share/icons/gnome/24x24/status/gnome-netstatus-idle.png -share/icons/gnome/24x24/status/gnome-netstatus-rx.png -share/icons/gnome/24x24/status/gnome-netstatus-tx.png -share/icons/gnome/24x24/status/gnome-netstatus-txrx.png -share/icons/gnome/24x24/status/gnome-stock-trash-full.png -share/icons/gnome/24x24/status/gtk-dialog-authentication.png -share/icons/gnome/24x24/status/gtk-dialog-error.png -share/icons/gnome/24x24/status/gtk-dialog-info.png -share/icons/gnome/24x24/status/gtk-dialog-question.png -share/icons/gnome/24x24/status/gtk-dialog-warning.png -share/icons/gnome/24x24/status/gtk-missing-image.png -share/icons/gnome/24x24/status/image-loading.png -share/icons/gnome/24x24/status/image-missing.png -share/icons/gnome/24x24/status/important.png -share/icons/gnome/24x24/status/info.png -share/icons/gnome/24x24/status/mail-attachment.png -share/icons/gnome/24x24/status/mail-read.png -share/icons/gnome/24x24/status/mail-replied.png -share/icons/gnome/24x24/status/mail-signed-verified.png -share/icons/gnome/24x24/status/mail-signed.png -share/icons/gnome/24x24/status/mail-unread.png -share/icons/gnome/24x24/status/media-playlist-repeat.png -share/icons/gnome/24x24/status/media-playlist-shuffle.png -share/icons/gnome/24x24/status/messagebox_critical.png -share/icons/gnome/24x24/status/messagebox_info.png -share/icons/gnome/24x24/status/messagebox_warning.png -share/icons/gnome/24x24/status/network-error.png -share/icons/gnome/24x24/status/network-idle.png -share/icons/gnome/24x24/status/network-offline.png -share/icons/gnome/24x24/status/network-receive.png -share/icons/gnome/24x24/status/network-transmit-receive.png -share/icons/gnome/24x24/status/network-transmit.png -share/icons/gnome/24x24/status/network-wireless-encrypted.png -share/icons/gnome/24x24/status/nm-adhoc.png -share/icons/gnome/24x24/status/nm-device-wired.png -share/icons/gnome/24x24/status/nm-device-wireless.png -share/icons/gnome/24x24/status/nm-no-connection.png -share/icons/gnome/24x24/status/printer-error.png -share/icons/gnome/24x24/status/printer-printing.png -share/icons/gnome/24x24/status/security-high.png -share/icons/gnome/24x24/status/security-low.png -share/icons/gnome/24x24/status/security-medium.png -share/icons/gnome/24x24/status/software-update-available.png -share/icons/gnome/24x24/status/software-update-urgent.png -share/icons/gnome/24x24/status/stock_appointment-reminder-excl.png -share/icons/gnome/24x24/status/stock_appointment-reminder.png -share/icons/gnome/24x24/status/stock_attach.png -share/icons/gnome/24x24/status/stock_dialog-error.png -share/icons/gnome/24x24/status/stock_dialog-info.png -share/icons/gnome/24x24/status/stock_dialog-question.png -share/icons/gnome/24x24/status/stock_dialog-warning.png -share/icons/gnome/24x24/status/stock_lock-broken.png -share/icons/gnome/24x24/status/stock_lock-ok.png -share/icons/gnome/24x24/status/stock_lock-open.png -share/icons/gnome/24x24/status/stock_lock.png -share/icons/gnome/24x24/status/stock_mail-open.png -share/icons/gnome/24x24/status/stock_mail-replied.png -share/icons/gnome/24x24/status/stock_mail-unread.png -share/icons/gnome/24x24/status/stock_open.png -share/icons/gnome/24x24/status/stock_repeat.png -share/icons/gnome/24x24/status/stock_shuffle.png -share/icons/gnome/24x24/status/stock_trash_full.png -share/icons/gnome/24x24/status/stock_volume-0.png -share/icons/gnome/24x24/status/stock_volume-max.png -share/icons/gnome/24x24/status/stock_volume-med.png -share/icons/gnome/24x24/status/stock_volume-min.png -share/icons/gnome/24x24/status/stock_volume-mute.png -share/icons/gnome/24x24/status/stock_volume.png -share/icons/gnome/24x24/status/stock_weather-cloudy.png -share/icons/gnome/24x24/status/stock_weather-few-clouds.png -share/icons/gnome/24x24/status/stock_weather-fog.png -share/icons/gnome/24x24/status/stock_weather-night-clear.png -share/icons/gnome/24x24/status/stock_weather-night-few-clouds.png -share/icons/gnome/24x24/status/stock_weather-showers.png -share/icons/gnome/24x24/status/stock_weather-snow.png -share/icons/gnome/24x24/status/stock_weather-storm.png -share/icons/gnome/24x24/status/stock_weather-sunny.png -share/icons/gnome/24x24/status/sunny.png -share/icons/gnome/24x24/status/task-due.png -share/icons/gnome/24x24/status/task-past-due.png -share/icons/gnome/24x24/status/trashcan_full.png -share/icons/gnome/24x24/status/user-trash-full.png -share/icons/gnome/24x24/status/weather-clear-night.png -share/icons/gnome/24x24/status/weather-clear.png -share/icons/gnome/24x24/status/weather-few-clouds-night.png -share/icons/gnome/24x24/status/weather-few-clouds.png -share/icons/gnome/24x24/status/weather-fog.png -share/icons/gnome/24x24/status/weather-overcast.png -share/icons/gnome/24x24/status/weather-severe-alert.png -share/icons/gnome/24x24/status/weather-showers-scattered.png -share/icons/gnome/24x24/status/weather-showers.png -share/icons/gnome/24x24/status/weather-snow.png -share/icons/gnome/24x24/status/weather-storm.png -share/icons/gnome/24x24/status/xfce-trash_full.png -share/icons/gnome/24x24/stock/chart/stock_chart-autoformat.png -share/icons/gnome/24x24/stock/chart/stock_chart-data-in-columns.png -share/icons/gnome/24x24/stock/chart/stock_chart-data-in-rows.png -share/icons/gnome/24x24/stock/chart/stock_chart-edit-type.png -share/icons/gnome/24x24/stock/chart/stock_chart-reorganize.png -share/icons/gnome/24x24/stock/chart/stock_chart-toggle-axes-title.png -share/icons/gnome/24x24/stock/chart/stock_chart-toggle-axes.png -share/icons/gnome/24x24/stock/chart/stock_chart-toggle-hgrid.png -share/icons/gnome/24x24/stock/chart/stock_chart-toggle-legend.png -share/icons/gnome/24x24/stock/chart/stock_chart-toggle-title.png -share/icons/gnome/24x24/stock/chart/stock_chart-toggle-vgrid.png -share/icons/gnome/24x24/stock/chart/stock_glue.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-down.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-horizontal-center.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-horizontal-left.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-horizontal-right.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-left.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-relative.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-right.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-up.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-vertical-bottom.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-vertical-center.png -share/icons/gnome/24x24/stock/chart/stock_gluepoint-vertical-top.png -share/icons/gnome/24x24/stock/chart/stock_insert-chart.png -share/icons/gnome/24x24/stock/code/stock_compile.png -share/icons/gnome/24x24/stock/code/stock_error-next-16.png -share/icons/gnome/24x24/stock/code/stock_error-previous-16.png -share/icons/gnome/24x24/stock/code/stock_macro-check-brackets.png -share/icons/gnome/24x24/stock/code/stock_macro-insert-breakpoint.png -share/icons/gnome/24x24/stock/code/stock_macro-insert.png -share/icons/gnome/24x24/stock/code/stock_macro-jump-back.png -share/icons/gnome/24x24/stock/code/stock_macro-objects.png -share/icons/gnome/24x24/stock/code/stock_macro-organizer.png -share/icons/gnome/24x24/stock/code/stock_macro-stop-after-command.png -share/icons/gnome/24x24/stock/code/stock_macro-stop-after-procedure.png -share/icons/gnome/24x24/stock/code/stock_macro-stop-watching.png -share/icons/gnome/24x24/stock/code/stock_macro-watch-variable.png -share/icons/gnome/24x24/stock/code/stock_record-macro.png -share/icons/gnome/24x24/stock/code/stock_run-macro.png -share/icons/gnome/24x24/stock/code/stock_script.png -share/icons/gnome/24x24/stock/code/stock_tools-macro.png -share/icons/gnome/24x24/stock/data/stock_add-decimal-place.png -share/icons/gnome/24x24/stock/data/stock_advanced-filter.png -share/icons/gnome/24x24/stock/data/stock_autofilter.png -share/icons/gnome/24x24/stock/data/stock_data-delete-record.png -share/icons/gnome/24x24/stock/data/stock_data-explorer.png -share/icons/gnome/24x24/stock/data/stock_data-first.png -share/icons/gnome/24x24/stock/data/stock_data-last.png -share/icons/gnome/24x24/stock/data/stock_data-linked-table.png -share/icons/gnome/24x24/stock/data/stock_data-new-record.png -share/icons/gnome/24x24/stock/data/stock_data-next.png -share/icons/gnome/24x24/stock/data/stock_data-previous.png -share/icons/gnome/24x24/stock/data/stock_data-save.png -share/icons/gnome/24x24/stock/data/stock_data-sources.png -share/icons/gnome/24x24/stock/data/stock_data-undo.png -share/icons/gnome/24x24/stock/data/stock_database.png -share/icons/gnome/24x24/stock/data/stock_delete-autofilter.png -share/icons/gnome/24x24/stock/data/stock_delete-decimal-place.png -share/icons/gnome/24x24/stock/data/stock_filter-data-by-criteria.png -share/icons/gnome/24x24/stock/data/stock_filter-navigator.png -share/icons/gnome/24x24/stock/data/stock_filters.png -share/icons/gnome/24x24/stock/data/stock_format-default.png -share/icons/gnome/24x24/stock/data/stock_format-percent.png -share/icons/gnome/24x24/stock/data/stock_format-scientific.png -share/icons/gnome/24x24/stock/data/stock_function-autopilot.png -share/icons/gnome/24x24/stock/data/stock_goal-seek.png -share/icons/gnome/24x24/stock/data/stock_insert-fields.png -share/icons/gnome/24x24/stock/data/stock_lock-broken.png -share/icons/gnome/24x24/stock/data/stock_lock-ok.png -share/icons/gnome/24x24/stock/data/stock_lock-open.png -share/icons/gnome/24x24/stock/data/stock_lock.png -share/icons/gnome/24x24/stock/data/stock_record-number.png -share/icons/gnome/24x24/stock/data/stock_signature-bad.png -share/icons/gnome/24x24/stock/data/stock_signature-ok.png -share/icons/gnome/24x24/stock/data/stock_signature.png -share/icons/gnome/24x24/stock/data/stock_sort-ascending.png -share/icons/gnome/24x24/stock/data/stock_sort-column-ascending.png -share/icons/gnome/24x24/stock/data/stock_sort-criteria.png -share/icons/gnome/24x24/stock/data/stock_sort-descending.png -share/icons/gnome/24x24/stock/data/stock_sort-row-ascending.png -share/icons/gnome/24x24/stock/data/stock_standard-filter.png -share/icons/gnome/24x24/stock/data/stock_sum.png -share/icons/gnome/24x24/stock/data/stock_update-data.png -share/icons/gnome/24x24/stock/document/stock_certificate.png -share/icons/gnome/24x24/stock/document/stock_new-drawing.png -share/icons/gnome/24x24/stock/document/stock_new-formula.png -share/icons/gnome/24x24/stock/document/stock_new-html.png -share/icons/gnome/24x24/stock/document/stock_new-labels.png -share/icons/gnome/24x24/stock/document/stock_new-master-document.png -share/icons/gnome/24x24/stock/document/stock_new-presentation.png -share/icons/gnome/24x24/stock/document/stock_new-spreadsheet.png -share/icons/gnome/24x24/stock/document/stock_new-template.png -share/icons/gnome/24x24/stock/document/stock_new-text.png -share/icons/gnome/24x24/stock/document/stock_new.png -share/icons/gnome/24x24/stock/document/stock_preview-four-pages.png -share/icons/gnome/24x24/stock/document/stock_preview-two-pages.png -share/icons/gnome/24x24/stock/document/stock_print-layout.png -share/icons/gnome/24x24/stock/document/stock_print-options.png -share/icons/gnome/24x24/stock/document/stock_print-resolution.png -share/icons/gnome/24x24/stock/document/stock_task-assigned-to.png -share/icons/gnome/24x24/stock/document/stock_task-assigned.png -share/icons/gnome/24x24/stock/document/stock_task-recurring.png -share/icons/gnome/24x24/stock/document/stock_task.png -share/icons/gnome/24x24/stock/document/stock_todo.png -share/icons/gnome/24x24/stock/document/stock_view-html-source.png -share/icons/gnome/24x24/stock/form/stock_form-activation-order.png -share/icons/gnome/24x24/stock/form/stock_form-add-field.png -share/icons/gnome/24x24/stock/form/stock_form-automatic-control-focus.png -share/icons/gnome/24x24/stock/form/stock_form-autopilots.png -share/icons/gnome/24x24/stock/form/stock_form-button.png -share/icons/gnome/24x24/stock/form/stock_form-checkbox.png -share/icons/gnome/24x24/stock/form/stock_form-combobox.png -share/icons/gnome/24x24/stock/form/stock_form-control-properties.png -share/icons/gnome/24x24/stock/form/stock_form-currency-field.png -share/icons/gnome/24x24/stock/form/stock_form-date-field.png -share/icons/gnome/24x24/stock/form/stock_form-design-mode.png -share/icons/gnome/24x24/stock/form/stock_form-file-selection.png -share/icons/gnome/24x24/stock/form/stock_form-formatted-field.png -share/icons/gnome/24x24/stock/form/stock_form-frame.png -share/icons/gnome/24x24/stock/form/stock_form-image-button.png -share/icons/gnome/24x24/stock/form/stock_form-image-control.png -share/icons/gnome/24x24/stock/form/stock_form-label.png -share/icons/gnome/24x24/stock/form/stock_form-letter-dialog.png -share/icons/gnome/24x24/stock/form/stock_form-line-horizontal.png -share/icons/gnome/24x24/stock/form/stock_form-line-vertical.png -share/icons/gnome/24x24/stock/form/stock_form-listbox.png -share/icons/gnome/24x24/stock/form/stock_form-navigator.png -share/icons/gnome/24x24/stock/form/stock_form-numerical-field.png -share/icons/gnome/24x24/stock/form/stock_form-open-in-design-mode.png -share/icons/gnome/24x24/stock/form/stock_form-pattern-field.png -share/icons/gnome/24x24/stock/form/stock_form-progressbar.png -share/icons/gnome/24x24/stock/form/stock_form-properties.png -share/icons/gnome/24x24/stock/form/stock_form-radio.png -share/icons/gnome/24x24/stock/form/stock_form-table-control.png -share/icons/gnome/24x24/stock/form/stock_form-text-box.png -share/icons/gnome/24x24/stock/form/stock_form-time-field.png -share/icons/gnome/24x24/stock/form/stock_insert-form.png -share/icons/gnome/24x24/stock/form/stock_macro-controls.png -share/icons/gnome/24x24/stock/form/stock_show-form-dialog.png -share/icons/gnome/24x24/stock/form/stock_show-hidden-controls.png -share/icons/gnome/24x24/stock/form/stock_view-fields.png -share/icons/gnome/24x24/stock/generic/stock_about.png -share/icons/gnome/24x24/stock/generic/stock_active.png -share/icons/gnome/24x24/stock/generic/stock_allow-effects.png -share/icons/gnome/24x24/stock/generic/stock_anchor.png -share/icons/gnome/24x24/stock/generic/stock_animation.png -share/icons/gnome/24x24/stock/generic/stock_autocompletion.png -share/icons/gnome/24x24/stock/generic/stock_autopilot-24.png -share/icons/gnome/24x24/stock/generic/stock_book_blue.png -share/icons/gnome/24x24/stock/generic/stock_book_green.png -share/icons/gnome/24x24/stock/generic/stock_book_open.png -share/icons/gnome/24x24/stock/generic/stock_book_red.png -share/icons/gnome/24x24/stock/generic/stock_book_yellow.png -share/icons/gnome/24x24/stock/generic/stock_briefcase.png -share/icons/gnome/24x24/stock/generic/stock_calc-accept.png -share/icons/gnome/24x24/stock/generic/stock_calc-cancel.png -share/icons/gnome/24x24/stock/generic/stock_calendar-and-tasks.png -share/icons/gnome/24x24/stock/generic/stock_calendar-view-day.png -share/icons/gnome/24x24/stock/generic/stock_calendar-view-list.png -share/icons/gnome/24x24/stock/generic/stock_calendar-view-month.png -share/icons/gnome/24x24/stock/generic/stock_calendar-view-week.png -share/icons/gnome/24x24/stock/generic/stock_calendar-view-work-week.png -share/icons/gnome/24x24/stock/generic/stock_calendar-view-year.png -share/icons/gnome/24x24/stock/generic/stock_color.png -share/icons/gnome/24x24/stock/generic/stock_edit.png -share/icons/gnome/24x24/stock/generic/stock_equals.png -share/icons/gnome/24x24/stock/generic/stock_example.png -share/icons/gnome/24x24/stock/generic/stock_exit.png -share/icons/gnome/24x24/stock/generic/stock_extended-help.png -share/icons/gnome/24x24/stock/generic/stock_file-properties.png -share/icons/gnome/24x24/stock/generic/stock_flip-horizontally.png -share/icons/gnome/24x24/stock/generic/stock_flip-vertically.png -share/icons/gnome/24x24/stock/generic/stock_folder-copy.png -share/icons/gnome/24x24/stock/generic/stock_folder-move.png -share/icons/gnome/24x24/stock/generic/stock_folder-properties.png -share/icons/gnome/24x24/stock/generic/stock_format-page.png -share/icons/gnome/24x24/stock/generic/stock_help-agent.png -share/icons/gnome/24x24/stock/generic/stock_help-chat.png -share/icons/gnome/24x24/stock/generic/stock_id.png -share/icons/gnome/24x24/stock/generic/stock_keyring.png -share/icons/gnome/24x24/stock/generic/stock_landline-phone.png -share/icons/gnome/24x24/stock/generic/stock_mark.png -share/icons/gnome/24x24/stock/generic/stock_new-24h-appointment.png -share/icons/gnome/24x24/stock/generic/stock_new-meeting.png -share/icons/gnome/24x24/stock/generic/stock_news.png -share/icons/gnome/24x24/stock/generic/stock_not.png -share/icons/gnome/24x24/stock/generic/stock_notebook.png -share/icons/gnome/24x24/stock/generic/stock_notes.png -share/icons/gnome/24x24/stock/generic/stock_people.png -share/icons/gnome/24x24/stock/generic/stock_person.png -share/icons/gnome/24x24/stock/generic/stock_presentation-box.png -share/icons/gnome/24x24/stock/generic/stock_properties.png -share/icons/gnome/24x24/stock/generic/stock_scores.png -share/icons/gnome/24x24/stock/generic/stock_send-fax.png -share/icons/gnome/24x24/stock/generic/stock_show-all.png -share/icons/gnome/24x24/stock/generic/stock_styles.png -share/icons/gnome/24x24/stock/generic/stock_summary.png -share/icons/gnome/24x24/stock/generic/stock_test-mode.png -share/icons/gnome/24x24/stock/generic/stock_timer.png -share/icons/gnome/24x24/stock/generic/stock_timer_stopped.png -share/icons/gnome/24x24/stock/generic/stock_timezone.png -share/icons/gnome/24x24/stock/generic/stock_toilet-paper.png -share/icons/gnome/24x24/stock/generic/stock_trash_full.png -share/icons/gnome/24x24/stock/generic/stock_undelete.png -share/icons/gnome/24x24/stock/generic/stock_unknown.png -share/icons/gnome/24x24/stock/generic/stock_web-calendar.png -share/icons/gnome/24x24/stock/generic/stock_web-support.png -share/icons/gnome/24x24/stock/image/stock_3d-color-picker.png -share/icons/gnome/24x24/stock/image/stock_3d-effects.png -share/icons/gnome/24x24/stock/image/stock_arrowstyle.png -share/icons/gnome/24x24/stock/image/stock_brightness.png -share/icons/gnome/24x24/stock/image/stock_bucketfill.png -share/icons/gnome/24x24/stock/image/stock_channel-blue.png -share/icons/gnome/24x24/stock/image/stock_channel-green.png -share/icons/gnome/24x24/stock/image/stock_channel-red.png -share/icons/gnome/24x24/stock/image/stock_contrast.png -share/icons/gnome/24x24/stock/image/stock_crop.png -share/icons/gnome/24x24/stock/image/stock_display-grid.png -share/icons/gnome/24x24/stock/image/stock_distort.png -share/icons/gnome/24x24/stock/image/stock_draw-arc.png -share/icons/gnome/24x24/stock/image/stock_draw-callouts.png -share/icons/gnome/24x24/stock/image/stock_draw-circle-arc.png -share/icons/gnome/24x24/stock/image/stock_draw-circle-pie-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-circle-pie.png -share/icons/gnome/24x24/stock/image/stock_draw-circle-segment-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-circle-segment.png -share/icons/gnome/24x24/stock/image/stock_draw-circle-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-cone.png -share/icons/gnome/24x24/stock/image/stock_draw-connector-ends-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-connector-ends-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-connector-starts-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-connector-starts-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-connector-with-arrows.png -share/icons/gnome/24x24/stock/image/stock_draw-connector-with-circles.png -share/icons/gnome/24x24/stock/image/stock_draw-connector.png -share/icons/gnome/24x24/stock/image/stock_draw-cube.png -share/icons/gnome/24x24/stock/image/stock_draw-curve-filled.png -share/icons/gnome/24x24/stock/image/stock_draw-curve.png -share/icons/gnome/24x24/stock/image/stock_draw-curved-connector-ends-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-curved-connector-ends-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-curved-connector-starts-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-curved-connector-starts-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-curved-connector-with-arrows.png -share/icons/gnome/24x24/stock/image/stock_draw-curved-connector-with-circles.png -share/icons/gnome/24x24/stock/image/stock_draw-curved-connector.png -share/icons/gnome/24x24/stock/image/stock_draw-cylinder.png -share/icons/gnome/24x24/stock/image/stock_draw-dimension-line.png -share/icons/gnome/24x24/stock/image/stock_draw-ellipse-pie-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-ellipse-pie.png -share/icons/gnome/24x24/stock/image/stock_draw-ellipse-segment-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-ellipse-segment.png -share/icons/gnome/24x24/stock/image/stock_draw-ellipse-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-ellipse.png -share/icons/gnome/24x24/stock/image/stock_draw-freeform-line-filled.png -share/icons/gnome/24x24/stock/image/stock_draw-freeform-line.png -share/icons/gnome/24x24/stock/image/stock_draw-half-sphere.png -share/icons/gnome/24x24/stock/image/stock_draw-line-45.png -share/icons/gnome/24x24/stock/image/stock_draw-line-connector-ends-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-line-connector-ends-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-line-connector-starts-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-line-connector-starts-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-line-connector-with-arrows.png -share/icons/gnome/24x24/stock/image/stock_draw-line-connector-with-circles.png -share/icons/gnome/24x24/stock/image/stock_draw-line-connector.png -share/icons/gnome/24x24/stock/image/stock_draw-line-ends-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-line-starts-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-line-with-arrow-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-line-with-arrow-square.png -share/icons/gnome/24x24/stock/image/stock_draw-line-with-arrows.png -share/icons/gnome/24x24/stock/image/stock_draw-line-with-circle-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-line-with-square-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-line.png -share/icons/gnome/24x24/stock/image/stock_draw-polygon-45-filled.png -share/icons/gnome/24x24/stock/image/stock_draw-polygon-45.png -share/icons/gnome/24x24/stock/image/stock_draw-polygon-filled.png -share/icons/gnome/24x24/stock/image/stock_draw-polygon.png -share/icons/gnome/24x24/stock/image/stock_draw-pyramid.png -share/icons/gnome/24x24/stock/image/stock_draw-rectangle-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-rectangle.png -share/icons/gnome/24x24/stock/image/stock_draw-rounded-rectangle-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-rounded-rectangle.png -share/icons/gnome/24x24/stock/image/stock_draw-rounded-square-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-rounded-square.png -share/icons/gnome/24x24/stock/image/stock_draw-selection.png -share/icons/gnome/24x24/stock/image/stock_draw-shell.png -share/icons/gnome/24x24/stock/image/stock_draw-sphere.png -share/icons/gnome/24x24/stock/image/stock_draw-square-unfilled.png -share/icons/gnome/24x24/stock/image/stock_draw-square.png -share/icons/gnome/24x24/stock/image/stock_draw-straight-connector-ends-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-straight-connector-ends-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-straight-connector-starts-with-arrow.png -share/icons/gnome/24x24/stock/image/stock_draw-straight-connector-starts-with-circle.png -share/icons/gnome/24x24/stock/image/stock_draw-straight-connector-with-arrows.png -share/icons/gnome/24x24/stock/image/stock_draw-straight-connector-with-circles.png -share/icons/gnome/24x24/stock/image/stock_draw-straight-connector.png -share/icons/gnome/24x24/stock/image/stock_draw-torus.png -share/icons/gnome/24x24/stock/image/stock_draw-vertical-callouts.png -share/icons/gnome/24x24/stock/image/stock_edit-points.png -share/icons/gnome/24x24/stock/image/stock_filters-aging.png -share/icons/gnome/24x24/stock/image/stock_filters-charcoal.png -share/icons/gnome/24x24/stock/image/stock_filters-invert.png -share/icons/gnome/24x24/stock/image/stock_filters-pixelize.png -share/icons/gnome/24x24/stock/image/stock_filters-pop-art.png -share/icons/gnome/24x24/stock/image/stock_filters-posterize.png -share/icons/gnome/24x24/stock/image/stock_filters-relief.png -share/icons/gnome/24x24/stock/image/stock_filters-remove-noise.png -share/icons/gnome/24x24/stock/image/stock_filters-sharpen.png -share/icons/gnome/24x24/stock/image/stock_filters-smooth.png -share/icons/gnome/24x24/stock/image/stock_filters-solarize.png -share/icons/gnome/24x24/stock/image/stock_flip.png -share/icons/gnome/24x24/stock/image/stock_gamma.png -share/icons/gnome/24x24/stock/image/stock_gradient.png -share/icons/gnome/24x24/stock/image/stock_graphics-align-bottom.png -share/icons/gnome/24x24/stock/image/stock_graphics-align-center.png -share/icons/gnome/24x24/stock/image/stock_graphics-align-centered.png -share/icons/gnome/24x24/stock/image/stock_graphics-align-left.png -share/icons/gnome/24x24/stock/image/stock_graphics-align-right.png -share/icons/gnome/24x24/stock/image/stock_graphics-align-top.png -share/icons/gnome/24x24/stock/image/stock_guides.png -share/icons/gnome/24x24/stock/image/stock_imagemap-editor.png -share/icons/gnome/24x24/stock/image/stock_insert_image.png -share/icons/gnome/24x24/stock/image/stock_linepen.png -share/icons/gnome/24x24/stock/image/stock_modify-layout.png -share/icons/gnome/24x24/stock/image/stock_node-add.png -share/icons/gnome/24x24/stock/image/stock_node-close-path.png -share/icons/gnome/24x24/stock/image/stock_node-convert.png -share/icons/gnome/24x24/stock/image/stock_node-corner-to-smooth.png -share/icons/gnome/24x24/stock/image/stock_node-corner.png -share/icons/gnome/24x24/stock/image/stock_node-curve-split.png -share/icons/gnome/24x24/stock/image/stock_node-delete.png -share/icons/gnome/24x24/stock/image/stock_node-mark-for-deletion.png -share/icons/gnome/24x24/stock/image/stock_node-move.png -share/icons/gnome/24x24/stock/image/stock_node-smooth-to-symmetrical.png -share/icons/gnome/24x24/stock/image/stock_placeholder-graphic.png -share/icons/gnome/24x24/stock/image/stock_placeholder-line-contour.png -share/icons/gnome/24x24/stock/image/stock_placeholder-picture.png -share/icons/gnome/24x24/stock/image/stock_placeholder-text.png -share/icons/gnome/24x24/stock/image/stock_quickmask.png -share/icons/gnome/24x24/stock/image/stock_rotate-3d.png -share/icons/gnome/24x24/stock/image/stock_rotate.png -share/icons/gnome/24x24/stock/image/stock_rotation-mode.png -share/icons/gnome/24x24/stock/image/stock_shadow.png -share/icons/gnome/24x24/stock/image/stock_show-draw-functions.png -share/icons/gnome/24x24/stock/image/stock_toggle-graphics.png -share/icons/gnome/24x24/stock/io/stock_export.png -share/icons/gnome/24x24/stock/io/stock_insert-file.png -share/icons/gnome/24x24/stock/io/stock_network-printer.png -share/icons/gnome/24x24/stock/io/stock_print-driver.png -share/icons/gnome/24x24/stock/io/stock_print-preview-print.png -share/icons/gnome/24x24/stock/io/stock_print-setup.png -share/icons/gnome/24x24/stock/io/stock_printers.png -share/icons/gnome/24x24/stock/io/stock_reload.png -share/icons/gnome/24x24/stock/io/stock_save-pdf.png -share/icons/gnome/24x24/stock/io/stock_save-template.png -share/icons/gnome/24x24/stock/media/stock_3dsound.png -share/icons/gnome/24x24/stock/media/stock_effects-sound.png -share/icons/gnome/24x24/stock/media/stock_headphones.png -share/icons/gnome/24x24/stock/media/stock_insert-video-plugin.png -share/icons/gnome/24x24/stock/media/stock_line_in.png -share/icons/gnome/24x24/stock/media/stock_midi.png -share/icons/gnome/24x24/stock/media/stock_music-library.png -share/icons/gnome/24x24/stock/media/stock_playlist.png -share/icons/gnome/24x24/stock/media/stock_smart-playlist.png -share/icons/gnome/24x24/stock/navigation/stock_down-with-subpoints.png -share/icons/gnome/24x24/stock/navigation/stock_first-page.png -share/icons/gnome/24x24/stock/navigation/stock_last-page.png -share/icons/gnome/24x24/stock/navigation/stock_left-with-subpoints.png -share/icons/gnome/24x24/stock/navigation/stock_navigator.png -share/icons/gnome/24x24/stock/navigation/stock_next-page.png -share/icons/gnome/24x24/stock/navigation/stock_next.png -share/icons/gnome/24x24/stock/navigation/stock_previous-page.png -share/icons/gnome/24x24/stock/navigation/stock_previous.png -share/icons/gnome/24x24/stock/navigation/stock_right-with-subpoints.png -share/icons/gnome/24x24/stock/navigation/stock_undo-history.png -share/icons/gnome/24x24/stock/navigation/stock_up-with-subpoints.png -share/icons/gnome/24x24/stock/navigation/stock_zoom-next.png -share/icons/gnome/24x24/stock/navigation/stock_zoom-object.png -share/icons/gnome/24x24/stock/navigation/stock_zoom-optimal.png -share/icons/gnome/24x24/stock/navigation/stock_zoom-page-width.png -share/icons/gnome/24x24/stock/navigation/stock_zoom-page.png -share/icons/gnome/24x24/stock/navigation/stock_zoom-previous.png -share/icons/gnome/24x24/stock/navigation/stock_zoom-shift.png -share/icons/gnome/24x24/stock/navigation/stock_zoom.png -share/icons/gnome/24x24/stock/net/stock_addressbook.png -share/icons/gnome/24x24/stock/net/stock_channel.png -share/icons/gnome/24x24/stock/net/stock_connect-to-url.png -share/icons/gnome/24x24/stock/net/stock_connect.png -share/icons/gnome/24x24/stock/net/stock_contact-list.png -share/icons/gnome/24x24/stock/net/stock_contact.png -share/icons/gnome/24x24/stock/net/stock_directory-server.png -share/icons/gnome/24x24/stock/net/stock_disconnect.png -share/icons/gnome/24x24/stock/net/stock_exchange-connector.png -share/icons/gnome/24x24/stock/net/stock_groupwise-connector.png -share/icons/gnome/24x24/stock/net/stock_hand-signed.png -share/icons/gnome/24x24/stock/net/stock_hyperlink-internet-search.png -share/icons/gnome/24x24/stock/net/stock_hyperlink-target.png -share/icons/gnome/24x24/stock/net/stock_hyperlink-toolbar.png -share/icons/gnome/24x24/stock/net/stock_hyperlink.png -share/icons/gnome/24x24/stock/net/stock_inbox.png -share/icons/gnome/24x24/stock/net/stock_insert-url.png -share/icons/gnome/24x24/stock/net/stock_internet.png -share/icons/gnome/24x24/stock/net/stock_link.png -share/icons/gnome/24x24/stock/net/stock_mail-accounts.png -share/icons/gnome/24x24/stock/net/stock_mail-copy.png -share/icons/gnome/24x24/stock/net/stock_mail-filters-apply.png -share/icons/gnome/24x24/stock/net/stock_mail-handling.png -share/icons/gnome/24x24/stock/net/stock_mail-import.png -share/icons/gnome/24x24/stock/net/stock_mail-merge.png -share/icons/gnome/24x24/stock/net/stock_mail-move.png -share/icons/gnome/24x24/stock/net/stock_mail-open-multiple.png -share/icons/gnome/24x24/stock/net/stock_mail-open.png -share/icons/gnome/24x24/stock/net/stock_mail-receive.png -share/icons/gnome/24x24/stock/net/stock_mail-replied.png -share/icons/gnome/24x24/stock/net/stock_mail-send.png -share/icons/gnome/24x24/stock/net/stock_mail-unread-multiple.png -share/icons/gnome/24x24/stock/net/stock_mail-unread.png -share/icons/gnome/24x24/stock/net/stock_mail.png -share/icons/gnome/24x24/stock/net/stock_message-display.png -share/icons/gnome/24x24/stock/net/stock_online-layout.png -share/icons/gnome/24x24/stock/net/stock_outbox.png -share/icons/gnome/24x24/stock/net/stock_post-message.png -share/icons/gnome/24x24/stock/net/stock_sent-mail.png -share/icons/gnome/24x24/stock/net/stock_shared-by-me.png -share/icons/gnome/24x24/stock/net/stock_shared-to-me.png -share/icons/gnome/24x24/stock/net/stock_video-conferencing.png -share/icons/gnome/24x24/stock/object/stock_bookmark.png -share/icons/gnome/24x24/stock/object/stock_bring-backward.png -share/icons/gnome/24x24/stock/object/stock_bring-forward.png -share/icons/gnome/24x24/stock/object/stock_create-with-attributes.png -share/icons/gnome/24x24/stock/object/stock_delete-bookmark.png -share/icons/gnome/24x24/stock/object/stock_edit-bookmark.png -share/icons/gnome/24x24/stock/object/stock_effects-more-options.png -share/icons/gnome/24x24/stock/object/stock_effects-object-colorize.png -share/icons/gnome/24x24/stock/object/stock_effects-object-hide.png -share/icons/gnome/24x24/stock/object/stock_effects-object.png -share/icons/gnome/24x24/stock/object/stock_effects-play-in-full.png -share/icons/gnome/24x24/stock/object/stock_effects-preview.png -share/icons/gnome/24x24/stock/object/stock_effects.png -share/icons/gnome/24x24/stock/object/stock_enter-group.png -share/icons/gnome/24x24/stock/object/stock_exit-group.png -share/icons/gnome/24x24/stock/object/stock_file-with-objects.png -share/icons/gnome/24x24/stock/object/stock_format-object.png -share/icons/gnome/24x24/stock/object/stock_formula-cursor.png -share/icons/gnome/24x24/stock/object/stock_frame.png -share/icons/gnome/24x24/stock/object/stock_group.png -share/icons/gnome/24x24/stock/object/stock_handles-simple.png -share/icons/gnome/24x24/stock/object/stock_insert-applet.png -share/icons/gnome/24x24/stock/object/stock_insert-floating-frame.png -share/icons/gnome/24x24/stock/object/stock_insert-gluepoint.png -share/icons/gnome/24x24/stock/object/stock_insert-math-object.png -share/icons/gnome/24x24/stock/object/stock_insert-note.png -share/icons/gnome/24x24/stock/object/stock_insert-ole-object.png -share/icons/gnome/24x24/stock/object/stock_insert-plugin.png -share/icons/gnome/24x24/stock/object/stock_insert-rule.png -share/icons/gnome/24x24/stock/object/stock_insert-single-column-text-frame.png -share/icons/gnome/24x24/stock/object/stock_insert-slide.png -share/icons/gnome/24x24/stock/object/stock_insert-sound-plugin.png -share/icons/gnome/24x24/stock/object/stock_insert-text-frame.png -share/icons/gnome/24x24/stock/object/stock_insert_graphic.png -share/icons/gnome/24x24/stock/object/stock_insert_special_character.png -share/icons/gnome/24x24/stock/object/stock_interaction.png -share/icons/gnome/24x24/stock/object/stock_new-bcard.png -share/icons/gnome/24x24/stock/object/stock_object-behind.png -share/icons/gnome/24x24/stock/object/stock_object-infront.png -share/icons/gnome/24x24/stock/object/stock_pin.png -share/icons/gnome/24x24/stock/object/stock_position-size.png -share/icons/gnome/24x24/stock/object/stock_reverse-order.png -share/icons/gnome/24x24/stock/object/stock_slide-design.png -share/icons/gnome/24x24/stock/object/stock_slide-duplicate.png -share/icons/gnome/24x24/stock/object/stock_slide-expand.png -share/icons/gnome/24x24/stock/object/stock_slide-reherse-timings.png -share/icons/gnome/24x24/stock/object/stock_slide-show.png -share/icons/gnome/24x24/stock/object/stock_slide-showhide.png -share/icons/gnome/24x24/stock/object/stock_snap-grid.png -share/icons/gnome/24x24/stock/object/stock_snap-guides.png -share/icons/gnome/24x24/stock/object/stock_snap-margins.png -share/icons/gnome/24x24/stock/object/stock_snap-object-points.png -share/icons/gnome/24x24/stock/object/stock_snap-object.png -share/icons/gnome/24x24/stock/object/stock_symbol-selection.png -share/icons/gnome/24x24/stock/object/stock_to-3d-rotation-object.png -share/icons/gnome/24x24/stock/object/stock_to-3d.png -share/icons/gnome/24x24/stock/object/stock_to-bottom.png -share/icons/gnome/24x24/stock/object/stock_to-curve.png -share/icons/gnome/24x24/stock/object/stock_to-polygon.png -share/icons/gnome/24x24/stock/object/stock_to-top.png -share/icons/gnome/24x24/stock/object/stock_ungroup.png -share/icons/gnome/24x24/stock/object/stock_unlink.png -share/icons/gnome/24x24/stock/object/stock_view-function-selection.png -share/icons/gnome/24x24/stock/table/stock_alignment-bottom.png -share/icons/gnome/24x24/stock/table/stock_alignment-centered-vertically.png -share/icons/gnome/24x24/stock/table/stock_alignment-centered.png -share/icons/gnome/24x24/stock/table/stock_alignment-left.png -share/icons/gnome/24x24/stock/table/stock_alignment-right.png -share/icons/gnome/24x24/stock/table/stock_alignment-top.png -share/icons/gnome/24x24/stock/table/stock_alignment.png -share/icons/gnome/24x24/stock/table/stock_cell-align-bottom.png -share/icons/gnome/24x24/stock/table/stock_cell-align-center.png -share/icons/gnome/24x24/stock/table/stock_cell-align-top.png -share/icons/gnome/24x24/stock/table/stock_choose-themes.png -share/icons/gnome/24x24/stock/table/stock_datapilot.png -share/icons/gnome/24x24/stock/table/stock_delete-column.png -share/icons/gnome/24x24/stock/table/stock_delete-row.png -share/icons/gnome/24x24/stock/table/stock_exchange-columns.png -share/icons/gnome/24x24/stock/table/stock_exchange-rows.png -share/icons/gnome/24x24/stock/table/stock_group-cells.png -share/icons/gnome/24x24/stock/table/stock_insert-cells-down.png -share/icons/gnome/24x24/stock/table/stock_insert-cells-right.png -share/icons/gnome/24x24/stock/table/stock_insert-cells.png -share/icons/gnome/24x24/stock/table/stock_insert-columns.png -share/icons/gnome/24x24/stock/table/stock_insert-names-define.png -share/icons/gnome/24x24/stock/table/stock_insert-rows.png -share/icons/gnome/24x24/stock/table/stock_insert-table.png -share/icons/gnome/24x24/stock/table/stock_select-cell.png -share/icons/gnome/24x24/stock/table/stock_select-column.png -share/icons/gnome/24x24/stock/table/stock_select-row.png -share/icons/gnome/24x24/stock/table/stock_select-table.png -share/icons/gnome/24x24/stock/table/stock_sort-table-column-ascending.png -share/icons/gnome/24x24/stock/table/stock_sort-table-row-ascending.png -share/icons/gnome/24x24/stock/table/stock_table-align-bottom.png -share/icons/gnome/24x24/stock/table/stock_table-align-center.png -share/icons/gnome/24x24/stock/table/stock_table-align-top.png -share/icons/gnome/24x24/stock/table/stock_table-borders.png -share/icons/gnome/24x24/stock/table/stock_table-combine.png -share/icons/gnome/24x24/stock/table/stock_table-fit-height.png -share/icons/gnome/24x24/stock/table/stock_table-fit-width.png -share/icons/gnome/24x24/stock/table/stock_table-fixed-proportional.png -share/icons/gnome/24x24/stock/table/stock_table-fixed.png -share/icons/gnome/24x24/stock/table/stock_table-line-color.png -share/icons/gnome/24x24/stock/table/stock_table-line-style.png -share/icons/gnome/24x24/stock/table/stock_table-optimize.png -share/icons/gnome/24x24/stock/table/stock_table-same-height.png -share/icons/gnome/24x24/stock/table/stock_table-same-width.png -share/icons/gnome/24x24/stock/table/stock_table-split.png -share/icons/gnome/24x24/stock/table/stock_table-variable.png -share/icons/gnome/24x24/stock/table/stock_table_borders.png -share/icons/gnome/24x24/stock/table/stock_table_fill.png -share/icons/gnome/24x24/stock/table/stock_ungroup-cells.png -share/icons/gnome/24x24/stock/text/stock_autoformat.png -share/icons/gnome/24x24/stock/text/stock_autospellcheck.png -share/icons/gnome/24x24/stock/text/stock_autotext.png -share/icons/gnome/24x24/stock/text/stock_chart-scale-text.png -share/icons/gnome/24x24/stock/text/stock_decrease-font.png -share/icons/gnome/24x24/stock/text/stock_directcursor.png -share/icons/gnome/24x24/stock/text/stock_draw-text-animation.png -share/icons/gnome/24x24/stock/text/stock_draw-text-frame.png -share/icons/gnome/24x24/stock/text/stock_draw-text.png -share/icons/gnome/24x24/stock/text/stock_draw-vertical-text-frame.png -share/icons/gnome/24x24/stock/text/stock_draw-vertical-text.png -share/icons/gnome/24x24/stock/text/stock_edit-contour.png -share/icons/gnome/24x24/stock/text/stock_edit-headers-and-footers.png -share/icons/gnome/24x24/stock/text/stock_effects-text.png -share/icons/gnome/24x24/stock/text/stock_euro.png -share/icons/gnome/24x24/stock/text/stock_font-formatting-toggle.png -share/icons/gnome/24x24/stock/text/stock_font-size.png -share/icons/gnome/24x24/stock/text/stock_font.png -share/icons/gnome/24x24/stock/text/stock_fontwork.png -share/icons/gnome/24x24/stock/text/stock_format-character.png -share/icons/gnome/24x24/stock/text/stock_format-numbering-bullets.png -share/icons/gnome/24x24/stock/text/stock_format-paragraph.png -share/icons/gnome/24x24/stock/text/stock_increase-font.png -share/icons/gnome/24x24/stock/text/stock_insert-caption.png -share/icons/gnome/24x24/stock/text/stock_insert-cross-reference.png -share/icons/gnome/24x24/stock/text/stock_insert-fields-author.png -share/icons/gnome/24x24/stock/text/stock_insert-fields-subject.png -share/icons/gnome/24x24/stock/text/stock_insert-fields-title.png -share/icons/gnome/24x24/stock/text/stock_insert-footer.png -share/icons/gnome/24x24/stock/text/stock_insert-header.png -share/icons/gnome/24x24/stock/text/stock_insert_endnote.png -share/icons/gnome/24x24/stock/text/stock_insert_footnote.png -share/icons/gnome/24x24/stock/text/stock_insert_index_marker.png -share/icons/gnome/24x24/stock/text/stock_insert_section.png -share/icons/gnome/24x24/stock/text/stock_line-spacing-1.5.png -share/icons/gnome/24x24/stock/text/stock_line-spacing-1.png -share/icons/gnome/24x24/stock/text/stock_line-spacing-2.png -share/icons/gnome/24x24/stock/text/stock_list-insert-unnumbered.png -share/icons/gnome/24x24/stock/text/stock_list_bullet.png -share/icons/gnome/24x24/stock/text/stock_list_enum-off.png -share/icons/gnome/24x24/stock/text/stock_list_enum-restart.png -share/icons/gnome/24x24/stock/text/stock_list_enum.png -share/icons/gnome/24x24/stock/text/stock_nonprinting-chars.png -share/icons/gnome/24x24/stock/text/stock_page-number.png -share/icons/gnome/24x24/stock/text/stock_page-total-number.png -share/icons/gnome/24x24/stock/text/stock_paragraph-spacing-decrease.png -share/icons/gnome/24x24/stock/text/stock_paragraph-spacing-increase.png -share/icons/gnome/24x24/stock/text/stock_spellcheck.png -share/icons/gnome/24x24/stock/text/stock_styles-new-style-from-selection.png -share/icons/gnome/24x24/stock/text/stock_styles-update-style.png -share/icons/gnome/24x24/stock/text/stock_subscript.png -share/icons/gnome/24x24/stock/text/stock_superscript.png -share/icons/gnome/24x24/stock/text/stock_text-direction-ltr.png -share/icons/gnome/24x24/stock/text/stock_text-direction-ttb.png -share/icons/gnome/24x24/stock/text/stock_text-double-click-to-edit.png -share/icons/gnome/24x24/stock/text/stock_text-monospaced.png -share/icons/gnome/24x24/stock/text/stock_text-outline.png -share/icons/gnome/24x24/stock/text/stock_text-quickedit.png -share/icons/gnome/24x24/stock/text/stock_text-select-text-only.png -share/icons/gnome/24x24/stock/text/stock_text-shadow.png -share/icons/gnome/24x24/stock/text/stock_text-spacing.png -share/icons/gnome/24x24/stock/text/stock_text_color_background.png -share/icons/gnome/24x24/stock/text/stock_text_color_foreground.png -share/icons/gnome/24x24/stock/text/stock_text_color_hilight.png -share/icons/gnome/24x24/stock/text/stock_text_underlined-double.png -share/icons/gnome/24x24/stock/text/stock_thesaurus.png -share/icons/gnome/24x24/stock/text/stock_to-background.png -share/icons/gnome/24x24/stock/text/stock_to-foreground.png -share/icons/gnome/24x24/stock/text/stock_tools-hyphenation.png -share/icons/gnome/24x24/stock/text/stock_update-fields.png -share/icons/gnome/24x24/stock/text/stock_view-field-shadings.png -share/icons/gnome/24x24/stock/text/stock_wrap-around.png -share/icons/gnome/24x24/stock/text/stock_wrap-behind.png -share/icons/gnome/24x24/stock/text/stock_wrap-contour.png -share/icons/gnome/24x24/stock/text/stock_wrap-interrupt.png -share/icons/gnome/24x24/stock/text/stock_wrap-left.png -share/icons/gnome/24x24/stock/text/stock_wrap-optimal.png -share/icons/gnome/24x24/stock/text/stock_wrap-right.png -share/icons/gnome/32x32/actions/add.png -share/icons/gnome/32x32/actions/address-book-new.png -share/icons/gnome/32x32/actions/application-exit.png -share/icons/gnome/32x32/actions/appointment-new.png -share/icons/gnome/32x32/actions/appointment.png -share/icons/gnome/32x32/actions/back.png -share/icons/gnome/32x32/actions/bookmark-new.png -share/icons/gnome/32x32/actions/bookmark_add.png -share/icons/gnome/32x32/actions/bookmarks_list_add.png -share/icons/gnome/32x32/actions/bottom.png -share/icons/gnome/32x32/actions/call-start.png -share/icons/gnome/32x32/actions/call-stop.png -share/icons/gnome/32x32/actions/centrejust.png -share/icons/gnome/32x32/actions/contact-new.png -share/icons/gnome/32x32/actions/document-new.png -share/icons/gnome/32x32/actions/document-open-recent.png -share/icons/gnome/32x32/actions/document-open.png -share/icons/gnome/32x32/actions/document-page-setup.png -share/icons/gnome/32x32/actions/document-print-preview.png -share/icons/gnome/32x32/actions/document-print.png -share/icons/gnome/32x32/actions/document-properties.png -share/icons/gnome/32x32/actions/document-revert.png -share/icons/gnome/32x32/actions/document-save-as.png -share/icons/gnome/32x32/actions/document-save.png -share/icons/gnome/32x32/actions/document-send.png -share/icons/gnome/32x32/actions/down.png -share/icons/gnome/32x32/actions/edit-clear.png -share/icons/gnome/32x32/actions/edit-copy.png -share/icons/gnome/32x32/actions/edit-cut.png -share/icons/gnome/32x32/actions/edit-delete.png -share/icons/gnome/32x32/actions/edit-find-replace.png -share/icons/gnome/32x32/actions/edit-find.png -share/icons/gnome/32x32/actions/edit-paste.png -share/icons/gnome/32x32/actions/edit-redo.png -share/icons/gnome/32x32/actions/edit-select-all.png -share/icons/gnome/32x32/actions/edit-undo.png -share/icons/gnome/32x32/actions/editclear.png -share/icons/gnome/32x32/actions/editcopy.png -share/icons/gnome/32x32/actions/editcut.png -share/icons/gnome/32x32/actions/editdelete.png -share/icons/gnome/32x32/actions/editpaste.png -share/icons/gnome/32x32/actions/exit.png -share/icons/gnome/32x32/actions/filefind.png -share/icons/gnome/32x32/actions/filenew.png -share/icons/gnome/32x32/actions/fileopen.png -share/icons/gnome/32x32/actions/fileprint.png -share/icons/gnome/32x32/actions/filequickprint.png -share/icons/gnome/32x32/actions/filesave.png -share/icons/gnome/32x32/actions/filesaveas.png -share/icons/gnome/32x32/actions/find.png -share/icons/gnome/32x32/actions/finish.png -share/icons/gnome/32x32/actions/folder-new.png -share/icons/gnome/32x32/actions/folder_new.png -share/icons/gnome/32x32/actions/format-indent-less.png -share/icons/gnome/32x32/actions/format-indent-more.png -share/icons/gnome/32x32/actions/format-justify-center.png -share/icons/gnome/32x32/actions/format-justify-fill.png -share/icons/gnome/32x32/actions/format-justify-left.png -share/icons/gnome/32x32/actions/format-justify-right.png -share/icons/gnome/32x32/actions/format-text-bold.png -share/icons/gnome/32x32/actions/format-text-direction-ltr.png -share/icons/gnome/32x32/actions/format-text-direction-rtl.png -share/icons/gnome/32x32/actions/format-text-italic.png -share/icons/gnome/32x32/actions/format-text-strikethrough.png -share/icons/gnome/32x32/actions/format-text-underline.png -share/icons/gnome/32x32/actions/forward.png -share/icons/gnome/32x32/actions/gnome-lockscreen.png -share/icons/gnome/32x32/actions/gnome-logout.png -share/icons/gnome/32x32/actions/gnome-run.png -share/icons/gnome/32x32/actions/gnome-searchtool.png -share/icons/gnome/32x32/actions/gnome-stock-mail-fwd.png -share/icons/gnome/32x32/actions/gnome-stock-mail-new.png -share/icons/gnome/32x32/actions/gnome-stock-mail-rpl.png -share/icons/gnome/32x32/actions/gnome-stock-mail-snd.png -share/icons/gnome/32x32/actions/gnome-stock-text-indent.png -share/icons/gnome/32x32/actions/gnome-stock-text-unindent.png -share/icons/gnome/32x32/actions/go-bottom.png -share/icons/gnome/32x32/actions/go-down.png -share/icons/gnome/32x32/actions/go-first.png -share/icons/gnome/32x32/actions/go-home.png -share/icons/gnome/32x32/actions/go-jump.png -share/icons/gnome/32x32/actions/go-last.png -share/icons/gnome/32x32/actions/go-next.png -share/icons/gnome/32x32/actions/go-previous.png -share/icons/gnome/32x32/actions/go-top.png -share/icons/gnome/32x32/actions/go-up.png -share/icons/gnome/32x32/actions/gohome.png -share/icons/gnome/32x32/actions/gtk-about.png -share/icons/gnome/32x32/actions/gtk-add.png -share/icons/gnome/32x32/actions/gtk-bold.png -share/icons/gnome/32x32/actions/gtk-cancel.png -share/icons/gnome/32x32/actions/gtk-clear.png -share/icons/gnome/32x32/actions/gtk-close.png -share/icons/gnome/32x32/actions/gtk-copy.png -share/icons/gnome/32x32/actions/gtk-cut.png -share/icons/gnome/32x32/actions/gtk-delete.png -share/icons/gnome/32x32/actions/gtk-execute.png -share/icons/gnome/32x32/actions/gtk-find-and-replace.png -share/icons/gnome/32x32/actions/gtk-find.png -share/icons/gnome/32x32/actions/gtk-fullscreen.png -share/icons/gnome/32x32/actions/gtk-go-back-ltr.png -share/icons/gnome/32x32/actions/gtk-go-back-rtl.png -share/icons/gnome/32x32/actions/gtk-go-down.png -share/icons/gnome/32x32/actions/gtk-go-forward-ltr.png -share/icons/gnome/32x32/actions/gtk-go-forward-rtl.png -share/icons/gnome/32x32/actions/gtk-go-up.png -share/icons/gnome/32x32/actions/gtk-goto-bottom.png -share/icons/gnome/32x32/actions/gtk-goto-first-ltr.png -share/icons/gnome/32x32/actions/gtk-goto-first-rtl.png -share/icons/gnome/32x32/actions/gtk-goto-last-ltr.png -share/icons/gnome/32x32/actions/gtk-goto-last-rtl.png -share/icons/gnome/32x32/actions/gtk-goto-top.png -share/icons/gnome/32x32/actions/gtk-home.png -share/icons/gnome/32x32/actions/gtk-indent-ltr.png -share/icons/gnome/32x32/actions/gtk-indent-rtl.png -share/icons/gnome/32x32/actions/gtk-italic.png -share/icons/gnome/32x32/actions/gtk-jump-to-ltr.png -share/icons/gnome/32x32/actions/gtk-jump-to-rtl.png -share/icons/gnome/32x32/actions/gtk-justify-center.png -share/icons/gnome/32x32/actions/gtk-justify-fill.png -share/icons/gnome/32x32/actions/gtk-justify-left.png -share/icons/gnome/32x32/actions/gtk-justify-right.png -share/icons/gnome/32x32/actions/gtk-leave-fullscreen.png -share/icons/gnome/32x32/actions/gtk-media-forward-ltr.png -share/icons/gnome/32x32/actions/gtk-media-forward-rtl.png -share/icons/gnome/32x32/actions/gtk-media-next-ltr.png -share/icons/gnome/32x32/actions/gtk-media-next-rtl.png -share/icons/gnome/32x32/actions/gtk-media-pause.png -share/icons/gnome/32x32/actions/gtk-media-play-ltr.png -share/icons/gnome/32x32/actions/gtk-media-previous-ltr.png -share/icons/gnome/32x32/actions/gtk-media-previous-rtl.png -share/icons/gnome/32x32/actions/gtk-media-record.png -share/icons/gnome/32x32/actions/gtk-media-rewind-ltr.png -share/icons/gnome/32x32/actions/gtk-media-rewind-rtl.png -share/icons/gnome/32x32/actions/gtk-media-stop.png -share/icons/gnome/32x32/actions/gtk-new.png -share/icons/gnome/32x32/actions/gtk-open.png -share/icons/gnome/32x32/actions/gtk-paste.png -share/icons/gnome/32x32/actions/gtk-print-preview.png -share/icons/gnome/32x32/actions/gtk-print.png -share/icons/gnome/32x32/actions/gtk-properties.png -share/icons/gnome/32x32/actions/gtk-quit.png -share/icons/gnome/32x32/actions/gtk-redo-ltr.png -share/icons/gnome/32x32/actions/gtk-refresh.png -share/icons/gnome/32x32/actions/gtk-remove.png -share/icons/gnome/32x32/actions/gtk-revert-to-saved-ltr.png -share/icons/gnome/32x32/actions/gtk-revert-to-saved-rtl.png -share/icons/gnome/32x32/actions/gtk-save-as.png -share/icons/gnome/32x32/actions/gtk-save.png -share/icons/gnome/32x32/actions/gtk-select-all.png -share/icons/gnome/32x32/actions/gtk-sort-ascending.png -share/icons/gnome/32x32/actions/gtk-sort-descending.png -share/icons/gnome/32x32/actions/gtk-spell-check.png -share/icons/gnome/32x32/actions/gtk-stop.png -share/icons/gnome/32x32/actions/gtk-strikethrough.png -share/icons/gnome/32x32/actions/gtk-underline.png -share/icons/gnome/32x32/actions/gtk-undo-ltr.png -share/icons/gnome/32x32/actions/gtk-unindent-ltr.png -share/icons/gnome/32x32/actions/gtk-unindent-rtl.png -share/icons/gnome/32x32/actions/gtk-zoom-100.png -share/icons/gnome/32x32/actions/gtk-zoom-fit.png -share/icons/gnome/32x32/actions/gtk-zoom-in.png -share/icons/gnome/32x32/actions/gtk-zoom-out.png -share/icons/gnome/32x32/actions/help-about.png -share/icons/gnome/32x32/actions/help-contents.png -share/icons/gnome/32x32/actions/help-faq.png -share/icons/gnome/32x32/actions/insert-image.png -share/icons/gnome/32x32/actions/insert-link.png -share/icons/gnome/32x32/actions/insert-object.png -share/icons/gnome/32x32/actions/insert-text.png -share/icons/gnome/32x32/actions/kfind.png -share/icons/gnome/32x32/actions/kfm_home.png -share/icons/gnome/32x32/actions/leftjust.png -share/icons/gnome/32x32/actions/list-add.png -share/icons/gnome/32x32/actions/list-remove.png -share/icons/gnome/32x32/actions/lock.png -share/icons/gnome/32x32/actions/mail-forward.png -share/icons/gnome/32x32/actions/mail-mark-important.png -share/icons/gnome/32x32/actions/mail-mark-read.png -share/icons/gnome/32x32/actions/mail-mark-unread.png -share/icons/gnome/32x32/actions/mail-message-new.png -share/icons/gnome/32x32/actions/mail-reply-all.png -share/icons/gnome/32x32/actions/mail-reply-sender.png -share/icons/gnome/32x32/actions/mail-send-receive.png -share/icons/gnome/32x32/actions/mail-send.png -share/icons/gnome/32x32/actions/mail_forward.png -share/icons/gnome/32x32/actions/mail_new.png -share/icons/gnome/32x32/actions/mail_reply.png -share/icons/gnome/32x32/actions/mail_replyall.png -share/icons/gnome/32x32/actions/mail_send.png -share/icons/gnome/32x32/actions/media-eject.png -share/icons/gnome/32x32/actions/media-playback-pause.png -share/icons/gnome/32x32/actions/media-playback-start.png -share/icons/gnome/32x32/actions/media-playback-stop.png -share/icons/gnome/32x32/actions/media-record.png -share/icons/gnome/32x32/actions/media-seek-backward.png -share/icons/gnome/32x32/actions/media-seek-forward.png -share/icons/gnome/32x32/actions/media-skip-backward.png -share/icons/gnome/32x32/actions/media-skip-forward.png -share/icons/gnome/32x32/actions/next.png -share/icons/gnome/32x32/actions/object-flip-horizontal.png -share/icons/gnome/32x32/actions/object-flip-vertical.png -share/icons/gnome/32x32/actions/object-rotate-left.png -share/icons/gnome/32x32/actions/object-rotate-right.png -share/icons/gnome/32x32/actions/player_eject.png -share/icons/gnome/32x32/actions/player_end.png -share/icons/gnome/32x32/actions/player_fwd.png -share/icons/gnome/32x32/actions/player_pause.png -share/icons/gnome/32x32/actions/player_play.png -share/icons/gnome/32x32/actions/player_record.png -share/icons/gnome/32x32/actions/player_rew.png -share/icons/gnome/32x32/actions/player_start.png -share/icons/gnome/32x32/actions/player_stop.png -share/icons/gnome/32x32/actions/previous.png -share/icons/gnome/32x32/actions/process-stop.png -share/icons/gnome/32x32/actions/redhat-home.png -share/icons/gnome/32x32/actions/redo.png -share/icons/gnome/32x32/actions/reload.png -share/icons/gnome/32x32/actions/reload3.png -share/icons/gnome/32x32/actions/reload_all_tabs.png -share/icons/gnome/32x32/actions/reload_page.png -share/icons/gnome/32x32/actions/remove.png -share/icons/gnome/32x32/actions/revert.png -share/icons/gnome/32x32/actions/rightjust.png -share/icons/gnome/32x32/actions/search.png -share/icons/gnome/32x32/actions/start.png -share/icons/gnome/32x32/actions/stock_about.png -share/icons/gnome/32x32/actions/stock_add-bookmark.png -share/icons/gnome/32x32/actions/stock_bottom.png -share/icons/gnome/32x32/actions/stock_close.png -share/icons/gnome/32x32/actions/stock_copy.png -share/icons/gnome/32x32/actions/stock_cut.png -share/icons/gnome/32x32/actions/stock_delete.png -share/icons/gnome/32x32/actions/stock_down.png -share/icons/gnome/32x32/actions/stock_file-properites.png -share/icons/gnome/32x32/actions/stock_first.png -share/icons/gnome/32x32/actions/stock_fullscreen.png -share/icons/gnome/32x32/actions/stock_help-add-bookmark.png -share/icons/gnome/32x32/actions/stock_home.png -share/icons/gnome/32x32/actions/stock_last.png -share/icons/gnome/32x32/actions/stock_leave-fullscreen.png -share/icons/gnome/32x32/actions/stock_left.png -share/icons/gnome/32x32/actions/stock_mail-compose.png -share/icons/gnome/32x32/actions/stock_mail-forward.png -share/icons/gnome/32x32/actions/stock_mail-reply-to-all.png -share/icons/gnome/32x32/actions/stock_mail-reply.png -share/icons/gnome/32x32/actions/stock_mail-send-receive.png -share/icons/gnome/32x32/actions/stock_mail-send.png -share/icons/gnome/32x32/actions/stock_media-fwd.png -share/icons/gnome/32x32/actions/stock_media-next.png -share/icons/gnome/32x32/actions/stock_media-pause.png -share/icons/gnome/32x32/actions/stock_media-play.png -share/icons/gnome/32x32/actions/stock_media-prev.png -share/icons/gnome/32x32/actions/stock_media-rec.png -share/icons/gnome/32x32/actions/stock_media-rew.png -share/icons/gnome/32x32/actions/stock_media-stop.png -share/icons/gnome/32x32/actions/stock_new-address-book.png -share/icons/gnome/32x32/actions/stock_new-appointment.png -share/icons/gnome/32x32/actions/stock_new-bcard.png -share/icons/gnome/32x32/actions/stock_new-dir.png -share/icons/gnome/32x32/actions/stock_new-text.png -share/icons/gnome/32x32/actions/stock_new-window.png -share/icons/gnome/32x32/actions/stock_paste.png -share/icons/gnome/32x32/actions/stock_print-preview.png -share/icons/gnome/32x32/actions/stock_print-setup.png -share/icons/gnome/32x32/actions/stock_print.png -share/icons/gnome/32x32/actions/stock_properties.png -share/icons/gnome/32x32/actions/stock_redo.png -share/icons/gnome/32x32/actions/stock_refresh.png -share/icons/gnome/32x32/actions/stock_right.png -share/icons/gnome/32x32/actions/stock_save-as.png -share/icons/gnome/32x32/actions/stock_save.png -share/icons/gnome/32x32/actions/stock_search-and-replace.png -share/icons/gnome/32x32/actions/stock_search.png -share/icons/gnome/32x32/actions/stock_select-all.png -share/icons/gnome/32x32/actions/stock_spellcheck.png -share/icons/gnome/32x32/actions/stock_stop.png -share/icons/gnome/32x32/actions/stock_text-strikethrough.png -share/icons/gnome/32x32/actions/stock_text_bold.png -share/icons/gnome/32x32/actions/stock_text_center.png -share/icons/gnome/32x32/actions/stock_text_indent.png -share/icons/gnome/32x32/actions/stock_text_italic.png -share/icons/gnome/32x32/actions/stock_text_justify.png -share/icons/gnome/32x32/actions/stock_text_left.png -share/icons/gnome/32x32/actions/stock_text_right.png -share/icons/gnome/32x32/actions/stock_text_underlined.png -share/icons/gnome/32x32/actions/stock_text_unindent.png -share/icons/gnome/32x32/actions/stock_top.png -share/icons/gnome/32x32/actions/stock_undo.png -share/icons/gnome/32x32/actions/stock_up.png -share/icons/gnome/32x32/actions/stock_zoom-1.png -share/icons/gnome/32x32/actions/stock_zoom-in.png -share/icons/gnome/32x32/actions/stock_zoom-out.png -share/icons/gnome/32x32/actions/stock_zoom-page.png -share/icons/gnome/32x32/actions/stop.png -share/icons/gnome/32x32/actions/system-lock-screen.png -share/icons/gnome/32x32/actions/system-log-out.png -share/icons/gnome/32x32/actions/system-run.png -share/icons/gnome/32x32/actions/system-search.png -share/icons/gnome/32x32/actions/text_bold.png -share/icons/gnome/32x32/actions/text_italic.png -share/icons/gnome/32x32/actions/text_strike.png -share/icons/gnome/32x32/actions/text_under.png -share/icons/gnome/32x32/actions/tools-check-spelling.png -share/icons/gnome/32x32/actions/top.png -share/icons/gnome/32x32/actions/undo.png -share/icons/gnome/32x32/actions/up.png -share/icons/gnome/32x32/actions/view-fullscreen.png -share/icons/gnome/32x32/actions/view-refresh.png -share/icons/gnome/32x32/actions/view-restore.png -share/icons/gnome/32x32/actions/view-sort-ascending.png -share/icons/gnome/32x32/actions/view-sort-descending.png -share/icons/gnome/32x32/actions/viewmag+.png -share/icons/gnome/32x32/actions/viewmag-.png -share/icons/gnome/32x32/actions/viewmag1.png -share/icons/gnome/32x32/actions/viewmagfit.png -share/icons/gnome/32x32/actions/window-close.png -share/icons/gnome/32x32/actions/window-new.png -share/icons/gnome/32x32/actions/window_fullscreen.png -share/icons/gnome/32x32/actions/window_new.png -share/icons/gnome/32x32/actions/window_nofullscreen.png -share/icons/gnome/32x32/actions/xfce-system-exit.png -share/icons/gnome/32x32/actions/xfce-system-lock.png -share/icons/gnome/32x32/actions/zoom-best-fit.png -share/icons/gnome/32x32/actions/zoom-fit-best.png -share/icons/gnome/32x32/actions/zoom-in.png -share/icons/gnome/32x32/actions/zoom-original.png -share/icons/gnome/32x32/actions/zoom-out.png -share/icons/gnome/32x32/animations/gnome-spinner.png -share/icons/gnome/32x32/animations/process-working.png -share/icons/gnome/32x32/apps/access.png -share/icons/gnome/32x32/apps/accessibility-directory.png -share/icons/gnome/32x32/apps/accessories-calculator.png -share/icons/gnome/32x32/apps/accessories-character-map.png -share/icons/gnome/32x32/apps/accessories-dictionary.png -share/icons/gnome/32x32/apps/accessories-text-editor.png -share/icons/gnome/32x32/apps/arts.png -share/icons/gnome/32x32/apps/background.png -share/icons/gnome/32x32/apps/calc.png -share/icons/gnome/32x32/apps/config-language.png -share/icons/gnome/32x32/apps/config-users.png -share/icons/gnome/32x32/apps/file-manager.png -share/icons/gnome/32x32/apps/fonts.png -share/icons/gnome/32x32/apps/gnome-calculator.png -share/icons/gnome/32x32/apps/gnome-character-map.png -share/icons/gnome/32x32/apps/gnome-help.png -share/icons/gnome/32x32/apps/gnome-mixer.png -share/icons/gnome/32x32/apps/gnome-monitor.png -share/icons/gnome/32x32/apps/gnome-remote-desktop.png -share/icons/gnome/32x32/apps/gnome-settings-accessibility-technologies.png -share/icons/gnome/32x32/apps/gnome-settings-background.png -share/icons/gnome/32x32/apps/gnome-settings-font.png -share/icons/gnome/32x32/apps/gnome-settings-keybindings.png -share/icons/gnome/32x32/apps/gnome-settings-theme.png -share/icons/gnome/32x32/apps/gnome-terminal.png -share/icons/gnome/32x32/apps/gnome-window-manager.png -share/icons/gnome/32x32/apps/gtk-help.png -share/icons/gnome/32x32/apps/gucharmap.png -share/icons/gnome/32x32/apps/help-browser.png -share/icons/gnome/32x32/apps/help.png -share/icons/gnome/32x32/apps/kcalc.png -share/icons/gnome/32x32/apps/kcharselect.png -share/icons/gnome/32x32/apps/kcmkwm.png -share/icons/gnome/32x32/apps/kcmsound.png -share/icons/gnome/32x32/apps/kedit.png -share/icons/gnome/32x32/apps/key_bindings.png -share/icons/gnome/32x32/apps/kfm.png -share/icons/gnome/32x32/apps/khelpcenter.png -share/icons/gnome/32x32/apps/konsole.png -share/icons/gnome/32x32/apps/krfb.png -share/icons/gnome/32x32/apps/kscreensaver.png -share/icons/gnome/32x32/apps/ksysguard.png -share/icons/gnome/32x32/apps/kuser.png -share/icons/gnome/32x32/apps/kwin.png -share/icons/gnome/32x32/apps/locale.png -share/icons/gnome/32x32/apps/logviewer.png -share/icons/gnome/32x32/apps/multimedia-volume-control.png -share/icons/gnome/32x32/apps/multimedia.png -share/icons/gnome/32x32/apps/openterm.png -share/icons/gnome/32x32/apps/preferences-desktop-accessibility.png -share/icons/gnome/32x32/apps/preferences-desktop-font.png -share/icons/gnome/32x32/apps/preferences-desktop-keyboard-shortcuts.png -share/icons/gnome/32x32/apps/preferences-desktop-keyboard.png -share/icons/gnome/32x32/apps/preferences-desktop-locale.png -share/icons/gnome/32x32/apps/preferences-desktop-remote-desktop.png -share/icons/gnome/32x32/apps/preferences-desktop-screensaver.png -share/icons/gnome/32x32/apps/preferences-desktop-theme.png -share/icons/gnome/32x32/apps/preferences-desktop-wallpaper.png -share/icons/gnome/32x32/apps/preferences-system-windows.png -share/icons/gnome/32x32/apps/redhat-filemanager.png -share/icons/gnome/32x32/apps/screensaver.png -share/icons/gnome/32x32/apps/stock_help.png -share/icons/gnome/32x32/apps/style.png -share/icons/gnome/32x32/apps/susehelpcenter.png -share/icons/gnome/32x32/apps/system-config-users.png -share/icons/gnome/32x32/apps/system-file-manager.png -share/icons/gnome/32x32/apps/system-software-install.png -share/icons/gnome/32x32/apps/system-software-update.png -share/icons/gnome/32x32/apps/system-users.png -share/icons/gnome/32x32/apps/terminal.png -share/icons/gnome/32x32/apps/text-editor.png -share/icons/gnome/32x32/apps/update-manager.png -share/icons/gnome/32x32/apps/user-info.png -share/icons/gnome/32x32/apps/utilities-system-monitor.png -share/icons/gnome/32x32/apps/utilities-terminal.png -share/icons/gnome/32x32/apps/volume-knob.png -share/icons/gnome/32x32/apps/wallpaper.png -share/icons/gnome/32x32/apps/xfce-filemanager.png -share/icons/gnome/32x32/apps/xfce-terminal.png -share/icons/gnome/32x32/apps/xfce4-backdrop.png -share/icons/gnome/32x32/apps/xfce4-mixer.png -share/icons/gnome/32x32/apps/xfwm4.png -share/icons/gnome/32x32/apps/xscreensaver.png -share/icons/gnome/32x32/apps/zen-icon.png -share/icons/gnome/32x32/categories/applications-accessories.png -share/icons/gnome/32x32/categories/applications-development.png -share/icons/gnome/32x32/categories/applications-engineering.png -share/icons/gnome/32x32/categories/applications-games.png -share/icons/gnome/32x32/categories/applications-graphics.png -share/icons/gnome/32x32/categories/applications-internet.png -share/icons/gnome/32x32/categories/applications-multimedia.png -share/icons/gnome/32x32/categories/applications-office.png -share/icons/gnome/32x32/categories/applications-other.png -share/icons/gnome/32x32/categories/applications-science.png -share/icons/gnome/32x32/categories/applications-system.png -share/icons/gnome/32x32/categories/applications-utilities.png -share/icons/gnome/32x32/categories/gnome-applications.png -share/icons/gnome/32x32/categories/gnome-control-center.png -share/icons/gnome/32x32/categories/gnome-devel.png -share/icons/gnome/32x32/categories/gnome-globe.png -share/icons/gnome/32x32/categories/gnome-graphics.png -share/icons/gnome/32x32/categories/gnome-joystick.png -share/icons/gnome/32x32/categories/gnome-multimedia.png -share/icons/gnome/32x32/categories/gnome-other.png -share/icons/gnome/32x32/categories/gnome-settings.png -share/icons/gnome/32x32/categories/gnome-system.png -share/icons/gnome/32x32/categories/gnome-util.png -share/icons/gnome/32x32/categories/gtk-preferences.png -share/icons/gnome/32x32/categories/input_devices_settings.png -share/icons/gnome/32x32/categories/kcontrol.png -share/icons/gnome/32x32/categories/package_development.png -share/icons/gnome/32x32/categories/package_games.png -share/icons/gnome/32x32/categories/package_graphics.png -share/icons/gnome/32x32/categories/package_multimedia.png -share/icons/gnome/32x32/categories/package_network.png -share/icons/gnome/32x32/categories/package_office.png -share/icons/gnome/32x32/categories/package_settings.png -share/icons/gnome/32x32/categories/package_system.png -share/icons/gnome/32x32/categories/package_utilities.png -share/icons/gnome/32x32/categories/preferences-desktop-peripherals.png -share/icons/gnome/32x32/categories/preferences-desktop-personal.png -share/icons/gnome/32x32/categories/preferences-desktop.png -share/icons/gnome/32x32/categories/preferences-other.png -share/icons/gnome/32x32/categories/preferences-system-network.png -share/icons/gnome/32x32/categories/preferences-system.png -share/icons/gnome/32x32/categories/redhat-accessories.png -share/icons/gnome/32x32/categories/redhat-games.png -share/icons/gnome/32x32/categories/redhat-graphics.png -share/icons/gnome/32x32/categories/redhat-internet.png -share/icons/gnome/32x32/categories/redhat-office.png -share/icons/gnome/32x32/categories/redhat-preferences.png -share/icons/gnome/32x32/categories/redhat-programming.png -share/icons/gnome/32x32/categories/redhat-sound_video.png -share/icons/gnome/32x32/categories/redhat-system_settings.png -share/icons/gnome/32x32/categories/redhat-system_tools.png -share/icons/gnome/32x32/categories/stock_internet.png -share/icons/gnome/32x32/categories/system-help.png -share/icons/gnome/32x32/categories/xfce-games.png -share/icons/gnome/32x32/categories/xfce-graphics.png -share/icons/gnome/32x32/categories/xfce-internet.png -share/icons/gnome/32x32/categories/xfce-multimedia.png -share/icons/gnome/32x32/categories/xfce-office.png -share/icons/gnome/32x32/categories/xfce-system-settings.png -share/icons/gnome/32x32/categories/xfce-utils.png -share/icons/gnome/32x32/categories/xfce4-settings.png -share/icons/gnome/32x32/devices/3floppy_unmount.png -share/icons/gnome/32x32/devices/audio-card.png -share/icons/gnome/32x32/devices/audio-input-microphone.png -share/icons/gnome/32x32/devices/battery.png -share/icons/gnome/32x32/devices/camera-photo.png -share/icons/gnome/32x32/devices/camera-video.png -share/icons/gnome/32x32/devices/camera-web.png -share/icons/gnome/32x32/devices/camera.png -share/icons/gnome/32x32/devices/camera_unmount.png -share/icons/gnome/32x32/devices/cdrom_unmount.png -share/icons/gnome/32x32/devices/cdwriter_unmount.png -share/icons/gnome/32x32/devices/chardevice.png -share/icons/gnome/32x32/devices/computer.png -share/icons/gnome/32x32/devices/display.png -share/icons/gnome/32x32/devices/drive-cdrom.png -share/icons/gnome/32x32/devices/drive-harddisk.png -share/icons/gnome/32x32/devices/drive-optical.png -share/icons/gnome/32x32/devices/drive-removable-media.png -share/icons/gnome/32x32/devices/dvd_unmount.png -share/icons/gnome/32x32/devices/gnome-dev-battery.png -share/icons/gnome/32x32/devices/gnome-dev-cdrom-audio.png -share/icons/gnome/32x32/devices/gnome-dev-cdrom.png -share/icons/gnome/32x32/devices/gnome-dev-computer.png -share/icons/gnome/32x32/devices/gnome-dev-disc-cdr.png -share/icons/gnome/32x32/devices/gnome-dev-disc-cdrw.png -share/icons/gnome/32x32/devices/gnome-dev-disc-dvdr-plus.png -share/icons/gnome/32x32/devices/gnome-dev-disc-dvdr.png -share/icons/gnome/32x32/devices/gnome-dev-disc-dvdram.png -share/icons/gnome/32x32/devices/gnome-dev-disc-dvdrom.png -share/icons/gnome/32x32/devices/gnome-dev-disc-dvdrw.png -share/icons/gnome/32x32/devices/gnome-dev-dvd.png -share/icons/gnome/32x32/devices/gnome-dev-ethernet.png -share/icons/gnome/32x32/devices/gnome-dev-floppy.png -share/icons/gnome/32x32/devices/gnome-dev-harddisk-1394.png -share/icons/gnome/32x32/devices/gnome-dev-harddisk-usb.png -share/icons/gnome/32x32/devices/gnome-dev-harddisk.png -share/icons/gnome/32x32/devices/gnome-dev-ipod.png -share/icons/gnome/32x32/devices/gnome-dev-keyboard.png -share/icons/gnome/32x32/devices/gnome-dev-media-cf.png -share/icons/gnome/32x32/devices/gnome-dev-media-ms.png -share/icons/gnome/32x32/devices/gnome-dev-media-sdmmc.png -share/icons/gnome/32x32/devices/gnome-dev-media-sm.png -share/icons/gnome/32x32/devices/gnome-dev-mouse-ball.png -share/icons/gnome/32x32/devices/gnome-dev-mouse-optical.png -share/icons/gnome/32x32/devices/gnome-dev-printer.png -share/icons/gnome/32x32/devices/gnome-dev-removable-1394.png -share/icons/gnome/32x32/devices/gnome-dev-removable-usb.png -share/icons/gnome/32x32/devices/gnome-dev-removable.png -share/icons/gnome/32x32/devices/gnome-dev-wavelan.png -share/icons/gnome/32x32/devices/gnome-dev-zipdisk.png -share/icons/gnome/32x32/devices/gnome-fs-client.png -share/icons/gnome/32x32/devices/gnome-modem.png -share/icons/gnome/32x32/devices/gnome-stock-mic.png -share/icons/gnome/32x32/devices/gtk-cdrom.png -share/icons/gnome/32x32/devices/gtk-floppy.png -share/icons/gnome/32x32/devices/gtk-harddisk.png -share/icons/gnome/32x32/devices/harddrive.png -share/icons/gnome/32x32/devices/hdd_unmount.png -share/icons/gnome/32x32/devices/input-gaming.png -share/icons/gnome/32x32/devices/input-keyboard.png -share/icons/gnome/32x32/devices/input-mouse.png -share/icons/gnome/32x32/devices/input-tablet.png -share/icons/gnome/32x32/devices/ipod_mount.png -share/icons/gnome/32x32/devices/joystick.png -share/icons/gnome/32x32/devices/keyboard.png -share/icons/gnome/32x32/devices/kjobviewer.png -share/icons/gnome/32x32/devices/kxkb.png -share/icons/gnome/32x32/devices/media-cdrom.png -share/icons/gnome/32x32/devices/media-flash.png -share/icons/gnome/32x32/devices/media-floppy.png -share/icons/gnome/32x32/devices/media-optical.png -share/icons/gnome/32x32/devices/media-tape.png -share/icons/gnome/32x32/devices/media-zip.png -share/icons/gnome/32x32/devices/modem.png -share/icons/gnome/32x32/devices/mouse.png -share/icons/gnome/32x32/devices/multimedia-player.png -share/icons/gnome/32x32/devices/network-wired.png -share/icons/gnome/32x32/devices/network-wireless.png -share/icons/gnome/32x32/devices/pda.png -share/icons/gnome/32x32/devices/phone.png -share/icons/gnome/32x32/devices/printer-remote.png -share/icons/gnome/32x32/devices/printer.png -share/icons/gnome/32x32/devices/printer1.png -share/icons/gnome/32x32/devices/printmgr.png -share/icons/gnome/32x32/devices/scanner.png -share/icons/gnome/32x32/devices/stock_cell-phone.png -share/icons/gnome/32x32/devices/stock_mic.png -share/icons/gnome/32x32/devices/stock_printers.png -share/icons/gnome/32x32/devices/system-floppy.png -share/icons/gnome/32x32/devices/system.png -share/icons/gnome/32x32/devices/usbpendrive_unmount.png -share/icons/gnome/32x32/devices/video-display.png -share/icons/gnome/32x32/devices/xfce-printer.png -share/icons/gnome/32x32/devices/xfce4-display.png -share/icons/gnome/32x32/devices/xfce4-keyboard.png -share/icons/gnome/32x32/devices/xfce4-mouse.png -share/icons/gnome/32x32/devices/yast_HD.png -share/icons/gnome/32x32/devices/yast_idetude.png -share/icons/gnome/32x32/devices/yast_joystick.png -share/icons/gnome/32x32/devices/yast_mouse.png -share/icons/gnome/32x32/devices/yast_printer.png -share/icons/gnome/32x32/devices/yast_soundcard.png -share/icons/gnome/32x32/emblems/emblem-default.png -share/icons/gnome/32x32/emblems/emblem-documents.png -share/icons/gnome/32x32/emblems/emblem-downloads.png -share/icons/gnome/32x32/emblems/emblem-favorite.png -share/icons/gnome/32x32/emblems/emblem-generic.png -share/icons/gnome/32x32/emblems/emblem-important.png -share/icons/gnome/32x32/emblems/emblem-mail.png -share/icons/gnome/32x32/emblems/emblem-new.png -share/icons/gnome/32x32/emblems/emblem-noread.png -share/icons/gnome/32x32/emblems/emblem-nowrite.png -share/icons/gnome/32x32/emblems/emblem-package.png -share/icons/gnome/32x32/emblems/emblem-photos.png -share/icons/gnome/32x32/emblems/emblem-readonly.png -share/icons/gnome/32x32/emblems/emblem-shared.png -share/icons/gnome/32x32/emblems/emblem-symbolic-link.png -share/icons/gnome/32x32/emblems/emblem-system.png -share/icons/gnome/32x32/emblems/emblem-unreadable.png -share/icons/gnome/32x32/emblems/emblem-urgent.png -share/icons/gnome/32x32/emblems/emblem-web.png -share/icons/gnome/32x32/emblems/stock_mail-priority-high.png -share/icons/gnome/32x32/emotes/face-angel.png -share/icons/gnome/32x32/emotes/face-angry.png -share/icons/gnome/32x32/emotes/face-cool.png -share/icons/gnome/32x32/emotes/face-crying.png -share/icons/gnome/32x32/emotes/face-devilish.png -share/icons/gnome/32x32/emotes/face-embarrassed.png -share/icons/gnome/32x32/emotes/face-kiss.png -share/icons/gnome/32x32/emotes/face-laugh.png -share/icons/gnome/32x32/emotes/face-monkey.png -share/icons/gnome/32x32/emotes/face-plain.png -share/icons/gnome/32x32/emotes/face-raspberry.png -share/icons/gnome/32x32/emotes/face-sad.png -share/icons/gnome/32x32/emotes/face-sick.png -share/icons/gnome/32x32/emotes/face-smile-big.png -share/icons/gnome/32x32/emotes/face-smile.png -share/icons/gnome/32x32/emotes/face-smirk.png -share/icons/gnome/32x32/emotes/face-surprise.png -share/icons/gnome/32x32/emotes/face-tired.png -share/icons/gnome/32x32/emotes/face-uncertain.png -share/icons/gnome/32x32/emotes/face-wink.png -share/icons/gnome/32x32/emotes/face-worried.png -share/icons/gnome/32x32/emotes/stock_smiley-1.png -share/icons/gnome/32x32/emotes/stock_smiley-10.png -share/icons/gnome/32x32/emotes/stock_smiley-11.png -share/icons/gnome/32x32/emotes/stock_smiley-13.png -share/icons/gnome/32x32/emotes/stock_smiley-15.png -share/icons/gnome/32x32/emotes/stock_smiley-18.png -share/icons/gnome/32x32/emotes/stock_smiley-2.png -share/icons/gnome/32x32/emotes/stock_smiley-22.png -share/icons/gnome/32x32/emotes/stock_smiley-3.png -share/icons/gnome/32x32/emotes/stock_smiley-4.png -share/icons/gnome/32x32/emotes/stock_smiley-5.png -share/icons/gnome/32x32/emotes/stock_smiley-6.png -share/icons/gnome/32x32/emotes/stock_smiley-7.png -share/icons/gnome/32x32/emotes/stock_smiley-8.png -share/icons/gnome/32x32/mimetypes/application-certificate.png -share/icons/gnome/32x32/mimetypes/application-x-executable.png -share/icons/gnome/32x32/mimetypes/ascii.png -share/icons/gnome/32x32/mimetypes/audio-x-generic.png -share/icons/gnome/32x32/mimetypes/binary.png -share/icons/gnome/32x32/mimetypes/contents2.png -share/icons/gnome/32x32/mimetypes/deb.png -share/icons/gnome/32x32/mimetypes/document.png -share/icons/gnome/32x32/mimetypes/empty.png -share/icons/gnome/32x32/mimetypes/exec.png -share/icons/gnome/32x32/mimetypes/folder_tar.png -share/icons/gnome/32x32/mimetypes/font-x-generic.png -share/icons/gnome/32x32/mimetypes/font.png -share/icons/gnome/32x32/mimetypes/font_bitmap.png -share/icons/gnome/32x32/mimetypes/font_truetype.png -share/icons/gnome/32x32/mimetypes/font_type1.png -share/icons/gnome/32x32/mimetypes/gnome-fs-executable.png -share/icons/gnome/32x32/mimetypes/gnome-fs-regular.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-magicpoint.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-msword.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-ogg.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-pdf.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-postscript.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-rtf.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.ms-excel.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.stardivision.calc.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-wordperfect.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-7z-compressed.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-abiword.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-applix-spreadsheet.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-applix-word.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-archive.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-arj.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-bzip.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-compress.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-compressed-tar.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-cpio-compressed.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-cpio.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-deb.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-dvi.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-executable.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-font-afm.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-font-bdf.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-font-linux-psf.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-font-pcf.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-font-sunos-news.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-font-ttf.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-gnumeric.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-gzip.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-gzpostscript.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-jar.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-killustrator.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-kpresenter.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-kspread.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-kword.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-lha.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-lhz.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-lzma.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-ms-dos-executable.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-perl.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-php.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-python-bytecode.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-rar.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-rpm.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-scribus.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-shellscript.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-shockwave-flash.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-stuffit.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-tar.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-tarz.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-x-tex.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-xhtml+xml.png -share/icons/gnome/32x32/mimetypes/gnome-mime-application-zip.png -share/icons/gnome/32x32/mimetypes/gnome-mime-audio.png -share/icons/gnome/32x32/mimetypes/gnome-mime-image.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-html.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-vnd.wap.wml.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-x-csh.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-x-python.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-x-sh.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-x-vcalendar.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-x-vcard.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text-x-zsh.png -share/icons/gnome/32x32/mimetypes/gnome-mime-text.png -share/icons/gnome/32x32/mimetypes/gnome-mime-video.png -share/icons/gnome/32x32/mimetypes/gnome-mime-x-font-afm.png -share/icons/gnome/32x32/mimetypes/gnome-package.png -share/icons/gnome/32x32/mimetypes/gtk-file.png -share/icons/gnome/32x32/mimetypes/html.png -share/icons/gnome/32x32/mimetypes/image-x-generic.png -share/icons/gnome/32x32/mimetypes/image.png -share/icons/gnome/32x32/mimetypes/kpresenter_kpr.png -share/icons/gnome/32x32/mimetypes/mime_ascii.png -share/icons/gnome/32x32/mimetypes/misc.png -share/icons/gnome/32x32/mimetypes/package-x-generic.png -share/icons/gnome/32x32/mimetypes/package.png -share/icons/gnome/32x32/mimetypes/package_editors.png -share/icons/gnome/32x32/mimetypes/package_wordprocessing.png -share/icons/gnome/32x32/mimetypes/plan.png -share/icons/gnome/32x32/mimetypes/rpm.png -share/icons/gnome/32x32/mimetypes/shellscript.png -share/icons/gnome/32x32/mimetypes/sound.png -share/icons/gnome/32x32/mimetypes/spreadsheet.png -share/icons/gnome/32x32/mimetypes/stock_addressbook.png -share/icons/gnome/32x32/mimetypes/stock_calendar.png -share/icons/gnome/32x32/mimetypes/stock_certificate.png -share/icons/gnome/32x32/mimetypes/stock_script.png -share/icons/gnome/32x32/mimetypes/tar.png -share/icons/gnome/32x32/mimetypes/template_source.png -share/icons/gnome/32x32/mimetypes/text-html.png -share/icons/gnome/32x32/mimetypes/text-x-generic-template.png -share/icons/gnome/32x32/mimetypes/text-x-generic.png -share/icons/gnome/32x32/mimetypes/text-x-preview.png -share/icons/gnome/32x32/mimetypes/text-x-script.png -share/icons/gnome/32x32/mimetypes/tgz.png -share/icons/gnome/32x32/mimetypes/txt.png -share/icons/gnome/32x32/mimetypes/txt2.png -share/icons/gnome/32x32/mimetypes/unknown.png -share/icons/gnome/32x32/mimetypes/vcalendar.png -share/icons/gnome/32x32/mimetypes/vcard.png -share/icons/gnome/32x32/mimetypes/video-x-generic.png -share/icons/gnome/32x32/mimetypes/video.png -share/icons/gnome/32x32/mimetypes/wordprocessing.png -share/icons/gnome/32x32/mimetypes/www.png -share/icons/gnome/32x32/mimetypes/x-office-address-book.png -share/icons/gnome/32x32/mimetypes/x-office-calendar.png -share/icons/gnome/32x32/mimetypes/x-office-document.png -share/icons/gnome/32x32/mimetypes/x-office-drawing.png -share/icons/gnome/32x32/mimetypes/x-office-presentation.png -share/icons/gnome/32x32/mimetypes/x-office-spreadsheet.png -share/icons/gnome/32x32/mimetypes/zip.png -share/icons/gnome/32x32/places/application-x-gnome-saved-search.png -share/icons/gnome/32x32/places/desktop.png -share/icons/gnome/32x32/places/distributor-logo.png -share/icons/gnome/32x32/places/emptytrash.png -share/icons/gnome/32x32/places/folder-remote.png -share/icons/gnome/32x32/places/folder-saved-search.png -share/icons/gnome/32x32/places/folder.icon -share/icons/gnome/32x32/places/folder.png -share/icons/gnome/32x32/places/folder_home.png -share/icons/gnome/32x32/places/gnome-fs-desktop.png -share/icons/gnome/32x32/places/gnome-fs-directory.icon -share/icons/gnome/32x32/places/gnome-fs-directory.png -share/icons/gnome/32x32/places/gnome-fs-ftp.png -share/icons/gnome/32x32/places/gnome-fs-home.png -share/icons/gnome/32x32/places/gnome-fs-network.png -share/icons/gnome/32x32/places/gnome-fs-nfs.png -share/icons/gnome/32x32/places/gnome-fs-server.png -share/icons/gnome/32x32/places/gnome-fs-share.png -share/icons/gnome/32x32/places/gnome-fs-smb.png -share/icons/gnome/32x32/places/gnome-fs-ssh.png -share/icons/gnome/32x32/places/gnome-fs-trash-empty.png -share/icons/gnome/32x32/places/gnome-main-menu.png -share/icons/gnome/32x32/places/gnome-mime-x-directory-nfs-server.png -share/icons/gnome/32x32/places/gnome-mime-x-directory-smb-server.png -share/icons/gnome/32x32/places/gnome-mime-x-directory-smb-share.png -share/icons/gnome/32x32/places/gnome-mime-x-directory-smb-workgroup.png -share/icons/gnome/32x32/places/gnome-stock-trash.png -share/icons/gnome/32x32/places/gtk-directory.icon -share/icons/gnome/32x32/places/gtk-directory.png -share/icons/gnome/32x32/places/gtk-network.png -share/icons/gnome/32x32/places/inode-directory.icon -share/icons/gnome/32x32/places/inode-directory.png -share/icons/gnome/32x32/places/network-server.png -share/icons/gnome/32x32/places/network-workgroup.png -share/icons/gnome/32x32/places/network.png -share/icons/gnome/32x32/places/network_local.png -share/icons/gnome/32x32/places/novell-button.png -share/icons/gnome/32x32/places/redhat-network-server.png -share/icons/gnome/32x32/places/server.png -share/icons/gnome/32x32/places/start-here.png -share/icons/gnome/32x32/places/stock_folder.icon -share/icons/gnome/32x32/places/stock_folder.png -share/icons/gnome/32x32/places/trashcan_empty.png -share/icons/gnome/32x32/places/user-bookmarks.png -share/icons/gnome/32x32/places/user-desktop.png -share/icons/gnome/32x32/places/user-home.png -share/icons/gnome/32x32/places/user-trash.png -share/icons/gnome/32x32/places/xfce-trash_empty.png -share/icons/gnome/32x32/status/appointment-missed.png -share/icons/gnome/32x32/status/appointment-soon.png -share/icons/gnome/32x32/status/audio-volume-high.png -share/icons/gnome/32x32/status/audio-volume-low.png -share/icons/gnome/32x32/status/audio-volume-medium.png -share/icons/gnome/32x32/status/audio-volume-muted.png -share/icons/gnome/32x32/status/battery-caution.png -share/icons/gnome/32x32/status/battery-low.png -share/icons/gnome/32x32/status/connect_creating.png -share/icons/gnome/32x32/status/connect_established.png -share/icons/gnome/32x32/status/connect_no.png -share/icons/gnome/32x32/status/dialog-error.png -share/icons/gnome/32x32/status/dialog-information.png -share/icons/gnome/32x32/status/dialog-password.png -share/icons/gnome/32x32/status/dialog-question.png -share/icons/gnome/32x32/status/dialog-warning.png -share/icons/gnome/32x32/status/edittrash.png -share/icons/gnome/32x32/status/error.png -share/icons/gnome/32x32/status/folder-drag-accept.png -share/icons/gnome/32x32/status/folder-open.png -share/icons/gnome/32x32/status/folder-visiting.png -share/icons/gnome/32x32/status/folder_open.png -share/icons/gnome/32x32/status/gnome-fs-directory-accept.png -share/icons/gnome/32x32/status/gnome-fs-directory-visiting.png -share/icons/gnome/32x32/status/gnome-fs-loading-icon.png -share/icons/gnome/32x32/status/gnome-fs-trash-full.png -share/icons/gnome/32x32/status/gnome-netstatus-disconn.png -share/icons/gnome/32x32/status/gnome-netstatus-error.png -share/icons/gnome/32x32/status/gnome-netstatus-idle.png -share/icons/gnome/32x32/status/gnome-netstatus-rx.png -share/icons/gnome/32x32/status/gnome-netstatus-tx.png -share/icons/gnome/32x32/status/gnome-netstatus-txrx.png -share/icons/gnome/32x32/status/gnome-stock-trash-full.png -share/icons/gnome/32x32/status/gtk-dialog-authentication.png -share/icons/gnome/32x32/status/gtk-dialog-error.png -share/icons/gnome/32x32/status/gtk-dialog-info.png -share/icons/gnome/32x32/status/gtk-dialog-question.png -share/icons/gnome/32x32/status/gtk-dialog-warning.png -share/icons/gnome/32x32/status/gtk-missing-image.png -share/icons/gnome/32x32/status/image-loading.png -share/icons/gnome/32x32/status/image-missing.png -share/icons/gnome/32x32/status/important.png -share/icons/gnome/32x32/status/info.png -share/icons/gnome/32x32/status/mail-attachment.png -share/icons/gnome/32x32/status/mail-read.png -share/icons/gnome/32x32/status/mail-replied.png -share/icons/gnome/32x32/status/mail-unread.png -share/icons/gnome/32x32/status/media-playlist-repeat.png -share/icons/gnome/32x32/status/media-playlist-shuffle.png -share/icons/gnome/32x32/status/messagebox_critical.png -share/icons/gnome/32x32/status/messagebox_info.png -share/icons/gnome/32x32/status/messagebox_warning.png -share/icons/gnome/32x32/status/network-error.png -share/icons/gnome/32x32/status/network-idle.png -share/icons/gnome/32x32/status/network-offline.png -share/icons/gnome/32x32/status/network-receive.png -share/icons/gnome/32x32/status/network-transmit-receive.png -share/icons/gnome/32x32/status/network-transmit.png -share/icons/gnome/32x32/status/nm-adhoc.png -share/icons/gnome/32x32/status/nm-device-wired.png -share/icons/gnome/32x32/status/nm-device-wireless.png -share/icons/gnome/32x32/status/nm-no-connection.png -share/icons/gnome/32x32/status/printer-error.png -share/icons/gnome/32x32/status/printer-printing.png -share/icons/gnome/32x32/status/security-high.png -share/icons/gnome/32x32/status/security-low.png -share/icons/gnome/32x32/status/security-medium.png -share/icons/gnome/32x32/status/software-update-available.png -share/icons/gnome/32x32/status/software-update-urgent.png -share/icons/gnome/32x32/status/stock_appointment-reminder-excl.png -share/icons/gnome/32x32/status/stock_appointment-reminder.png -share/icons/gnome/32x32/status/stock_attach.png -share/icons/gnome/32x32/status/stock_dialog-error.png -share/icons/gnome/32x32/status/stock_dialog-info.png -share/icons/gnome/32x32/status/stock_dialog-question.png -share/icons/gnome/32x32/status/stock_dialog-warning.png -share/icons/gnome/32x32/status/stock_lock-broken.png -share/icons/gnome/32x32/status/stock_lock-ok.png -share/icons/gnome/32x32/status/stock_lock-open.png -share/icons/gnome/32x32/status/stock_lock.png -share/icons/gnome/32x32/status/stock_mail-open.png -share/icons/gnome/32x32/status/stock_mail-replied.png -share/icons/gnome/32x32/status/stock_mail-unread.png -share/icons/gnome/32x32/status/stock_open.png -share/icons/gnome/32x32/status/stock_repeat.png -share/icons/gnome/32x32/status/stock_shuffle.png -share/icons/gnome/32x32/status/stock_trash_full.png -share/icons/gnome/32x32/status/stock_volume-0.png -share/icons/gnome/32x32/status/stock_volume-max.png -share/icons/gnome/32x32/status/stock_volume-med.png -share/icons/gnome/32x32/status/stock_volume-min.png -share/icons/gnome/32x32/status/stock_volume-mute.png -share/icons/gnome/32x32/status/stock_volume.png -share/icons/gnome/32x32/status/stock_weather-cloudy.png -share/icons/gnome/32x32/status/stock_weather-few-clouds.png -share/icons/gnome/32x32/status/stock_weather-fog.png -share/icons/gnome/32x32/status/stock_weather-night-clear.png -share/icons/gnome/32x32/status/stock_weather-night-few-clouds.png -share/icons/gnome/32x32/status/stock_weather-showers.png -share/icons/gnome/32x32/status/stock_weather-snow.png -share/icons/gnome/32x32/status/stock_weather-storm.png -share/icons/gnome/32x32/status/stock_weather-sunny.png -share/icons/gnome/32x32/status/sunny.png -share/icons/gnome/32x32/status/task-due.png -share/icons/gnome/32x32/status/task-past-due.png -share/icons/gnome/32x32/status/trashcan_full.png -share/icons/gnome/32x32/status/user-trash-full.png -share/icons/gnome/32x32/status/weather-clear-night.png -share/icons/gnome/32x32/status/weather-clear.png -share/icons/gnome/32x32/status/weather-few-clouds-night.png -share/icons/gnome/32x32/status/weather-few-clouds.png -share/icons/gnome/32x32/status/weather-fog.png -share/icons/gnome/32x32/status/weather-overcast.png -share/icons/gnome/32x32/status/weather-severe-alert.png -share/icons/gnome/32x32/status/weather-showers-scattered.png -share/icons/gnome/32x32/status/weather-showers.png -share/icons/gnome/32x32/status/weather-snow.png -share/icons/gnome/32x32/status/weather-storm.png -share/icons/gnome/32x32/status/xfce-trash_full.png -share/icons/gnome/32x32/stock/generic/stock_person.png -share/icons/gnome/48x48/actions/mail-mark-junk.png -share/icons/gnome/48x48/actions/mail-mark-not-junk.png -share/icons/gnome/48x48/actions/mail_spam.png -share/icons/gnome/48x48/actions/stock_not-spam.png -share/icons/gnome/48x48/actions/stock_spam.png -share/icons/gnome/48x48/animations/gnome-spinner.png -share/icons/gnome/48x48/animations/process-working.png -share/icons/gnome/48x48/apps/applets-screenshooter.png -share/icons/gnome/48x48/apps/palm-pilot-sync.png -share/icons/gnome/48x48/apps/palm-pilot.png -share/icons/gnome/48x48/apps/visor.png -share/icons/gnome/48x48/devices/gnome-dev-jazdisk.png -share/icons/gnome/48x48/devices/media-jaz.png -share/icons/gnome/48x48/filesystems/gnome-fs-bookmark-missing.png -share/icons/gnome/48x48/filesystems/gnome-fs-bookmark.png -share/icons/gnome/48x48/stock/code/stock_script.png -share/icons/gnome/48x48/stock/data/stock_lock-broken.png -share/icons/gnome/48x48/stock/data/stock_lock-ok.png -share/icons/gnome/48x48/stock/data/stock_lock-open.png -share/icons/gnome/48x48/stock/data/stock_lock.png -share/icons/gnome/48x48/stock/data/stock_signature-bad.png -share/icons/gnome/48x48/stock/data/stock_signature-ok.png -share/icons/gnome/48x48/stock/data/stock_signature.png -share/icons/gnome/48x48/stock/document/stock_certificate.png -share/icons/gnome/48x48/stock/document/stock_new-drawing.png -share/icons/gnome/48x48/stock/document/stock_new-formula.png -share/icons/gnome/48x48/stock/document/stock_new-html.png -share/icons/gnome/48x48/stock/document/stock_new-labels.png -share/icons/gnome/48x48/stock/document/stock_new-master-document.png -share/icons/gnome/48x48/stock/document/stock_new-presentation.png -share/icons/gnome/48x48/stock/document/stock_new-spreadsheet.png -share/icons/gnome/48x48/stock/document/stock_new-template.png -share/icons/gnome/48x48/stock/document/stock_new-text.png -share/icons/gnome/48x48/stock/document/stock_todo.png -share/icons/gnome/48x48/stock/generic/stock_alarm.png -share/icons/gnome/48x48/stock/generic/stock_autocompletion.png -share/icons/gnome/48x48/stock/generic/stock_autopilot.png -share/icons/gnome/48x48/stock/generic/stock_briefcase.png -share/icons/gnome/48x48/stock/generic/stock_calendar-and-tasks.png -share/icons/gnome/48x48/stock/generic/stock_creditcard.png -share/icons/gnome/48x48/stock/generic/stock_edit.png -share/icons/gnome/48x48/stock/generic/stock_example.png -share/icons/gnome/48x48/stock/generic/stock_id.png -share/icons/gnome/48x48/stock/generic/stock_init.png -share/icons/gnome/48x48/stock/generic/stock_keyring.png -share/icons/gnome/48x48/stock/generic/stock_landline-phone.png -share/icons/gnome/48x48/stock/generic/stock_new-24h-appointment.png -share/icons/gnome/48x48/stock/generic/stock_new-meeting.png -share/icons/gnome/48x48/stock/generic/stock_news.png -share/icons/gnome/48x48/stock/generic/stock_notebook.png -share/icons/gnome/48x48/stock/generic/stock_notes.png -share/icons/gnome/48x48/stock/generic/stock_people.png -share/icons/gnome/48x48/stock/generic/stock_summary.png -share/icons/gnome/48x48/stock/generic/stock_timezone.png -share/icons/gnome/48x48/stock/generic/stock_unknown.png -share/icons/gnome/48x48/stock/generic/stock_web-calendar.png -share/icons/gnome/48x48/stock/io/stock_network-printer.png -share/icons/gnome/48x48/stock/io/stock_print-driver.png -share/icons/gnome/48x48/stock/io/stock_print-duplex-no-tumble.png -share/icons/gnome/48x48/stock/io/stock_print-duplex-tumble.png -share/icons/gnome/48x48/stock/io/stock_print-duplex.png -share/icons/gnome/48x48/stock/io/stock_print-non-duplex.png -share/icons/gnome/48x48/stock/io/stock_print-preview-print.png -share/icons/gnome/48x48/stock/io/stock_print-preview.png -share/icons/gnome/48x48/stock/io/stock_print-setup.png -share/icons/gnome/48x48/stock/io/stock_print.png -share/icons/gnome/48x48/stock/io/stock_printers.png -share/icons/gnome/48x48/stock/net/stock_addressbook.png -share/icons/gnome/48x48/stock/net/stock_channel.png -share/icons/gnome/48x48/stock/net/stock_contact.png -share/icons/gnome/48x48/stock/net/stock_directory-server.png -share/icons/gnome/48x48/stock/net/stock_exchange-connector.png -share/icons/gnome/48x48/stock/net/stock_groupwise-connector.png -share/icons/gnome/48x48/stock/net/stock_inbox.png -share/icons/gnome/48x48/stock/net/stock_mail-compose.png -share/icons/gnome/48x48/stock/net/stock_mail-druid-account.png -share/icons/gnome/48x48/stock/net/stock_mail-druid.png -share/icons/gnome/48x48/stock/net/stock_mail-flag-for-followup-done.png -share/icons/gnome/48x48/stock/net/stock_mail-flag-for-followup.png -share/icons/gnome/48x48/stock/net/stock_mail-import.png -share/icons/gnome/48x48/stock/net/stock_mail-open.png -share/icons/gnome/48x48/stock/net/stock_mail-receive.png -share/icons/gnome/48x48/stock/net/stock_mail-replied.png -share/icons/gnome/48x48/stock/net/stock_mail-send-receive.png -share/icons/gnome/48x48/stock/net/stock_mail-send.png -share/icons/gnome/48x48/stock/net/stock_mail.png -share/icons/gnome/48x48/stock/net/stock_outbox.png -share/icons/gnome/48x48/stock/net/stock_post-message.png -share/icons/gnome/48x48/stock/net/stock_proxy.png -share/icons/gnome/48x48/stock/net/stock_sent-mail.png -share/icons/gnome/48x48/stock/net/stock_spam.png -share/icons/gnome/8x8/emblems/emblem-default.png -share/icons/gnome/8x8/emblems/emblem-new.png -share/icons/gnome/8x8/emblems/emblem-noread.png -share/icons/gnome/8x8/emblems/emblem-nowrite.png -share/icons/gnome/8x8/emblems/emblem-readonly.png -share/icons/gnome/8x8/emblems/emblem-symbolic-link.png -share/icons/gnome/8x8/emblems/emblem-unreadable.png -share/icons/gnome/index.theme -share/icons/gnome/scalable/actions/add.svg -share/icons/gnome/scalable/actions/address-book-new.svg -share/icons/gnome/scalable/actions/application-exit.svg -share/icons/gnome/scalable/actions/appointment-new.svg -share/icons/gnome/scalable/actions/appointment.svg -share/icons/gnome/scalable/actions/back.svg -share/icons/gnome/scalable/actions/bookmark-new.svg -share/icons/gnome/scalable/actions/bookmark_add.svg -share/icons/gnome/scalable/actions/bookmarks_list_add.svg -share/icons/gnome/scalable/actions/bottom.svg -share/icons/gnome/scalable/actions/call-start.svg -share/icons/gnome/scalable/actions/call-stop.svg -share/icons/gnome/scalable/actions/centrejust.svg -share/icons/gnome/scalable/actions/contact-new.svg -share/icons/gnome/scalable/actions/document-new.svg -share/icons/gnome/scalable/actions/document-open-recent.svg -share/icons/gnome/scalable/actions/document-open.svg -share/icons/gnome/scalable/actions/document-page-setup.svg -share/icons/gnome/scalable/actions/document-print-preview.svg -share/icons/gnome/scalable/actions/document-print.svg -share/icons/gnome/scalable/actions/document-properties.svg -share/icons/gnome/scalable/actions/document-revert.svg -share/icons/gnome/scalable/actions/document-save-as.svg -share/icons/gnome/scalable/actions/document-save.svg -share/icons/gnome/scalable/actions/document-send.svg -share/icons/gnome/scalable/actions/down.svg -share/icons/gnome/scalable/actions/edit-clear.svg -share/icons/gnome/scalable/actions/edit-copy.svg -share/icons/gnome/scalable/actions/edit-cut.svg -share/icons/gnome/scalable/actions/edit-delete.svg -share/icons/gnome/scalable/actions/edit-find-replace.svg -share/icons/gnome/scalable/actions/edit-find.svg -share/icons/gnome/scalable/actions/edit-paste.svg -share/icons/gnome/scalable/actions/edit-redo.svg -share/icons/gnome/scalable/actions/edit-select-all.svg -share/icons/gnome/scalable/actions/edit-undo.svg -share/icons/gnome/scalable/actions/editclear.svg -share/icons/gnome/scalable/actions/editcopy.svg -share/icons/gnome/scalable/actions/editcut.svg -share/icons/gnome/scalable/actions/editdelete.svg -share/icons/gnome/scalable/actions/editpaste.svg -share/icons/gnome/scalable/actions/exit.svg -share/icons/gnome/scalable/actions/filefind.svg -share/icons/gnome/scalable/actions/filenew.svg -share/icons/gnome/scalable/actions/fileopen.svg -share/icons/gnome/scalable/actions/fileprint.svg -share/icons/gnome/scalable/actions/filequickprint.svg -share/icons/gnome/scalable/actions/filesave.svg -share/icons/gnome/scalable/actions/filesaveas.svg -share/icons/gnome/scalable/actions/find.svg -share/icons/gnome/scalable/actions/finish.svg -share/icons/gnome/scalable/actions/folder-new.svg -share/icons/gnome/scalable/actions/folder_new.svg -share/icons/gnome/scalable/actions/format-indent-less.svg -share/icons/gnome/scalable/actions/format-indent-more.svg -share/icons/gnome/scalable/actions/format-justify-center.svg -share/icons/gnome/scalable/actions/format-justify-fill.svg -share/icons/gnome/scalable/actions/format-justify-left.svg -share/icons/gnome/scalable/actions/format-justify-right.svg -share/icons/gnome/scalable/actions/format-text-bold.svg -share/icons/gnome/scalable/actions/format-text-direction-ltr.svg -share/icons/gnome/scalable/actions/format-text-direction-rtl.svg -share/icons/gnome/scalable/actions/format-text-italic.svg -share/icons/gnome/scalable/actions/format-text-strikethrough.svg -share/icons/gnome/scalable/actions/format-text-underline.svg -share/icons/gnome/scalable/actions/forward.svg -share/icons/gnome/scalable/actions/gnome-lockscreen.svg -share/icons/gnome/scalable/actions/gnome-logout.svg -share/icons/gnome/scalable/actions/gnome-run.svg -share/icons/gnome/scalable/actions/gnome-searchtool.svg -share/icons/gnome/scalable/actions/gnome-shutdown.svg -share/icons/gnome/scalable/actions/gnome-stock-mail-fwd.svg -share/icons/gnome/scalable/actions/gnome-stock-mail-new.svg -share/icons/gnome/scalable/actions/gnome-stock-mail-rpl.svg -share/icons/gnome/scalable/actions/gnome-stock-mail-snd.svg -share/icons/gnome/scalable/actions/gnome-stock-text-indent.svg -share/icons/gnome/scalable/actions/gnome-stock-text-unindent.svg -share/icons/gnome/scalable/actions/go-bottom.svg -share/icons/gnome/scalable/actions/go-down.svg -share/icons/gnome/scalable/actions/go-first.svg -share/icons/gnome/scalable/actions/go-home.svg -share/icons/gnome/scalable/actions/go-jump.svg -share/icons/gnome/scalable/actions/go-last.svg -share/icons/gnome/scalable/actions/go-next.svg -share/icons/gnome/scalable/actions/go-previous.svg -share/icons/gnome/scalable/actions/go-top.svg -share/icons/gnome/scalable/actions/go-up.svg -share/icons/gnome/scalable/actions/gohome.svg -share/icons/gnome/scalable/actions/gtk-about.svg -share/icons/gnome/scalable/actions/gtk-add.svg -share/icons/gnome/scalable/actions/gtk-bold.svg -share/icons/gnome/scalable/actions/gtk-cancel.svg -share/icons/gnome/scalable/actions/gtk-clear.svg -share/icons/gnome/scalable/actions/gtk-close.svg -share/icons/gnome/scalable/actions/gtk-copy.svg -share/icons/gnome/scalable/actions/gtk-cut.svg -share/icons/gnome/scalable/actions/gtk-delete.svg -share/icons/gnome/scalable/actions/gtk-execute.svg -share/icons/gnome/scalable/actions/gtk-find-and-replace.svg -share/icons/gnome/scalable/actions/gtk-find.svg -share/icons/gnome/scalable/actions/gtk-fullscreen.svg -share/icons/gnome/scalable/actions/gtk-go-back-ltr.svg -share/icons/gnome/scalable/actions/gtk-go-back-rtl.svg -share/icons/gnome/scalable/actions/gtk-go-down.svg -share/icons/gnome/scalable/actions/gtk-go-forward-ltr.svg -share/icons/gnome/scalable/actions/gtk-go-forward-rtl.svg -share/icons/gnome/scalable/actions/gtk-go-up.svg -share/icons/gnome/scalable/actions/gtk-goto-bottom.svg -share/icons/gnome/scalable/actions/gtk-goto-first-ltr.svg -share/icons/gnome/scalable/actions/gtk-goto-first-rtl.svg -share/icons/gnome/scalable/actions/gtk-goto-last-ltr.svg -share/icons/gnome/scalable/actions/gtk-goto-last-rtl.svg -share/icons/gnome/scalable/actions/gtk-goto-top.svg -share/icons/gnome/scalable/actions/gtk-home.svg -share/icons/gnome/scalable/actions/gtk-indent-ltr.svg -share/icons/gnome/scalable/actions/gtk-indent-rtl.svg -share/icons/gnome/scalable/actions/gtk-italic.svg -share/icons/gnome/scalable/actions/gtk-jump-to-ltr.svg -share/icons/gnome/scalable/actions/gtk-jump-to-rtl.svg -share/icons/gnome/scalable/actions/gtk-justify-center.svg -share/icons/gnome/scalable/actions/gtk-justify-fill.svg -share/icons/gnome/scalable/actions/gtk-justify-left.svg -share/icons/gnome/scalable/actions/gtk-justify-right.svg -share/icons/gnome/scalable/actions/gtk-leave-fullscreen.svg -share/icons/gnome/scalable/actions/gtk-media-forward-ltr.svg -share/icons/gnome/scalable/actions/gtk-media-forward-rtl.svg -share/icons/gnome/scalable/actions/gtk-media-next-ltr.svg -share/icons/gnome/scalable/actions/gtk-media-next-rtl.svg -share/icons/gnome/scalable/actions/gtk-media-pause.svg -share/icons/gnome/scalable/actions/gtk-media-play-ltr.svg -share/icons/gnome/scalable/actions/gtk-media-previous-ltr.svg -share/icons/gnome/scalable/actions/gtk-media-previous-rtl.svg -share/icons/gnome/scalable/actions/gtk-media-record.svg -share/icons/gnome/scalable/actions/gtk-media-rewind-ltr.svg -share/icons/gnome/scalable/actions/gtk-media-rewind-rtl.svg -share/icons/gnome/scalable/actions/gtk-media-stop.svg -share/icons/gnome/scalable/actions/gtk-new.svg -share/icons/gnome/scalable/actions/gtk-open.svg -share/icons/gnome/scalable/actions/gtk-paste.svg -share/icons/gnome/scalable/actions/gtk-print-preview.svg -share/icons/gnome/scalable/actions/gtk-print.svg -share/icons/gnome/scalable/actions/gtk-properties.svg -share/icons/gnome/scalable/actions/gtk-quit.svg -share/icons/gnome/scalable/actions/gtk-redo-ltr.svg -share/icons/gnome/scalable/actions/gtk-refresh.svg -share/icons/gnome/scalable/actions/gtk-remove.svg -share/icons/gnome/scalable/actions/gtk-revert-to-saved-ltr.svg -share/icons/gnome/scalable/actions/gtk-revert-to-saved-rtl.svg -share/icons/gnome/scalable/actions/gtk-save-as.svg -share/icons/gnome/scalable/actions/gtk-save.svg -share/icons/gnome/scalable/actions/gtk-select-all.svg -share/icons/gnome/scalable/actions/gtk-sort-ascending.svg -share/icons/gnome/scalable/actions/gtk-sort-descending.svg -share/icons/gnome/scalable/actions/gtk-spell-check.svg -share/icons/gnome/scalable/actions/gtk-stop.svg -share/icons/gnome/scalable/actions/gtk-strikethrough.svg -share/icons/gnome/scalable/actions/gtk-underline.svg -share/icons/gnome/scalable/actions/gtk-undo-ltr.svg -share/icons/gnome/scalable/actions/gtk-unindent-ltr.svg -share/icons/gnome/scalable/actions/gtk-unindent-rtl.svg -share/icons/gnome/scalable/actions/gtk-zoom-100.svg -share/icons/gnome/scalable/actions/gtk-zoom-fit.svg -share/icons/gnome/scalable/actions/gtk-zoom-in.svg -share/icons/gnome/scalable/actions/gtk-zoom-out.svg -share/icons/gnome/scalable/actions/help-about.svg -share/icons/gnome/scalable/actions/help-contents.svg -share/icons/gnome/scalable/actions/help-faq.svg -share/icons/gnome/scalable/actions/insert-image.svg -share/icons/gnome/scalable/actions/insert-link.svg -share/icons/gnome/scalable/actions/insert-object.svg -share/icons/gnome/scalable/actions/insert-text.svg -share/icons/gnome/scalable/actions/kfind.svg -share/icons/gnome/scalable/actions/kfm_home.svg -share/icons/gnome/scalable/actions/leftjust.svg -share/icons/gnome/scalable/actions/list-add.svg -share/icons/gnome/scalable/actions/list-remove.svg -share/icons/gnome/scalable/actions/lock.svg -share/icons/gnome/scalable/actions/mail-forward.svg -share/icons/gnome/scalable/actions/mail-mark-important.svg -share/icons/gnome/scalable/actions/mail-mark-read.svg -share/icons/gnome/scalable/actions/mail-mark-unread.svg -share/icons/gnome/scalable/actions/mail-message-new.svg -share/icons/gnome/scalable/actions/mail-reply-all.svg -share/icons/gnome/scalable/actions/mail-reply-sender.svg -share/icons/gnome/scalable/actions/mail-send-receive.svg -share/icons/gnome/scalable/actions/mail-send.svg -share/icons/gnome/scalable/actions/mail_forward.svg -share/icons/gnome/scalable/actions/mail_new.svg -share/icons/gnome/scalable/actions/mail_reply.svg -share/icons/gnome/scalable/actions/mail_replyall.svg -share/icons/gnome/scalable/actions/mail_send.svg -share/icons/gnome/scalable/actions/media-eject.svg -share/icons/gnome/scalable/actions/media-playback-pause.svg -share/icons/gnome/scalable/actions/media-playback-start.svg -share/icons/gnome/scalable/actions/media-playback-stop.svg -share/icons/gnome/scalable/actions/media-record.svg -share/icons/gnome/scalable/actions/media-seek-backward.svg -share/icons/gnome/scalable/actions/media-seek-forward.svg -share/icons/gnome/scalable/actions/media-skip-backward.svg -share/icons/gnome/scalable/actions/media-skip-forward.svg -share/icons/gnome/scalable/actions/next.svg -share/icons/gnome/scalable/actions/object-flip-horizontal.svg -share/icons/gnome/scalable/actions/object-flip-vertical.svg -share/icons/gnome/scalable/actions/object-rotate-left.svg -share/icons/gnome/scalable/actions/object-rotate-right.svg -share/icons/gnome/scalable/actions/player_eject.svg -share/icons/gnome/scalable/actions/player_end.svg -share/icons/gnome/scalable/actions/player_fwd.svg -share/icons/gnome/scalable/actions/player_pause.svg -share/icons/gnome/scalable/actions/player_play.svg -share/icons/gnome/scalable/actions/player_record.svg -share/icons/gnome/scalable/actions/player_rew.svg -share/icons/gnome/scalable/actions/player_start.svg -share/icons/gnome/scalable/actions/player_stop.svg -share/icons/gnome/scalable/actions/previous.svg -share/icons/gnome/scalable/actions/process-stop.svg -share/icons/gnome/scalable/actions/redhat-home.svg -share/icons/gnome/scalable/actions/redo.svg -share/icons/gnome/scalable/actions/reload.svg -share/icons/gnome/scalable/actions/reload3.svg -share/icons/gnome/scalable/actions/reload_all_tabs.svg -share/icons/gnome/scalable/actions/reload_page.svg -share/icons/gnome/scalable/actions/remove.svg -share/icons/gnome/scalable/actions/revert.svg -share/icons/gnome/scalable/actions/rightjust.svg -share/icons/gnome/scalable/actions/search.svg -share/icons/gnome/scalable/actions/start.svg -share/icons/gnome/scalable/actions/stock_about.svg -share/icons/gnome/scalable/actions/stock_add-bookmark.svg -share/icons/gnome/scalable/actions/stock_bottom.svg -share/icons/gnome/scalable/actions/stock_close.svg -share/icons/gnome/scalable/actions/stock_copy.svg -share/icons/gnome/scalable/actions/stock_cut.svg -share/icons/gnome/scalable/actions/stock_delete.svg -share/icons/gnome/scalable/actions/stock_down.svg -share/icons/gnome/scalable/actions/stock_file-properites.svg -share/icons/gnome/scalable/actions/stock_first.svg -share/icons/gnome/scalable/actions/stock_fullscreen.svg -share/icons/gnome/scalable/actions/stock_help-add-bookmark.svg -share/icons/gnome/scalable/actions/stock_home.svg -share/icons/gnome/scalable/actions/stock_last.svg -share/icons/gnome/scalable/actions/stock_leave-fullscreen.svg -share/icons/gnome/scalable/actions/stock_left.svg -share/icons/gnome/scalable/actions/stock_mail-compose.svg -share/icons/gnome/scalable/actions/stock_mail-forward.svg -share/icons/gnome/scalable/actions/stock_mail-reply-to-all.svg -share/icons/gnome/scalable/actions/stock_mail-reply.svg -share/icons/gnome/scalable/actions/stock_mail-send-receive.svg -share/icons/gnome/scalable/actions/stock_mail-send.svg -share/icons/gnome/scalable/actions/stock_media-fwd.svg -share/icons/gnome/scalable/actions/stock_media-next.svg -share/icons/gnome/scalable/actions/stock_media-pause.svg -share/icons/gnome/scalable/actions/stock_media-play.svg -share/icons/gnome/scalable/actions/stock_media-prev.svg -share/icons/gnome/scalable/actions/stock_media-rec.svg -share/icons/gnome/scalable/actions/stock_media-rew.svg -share/icons/gnome/scalable/actions/stock_media-stop.svg -share/icons/gnome/scalable/actions/stock_new-address-book.svg -share/icons/gnome/scalable/actions/stock_new-appointment.svg -share/icons/gnome/scalable/actions/stock_new-bcard.svg -share/icons/gnome/scalable/actions/stock_new-dir.svg -share/icons/gnome/scalable/actions/stock_new-text.svg -share/icons/gnome/scalable/actions/stock_new-window.svg -share/icons/gnome/scalable/actions/stock_paste.svg -share/icons/gnome/scalable/actions/stock_print-preview.svg -share/icons/gnome/scalable/actions/stock_print-setup.svg -share/icons/gnome/scalable/actions/stock_print.svg -share/icons/gnome/scalable/actions/stock_properties.svg -share/icons/gnome/scalable/actions/stock_redo.svg -share/icons/gnome/scalable/actions/stock_refresh.svg -share/icons/gnome/scalable/actions/stock_right.svg -share/icons/gnome/scalable/actions/stock_save-as.svg -share/icons/gnome/scalable/actions/stock_save.svg -share/icons/gnome/scalable/actions/stock_search-and-replace.svg -share/icons/gnome/scalable/actions/stock_search.svg -share/icons/gnome/scalable/actions/stock_select-all.svg -share/icons/gnome/scalable/actions/stock_spellcheck.svg -share/icons/gnome/scalable/actions/stock_stop.svg -share/icons/gnome/scalable/actions/stock_text-strikethrough.svg -share/icons/gnome/scalable/actions/stock_text_bold.svg -share/icons/gnome/scalable/actions/stock_text_center.svg -share/icons/gnome/scalable/actions/stock_text_indent.svg -share/icons/gnome/scalable/actions/stock_text_italic.svg -share/icons/gnome/scalable/actions/stock_text_justify.svg -share/icons/gnome/scalable/actions/stock_text_left.svg -share/icons/gnome/scalable/actions/stock_text_right.svg -share/icons/gnome/scalable/actions/stock_text_underlined.svg -share/icons/gnome/scalable/actions/stock_text_unindent.svg -share/icons/gnome/scalable/actions/stock_top.svg -share/icons/gnome/scalable/actions/stock_undo.svg -share/icons/gnome/scalable/actions/stock_up.svg -share/icons/gnome/scalable/actions/stock_zoom-1.svg -share/icons/gnome/scalable/actions/stock_zoom-in.svg -share/icons/gnome/scalable/actions/stock_zoom-out.svg -share/icons/gnome/scalable/actions/stock_zoom-page.svg -share/icons/gnome/scalable/actions/stop.svg -share/icons/gnome/scalable/actions/system-lock-screen.svg -share/icons/gnome/scalable/actions/system-log-out.svg -share/icons/gnome/scalable/actions/system-run.svg -share/icons/gnome/scalable/actions/system-search.svg -share/icons/gnome/scalable/actions/system-shutdown.svg -share/icons/gnome/scalable/actions/text_bold.svg -share/icons/gnome/scalable/actions/text_italic.svg -share/icons/gnome/scalable/actions/text_strike.svg -share/icons/gnome/scalable/actions/text_under.svg -share/icons/gnome/scalable/actions/tools-check-spelling.svg -share/icons/gnome/scalable/actions/top.svg -share/icons/gnome/scalable/actions/undo.svg -share/icons/gnome/scalable/actions/up.svg -share/icons/gnome/scalable/actions/view-fullscreen.svg -share/icons/gnome/scalable/actions/view-refresh.svg -share/icons/gnome/scalable/actions/view-restore.svg -share/icons/gnome/scalable/actions/view-sort-ascending.svg -share/icons/gnome/scalable/actions/view-sort-descending.svg -share/icons/gnome/scalable/actions/viewmag+.svg -share/icons/gnome/scalable/actions/viewmag-.svg -share/icons/gnome/scalable/actions/viewmag1.svg -share/icons/gnome/scalable/actions/viewmagfit.svg -share/icons/gnome/scalable/actions/window-close.svg -share/icons/gnome/scalable/actions/window-new.svg -share/icons/gnome/scalable/actions/window_fullscreen.svg -share/icons/gnome/scalable/actions/window_new.svg -share/icons/gnome/scalable/actions/window_nofullscreen.svg -share/icons/gnome/scalable/actions/xfce-system-exit.svg -share/icons/gnome/scalable/actions/xfce-system-lock.svg -share/icons/gnome/scalable/actions/zoom-best-fit.svg -share/icons/gnome/scalable/actions/zoom-fit-best.svg -share/icons/gnome/scalable/actions/zoom-in.svg -share/icons/gnome/scalable/actions/zoom-original.svg -share/icons/gnome/scalable/actions/zoom-out.svg -share/icons/gnome/scalable/apps/access.svg -share/icons/gnome/scalable/apps/accessibility-directory.svg -share/icons/gnome/scalable/apps/accessories-calculator.svg -share/icons/gnome/scalable/apps/accessories-character-map.svg -share/icons/gnome/scalable/apps/accessories-dictionary.svg -share/icons/gnome/scalable/apps/accessories-text-editor.svg -share/icons/gnome/scalable/apps/arts.svg -share/icons/gnome/scalable/apps/background.svg -share/icons/gnome/scalable/apps/calc.svg -share/icons/gnome/scalable/apps/config-language.svg -share/icons/gnome/scalable/apps/config-users.svg -share/icons/gnome/scalable/apps/file-manager.svg -share/icons/gnome/scalable/apps/fonts.svg -share/icons/gnome/scalable/apps/gnome-calculator.svg -share/icons/gnome/scalable/apps/gnome-character-map.svg -share/icons/gnome/scalable/apps/gnome-help.svg -share/icons/gnome/scalable/apps/gnome-mixer.svg -share/icons/gnome/scalable/apps/gnome-monitor.svg -share/icons/gnome/scalable/apps/gnome-remote-desktop.svg -share/icons/gnome/scalable/apps/gnome-settings-accessibility-technologies.svg -share/icons/gnome/scalable/apps/gnome-settings-background.svg -share/icons/gnome/scalable/apps/gnome-settings-font.svg -share/icons/gnome/scalable/apps/gnome-settings-keybindings.svg -share/icons/gnome/scalable/apps/gnome-settings-theme.svg -share/icons/gnome/scalable/apps/gnome-terminal.svg -share/icons/gnome/scalable/apps/gnome-window-manager.svg -share/icons/gnome/scalable/apps/gtk-help.svg -share/icons/gnome/scalable/apps/gucharmap.svg -share/icons/gnome/scalable/apps/help-browser.svg -share/icons/gnome/scalable/apps/help.svg -share/icons/gnome/scalable/apps/im-aim.svg -share/icons/gnome/scalable/apps/im-icq.svg -share/icons/gnome/scalable/apps/im-jabber.svg -share/icons/gnome/scalable/apps/im-msn.svg -share/icons/gnome/scalable/apps/im-nov.svg -share/icons/gnome/scalable/apps/im-yahoo.svg -share/icons/gnome/scalable/apps/kcalc.svg -share/icons/gnome/scalable/apps/kcharselect.svg -share/icons/gnome/scalable/apps/kcmkwm.svg -share/icons/gnome/scalable/apps/kcmsound.svg -share/icons/gnome/scalable/apps/kedit.svg -share/icons/gnome/scalable/apps/key_bindings.svg -share/icons/gnome/scalable/apps/kfm.svg -share/icons/gnome/scalable/apps/khelpcenter.svg -share/icons/gnome/scalable/apps/konsole.svg -share/icons/gnome/scalable/apps/krfb.svg -share/icons/gnome/scalable/apps/kscreensaver.svg -share/icons/gnome/scalable/apps/ksysguard.svg -share/icons/gnome/scalable/apps/kuser.svg -share/icons/gnome/scalable/apps/kwin.svg -share/icons/gnome/scalable/apps/locale.svg -share/icons/gnome/scalable/apps/logviewer.svg -share/icons/gnome/scalable/apps/multimedia-volume-control.svg -share/icons/gnome/scalable/apps/multimedia.svg -share/icons/gnome/scalable/apps/openterm.svg -share/icons/gnome/scalable/apps/preferences-desktop-accessibility.svg -share/icons/gnome/scalable/apps/preferences-desktop-font.svg -share/icons/gnome/scalable/apps/preferences-desktop-keyboard-shortcuts.svg -share/icons/gnome/scalable/apps/preferences-desktop-keyboard.svg -share/icons/gnome/scalable/apps/preferences-desktop-locale.svg -share/icons/gnome/scalable/apps/preferences-desktop-remote-desktop.svg -share/icons/gnome/scalable/apps/preferences-desktop-screensaver.svg -share/icons/gnome/scalable/apps/preferences-desktop-theme.svg -share/icons/gnome/scalable/apps/preferences-desktop-wallpaper.svg -share/icons/gnome/scalable/apps/preferences-system-windows.svg -share/icons/gnome/scalable/apps/redhat-filemanager.svg -share/icons/gnome/scalable/apps/screensaver.svg -share/icons/gnome/scalable/apps/stock_help.svg -share/icons/gnome/scalable/apps/style.svg -share/icons/gnome/scalable/apps/susehelpcenter.svg -share/icons/gnome/scalable/apps/system-config-users.svg -share/icons/gnome/scalable/apps/system-file-manager.svg -share/icons/gnome/scalable/apps/system-software-install.svg -share/icons/gnome/scalable/apps/system-software-update.svg -share/icons/gnome/scalable/apps/system-users.svg -share/icons/gnome/scalable/apps/terminal.svg -share/icons/gnome/scalable/apps/text-editor.svg -share/icons/gnome/scalable/apps/update-manager.svg -share/icons/gnome/scalable/apps/user-info.svg -share/icons/gnome/scalable/apps/utilities-system-monitor.svg -share/icons/gnome/scalable/apps/utilities-terminal.svg -share/icons/gnome/scalable/apps/volume-knob.svg -share/icons/gnome/scalable/apps/wallpaper.svg -share/icons/gnome/scalable/apps/web-browser.svg -share/icons/gnome/scalable/apps/xfce-filemanager.svg -share/icons/gnome/scalable/apps/xfce-terminal.svg -share/icons/gnome/scalable/apps/xfce4-backdrop.svg -share/icons/gnome/scalable/apps/xfce4-mixer.svg -share/icons/gnome/scalable/apps/xfwm4.svg -share/icons/gnome/scalable/apps/xscreensaver.svg -share/icons/gnome/scalable/apps/zen-icon.svg -share/icons/gnome/scalable/categories/applications-accessories.svg -share/icons/gnome/scalable/categories/applications-development.svg -share/icons/gnome/scalable/categories/applications-engineering.svg -share/icons/gnome/scalable/categories/applications-games.svg -share/icons/gnome/scalable/categories/applications-graphics.svg -share/icons/gnome/scalable/categories/applications-internet.svg -share/icons/gnome/scalable/categories/applications-multimedia.svg -share/icons/gnome/scalable/categories/applications-office.svg -share/icons/gnome/scalable/categories/applications-other.svg -share/icons/gnome/scalable/categories/applications-science.svg -share/icons/gnome/scalable/categories/applications-system.svg -share/icons/gnome/scalable/categories/applications-utilities.svg -share/icons/gnome/scalable/categories/gnome-applications.svg -share/icons/gnome/scalable/categories/gnome-control-center.svg -share/icons/gnome/scalable/categories/gnome-devel.svg -share/icons/gnome/scalable/categories/gnome-globe.svg -share/icons/gnome/scalable/categories/gnome-graphics.svg -share/icons/gnome/scalable/categories/gnome-joystick.svg -share/icons/gnome/scalable/categories/gnome-multimedia.svg -share/icons/gnome/scalable/categories/gnome-other.svg -share/icons/gnome/scalable/categories/gnome-settings.svg -share/icons/gnome/scalable/categories/gnome-system.svg -share/icons/gnome/scalable/categories/gnome-util.svg -share/icons/gnome/scalable/categories/gtk-preferences.svg -share/icons/gnome/scalable/categories/input_devices_settings.svg -share/icons/gnome/scalable/categories/kcontrol.svg -share/icons/gnome/scalable/categories/package_development.svg -share/icons/gnome/scalable/categories/package_games.svg -share/icons/gnome/scalable/categories/package_graphics.svg -share/icons/gnome/scalable/categories/package_multimedia.svg -share/icons/gnome/scalable/categories/package_network.svg -share/icons/gnome/scalable/categories/package_office.svg -share/icons/gnome/scalable/categories/package_settings.svg -share/icons/gnome/scalable/categories/package_system.svg -share/icons/gnome/scalable/categories/package_utilities.svg -share/icons/gnome/scalable/categories/preferences-desktop-peripherals.svg -share/icons/gnome/scalable/categories/preferences-desktop-personal.svg -share/icons/gnome/scalable/categories/preferences-desktop.svg -share/icons/gnome/scalable/categories/preferences-other.svg -share/icons/gnome/scalable/categories/preferences-system-network.svg -share/icons/gnome/scalable/categories/preferences-system.svg -share/icons/gnome/scalable/categories/redhat-accessories.svg -share/icons/gnome/scalable/categories/redhat-games.svg -share/icons/gnome/scalable/categories/redhat-graphics.svg -share/icons/gnome/scalable/categories/redhat-internet.svg -share/icons/gnome/scalable/categories/redhat-office.svg -share/icons/gnome/scalable/categories/redhat-preferences.svg -share/icons/gnome/scalable/categories/redhat-programming.svg -share/icons/gnome/scalable/categories/redhat-sound_video.svg -share/icons/gnome/scalable/categories/redhat-system_settings.svg -share/icons/gnome/scalable/categories/redhat-system_tools.svg -share/icons/gnome/scalable/categories/stock_internet.svg -share/icons/gnome/scalable/categories/system-help.svg -share/icons/gnome/scalable/categories/xfce-games.svg -share/icons/gnome/scalable/categories/xfce-graphics.svg -share/icons/gnome/scalable/categories/xfce-internet.svg -share/icons/gnome/scalable/categories/xfce-multimedia.svg -share/icons/gnome/scalable/categories/xfce-office.svg -share/icons/gnome/scalable/categories/xfce-system-settings.svg -share/icons/gnome/scalable/categories/xfce-utils.svg -share/icons/gnome/scalable/categories/xfce4-settings.svg -share/icons/gnome/scalable/devices/3floppy_unmount.svg -share/icons/gnome/scalable/devices/audio-card.svg -share/icons/gnome/scalable/devices/audio-input-microphone.svg -share/icons/gnome/scalable/devices/battery.svg -share/icons/gnome/scalable/devices/camera-photo.svg -share/icons/gnome/scalable/devices/camera-video.svg -share/icons/gnome/scalable/devices/camera-web.svg -share/icons/gnome/scalable/devices/camera.svg -share/icons/gnome/scalable/devices/camera_unmount.svg -share/icons/gnome/scalable/devices/cdrom_unmount.svg -share/icons/gnome/scalable/devices/cdwriter_unmount.svg -share/icons/gnome/scalable/devices/chardevice.svg -share/icons/gnome/scalable/devices/computer.svg -share/icons/gnome/scalable/devices/display.svg -share/icons/gnome/scalable/devices/drive-cdrom.svg -share/icons/gnome/scalable/devices/drive-harddisk.svg -share/icons/gnome/scalable/devices/drive-optical.svg -share/icons/gnome/scalable/devices/drive-removable-media.svg -share/icons/gnome/scalable/devices/dvd_unmount.svg -share/icons/gnome/scalable/devices/gnome-dev-battery.svg -share/icons/gnome/scalable/devices/gnome-dev-cdrom-audio.svg -share/icons/gnome/scalable/devices/gnome-dev-cdrom.svg -share/icons/gnome/scalable/devices/gnome-dev-computer.svg -share/icons/gnome/scalable/devices/gnome-dev-disc-cdr.svg -share/icons/gnome/scalable/devices/gnome-dev-disc-cdrw.svg -share/icons/gnome/scalable/devices/gnome-dev-disc-dvdr-plus.svg -share/icons/gnome/scalable/devices/gnome-dev-disc-dvdr.svg -share/icons/gnome/scalable/devices/gnome-dev-disc-dvdram.svg -share/icons/gnome/scalable/devices/gnome-dev-disc-dvdrom.svg -share/icons/gnome/scalable/devices/gnome-dev-disc-dvdrw.svg -share/icons/gnome/scalable/devices/gnome-dev-dvd.svg -share/icons/gnome/scalable/devices/gnome-dev-ethernet.svg -share/icons/gnome/scalable/devices/gnome-dev-floppy.svg -share/icons/gnome/scalable/devices/gnome-dev-harddisk-1394.svg -share/icons/gnome/scalable/devices/gnome-dev-harddisk-usb.svg -share/icons/gnome/scalable/devices/gnome-dev-harddisk.svg -share/icons/gnome/scalable/devices/gnome-dev-ipod.svg -share/icons/gnome/scalable/devices/gnome-dev-keyboard.svg -share/icons/gnome/scalable/devices/gnome-dev-media-cf.svg -share/icons/gnome/scalable/devices/gnome-dev-media-ms.svg -share/icons/gnome/scalable/devices/gnome-dev-media-sdmmc.svg -share/icons/gnome/scalable/devices/gnome-dev-media-sm.svg -share/icons/gnome/scalable/devices/gnome-dev-mouse-ball.svg -share/icons/gnome/scalable/devices/gnome-dev-mouse-optical.svg -share/icons/gnome/scalable/devices/gnome-dev-printer.svg -share/icons/gnome/scalable/devices/gnome-dev-removable-1394.svg -share/icons/gnome/scalable/devices/gnome-dev-removable-usb.svg -share/icons/gnome/scalable/devices/gnome-dev-removable.svg -share/icons/gnome/scalable/devices/gnome-dev-wavelan.svg -share/icons/gnome/scalable/devices/gnome-dev-zipdisk.svg -share/icons/gnome/scalable/devices/gnome-fs-client.svg -share/icons/gnome/scalable/devices/gnome-modem.svg -share/icons/gnome/scalable/devices/gnome-stock-mic.svg -share/icons/gnome/scalable/devices/gtk-cdrom.svg -share/icons/gnome/scalable/devices/gtk-floppy.svg -share/icons/gnome/scalable/devices/gtk-harddisk.svg -share/icons/gnome/scalable/devices/harddrive.svg -share/icons/gnome/scalable/devices/hdd_unmount.svg -share/icons/gnome/scalable/devices/input-gaming.svg -share/icons/gnome/scalable/devices/input-keyboard.svg -share/icons/gnome/scalable/devices/input-mouse.svg -share/icons/gnome/scalable/devices/input-tablet.svg -share/icons/gnome/scalable/devices/ipod_mount.svg -share/icons/gnome/scalable/devices/joystick.svg -share/icons/gnome/scalable/devices/keyboard.svg -share/icons/gnome/scalable/devices/kjobviewer.svg -share/icons/gnome/scalable/devices/kxkb.svg -share/icons/gnome/scalable/devices/media-cdrom.svg -share/icons/gnome/scalable/devices/media-flash.svg -share/icons/gnome/scalable/devices/media-floppy.svg -share/icons/gnome/scalable/devices/media-optical.svg -share/icons/gnome/scalable/devices/media-tape.svg -share/icons/gnome/scalable/devices/media-zip.svg -share/icons/gnome/scalable/devices/modem.svg -share/icons/gnome/scalable/devices/mouse.svg -share/icons/gnome/scalable/devices/multimedia-player.svg -share/icons/gnome/scalable/devices/network-wired.svg -share/icons/gnome/scalable/devices/network-wireless.svg -share/icons/gnome/scalable/devices/pda.svg -share/icons/gnome/scalable/devices/phone.svg -share/icons/gnome/scalable/devices/printer-remote.svg -share/icons/gnome/scalable/devices/printer.svg -share/icons/gnome/scalable/devices/printer1.svg -share/icons/gnome/scalable/devices/printmgr.svg -share/icons/gnome/scalable/devices/scanner.svg -share/icons/gnome/scalable/devices/stock_cell-phone.svg -share/icons/gnome/scalable/devices/stock_mic.svg -share/icons/gnome/scalable/devices/stock_printers.svg -share/icons/gnome/scalable/devices/system-floppy.svg -share/icons/gnome/scalable/devices/system.svg -share/icons/gnome/scalable/devices/usbpendrive_unmount.svg -share/icons/gnome/scalable/devices/video-display.svg -share/icons/gnome/scalable/devices/xfce-printer.svg -share/icons/gnome/scalable/devices/xfce4-display.svg -share/icons/gnome/scalable/devices/xfce4-keyboard.svg -share/icons/gnome/scalable/devices/xfce4-mouse.svg -share/icons/gnome/scalable/devices/yast_HD.svg -share/icons/gnome/scalable/devices/yast_idetude.svg -share/icons/gnome/scalable/devices/yast_joystick.svg -share/icons/gnome/scalable/devices/yast_mouse.svg -share/icons/gnome/scalable/devices/yast_printer.svg -share/icons/gnome/scalable/devices/yast_soundcard.svg -share/icons/gnome/scalable/emblems/emblem-default.svg -share/icons/gnome/scalable/emblems/emblem-desktop.icon -share/icons/gnome/scalable/emblems/emblem-desktop.svg -share/icons/gnome/scalable/emblems/emblem-documents.icon -share/icons/gnome/scalable/emblems/emblem-documents.svg -share/icons/gnome/scalable/emblems/emblem-downloads.icon -share/icons/gnome/scalable/emblems/emblem-downloads.svg -share/icons/gnome/scalable/emblems/emblem-favorite.icon -share/icons/gnome/scalable/emblems/emblem-favorite.svg -share/icons/gnome/scalable/emblems/emblem-generic.icon -share/icons/gnome/scalable/emblems/emblem-generic.svg -share/icons/gnome/scalable/emblems/emblem-important.icon -share/icons/gnome/scalable/emblems/emblem-important.svg -share/icons/gnome/scalable/emblems/emblem-mail.icon -share/icons/gnome/scalable/emblems/emblem-mail.svg -share/icons/gnome/scalable/emblems/emblem-new.icon -share/icons/gnome/scalable/emblems/emblem-new.svg -share/icons/gnome/scalable/emblems/emblem-noread.icon -share/icons/gnome/scalable/emblems/emblem-noread.svg -share/icons/gnome/scalable/emblems/emblem-nowrite.icon -share/icons/gnome/scalable/emblems/emblem-nowrite.svg -share/icons/gnome/scalable/emblems/emblem-package.icon -share/icons/gnome/scalable/emblems/emblem-package.svg -share/icons/gnome/scalable/emblems/emblem-photos.icon -share/icons/gnome/scalable/emblems/emblem-photos.svg -share/icons/gnome/scalable/emblems/emblem-readonly.icon -share/icons/gnome/scalable/emblems/emblem-readonly.svg -share/icons/gnome/scalable/emblems/emblem-shared.svg -share/icons/gnome/scalable/emblems/emblem-symbolic-link.svg -share/icons/gnome/scalable/emblems/emblem-system.svg -share/icons/gnome/scalable/emblems/emblem-unreadable.icon -share/icons/gnome/scalable/emblems/emblem-unreadable.svg -share/icons/gnome/scalable/emblems/emblem-urgent.icon -share/icons/gnome/scalable/emblems/emblem-urgent.svg -share/icons/gnome/scalable/emblems/emblem-web.icon -share/icons/gnome/scalable/emblems/emblem-web.svg -share/icons/gnome/scalable/emblems/stock_mail-priority-high.icon -share/icons/gnome/scalable/emblems/stock_mail-priority-high.svg -share/icons/gnome/scalable/emotes/face-angel.svg -share/icons/gnome/scalable/emotes/face-angry.svg -share/icons/gnome/scalable/emotes/face-cool.svg -share/icons/gnome/scalable/emotes/face-crying.svg -share/icons/gnome/scalable/emotes/face-devilish.svg -share/icons/gnome/scalable/emotes/face-embarrassed.svg -share/icons/gnome/scalable/emotes/face-kiss.svg -share/icons/gnome/scalable/emotes/face-laugh.svg -share/icons/gnome/scalable/emotes/face-monkey.svg -share/icons/gnome/scalable/emotes/face-plain.svg -share/icons/gnome/scalable/emotes/face-raspberry.svg -share/icons/gnome/scalable/emotes/face-sad.svg -share/icons/gnome/scalable/emotes/face-sick.svg -share/icons/gnome/scalable/emotes/face-smile-big.svg -share/icons/gnome/scalable/emotes/face-smile.svg -share/icons/gnome/scalable/emotes/face-smirk.svg -share/icons/gnome/scalable/emotes/face-surprise.svg -share/icons/gnome/scalable/emotes/face-tired.svg -share/icons/gnome/scalable/emotes/face-uncertain.svg -share/icons/gnome/scalable/emotes/face-wink.svg -share/icons/gnome/scalable/emotes/face-worried.svg -share/icons/gnome/scalable/emotes/stock_smiley-1.svg -share/icons/gnome/scalable/emotes/stock_smiley-10.svg -share/icons/gnome/scalable/emotes/stock_smiley-11.svg -share/icons/gnome/scalable/emotes/stock_smiley-13.svg -share/icons/gnome/scalable/emotes/stock_smiley-15.svg -share/icons/gnome/scalable/emotes/stock_smiley-18.svg -share/icons/gnome/scalable/emotes/stock_smiley-2.svg -share/icons/gnome/scalable/emotes/stock_smiley-22.svg -share/icons/gnome/scalable/emotes/stock_smiley-3.svg -share/icons/gnome/scalable/emotes/stock_smiley-4.svg -share/icons/gnome/scalable/emotes/stock_smiley-5.svg -share/icons/gnome/scalable/emotes/stock_smiley-6.svg -share/icons/gnome/scalable/emotes/stock_smiley-7.svg -share/icons/gnome/scalable/emotes/stock_smiley-8.svg -share/icons/gnome/scalable/mimetypes/application-certificate.svg -share/icons/gnome/scalable/mimetypes/application-x-executable.svg -share/icons/gnome/scalable/mimetypes/ascii.svg -share/icons/gnome/scalable/mimetypes/audio-x-generic.svg -share/icons/gnome/scalable/mimetypes/binary.svg -share/icons/gnome/scalable/mimetypes/contents2.svg -share/icons/gnome/scalable/mimetypes/deb.svg -share/icons/gnome/scalable/mimetypes/document.svg -share/icons/gnome/scalable/mimetypes/empty.svg -share/icons/gnome/scalable/mimetypes/exec.svg -share/icons/gnome/scalable/mimetypes/folder_tar.svg -share/icons/gnome/scalable/mimetypes/font-x-generic.svg -share/icons/gnome/scalable/mimetypes/font.svg -share/icons/gnome/scalable/mimetypes/font_bitmap.svg -share/icons/gnome/scalable/mimetypes/font_truetype.svg -share/icons/gnome/scalable/mimetypes/font_type1.svg -share/icons/gnome/scalable/mimetypes/gnome-fs-executable.svg -share/icons/gnome/scalable/mimetypes/gnome-fs-regular.icon -share/icons/gnome/scalable/mimetypes/gnome-fs-regular.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-magicpoint.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-msword.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-ogg.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-pdf.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-postscript.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-rtf.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.ms-excel.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.ms-powerpoint.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.image.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.stardivision.calc.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.stardivision.impress.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.stardivision.writer.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.calc.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.draw.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.impress.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.writer.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-wordperfect.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-7z-compressed.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-abiword.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-applix-spreadsheet.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-applix-word.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-archive.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-arj.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-bzip-compressed-tar.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-bzip.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-compress.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-compressed-tar.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-cpio-compressed.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-cpio.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-deb.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-dvi.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-executable.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-font-afm.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-font-bdf.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-font-linux-psf.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-font-pcf.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-font-sunos-news.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-font-ttf.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-gnumeric.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-gzip.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-gzpostscript.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-jar.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-killustrator.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-kpresenter.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-kspread.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-kword.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-lha.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-lhz.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-lzma-compressed-tar.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-lzma.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-ms-dos-executable.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-perl.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-php.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-python-bytecode.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-rar.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-rpm.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-scribus.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-shellscript.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-shockwave-flash.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-stuffit.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-tar.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-tarz.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-x-tex.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-xhtml+xml.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-application-zip.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-audio.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-image.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-html.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-vnd.wap.wml.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-x-csh.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-x-python.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-x-sh.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-x-vcalendar.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-x-vcard.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text-x-zsh.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-text.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-video.svg -share/icons/gnome/scalable/mimetypes/gnome-mime-x-font-afm.svg -share/icons/gnome/scalable/mimetypes/gnome-package.svg -share/icons/gnome/scalable/mimetypes/gtk-file.icon -share/icons/gnome/scalable/mimetypes/gtk-file.svg -share/icons/gnome/scalable/mimetypes/html.svg -share/icons/gnome/scalable/mimetypes/image-x-generic.svg -share/icons/gnome/scalable/mimetypes/image.svg -share/icons/gnome/scalable/mimetypes/kpresenter_kpr.svg -share/icons/gnome/scalable/mimetypes/mime_ascii.svg -share/icons/gnome/scalable/mimetypes/misc.svg -share/icons/gnome/scalable/mimetypes/package-x-generic.svg -share/icons/gnome/scalable/mimetypes/package.svg -share/icons/gnome/scalable/mimetypes/package_editors.svg -share/icons/gnome/scalable/mimetypes/package_wordprocessing.svg -share/icons/gnome/scalable/mimetypes/plan.svg -share/icons/gnome/scalable/mimetypes/rpm.svg -share/icons/gnome/scalable/mimetypes/shellscript.svg -share/icons/gnome/scalable/mimetypes/sound.svg -share/icons/gnome/scalable/mimetypes/spreadsheet.svg -share/icons/gnome/scalable/mimetypes/stock_addressbook.svg -share/icons/gnome/scalable/mimetypes/stock_calendar.svg -share/icons/gnome/scalable/mimetypes/stock_certificate.svg -share/icons/gnome/scalable/mimetypes/stock_script.svg -share/icons/gnome/scalable/mimetypes/tar.svg -share/icons/gnome/scalable/mimetypes/template_source.svg -share/icons/gnome/scalable/mimetypes/text-html.svg -share/icons/gnome/scalable/mimetypes/text-x-generic-template.svg -share/icons/gnome/scalable/mimetypes/text-x-generic.svg -share/icons/gnome/scalable/mimetypes/text-x-preview.icon -share/icons/gnome/scalable/mimetypes/text-x-preview.svg -share/icons/gnome/scalable/mimetypes/text-x-script.svg -share/icons/gnome/scalable/mimetypes/tgz.svg -share/icons/gnome/scalable/mimetypes/txt.svg -share/icons/gnome/scalable/mimetypes/txt2.svg -share/icons/gnome/scalable/mimetypes/unknown.svg -share/icons/gnome/scalable/mimetypes/vcalendar.svg -share/icons/gnome/scalable/mimetypes/vcard.svg -share/icons/gnome/scalable/mimetypes/video-x-generic.svg -share/icons/gnome/scalable/mimetypes/video.svg -share/icons/gnome/scalable/mimetypes/wordprocessing.svg -share/icons/gnome/scalable/mimetypes/www.svg -share/icons/gnome/scalable/mimetypes/x-office-address-book.svg -share/icons/gnome/scalable/mimetypes/x-office-calendar.svg -share/icons/gnome/scalable/mimetypes/x-office-document.svg -share/icons/gnome/scalable/mimetypes/x-office-drawing.svg -share/icons/gnome/scalable/mimetypes/x-office-presentation.svg -share/icons/gnome/scalable/mimetypes/x-office-spreadsheet.svg -share/icons/gnome/scalable/mimetypes/zip.svg -share/icons/gnome/scalable/places/application-x-gnome-saved-search.svg -share/icons/gnome/scalable/places/desktop.svg -share/icons/gnome/scalable/places/distributor-logo.svg -share/icons/gnome/scalable/places/emptytrash.svg -share/icons/gnome/scalable/places/folder-remote.icon -share/icons/gnome/scalable/places/folder-remote.svg -share/icons/gnome/scalable/places/folder-saved-search.svg -share/icons/gnome/scalable/places/folder.icon -share/icons/gnome/scalable/places/folder.svg -share/icons/gnome/scalable/places/folder_home.svg -share/icons/gnome/scalable/places/gnome-fs-desktop.svg -share/icons/gnome/scalable/places/gnome-fs-directory.icon -share/icons/gnome/scalable/places/gnome-fs-directory.svg -share/icons/gnome/scalable/places/gnome-fs-ftp.icon -share/icons/gnome/scalable/places/gnome-fs-ftp.svg -share/icons/gnome/scalable/places/gnome-fs-home.svg -share/icons/gnome/scalable/places/gnome-fs-network.svg -share/icons/gnome/scalable/places/gnome-fs-nfs.icon -share/icons/gnome/scalable/places/gnome-fs-nfs.svg -share/icons/gnome/scalable/places/gnome-fs-server.svg -share/icons/gnome/scalable/places/gnome-fs-share.icon -share/icons/gnome/scalable/places/gnome-fs-share.svg -share/icons/gnome/scalable/places/gnome-fs-smb.icon -share/icons/gnome/scalable/places/gnome-fs-smb.svg -share/icons/gnome/scalable/places/gnome-fs-ssh.icon -share/icons/gnome/scalable/places/gnome-fs-ssh.svg -share/icons/gnome/scalable/places/gnome-fs-trash-empty.svg -share/icons/gnome/scalable/places/gnome-main-menu.svg -share/icons/gnome/scalable/places/gnome-mime-x-directory-nfs-server.svg -share/icons/gnome/scalable/places/gnome-mime-x-directory-smb-server.svg -share/icons/gnome/scalable/places/gnome-mime-x-directory-smb-share.icon -share/icons/gnome/scalable/places/gnome-mime-x-directory-smb-share.svg -share/icons/gnome/scalable/places/gnome-mime-x-directory-smb-workgroup.svg -share/icons/gnome/scalable/places/gnome-stock-trash.svg -share/icons/gnome/scalable/places/gtk-directory.icon -share/icons/gnome/scalable/places/gtk-directory.svg -share/icons/gnome/scalable/places/gtk-network.svg -share/icons/gnome/scalable/places/inode-directory.icon -share/icons/gnome/scalable/places/inode-directory.svg -share/icons/gnome/scalable/places/network-server.svg -share/icons/gnome/scalable/places/network-workgroup.svg -share/icons/gnome/scalable/places/network.icon -share/icons/gnome/scalable/places/network.svg -share/icons/gnome/scalable/places/network_local.svg -share/icons/gnome/scalable/places/novell-button.svg -share/icons/gnome/scalable/places/redhat-network-server.svg -share/icons/gnome/scalable/places/server.svg -share/icons/gnome/scalable/places/start-here.svg -share/icons/gnome/scalable/places/stock_folder.icon -share/icons/gnome/scalable/places/stock_folder.svg -share/icons/gnome/scalable/places/trashcan_empty.svg -share/icons/gnome/scalable/places/user-bookmarks.svg -share/icons/gnome/scalable/places/user-desktop.svg -share/icons/gnome/scalable/places/user-home.svg -share/icons/gnome/scalable/places/user-trash.svg -share/icons/gnome/scalable/places/xfce-trash_empty.svg -share/icons/gnome/scalable/status/appointment-missed.svg -share/icons/gnome/scalable/status/appointment-soon.svg -share/icons/gnome/scalable/status/audio-volume-high.svg -share/icons/gnome/scalable/status/audio-volume-low.svg -share/icons/gnome/scalable/status/audio-volume-medium.svg -share/icons/gnome/scalable/status/audio-volume-muted.svg -share/icons/gnome/scalable/status/battery-caution.svg -share/icons/gnome/scalable/status/battery-low.svg -share/icons/gnome/scalable/status/connect_creating.svg -share/icons/gnome/scalable/status/connect_established.svg -share/icons/gnome/scalable/status/connect_no.svg -share/icons/gnome/scalable/status/dialog-error.svg -share/icons/gnome/scalable/status/dialog-information.svg -share/icons/gnome/scalable/status/dialog-password.svg -share/icons/gnome/scalable/status/dialog-question.svg -share/icons/gnome/scalable/status/dialog-warning.svg -share/icons/gnome/scalable/status/edittrash.svg -share/icons/gnome/scalable/status/error.svg -share/icons/gnome/scalable/status/folder-drag-accept.icon -share/icons/gnome/scalable/status/folder-drag-accept.svg -share/icons/gnome/scalable/status/folder-open.icon -share/icons/gnome/scalable/status/folder-open.svg -share/icons/gnome/scalable/status/folder-visiting.icon -share/icons/gnome/scalable/status/folder-visiting.svg -share/icons/gnome/scalable/status/folder_open.icon -share/icons/gnome/scalable/status/folder_open.svg -share/icons/gnome/scalable/status/gnome-fs-directory-accept.icon -share/icons/gnome/scalable/status/gnome-fs-directory-accept.svg -share/icons/gnome/scalable/status/gnome-fs-directory-visiting.icon -share/icons/gnome/scalable/status/gnome-fs-directory-visiting.svg -share/icons/gnome/scalable/status/gnome-fs-loading-icon.svg -share/icons/gnome/scalable/status/gnome-fs-trash-full.svg -share/icons/gnome/scalable/status/gnome-netstatus-disconn.svg -share/icons/gnome/scalable/status/gnome-netstatus-error.svg -share/icons/gnome/scalable/status/gnome-netstatus-idle.svg -share/icons/gnome/scalable/status/gnome-netstatus-rx.svg -share/icons/gnome/scalable/status/gnome-netstatus-tx.svg -share/icons/gnome/scalable/status/gnome-netstatus-txrx.svg -share/icons/gnome/scalable/status/gnome-stock-trash-full.svg -share/icons/gnome/scalable/status/gtk-dialog-authentication.svg -share/icons/gnome/scalable/status/gtk-dialog-error.svg -share/icons/gnome/scalable/status/gtk-dialog-info.svg -share/icons/gnome/scalable/status/gtk-dialog-question.svg -share/icons/gnome/scalable/status/gtk-dialog-warning.svg -share/icons/gnome/scalable/status/gtk-missing-image.svg -share/icons/gnome/scalable/status/image-loading.svg -share/icons/gnome/scalable/status/image-missing.svg -share/icons/gnome/scalable/status/important.svg -share/icons/gnome/scalable/status/info.svg -share/icons/gnome/scalable/status/mail-attachment.svg -share/icons/gnome/scalable/status/mail-read.svg -share/icons/gnome/scalable/status/mail-replied.svg -share/icons/gnome/scalable/status/mail-unread.svg -share/icons/gnome/scalable/status/media-playlist-repeat.svg -share/icons/gnome/scalable/status/media-playlist-shuffle.svg -share/icons/gnome/scalable/status/messagebox_critical.svg -share/icons/gnome/scalable/status/messagebox_info.svg -share/icons/gnome/scalable/status/messagebox_warning.svg -share/icons/gnome/scalable/status/network-error.svg -share/icons/gnome/scalable/status/network-idle.svg -share/icons/gnome/scalable/status/network-offline.svg -share/icons/gnome/scalable/status/network-receive.svg -share/icons/gnome/scalable/status/network-transmit-receive.svg -share/icons/gnome/scalable/status/network-transmit.svg -share/icons/gnome/scalable/status/nm-adhoc.svg -share/icons/gnome/scalable/status/nm-device-wired.svg -share/icons/gnome/scalable/status/nm-device-wireless.svg -share/icons/gnome/scalable/status/nm-no-connection.svg -share/icons/gnome/scalable/status/printer-error.svg -share/icons/gnome/scalable/status/printer-printing.svg -share/icons/gnome/scalable/status/security-high.svg -share/icons/gnome/scalable/status/security-low.svg -share/icons/gnome/scalable/status/security-medium.svg -share/icons/gnome/scalable/status/software-update-available.svg -share/icons/gnome/scalable/status/software-update-urgent.svg -share/icons/gnome/scalable/status/stock_appointment-reminder-excl.svg -share/icons/gnome/scalable/status/stock_appointment-reminder.svg -share/icons/gnome/scalable/status/stock_attach.svg -share/icons/gnome/scalable/status/stock_dialog-error.svg -share/icons/gnome/scalable/status/stock_dialog-info.svg -share/icons/gnome/scalable/status/stock_dialog-question.svg -share/icons/gnome/scalable/status/stock_dialog-warning.svg -share/icons/gnome/scalable/status/stock_lock-broken.svg -share/icons/gnome/scalable/status/stock_lock-ok.svg -share/icons/gnome/scalable/status/stock_lock-open.svg -share/icons/gnome/scalable/status/stock_lock.svg -share/icons/gnome/scalable/status/stock_mail-open.svg -share/icons/gnome/scalable/status/stock_mail-replied.svg -share/icons/gnome/scalable/status/stock_mail-unread.svg -share/icons/gnome/scalable/status/stock_open.icon -share/icons/gnome/scalable/status/stock_open.svg -share/icons/gnome/scalable/status/stock_repeat.svg -share/icons/gnome/scalable/status/stock_shuffle.svg -share/icons/gnome/scalable/status/stock_trash_full.svg -share/icons/gnome/scalable/status/stock_volume-0.svg -share/icons/gnome/scalable/status/stock_volume-max.svg -share/icons/gnome/scalable/status/stock_volume-med.svg -share/icons/gnome/scalable/status/stock_volume-min.svg -share/icons/gnome/scalable/status/stock_volume-mute.svg -share/icons/gnome/scalable/status/stock_volume.svg -share/icons/gnome/scalable/status/stock_weather-cloudy.svg -share/icons/gnome/scalable/status/stock_weather-few-clouds.svg -share/icons/gnome/scalable/status/stock_weather-fog.svg -share/icons/gnome/scalable/status/stock_weather-night-clear.svg -share/icons/gnome/scalable/status/stock_weather-night-few-clouds.svg -share/icons/gnome/scalable/status/stock_weather-showers.svg -share/icons/gnome/scalable/status/stock_weather-snow.svg -share/icons/gnome/scalable/status/stock_weather-storm.svg -share/icons/gnome/scalable/status/stock_weather-sunny.svg -share/icons/gnome/scalable/status/sunny.svg -share/icons/gnome/scalable/status/task-due.svg -share/icons/gnome/scalable/status/task-past-due.svg -share/icons/gnome/scalable/status/trashcan_full.svg -share/icons/gnome/scalable/status/user-trash-full.svg -share/icons/gnome/scalable/status/weather-clear-night.svg -share/icons/gnome/scalable/status/weather-clear.svg -share/icons/gnome/scalable/status/weather-few-clouds-night.svg -share/icons/gnome/scalable/status/weather-few-clouds.svg -share/icons/gnome/scalable/status/weather-fog.svg -share/icons/gnome/scalable/status/weather-overcast.svg -share/icons/gnome/scalable/status/weather-severe-alert.svg -share/icons/gnome/scalable/status/weather-showers-scattered.svg -share/icons/gnome/scalable/status/weather-showers.svg -share/icons/gnome/scalable/status/weather-snow.svg -share/icons/gnome/scalable/status/weather-storm.svg -share/icons/gnome/scalable/status/xfce-trash_full.svg -share/icons/gnome/scalable/stock/generic/stock_person.svg -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/icons/gnome/scalable/stock/generic -@dirrmtry share/icons/gnome/scalable/stock -@dirrmtry share/icons/gnome/scalable/status -@dirrmtry share/icons/gnome/scalable/places -@dirrmtry share/icons/gnome/scalable/mimetypes -@dirrmtry share/icons/gnome/scalable/emotes -@dirrmtry share/icons/gnome/scalable/emblems -@dirrmtry share/icons/gnome/scalable/devices -@dirrmtry share/icons/gnome/scalable/categories -@dirrmtry share/icons/gnome/scalable/apps -@dirrmtry share/icons/gnome/scalable/actions -@dirrmtry share/icons/gnome/scalable -@dirrmtry share/icons/gnome/8x8/emblems -@dirrmtry share/icons/gnome/8x8 -@dirrmtry share/icons/gnome/48x48/stock/net -@dirrmtry share/icons/gnome/48x48/stock/io -@dirrmtry share/icons/gnome/48x48/stock/generic -@dirrmtry share/icons/gnome/48x48/stock/document -@dirrmtry share/icons/gnome/48x48/stock/data -@dirrmtry share/icons/gnome/48x48/stock/code -@dirrmtry share/icons/gnome/48x48/stock -@dirrmtry share/icons/gnome/48x48/filesystems -@dirrmtry share/icons/gnome/48x48/devices -@dirrmtry share/icons/gnome/48x48/apps -@dirrmtry share/icons/gnome/48x48/animations -@dirrmtry share/icons/gnome/48x48/actions -@dirrmtry share/icons/gnome/48x48 -@dirrmtry share/icons/gnome/32x32/stock/generic -@dirrmtry share/icons/gnome/32x32/stock -@dirrmtry share/icons/gnome/32x32/status -@dirrmtry share/icons/gnome/32x32/places -@dirrmtry share/icons/gnome/32x32/mimetypes -@dirrmtry share/icons/gnome/32x32/emotes -@dirrmtry share/icons/gnome/32x32/emblems -@dirrmtry share/icons/gnome/32x32/devices -@dirrmtry share/icons/gnome/32x32/categories -@dirrmtry share/icons/gnome/32x32/apps -@dirrmtry share/icons/gnome/32x32/animations -@dirrmtry share/icons/gnome/32x32/actions -@dirrmtry share/icons/gnome/32x32 -@dirrmtry share/icons/gnome/24x24/stock/text -@dirrmtry share/icons/gnome/24x24/stock/table -@dirrmtry share/icons/gnome/24x24/stock/object -@dirrmtry share/icons/gnome/24x24/stock/net -@dirrmtry share/icons/gnome/24x24/stock/navigation -@dirrmtry share/icons/gnome/24x24/stock/media -@dirrmtry share/icons/gnome/24x24/stock/io -@dirrmtry share/icons/gnome/24x24/stock/image -@dirrmtry share/icons/gnome/24x24/stock/generic -@dirrmtry share/icons/gnome/24x24/stock/form -@dirrmtry share/icons/gnome/24x24/stock/document -@dirrmtry share/icons/gnome/24x24/stock/data -@dirrmtry share/icons/gnome/24x24/stock/code -@dirrmtry share/icons/gnome/24x24/stock/chart -@dirrmtry share/icons/gnome/24x24/stock -@dirrmtry share/icons/gnome/24x24/status -@dirrmtry share/icons/gnome/24x24/places -@dirrmtry share/icons/gnome/24x24/mimetypes -@dirrmtry share/icons/gnome/24x24/filesystems -@dirrmtry share/icons/gnome/24x24/emotes -@dirrmtry share/icons/gnome/24x24/emblems -@dirrmtry share/icons/gnome/24x24/devices -@dirrmtry share/icons/gnome/24x24/categories -@dirrmtry share/icons/gnome/24x24/apps -@dirrmtry share/icons/gnome/24x24/animations -@dirrmtry share/icons/gnome/24x24/actions -@dirrmtry share/icons/gnome/24x24 -@dirrmtry share/icons/gnome/22x22/status -@dirrmtry share/icons/gnome/22x22/places -@dirrmtry share/icons/gnome/22x22/mimetypes -@dirrmtry share/icons/gnome/22x22/emotes -@dirrmtry share/icons/gnome/22x22/emblems -@dirrmtry share/icons/gnome/22x22/devices -@dirrmtry share/icons/gnome/22x22/categories -@dirrmtry share/icons/gnome/22x22/apps -@dirrmtry share/icons/gnome/22x22/animations -@dirrmtry share/icons/gnome/22x22/actions -@dirrmtry share/icons/gnome/22x22 -@dirrmtry share/icons/gnome/16x16/stock/text -@dirrmtry share/icons/gnome/16x16/stock/table -@dirrmtry share/icons/gnome/16x16/stock/object -@dirrmtry share/icons/gnome/16x16/stock/net -@dirrmtry share/icons/gnome/16x16/stock/navigation -@dirrmtry share/icons/gnome/16x16/stock/media -@dirrmtry share/icons/gnome/16x16/stock/io -@dirrmtry share/icons/gnome/16x16/stock/image -@dirrmtry share/icons/gnome/16x16/stock/generic -@dirrmtry share/icons/gnome/16x16/stock/form -@dirrmtry share/icons/gnome/16x16/stock/emoticons -@dirrmtry share/icons/gnome/16x16/stock/document -@dirrmtry share/icons/gnome/16x16/stock/data -@dirrmtry share/icons/gnome/16x16/stock/code -@dirrmtry share/icons/gnome/16x16/stock/chart -@dirrmtry share/icons/gnome/16x16/stock -@dirrmtry share/icons/gnome/16x16/status -@dirrmtry share/icons/gnome/16x16/places -@dirrmtry share/icons/gnome/16x16/mimetypes -@dirrmtry share/icons/gnome/16x16/filesystems -@dirrmtry share/icons/gnome/16x16/emotes -@dirrmtry share/icons/gnome/16x16/emblems -@dirrmtry share/icons/gnome/16x16/devices -@dirrmtry share/icons/gnome/16x16/categories -@dirrmtry share/icons/gnome/16x16/apps -@dirrmtry share/icons/gnome/16x16/animations -@dirrmtry share/icons/gnome/16x16/actions -@dirrmtry share/icons/gnome/16x16 -@dirrmtry share/icons/gnome -@dirrmtry share/icons diff --git a/misc/gnome-osd/Makefile b/misc/gnome-osd/Makefile deleted file mode 100644 index c31a18359..000000000 --- a/misc/gnome-osd/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: gnome-osd -# Date created: 21 Aug 2004 -# Whom: Jean-Yves Lefort <jylefort@brutele.be> -# -# $FreeBSD$ -# - -PORTNAME= gnome-osd -DISTVERSION= 0.11.3 -PORTREVISION= 5 -CATEGORIES= misc -MASTER_SITES= http://telecom.inescporto.pt/~gjc/gnome-osd/${DISTVERSION:C|-.*$||}/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= An On-Screen-Display infrastructure using Pango text rendering - -USE_GNOME= gnomehack gnomeprefix intlhack pygnome2 -USE_PYTHON= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" -GCONF_SCHEMAS= gnome-osd.schemas -PORTDOCS= AUTHORS NEWS README -MAN1= gnome-osd-client.1 - -post-patch: - @${REINPLACE_CMD} -e 's|control-center-2.0/capplets|applications|' \ - ${WRKSRC}/Makefile.in - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif - -.include <bsd.port.mk> diff --git a/misc/gnome-osd/distinfo b/misc/gnome-osd/distinfo deleted file mode 100644 index 0e4b3d210..000000000 --- a/misc/gnome-osd/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome-osd-0.11.3.tar.gz) = f85ec6d1c97c5ff4f12d83ba90197c7d -SHA256 (gnome-osd-0.11.3.tar.gz) = 9296a040b6185f1bad2d6ad8fb01b78c70eae34d29263bf1b3bb133841c752da -SIZE (gnome-osd-0.11.3.tar.gz) = 175507 diff --git a/misc/gnome-osd/files/patch-gnomeosd_capplet.py b/misc/gnome-osd/files/patch-gnomeosd_capplet.py deleted file mode 100644 index 2dcfec3e3..000000000 --- a/misc/gnome-osd/files/patch-gnomeosd_capplet.py +++ /dev/null @@ -1,10 +0,0 @@ ---- gnomeosd/capplet.py.orig Wed Aug 23 03:44:56 2006 -+++ gnomeosd/capplet.py Wed Aug 23 03:45:29 2006 -@@ -150,7 +150,6 @@ - def main(): - gettext.install("gnome-osd", os.path.join(gnome_osd_conf.datadir, "locale")) - locale.setlocale(locale.LC_ALL, '') -- locale.bind_textdomain_codeset('gnome-osd','UTF-8') - gettext.bind_textdomain_codeset('gnome-osd','UTF-8') - gnome.program_init("gnome-osd-properties", gnome_osd_conf.VERSION) - diff --git a/misc/gnome-osd/pkg-descr b/misc/gnome-osd/pkg-descr deleted file mode 100644 index 6f105403d..000000000 --- a/misc/gnome-osd/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Gnome OSD is a new small project to create an OSD (On-Screen-Display) -infrastructure, similar to XOSD. It includes a command-line client, -and sample xchat and rhythmbox plugins. - -WWW: http://www.gnomefiles.org/app.php?soft_id=350 - -- Jean-Yves Lefort -jylefort@FreeBSD.org diff --git a/misc/gnome-osd/pkg-plist b/misc/gnome-osd/pkg-plist deleted file mode 100644 index 8cdcddabc..000000000 --- a/misc/gnome-osd/pkg-plist +++ /dev/null @@ -1,54 +0,0 @@ -bin/gnome-osd-client -bin/gnome-osd-event-bridge -bin/gnome-osd-properties -etc/xdg/autostart/gnome-osd-event-bridge.desktop -libdata/bonobo/servers/GNOME_OSD.server -%%PYTHON_SITELIBDIR%%/gnomeosd/__init__.py -%%PYTHON_SITELIBDIR%%/gnomeosd/__init__.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/__init__.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/capplet.py -%%PYTHON_SITELIBDIR%%/gnomeosd/capplet.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/capplet.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/client.py -%%PYTHON_SITELIBDIR%%/gnomeosd/client.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/client.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/eventbridge.py -%%PYTHON_SITELIBDIR%%/gnomeosd/eventbridge.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/eventbridge.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/gconfsync.py -%%PYTHON_SITELIBDIR%%/gnomeosd/gconfsync.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/gconfsync.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/gnome_osd_conf.py -%%PYTHON_SITELIBDIR%%/gnomeosd/gnome_osd_conf.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/gnome_osd_conf.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/gosd.py -%%PYTHON_SITELIBDIR%%/gnomeosd/gosd.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/gosd.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/gtasklet.py -%%PYTHON_SITELIBDIR%%/gnomeosd/gtasklet.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/gtasklet.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/gtkexcepthook.py -%%PYTHON_SITELIBDIR%%/gnomeosd/gtkexcepthook.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/gtkexcepthook.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/server.py -%%PYTHON_SITELIBDIR%%/gnomeosd/server.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/server.pyo -%%PYTHON_SITELIBDIR%%/gnomeosd/xscreensaver.py -%%PYTHON_SITELIBDIR%%/gnomeosd/xscreensaver.pyc -%%PYTHON_SITELIBDIR%%/gnomeosd/xscreensaver.pyo -libexec/gnome-osd-server -share/dbus-1/services/pt.inescporto.telecom.GnomeOSD.EventBridge.service -share/dbus-1/services/pt.inescporto.telecom.GnomeOSD.service -share/applications/gnome-osd-properties.desktop -share/gnome-osd/xchatosd.py -share/pixmaps/gnome-osd.png -share/locale/cs/LC_MESSAGES/gnome-osd.mo -share/locale/ja/LC_MESSAGES/gnome-osd.mo -share/locale/pt/LC_MESSAGES/gnome-osd.mo -@dirrm share/gnome-osd -@dirrm %%PYTHON_SITELIBDIR%%/gnomeosd -@dirrmtry %%PYTHON_SITELIBDIR%% -@dirrmtry %%PYTHON_LIBDIR%% -@comment only remove the dbus directories if dbus is not installed -@unexec if ! [ -e %%LOCALBASE%%/bin/dbus-daemon ]; then rmdir %D/share/dbus-1/services 2>/dev/null; rmdir %D/share/dbus-1 2>/dev/null; fi -@dirrmtry share/applications diff --git a/misc/gnome-user-docs/Makefile b/misc/gnome-user-docs/Makefile deleted file mode 100644 index 2d29c14f2..000000000 --- a/misc/gnome-user-docs/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: gnomeuserdocs2 -# Date created: 07 July 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/misc/gnome-user-docs/Makefile,v 1.49 2009/03/05 04:27:04 marcus Exp $ -# - -PORTNAME= gnome-user-docs -PORTVERSION= 2.26.0 -CATEGORIES= misc gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 users guide - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian - -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -USE_GNOME= gnomeprefix gnomehack gnomehier gnomedocutils - -.include <bsd.port.mk> diff --git a/misc/gnome-user-docs/distinfo b/misc/gnome-user-docs/distinfo deleted file mode 100644 index 426541be9..000000000 --- a/misc/gnome-user-docs/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-user-docs-2.26.0.tar.bz2) = 3735096cf4b076696ebed217bf600190 -SHA256 (gnome2/gnome-user-docs-2.26.0.tar.bz2) = 266c870e7e97b340d9bb59de95fd96b58e01288e93729d1e34ae020d9f837f70 -SIZE (gnome2/gnome-user-docs-2.26.0.tar.bz2) = 14112318 diff --git a/misc/gnome-user-docs/pkg-descr b/misc/gnome-user-docs/pkg-descr deleted file mode 100644 index 0ed2fb1bc..000000000 --- a/misc/gnome-user-docs/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -User documentation for the GNOME 2 desktop. diff --git a/misc/gnome-user-docs/pkg-plist b/misc/gnome-user-docs/pkg-plist deleted file mode 100644 index 14bd90500..000000000 --- a/misc/gnome-user-docs/pkg-plist +++ /dev/null @@ -1,2345 +0,0 @@ -share/gnome/help/gnome-access-guide/C/accessintro.xml -share/gnome/help/gnome-access-guide/C/enable.xml -share/gnome/help/gnome-access-guide/C/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/C/figures/General_Tab.png -share/gnome/help/gnome-access-guide/C/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/C/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/C/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/C/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/C/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/C/figures/MainWindow.png -share/gnome/help/gnome-access-guide/C/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/C/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/C/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/C/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/C/figures/accessx.png -share/gnome/help/gnome-access-guide/C/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/C/figures/button.png -share/gnome/help/gnome-access-guide/C/figures/check_box.png -share/gnome/help/gnome-access-guide/C/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/C/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/C/figures/mousekeys.png -share/gnome/help/gnome-access-guide/C/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/C/figures/move_object_before.png -share/gnome/help/gnome-access-guide/C/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/C/figures/move_object_push.png -share/gnome/help/gnome-access-guide/C/figures/radio_button.png -share/gnome/help/gnome-access-guide/C/figures/slider.png -share/gnome/help/gnome-access-guide/C/figures/slowkeys.png -share/gnome/help/gnome-access-guide/C/figures/spin_box.png -share/gnome/help/gnome-access-guide/C/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/C/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/C/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/C/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/C/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/C/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/C/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/C/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/C/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/C/figures/text_box.png -share/gnome/help/gnome-access-guide/C/figures/tree.png -share/gnome/help/gnome-access-guide/C/general.xml -share/gnome/help/gnome-access-guide/C/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/C/legal.xml -share/gnome/help/gnome-access-guide/C/low-vision.xml -share/gnome/help/gnome-access-guide/C/mobility.xml -share/gnome/help/gnome-access-guide/C/preface.xml -share/gnome/help/gnome-access-guide/C/sysadmin.xml -share/gnome/help/gnome-access-guide/de/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/de/figures/General_Tab.png -share/gnome/help/gnome-access-guide/de/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/de/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/de/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/de/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/de/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/de/figures/MainWindow.png -share/gnome/help/gnome-access-guide/de/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/de/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/de/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/de/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/de/figures/accessx.png -share/gnome/help/gnome-access-guide/de/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/de/figures/button.png -share/gnome/help/gnome-access-guide/de/figures/check_box.png -share/gnome/help/gnome-access-guide/de/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/de/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/de/figures/mousekeys.png -share/gnome/help/gnome-access-guide/de/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/de/figures/move_object_before.png -share/gnome/help/gnome-access-guide/de/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/de/figures/move_object_push.png -share/gnome/help/gnome-access-guide/de/figures/radio_button.png -share/gnome/help/gnome-access-guide/de/figures/slider.png -share/gnome/help/gnome-access-guide/de/figures/slowkeys.png -share/gnome/help/gnome-access-guide/de/figures/spin_box.png -share/gnome/help/gnome-access-guide/de/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/de/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/de/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/de/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/de/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/de/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/de/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/de/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/de/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/de/figures/text_box.png -share/gnome/help/gnome-access-guide/de/figures/tree.png -share/gnome/help/gnome-access-guide/de/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/el/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/el/figures/General_Tab.png -share/gnome/help/gnome-access-guide/el/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/el/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/el/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/el/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/el/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/el/figures/MainWindow.png -share/gnome/help/gnome-access-guide/el/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/el/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/el/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/el/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/el/figures/accessx.png -share/gnome/help/gnome-access-guide/el/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/el/figures/button.png -share/gnome/help/gnome-access-guide/el/figures/check_box.png -share/gnome/help/gnome-access-guide/el/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/el/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/el/figures/mousekeys.png -share/gnome/help/gnome-access-guide/el/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/el/figures/move_object_before.png -share/gnome/help/gnome-access-guide/el/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/el/figures/move_object_push.png -share/gnome/help/gnome-access-guide/el/figures/radio_button.png -share/gnome/help/gnome-access-guide/el/figures/slider.png -share/gnome/help/gnome-access-guide/el/figures/slowkeys.png -share/gnome/help/gnome-access-guide/el/figures/spin_box.png -share/gnome/help/gnome-access-guide/el/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/el/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/el/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/el/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/el/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/el/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/el/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/el/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/el/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/el/figures/text_box.png -share/gnome/help/gnome-access-guide/el/figures/tree.png -share/gnome/help/gnome-access-guide/el/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/en_GB/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/General_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/en_GB/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/en_GB/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/MainWindow.png -share/gnome/help/gnome-access-guide/en_GB/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/en_GB/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/en_GB/figures/accessx.png -share/gnome/help/gnome-access-guide/en_GB/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/en_GB/figures/button.png -share/gnome/help/gnome-access-guide/en_GB/figures/check_box.png -share/gnome/help/gnome-access-guide/en_GB/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/en_GB/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/en_GB/figures/mousekeys.png -share/gnome/help/gnome-access-guide/en_GB/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/en_GB/figures/move_object_before.png -share/gnome/help/gnome-access-guide/en_GB/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/en_GB/figures/move_object_push.png -share/gnome/help/gnome-access-guide/en_GB/figures/radio_button.png -share/gnome/help/gnome-access-guide/en_GB/figures/slider.png -share/gnome/help/gnome-access-guide/en_GB/figures/slowkeys.png -share/gnome/help/gnome-access-guide/en_GB/figures/spin_box.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/en_GB/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/en_GB/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/en_GB/figures/text_box.png -share/gnome/help/gnome-access-guide/en_GB/figures/tree.png -share/gnome/help/gnome-access-guide/en_GB/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/es/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/es/figures/General_Tab.png -share/gnome/help/gnome-access-guide/es/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/es/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/es/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/es/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/es/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/es/figures/MainWindow.png -share/gnome/help/gnome-access-guide/es/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/es/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/es/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/es/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/es/figures/accessx.png -share/gnome/help/gnome-access-guide/es/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/es/figures/button.png -share/gnome/help/gnome-access-guide/es/figures/check_box.png -share/gnome/help/gnome-access-guide/es/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/es/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/es/figures/mousekeys.png -share/gnome/help/gnome-access-guide/es/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/es/figures/move_object_before.png -share/gnome/help/gnome-access-guide/es/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/es/figures/move_object_push.png -share/gnome/help/gnome-access-guide/es/figures/radio_button.png -share/gnome/help/gnome-access-guide/es/figures/slider.png -share/gnome/help/gnome-access-guide/es/figures/slowkeys.png -share/gnome/help/gnome-access-guide/es/figures/spin_box.png -share/gnome/help/gnome-access-guide/es/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/es/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/es/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/es/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/es/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/es/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/es/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/es/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/es/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/es/figures/text_box.png -share/gnome/help/gnome-access-guide/es/figures/tree.png -share/gnome/help/gnome-access-guide/es/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/eu/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/General_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/eu/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/eu/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/MainWindow.png -share/gnome/help/gnome-access-guide/eu/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/eu/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/eu/figures/accessx.png -share/gnome/help/gnome-access-guide/eu/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/eu/figures/button.png -share/gnome/help/gnome-access-guide/eu/figures/check_box.png -share/gnome/help/gnome-access-guide/eu/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/eu/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/eu/figures/mousekeys.png -share/gnome/help/gnome-access-guide/eu/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/eu/figures/move_object_before.png -share/gnome/help/gnome-access-guide/eu/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/eu/figures/move_object_push.png -share/gnome/help/gnome-access-guide/eu/figures/radio_button.png -share/gnome/help/gnome-access-guide/eu/figures/slider.png -share/gnome/help/gnome-access-guide/eu/figures/slowkeys.png -share/gnome/help/gnome-access-guide/eu/figures/spin_box.png -share/gnome/help/gnome-access-guide/eu/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/eu/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/eu/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/eu/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/eu/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/eu/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/eu/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/eu/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/eu/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/eu/figures/text_box.png -share/gnome/help/gnome-access-guide/eu/figures/tree.png -share/gnome/help/gnome-access-guide/eu/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/fi/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/General_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/fi/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/fi/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/MainWindow.png -share/gnome/help/gnome-access-guide/fi/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/fi/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/fi/figures/accessx.png -share/gnome/help/gnome-access-guide/fi/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/fi/figures/button.png -share/gnome/help/gnome-access-guide/fi/figures/check_box.png -share/gnome/help/gnome-access-guide/fi/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/fi/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/fi/figures/mousekeys.png -share/gnome/help/gnome-access-guide/fi/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/fi/figures/move_object_before.png -share/gnome/help/gnome-access-guide/fi/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/fi/figures/move_object_push.png -share/gnome/help/gnome-access-guide/fi/figures/radio_button.png -share/gnome/help/gnome-access-guide/fi/figures/slider.png -share/gnome/help/gnome-access-guide/fi/figures/slowkeys.png -share/gnome/help/gnome-access-guide/fi/figures/spin_box.png -share/gnome/help/gnome-access-guide/fi/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/fi/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/fi/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/fi/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/fi/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/fi/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/fi/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/fi/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/fi/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/fi/figures/text_box.png -share/gnome/help/gnome-access-guide/fi/figures/tree.png -share/gnome/help/gnome-access-guide/fi/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/fr/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/General_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/fr/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/fr/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/MainWindow.png -share/gnome/help/gnome-access-guide/fr/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/fr/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/fr/figures/accessx.png -share/gnome/help/gnome-access-guide/fr/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/fr/figures/button.png -share/gnome/help/gnome-access-guide/fr/figures/check_box.png -share/gnome/help/gnome-access-guide/fr/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/fr/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/fr/figures/mousekeys.png -share/gnome/help/gnome-access-guide/fr/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/fr/figures/move_object_before.png -share/gnome/help/gnome-access-guide/fr/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/fr/figures/move_object_push.png -share/gnome/help/gnome-access-guide/fr/figures/radio_button.png -share/gnome/help/gnome-access-guide/fr/figures/slider.png -share/gnome/help/gnome-access-guide/fr/figures/slowkeys.png -share/gnome/help/gnome-access-guide/fr/figures/spin_box.png -share/gnome/help/gnome-access-guide/fr/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/fr/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/fr/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/fr/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/fr/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/fr/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/fr/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/fr/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/fr/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/fr/figures/text_box.png -share/gnome/help/gnome-access-guide/fr/figures/tree.png -share/gnome/help/gnome-access-guide/fr/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/hu/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/General_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/hu/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/hu/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/MainWindow.png -share/gnome/help/gnome-access-guide/hu/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/hu/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/hu/figures/accessx.png -share/gnome/help/gnome-access-guide/hu/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/hu/figures/button.png -share/gnome/help/gnome-access-guide/hu/figures/check_box.png -share/gnome/help/gnome-access-guide/hu/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/hu/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/hu/figures/mousekeys.png -share/gnome/help/gnome-access-guide/hu/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/hu/figures/move_object_before.png -share/gnome/help/gnome-access-guide/hu/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/hu/figures/move_object_push.png -share/gnome/help/gnome-access-guide/hu/figures/radio_button.png -share/gnome/help/gnome-access-guide/hu/figures/slider.png -share/gnome/help/gnome-access-guide/hu/figures/slowkeys.png -share/gnome/help/gnome-access-guide/hu/figures/spin_box.png -share/gnome/help/gnome-access-guide/hu/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/hu/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/hu/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/hu/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/hu/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/hu/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/hu/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/hu/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/hu/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/hu/figures/text_box.png -share/gnome/help/gnome-access-guide/hu/figures/tree.png -share/gnome/help/gnome-access-guide/hu/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/it/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/it/figures/General_Tab.png -share/gnome/help/gnome-access-guide/it/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/it/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/it/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/it/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/it/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/it/figures/MainWindow.png -share/gnome/help/gnome-access-guide/it/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/it/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/it/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/it/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/it/figures/accessx.png -share/gnome/help/gnome-access-guide/it/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/it/figures/button.png -share/gnome/help/gnome-access-guide/it/figures/check_box.png -share/gnome/help/gnome-access-guide/it/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/it/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/it/figures/mousekeys.png -share/gnome/help/gnome-access-guide/it/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/it/figures/move_object_before.png -share/gnome/help/gnome-access-guide/it/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/it/figures/move_object_push.png -share/gnome/help/gnome-access-guide/it/figures/radio_button.png -share/gnome/help/gnome-access-guide/it/figures/slider.png -share/gnome/help/gnome-access-guide/it/figures/slowkeys.png -share/gnome/help/gnome-access-guide/it/figures/spin_box.png -share/gnome/help/gnome-access-guide/it/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/it/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/it/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/it/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/it/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/it/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/it/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/it/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/it/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/it/figures/text_box.png -share/gnome/help/gnome-access-guide/it/figures/tree.png -share/gnome/help/gnome-access-guide/it/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/oc/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/General_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/oc/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/oc/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/MainWindow.png -share/gnome/help/gnome-access-guide/oc/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/oc/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/oc/figures/accessx.png -share/gnome/help/gnome-access-guide/oc/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/oc/figures/button.png -share/gnome/help/gnome-access-guide/oc/figures/check_box.png -share/gnome/help/gnome-access-guide/oc/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/oc/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/oc/figures/mousekeys.png -share/gnome/help/gnome-access-guide/oc/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/oc/figures/move_object_before.png -share/gnome/help/gnome-access-guide/oc/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/oc/figures/move_object_push.png -share/gnome/help/gnome-access-guide/oc/figures/radio_button.png -share/gnome/help/gnome-access-guide/oc/figures/slider.png -share/gnome/help/gnome-access-guide/oc/figures/slowkeys.png -share/gnome/help/gnome-access-guide/oc/figures/spin_box.png -share/gnome/help/gnome-access-guide/oc/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/oc/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/oc/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/oc/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/oc/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/oc/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/oc/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/oc/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/oc/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/oc/figures/text_box.png -share/gnome/help/gnome-access-guide/oc/figures/tree.png -share/gnome/help/gnome-access-guide/oc/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/pt/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/General_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/pt/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/pt/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/MainWindow.png -share/gnome/help/gnome-access-guide/pt/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/pt/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/pt/figures/accessx.png -share/gnome/help/gnome-access-guide/pt/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/pt/figures/button.png -share/gnome/help/gnome-access-guide/pt/figures/check_box.png -share/gnome/help/gnome-access-guide/pt/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/pt/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/pt/figures/mousekeys.png -share/gnome/help/gnome-access-guide/pt/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/pt/figures/move_object_before.png -share/gnome/help/gnome-access-guide/pt/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/pt/figures/move_object_push.png -share/gnome/help/gnome-access-guide/pt/figures/radio_button.png -share/gnome/help/gnome-access-guide/pt/figures/slider.png -share/gnome/help/gnome-access-guide/pt/figures/slowkeys.png -share/gnome/help/gnome-access-guide/pt/figures/spin_box.png -share/gnome/help/gnome-access-guide/pt/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/pt/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/pt/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/pt/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/pt/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/pt/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/pt/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/pt/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/pt/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/pt/figures/text_box.png -share/gnome/help/gnome-access-guide/pt/figures/tree.png -share/gnome/help/gnome-access-guide/pt/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/sv/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/General_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/sv/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/sv/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/MainWindow.png -share/gnome/help/gnome-access-guide/sv/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/sv/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/sv/figures/accessx.png -share/gnome/help/gnome-access-guide/sv/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/sv/figures/button.png -share/gnome/help/gnome-access-guide/sv/figures/check_box.png -share/gnome/help/gnome-access-guide/sv/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/sv/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/sv/figures/mousekeys.png -share/gnome/help/gnome-access-guide/sv/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/sv/figures/move_object_before.png -share/gnome/help/gnome-access-guide/sv/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/sv/figures/move_object_push.png -share/gnome/help/gnome-access-guide/sv/figures/radio_button.png -share/gnome/help/gnome-access-guide/sv/figures/slider.png -share/gnome/help/gnome-access-guide/sv/figures/slowkeys.png -share/gnome/help/gnome-access-guide/sv/figures/spin_box.png -share/gnome/help/gnome-access-guide/sv/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/sv/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/sv/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/sv/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/sv/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/sv/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/sv/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/sv/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/sv/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/sv/figures/text_box.png -share/gnome/help/gnome-access-guide/sv/figures/tree.png -share/gnome/help/gnome-access-guide/sv/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/zh_CN/figures/Braille_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/General_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/KeyBindings_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/KeyBindings_Tab_Unbound.png -share/gnome/help/gnome-access-guide/zh_CN/figures/KeyEcho_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/Magnifier_Advanced.png -share/gnome/help/gnome-access-guide/zh_CN/figures/Magnifier_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/MainWindow.png -share/gnome/help/gnome-access-guide/zh_CN/figures/Pronunciation_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/RPM_search_gnome_common.png -share/gnome/help/gnome-access-guide/zh_CN/figures/Speech_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/TextAttributes_Tab.png -share/gnome/help/gnome-access-guide/zh_CN/figures/accessx.png -share/gnome/help/gnome-access-guide/zh_CN/figures/bouncekeys.png -share/gnome/help/gnome-access-guide/zh_CN/figures/button.png -share/gnome/help/gnome-access-guide/zh_CN/figures/check_box.png -share/gnome/help/gnome-access-guide/zh_CN/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/zh_CN/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/zh_CN/figures/mousekeys.png -share/gnome/help/gnome-access-guide/zh_CN/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/zh_CN/figures/move_object_before.png -share/gnome/help/gnome-access-guide/zh_CN/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/zh_CN/figures/move_object_push.png -share/gnome/help/gnome-access-guide/zh_CN/figures/radio_button.png -share/gnome/help/gnome-access-guide/zh_CN/figures/slider.png -share/gnome/help/gnome-access-guide/zh_CN/figures/slowkeys.png -share/gnome/help/gnome-access-guide/zh_CN/figures/spin_box.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickyaltlatch.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickyaltlock.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickyctrllatch.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickyctrllock.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickyshiftlatch.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickyshiftlock.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickywindowlatch.png -share/gnome/help/gnome-access-guide/zh_CN/figures/stickywindowlock.png -share/gnome/help/gnome-access-guide/zh_CN/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/zh_CN/figures/text_box.png -share/gnome/help/gnome-access-guide/zh_CN/figures/tree.png -share/gnome/help/gnome-access-guide/zh_CN/gnome-access-guide.xml -share/gnome/help/system-admin-guide/C/appendixa.xml -share/gnome/help/system-admin-guide/C/appendixb.xml -share/gnome/help/system-admin-guide/C/fontconfig.xml -share/gnome/help/system-admin-guide/C/gconf.xml -share/gnome/help/system-admin-guide/C/glossary.xml -share/gnome/help/system-admin-guide/C/help.xml -share/gnome/help/system-admin-guide/C/legal.xml -share/gnome/help/system-admin-guide/C/lockdown.xml -share/gnome/help/system-admin-guide/C/menustructure.xml -share/gnome/help/system-admin-guide/C/mimetypes.xml -share/gnome/help/system-admin-guide/C/performance.xml -share/gnome/help/system-admin-guide/C/screensavers.xml -share/gnome/help/system-admin-guide/C/sessions.xml -share/gnome/help/system-admin-guide/C/system-admin-guide.xml -share/gnome/help/system-admin-guide/C/themes.xml -share/gnome/help/system-admin-guide/ca/system-admin-guide.xml -share/gnome/help/system-admin-guide/de/system-admin-guide.xml -share/gnome/help/system-admin-guide/el/system-admin-guide.xml -share/gnome/help/system-admin-guide/es/system-admin-guide.xml -share/gnome/help/system-admin-guide/eu/system-admin-guide.xml -share/gnome/help/system-admin-guide/fi/system-admin-guide.xml -share/gnome/help/system-admin-guide/fr/system-admin-guide.xml -share/gnome/help/system-admin-guide/it/system-admin-guide.xml -share/gnome/help/system-admin-guide/ja/system-admin-guide.xml -share/gnome/help/system-admin-guide/ko/system-admin-guide.xml -share/gnome/help/system-admin-guide/oc/system-admin-guide.xml -share/gnome/help/system-admin-guide/pa/system-admin-guide.xml -share/gnome/help/system-admin-guide/pt/system-admin-guide.xml -share/gnome/help/system-admin-guide/sv/system-admin-guide.xml -share/gnome/help/system-admin-guide/zh_CN/system-admin-guide.xml -share/gnome/help/user-guide/C/figures/ask_pointer.png -share/gnome/help/user-guide/C/figures/busy_pointer.png -share/gnome/help/user-guide/C/figures/com_file_manager_menu.png -share/gnome/help/user-guide/C/figures/copy_pointer.png -share/gnome/help/user-guide/C/figures/force_quit.png -share/gnome/help/user-guide/C/figures/four_hide_button.png -share/gnome/help/user-guide/C/figures/gedit_window.png -share/gnome/help/user-guide/C/figures/gnome_panel.png -share/gnome/help/user-guide/C/figures/hyperlink_pointer.png -share/gnome/help/user-guide/C/figures/ibeam_pointer.png -share/gnome/help/user-guide/C/figures/link_pointer.png -share/gnome/help/user-guide/C/figures/lockscreen_icon.png -share/gnome/help/user-guide/C/figures/logout_icon.png -share/gnome/help/user-guide/C/figures/menu_bar_applet.png -share/gnome/help/user-guide/C/figures/menu_panel.png -share/gnome/help/user-guide/C/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/C/figures/move_pointer.png -share/gnome/help/user-guide/C/figures/movewindow_pointer.png -share/gnome/help/user-guide/C/figures/naut_browser_mode.png -share/gnome/help/user-guide/C/figures/naut_button_bar.png -share/gnome/help/user-guide/C/figures/naut_computer_launcher.png -share/gnome/help/user-guide/C/figures/naut_emblem.png -share/gnome/help/user-guide/C/figures/naut_go_to_location.png -share/gnome/help/user-guide/C/figures/naut_link_emblem.png -share/gnome/help/user-guide/C/figures/naut_noread_emblem.png -share/gnome/help/user-guide/C/figures/naut_normal_size_button.png -share/gnome/help/user-guide/C/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/C/figures/naut_refine_search.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/C/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/C/figures/naut_search_bar.png -share/gnome/help/user-guide/C/figures/naut_search_results.png -share/gnome/help/user-guide/C/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/C/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/C/figures/naut_spatial_mode.png -share/gnome/help/user-guide/C/figures/naut_spatial_view.png -share/gnome/help/user-guide/C/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/C/figures/naut_trash_launcher.png -share/gnome/help/user-guide/C/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/C/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/C/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/C/figures/normal_pointer.png -share/gnome/help/user-guide/C/figures/not_available_pointer.png -share/gnome/help/user-guide/C/figures/notification_area_icon.png -share/gnome/help/user-guide/C/figures/open_drawer.png -share/gnome/help/user-guide/C/figures/openwindows_menu.png -share/gnome/help/user-guide/C/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/C/figures/resize_pointer.png -share/gnome/help/user-guide/C/figures/run_button.png -share/gnome/help/user-guide/C/figures/sample_applet.png -share/gnome/help/user-guide/C/figures/screenshot_button.png -share/gnome/help/user-guide/C/figures/searchtool_button.png -share/gnome/help/user-guide/C/figures/show_desktop_button.png -share/gnome/help/user-guide/C/figures/titlebar_anno_window.png -share/gnome/help/user-guide/C/figures/titlebar_window.png -share/gnome/help/user-guide/C/figures/typical_menu.png -share/gnome/help/user-guide/C/figures/window_list_applet.png -share/gnome/help/user-guide/C/figures/window_list_group_applet.png -share/gnome/help/user-guide/C/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/C/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/C/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/C/figures/yelp_preferences.png -share/gnome/help/user-guide/C/figures/yelp_window.png -share/gnome/help/user-guide/C/glossary.xml -share/gnome/help/user-guide/C/gosbasic.xml -share/gnome/help/user-guide/C/goscustdesk.xml -share/gnome/help/user-guide/C/goseditmainmenu.xml -share/gnome/help/user-guide/C/gosfeedback.xml -share/gnome/help/user-guide/C/gosnautilus.xml -share/gnome/help/user-guide/C/gosoverview.xml -share/gnome/help/user-guide/C/gospanel.xml -share/gnome/help/user-guide/C/gosstartsession.xml -share/gnome/help/user-guide/C/gostools.xml -share/gnome/help/user-guide/C/legal.xml -share/gnome/help/user-guide/C/user-guide.xml -share/gnome/help/user-guide/ar/figures/ask_pointer.png -share/gnome/help/user-guide/ar/figures/busy_pointer.png -share/gnome/help/user-guide/ar/figures/com_file_manager_menu.png -share/gnome/help/user-guide/ar/figures/copy_pointer.png -share/gnome/help/user-guide/ar/figures/force_quit.png -share/gnome/help/user-guide/ar/figures/four_hide_button.png -share/gnome/help/user-guide/ar/figures/gedit_window.png -share/gnome/help/user-guide/ar/figures/gnome_panel.png -share/gnome/help/user-guide/ar/figures/hyperlink_pointer.png -share/gnome/help/user-guide/ar/figures/ibeam_pointer.png -share/gnome/help/user-guide/ar/figures/link_pointer.png -share/gnome/help/user-guide/ar/figures/lockscreen_icon.png -share/gnome/help/user-guide/ar/figures/logout_icon.png -share/gnome/help/user-guide/ar/figures/menu_bar_applet.png -share/gnome/help/user-guide/ar/figures/menu_panel.png -share/gnome/help/user-guide/ar/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/ar/figures/move_pointer.png -share/gnome/help/user-guide/ar/figures/movewindow_pointer.png -share/gnome/help/user-guide/ar/figures/naut_browser_mode.png -share/gnome/help/user-guide/ar/figures/naut_button_bar.png -share/gnome/help/user-guide/ar/figures/naut_computer_launcher.png -share/gnome/help/user-guide/ar/figures/naut_emblem.png -share/gnome/help/user-guide/ar/figures/naut_go_to_location.png -share/gnome/help/user-guide/ar/figures/naut_link_emblem.png -share/gnome/help/user-guide/ar/figures/naut_noread_emblem.png -share/gnome/help/user-guide/ar/figures/naut_normal_size_button.png -share/gnome/help/user-guide/ar/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/ar/figures/naut_refine_search.png -share/gnome/help/user-guide/ar/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/ar/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/ar/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/ar/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/ar/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/ar/figures/naut_search_bar.png -share/gnome/help/user-guide/ar/figures/naut_search_results.png -share/gnome/help/user-guide/ar/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/ar/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/ar/figures/naut_spatial_mode.png -share/gnome/help/user-guide/ar/figures/naut_spatial_view.png -share/gnome/help/user-guide/ar/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/ar/figures/naut_trash_launcher.png -share/gnome/help/user-guide/ar/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/ar/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/ar/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/ar/figures/normal_pointer.png -share/gnome/help/user-guide/ar/figures/not_available_pointer.png -share/gnome/help/user-guide/ar/figures/notification_area_icon.png -share/gnome/help/user-guide/ar/figures/open_drawer.png -share/gnome/help/user-guide/ar/figures/openwindows_menu.png -share/gnome/help/user-guide/ar/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/ar/figures/resize_pointer.png -share/gnome/help/user-guide/ar/figures/run_button.png -share/gnome/help/user-guide/ar/figures/sample_applet.png -share/gnome/help/user-guide/ar/figures/screenshot_button.png -share/gnome/help/user-guide/ar/figures/searchtool_button.png -share/gnome/help/user-guide/ar/figures/show_desktop_button.png -share/gnome/help/user-guide/ar/figures/titlebar_anno_window.png -share/gnome/help/user-guide/ar/figures/titlebar_window.png -share/gnome/help/user-guide/ar/figures/typical_menu.png -share/gnome/help/user-guide/ar/figures/window_list_applet.png -share/gnome/help/user-guide/ar/figures/window_list_group_applet.png -share/gnome/help/user-guide/ar/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/ar/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/ar/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/ar/figures/yelp_preferences.png -share/gnome/help/user-guide/ar/figures/yelp_window.png -share/gnome/help/user-guide/ar/glossary.xml -share/gnome/help/user-guide/ar/gosbasic.xml -share/gnome/help/user-guide/ar/goscustdesk.xml -share/gnome/help/user-guide/ar/goseditmainmenu.xml -share/gnome/help/user-guide/ar/gosfeedback.xml -share/gnome/help/user-guide/ar/gosnautilus.xml -share/gnome/help/user-guide/ar/gosoverview.xml -share/gnome/help/user-guide/ar/gospanel.xml -share/gnome/help/user-guide/ar/gosstartsession.xml -share/gnome/help/user-guide/ar/gostools.xml -share/gnome/help/user-guide/ar/user-guide.xml -share/gnome/help/user-guide/bg/figures/ask_pointer.png -share/gnome/help/user-guide/bg/figures/busy_pointer.png -share/gnome/help/user-guide/bg/figures/com_file_manager_menu.png -share/gnome/help/user-guide/bg/figures/copy_pointer.png -share/gnome/help/user-guide/bg/figures/force_quit.png -share/gnome/help/user-guide/bg/figures/four_hide_button.png -share/gnome/help/user-guide/bg/figures/gedit_window.png -share/gnome/help/user-guide/bg/figures/gnome_panel.png -share/gnome/help/user-guide/bg/figures/hyperlink_pointer.png -share/gnome/help/user-guide/bg/figures/ibeam_pointer.png -share/gnome/help/user-guide/bg/figures/link_pointer.png -share/gnome/help/user-guide/bg/figures/lockscreen_icon.png -share/gnome/help/user-guide/bg/figures/logout_icon.png -share/gnome/help/user-guide/bg/figures/menu_bar_applet.png -share/gnome/help/user-guide/bg/figures/menu_panel.png -share/gnome/help/user-guide/bg/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/bg/figures/move_pointer.png -share/gnome/help/user-guide/bg/figures/movewindow_pointer.png -share/gnome/help/user-guide/bg/figures/naut_browser_mode.png -share/gnome/help/user-guide/bg/figures/naut_button_bar.png -share/gnome/help/user-guide/bg/figures/naut_computer_launcher.png -share/gnome/help/user-guide/bg/figures/naut_emblem.png -share/gnome/help/user-guide/bg/figures/naut_go_to_location.png -share/gnome/help/user-guide/bg/figures/naut_link_emblem.png -share/gnome/help/user-guide/bg/figures/naut_noread_emblem.png -share/gnome/help/user-guide/bg/figures/naut_normal_size_button.png -share/gnome/help/user-guide/bg/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/bg/figures/naut_refine_search.png -share/gnome/help/user-guide/bg/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/bg/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/bg/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/bg/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/bg/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/bg/figures/naut_search_bar.png -share/gnome/help/user-guide/bg/figures/naut_search_results.png -share/gnome/help/user-guide/bg/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/bg/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/bg/figures/naut_spatial_mode.png -share/gnome/help/user-guide/bg/figures/naut_spatial_view.png -share/gnome/help/user-guide/bg/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/bg/figures/naut_trash_launcher.png -share/gnome/help/user-guide/bg/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/bg/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/bg/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/bg/figures/normal_pointer.png -share/gnome/help/user-guide/bg/figures/not_available_pointer.png -share/gnome/help/user-guide/bg/figures/notification_area_icon.png -share/gnome/help/user-guide/bg/figures/open_drawer.png -share/gnome/help/user-guide/bg/figures/openwindows_menu.png -share/gnome/help/user-guide/bg/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/bg/figures/resize_pointer.png -share/gnome/help/user-guide/bg/figures/run_button.png -share/gnome/help/user-guide/bg/figures/sample_applet.png -share/gnome/help/user-guide/bg/figures/screenshot_button.png -share/gnome/help/user-guide/bg/figures/searchtool_button.png -share/gnome/help/user-guide/bg/figures/show_desktop_button.png -share/gnome/help/user-guide/bg/figures/titlebar_anno_window.png -share/gnome/help/user-guide/bg/figures/titlebar_window.png -share/gnome/help/user-guide/bg/figures/typical_menu.png -share/gnome/help/user-guide/bg/figures/window_list_applet.png -share/gnome/help/user-guide/bg/figures/window_list_group_applet.png -share/gnome/help/user-guide/bg/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/bg/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/bg/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/bg/figures/yelp_preferences.png -share/gnome/help/user-guide/bg/figures/yelp_window.png -share/gnome/help/user-guide/bg/glossary.xml -share/gnome/help/user-guide/bg/gosbasic.xml -share/gnome/help/user-guide/bg/goscustdesk.xml -share/gnome/help/user-guide/bg/goseditmainmenu.xml -share/gnome/help/user-guide/bg/gosfeedback.xml -share/gnome/help/user-guide/bg/gosnautilus.xml -share/gnome/help/user-guide/bg/gosoverview.xml -share/gnome/help/user-guide/bg/gospanel.xml -share/gnome/help/user-guide/bg/gosstartsession.xml -share/gnome/help/user-guide/bg/gostools.xml -share/gnome/help/user-guide/bg/user-guide.xml -share/gnome/help/user-guide/cs/figures/ask_pointer.png -share/gnome/help/user-guide/cs/figures/busy_pointer.png -share/gnome/help/user-guide/cs/figures/com_file_manager_menu.png -share/gnome/help/user-guide/cs/figures/copy_pointer.png -share/gnome/help/user-guide/cs/figures/force_quit.png -share/gnome/help/user-guide/cs/figures/four_hide_button.png -share/gnome/help/user-guide/cs/figures/gedit_window.png -share/gnome/help/user-guide/cs/figures/gnome_panel.png -share/gnome/help/user-guide/cs/figures/hyperlink_pointer.png -share/gnome/help/user-guide/cs/figures/ibeam_pointer.png -share/gnome/help/user-guide/cs/figures/link_pointer.png -share/gnome/help/user-guide/cs/figures/lockscreen_icon.png -share/gnome/help/user-guide/cs/figures/logout_icon.png -share/gnome/help/user-guide/cs/figures/menu_bar_applet.png -share/gnome/help/user-guide/cs/figures/menu_panel.png -share/gnome/help/user-guide/cs/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/cs/figures/move_pointer.png -share/gnome/help/user-guide/cs/figures/movewindow_pointer.png -share/gnome/help/user-guide/cs/figures/naut_browser_mode.png -share/gnome/help/user-guide/cs/figures/naut_button_bar.png -share/gnome/help/user-guide/cs/figures/naut_computer_launcher.png -share/gnome/help/user-guide/cs/figures/naut_emblem.png -share/gnome/help/user-guide/cs/figures/naut_go_to_location.png -share/gnome/help/user-guide/cs/figures/naut_link_emblem.png -share/gnome/help/user-guide/cs/figures/naut_noread_emblem.png -share/gnome/help/user-guide/cs/figures/naut_normal_size_button.png -share/gnome/help/user-guide/cs/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/cs/figures/naut_refine_search.png -share/gnome/help/user-guide/cs/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/cs/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/cs/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/cs/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/cs/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/cs/figures/naut_search_bar.png -share/gnome/help/user-guide/cs/figures/naut_search_results.png -share/gnome/help/user-guide/cs/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/cs/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/cs/figures/naut_spatial_mode.png -share/gnome/help/user-guide/cs/figures/naut_spatial_view.png -share/gnome/help/user-guide/cs/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/cs/figures/naut_trash_launcher.png -share/gnome/help/user-guide/cs/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/cs/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/cs/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/cs/figures/normal_pointer.png -share/gnome/help/user-guide/cs/figures/not_available_pointer.png -share/gnome/help/user-guide/cs/figures/notification_area_icon.png -share/gnome/help/user-guide/cs/figures/open_drawer.png -share/gnome/help/user-guide/cs/figures/openwindows_menu.png -share/gnome/help/user-guide/cs/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/cs/figures/resize_pointer.png -share/gnome/help/user-guide/cs/figures/run_button.png -share/gnome/help/user-guide/cs/figures/sample_applet.png -share/gnome/help/user-guide/cs/figures/screenshot_button.png -share/gnome/help/user-guide/cs/figures/searchtool_button.png -share/gnome/help/user-guide/cs/figures/show_desktop_button.png -share/gnome/help/user-guide/cs/figures/titlebar_anno_window.png -share/gnome/help/user-guide/cs/figures/titlebar_window.png -share/gnome/help/user-guide/cs/figures/typical_menu.png -share/gnome/help/user-guide/cs/figures/window_list_applet.png -share/gnome/help/user-guide/cs/figures/window_list_group_applet.png -share/gnome/help/user-guide/cs/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/cs/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/cs/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/cs/figures/yelp_preferences.png -share/gnome/help/user-guide/cs/figures/yelp_window.png -share/gnome/help/user-guide/cs/glossary.xml -share/gnome/help/user-guide/cs/gosbasic.xml -share/gnome/help/user-guide/cs/goscustdesk.xml -share/gnome/help/user-guide/cs/goseditmainmenu.xml -share/gnome/help/user-guide/cs/gosfeedback.xml -share/gnome/help/user-guide/cs/gosnautilus.xml -share/gnome/help/user-guide/cs/gosoverview.xml -share/gnome/help/user-guide/cs/gospanel.xml -share/gnome/help/user-guide/cs/gosstartsession.xml -share/gnome/help/user-guide/cs/gostools.xml -share/gnome/help/user-guide/cs/user-guide.xml -share/gnome/help/user-guide/de/figures/ask_pointer.png -share/gnome/help/user-guide/de/figures/busy_pointer.png -share/gnome/help/user-guide/de/figures/com_file_manager_menu.png -share/gnome/help/user-guide/de/figures/copy_pointer.png -share/gnome/help/user-guide/de/figures/force_quit.png -share/gnome/help/user-guide/de/figures/four_hide_button.png -share/gnome/help/user-guide/de/figures/gedit_window.png -share/gnome/help/user-guide/de/figures/gnome_panel.png -share/gnome/help/user-guide/de/figures/hyperlink_pointer.png -share/gnome/help/user-guide/de/figures/ibeam_pointer.png -share/gnome/help/user-guide/de/figures/link_pointer.png -share/gnome/help/user-guide/de/figures/lockscreen_icon.png -share/gnome/help/user-guide/de/figures/logout_icon.png -share/gnome/help/user-guide/de/figures/menu_bar_applet.png -share/gnome/help/user-guide/de/figures/menu_panel.png -share/gnome/help/user-guide/de/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/de/figures/move_pointer.png -share/gnome/help/user-guide/de/figures/movewindow_pointer.png -share/gnome/help/user-guide/de/figures/naut_browser_mode.png -share/gnome/help/user-guide/de/figures/naut_button_bar.png -share/gnome/help/user-guide/de/figures/naut_computer_launcher.png -share/gnome/help/user-guide/de/figures/naut_emblem.png -share/gnome/help/user-guide/de/figures/naut_go_to_location.png -share/gnome/help/user-guide/de/figures/naut_link_emblem.png -share/gnome/help/user-guide/de/figures/naut_noread_emblem.png -share/gnome/help/user-guide/de/figures/naut_normal_size_button.png -share/gnome/help/user-guide/de/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/de/figures/naut_refine_search.png -share/gnome/help/user-guide/de/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/de/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/de/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/de/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/de/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/de/figures/naut_search_bar.png -share/gnome/help/user-guide/de/figures/naut_search_results.png -share/gnome/help/user-guide/de/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/de/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/de/figures/naut_spatial_mode.png -share/gnome/help/user-guide/de/figures/naut_spatial_view.png -share/gnome/help/user-guide/de/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/de/figures/naut_trash_launcher.png -share/gnome/help/user-guide/de/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/de/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/de/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/de/figures/normal_pointer.png -share/gnome/help/user-guide/de/figures/not_available_pointer.png -share/gnome/help/user-guide/de/figures/notification_area_icon.png -share/gnome/help/user-guide/de/figures/open_drawer.png -share/gnome/help/user-guide/de/figures/openwindows_menu.png -share/gnome/help/user-guide/de/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/de/figures/resize_pointer.png -share/gnome/help/user-guide/de/figures/run_button.png -share/gnome/help/user-guide/de/figures/sample_applet.png -share/gnome/help/user-guide/de/figures/screenshot_button.png -share/gnome/help/user-guide/de/figures/searchtool_button.png -share/gnome/help/user-guide/de/figures/show_desktop_button.png -share/gnome/help/user-guide/de/figures/titlebar_anno_window.png -share/gnome/help/user-guide/de/figures/titlebar_window.png -share/gnome/help/user-guide/de/figures/typical_menu.png -share/gnome/help/user-guide/de/figures/window_list_applet.png -share/gnome/help/user-guide/de/figures/window_list_group_applet.png -share/gnome/help/user-guide/de/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/de/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/de/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/de/figures/yelp_preferences.png -share/gnome/help/user-guide/de/figures/yelp_window.png -share/gnome/help/user-guide/de/glossary.xml -share/gnome/help/user-guide/de/gosbasic.xml -share/gnome/help/user-guide/de/goscustdesk.xml -share/gnome/help/user-guide/de/goseditmainmenu.xml -share/gnome/help/user-guide/de/gosfeedback.xml -share/gnome/help/user-guide/de/gosnautilus.xml -share/gnome/help/user-guide/de/gosoverview.xml -share/gnome/help/user-guide/de/gospanel.xml -share/gnome/help/user-guide/de/gosstartsession.xml -share/gnome/help/user-guide/de/gostools.xml -share/gnome/help/user-guide/de/user-guide.xml -share/gnome/help/user-guide/el/figures/ask_pointer.png -share/gnome/help/user-guide/el/figures/busy_pointer.png -share/gnome/help/user-guide/el/figures/com_file_manager_menu.png -share/gnome/help/user-guide/el/figures/copy_pointer.png -share/gnome/help/user-guide/el/figures/force_quit.png -share/gnome/help/user-guide/el/figures/four_hide_button.png -share/gnome/help/user-guide/el/figures/gedit_window.png -share/gnome/help/user-guide/el/figures/gnome_panel.png -share/gnome/help/user-guide/el/figures/hyperlink_pointer.png -share/gnome/help/user-guide/el/figures/ibeam_pointer.png -share/gnome/help/user-guide/el/figures/link_pointer.png -share/gnome/help/user-guide/el/figures/lockscreen_icon.png -share/gnome/help/user-guide/el/figures/logout_icon.png -share/gnome/help/user-guide/el/figures/menu_bar_applet.png -share/gnome/help/user-guide/el/figures/menu_panel.png -share/gnome/help/user-guide/el/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/el/figures/move_pointer.png -share/gnome/help/user-guide/el/figures/movewindow_pointer.png -share/gnome/help/user-guide/el/figures/naut_browser_mode.png -share/gnome/help/user-guide/el/figures/naut_button_bar.png -share/gnome/help/user-guide/el/figures/naut_computer_launcher.png -share/gnome/help/user-guide/el/figures/naut_emblem.png -share/gnome/help/user-guide/el/figures/naut_go_to_location.png -share/gnome/help/user-guide/el/figures/naut_link_emblem.png -share/gnome/help/user-guide/el/figures/naut_noread_emblem.png -share/gnome/help/user-guide/el/figures/naut_normal_size_button.png -share/gnome/help/user-guide/el/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/el/figures/naut_refine_search.png -share/gnome/help/user-guide/el/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/el/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/el/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/el/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/el/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/el/figures/naut_search_bar.png -share/gnome/help/user-guide/el/figures/naut_search_results.png -share/gnome/help/user-guide/el/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/el/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/el/figures/naut_spatial_mode.png -share/gnome/help/user-guide/el/figures/naut_spatial_view.png -share/gnome/help/user-guide/el/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/el/figures/naut_trash_launcher.png -share/gnome/help/user-guide/el/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/el/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/el/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/el/figures/normal_pointer.png -share/gnome/help/user-guide/el/figures/not_available_pointer.png -share/gnome/help/user-guide/el/figures/notification_area_icon.png -share/gnome/help/user-guide/el/figures/open_drawer.png -share/gnome/help/user-guide/el/figures/openwindows_menu.png -share/gnome/help/user-guide/el/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/el/figures/resize_pointer.png -share/gnome/help/user-guide/el/figures/run_button.png -share/gnome/help/user-guide/el/figures/sample_applet.png -share/gnome/help/user-guide/el/figures/screenshot_button.png -share/gnome/help/user-guide/el/figures/searchtool_button.png -share/gnome/help/user-guide/el/figures/show_desktop_button.png -share/gnome/help/user-guide/el/figures/titlebar_anno_window.png -share/gnome/help/user-guide/el/figures/titlebar_window.png -share/gnome/help/user-guide/el/figures/typical_menu.png -share/gnome/help/user-guide/el/figures/window_list_applet.png -share/gnome/help/user-guide/el/figures/window_list_group_applet.png -share/gnome/help/user-guide/el/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/el/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/el/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/el/figures/yelp_preferences.png -share/gnome/help/user-guide/el/figures/yelp_window.png -share/gnome/help/user-guide/el/glossary.xml -share/gnome/help/user-guide/el/gosbasic.xml -share/gnome/help/user-guide/el/goscustdesk.xml -share/gnome/help/user-guide/el/goseditmainmenu.xml -share/gnome/help/user-guide/el/gosfeedback.xml -share/gnome/help/user-guide/el/gosnautilus.xml -share/gnome/help/user-guide/el/gosoverview.xml -share/gnome/help/user-guide/el/gospanel.xml -share/gnome/help/user-guide/el/gosstartsession.xml -share/gnome/help/user-guide/el/gostools.xml -share/gnome/help/user-guide/el/user-guide.xml -share/gnome/help/user-guide/es/figures/ask_pointer.png -share/gnome/help/user-guide/es/figures/busy_pointer.png -share/gnome/help/user-guide/es/figures/com_file_manager_menu.png -share/gnome/help/user-guide/es/figures/copy_pointer.png -share/gnome/help/user-guide/es/figures/force_quit.png -share/gnome/help/user-guide/es/figures/four_hide_button.png -share/gnome/help/user-guide/es/figures/gedit_window.png -share/gnome/help/user-guide/es/figures/gnome_panel.png -share/gnome/help/user-guide/es/figures/hyperlink_pointer.png -share/gnome/help/user-guide/es/figures/ibeam_pointer.png -share/gnome/help/user-guide/es/figures/link_pointer.png -share/gnome/help/user-guide/es/figures/lockscreen_icon.png -share/gnome/help/user-guide/es/figures/logout_icon.png -share/gnome/help/user-guide/es/figures/menu_bar_applet.png -share/gnome/help/user-guide/es/figures/menu_panel.png -share/gnome/help/user-guide/es/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/es/figures/move_pointer.png -share/gnome/help/user-guide/es/figures/movewindow_pointer.png -share/gnome/help/user-guide/es/figures/naut_browser_mode.png -share/gnome/help/user-guide/es/figures/naut_button_bar.png -share/gnome/help/user-guide/es/figures/naut_computer_launcher.png -share/gnome/help/user-guide/es/figures/naut_emblem.png -share/gnome/help/user-guide/es/figures/naut_go_to_location.png -share/gnome/help/user-guide/es/figures/naut_link_emblem.png -share/gnome/help/user-guide/es/figures/naut_noread_emblem.png -share/gnome/help/user-guide/es/figures/naut_normal_size_button.png -share/gnome/help/user-guide/es/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/es/figures/naut_refine_search.png -share/gnome/help/user-guide/es/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/es/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/es/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/es/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/es/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/es/figures/naut_search_bar.png -share/gnome/help/user-guide/es/figures/naut_search_results.png -share/gnome/help/user-guide/es/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/es/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/es/figures/naut_spatial_mode.png -share/gnome/help/user-guide/es/figures/naut_spatial_view.png -share/gnome/help/user-guide/es/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/es/figures/naut_trash_launcher.png -share/gnome/help/user-guide/es/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/es/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/es/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/es/figures/normal_pointer.png -share/gnome/help/user-guide/es/figures/not_available_pointer.png -share/gnome/help/user-guide/es/figures/notification_area_icon.png -share/gnome/help/user-guide/es/figures/open_drawer.png -share/gnome/help/user-guide/es/figures/openwindows_menu.png -share/gnome/help/user-guide/es/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/es/figures/resize_pointer.png -share/gnome/help/user-guide/es/figures/run_button.png -share/gnome/help/user-guide/es/figures/sample_applet.png -share/gnome/help/user-guide/es/figures/screenshot_button.png -share/gnome/help/user-guide/es/figures/searchtool_button.png -share/gnome/help/user-guide/es/figures/show_desktop_button.png -share/gnome/help/user-guide/es/figures/titlebar_anno_window.png -share/gnome/help/user-guide/es/figures/titlebar_window.png -share/gnome/help/user-guide/es/figures/typical_menu.png -share/gnome/help/user-guide/es/figures/window_list_applet.png -share/gnome/help/user-guide/es/figures/window_list_group_applet.png -share/gnome/help/user-guide/es/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/es/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/es/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/es/figures/yelp_preferences.png -share/gnome/help/user-guide/es/figures/yelp_window.png -share/gnome/help/user-guide/es/glossary.xml -share/gnome/help/user-guide/es/gosbasic.xml -share/gnome/help/user-guide/es/goscustdesk.xml -share/gnome/help/user-guide/es/goseditmainmenu.xml -share/gnome/help/user-guide/es/gosfeedback.xml -share/gnome/help/user-guide/es/gosnautilus.xml -share/gnome/help/user-guide/es/gosoverview.xml -share/gnome/help/user-guide/es/gospanel.xml -share/gnome/help/user-guide/es/gosstartsession.xml -share/gnome/help/user-guide/es/gostools.xml -share/gnome/help/user-guide/es/user-guide.xml -share/gnome/help/user-guide/fi/figures/ask_pointer.png -share/gnome/help/user-guide/fi/figures/busy_pointer.png -share/gnome/help/user-guide/fi/figures/com_file_manager_menu.png -share/gnome/help/user-guide/fi/figures/copy_pointer.png -share/gnome/help/user-guide/fi/figures/force_quit.png -share/gnome/help/user-guide/fi/figures/four_hide_button.png -share/gnome/help/user-guide/fi/figures/gedit_window.png -share/gnome/help/user-guide/fi/figures/gnome_panel.png -share/gnome/help/user-guide/fi/figures/hyperlink_pointer.png -share/gnome/help/user-guide/fi/figures/ibeam_pointer.png -share/gnome/help/user-guide/fi/figures/link_pointer.png -share/gnome/help/user-guide/fi/figures/lockscreen_icon.png -share/gnome/help/user-guide/fi/figures/logout_icon.png -share/gnome/help/user-guide/fi/figures/menu_bar_applet.png -share/gnome/help/user-guide/fi/figures/menu_panel.png -share/gnome/help/user-guide/fi/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/fi/figures/move_pointer.png -share/gnome/help/user-guide/fi/figures/movewindow_pointer.png -share/gnome/help/user-guide/fi/figures/naut_browser_mode.png -share/gnome/help/user-guide/fi/figures/naut_button_bar.png -share/gnome/help/user-guide/fi/figures/naut_computer_launcher.png -share/gnome/help/user-guide/fi/figures/naut_emblem.png -share/gnome/help/user-guide/fi/figures/naut_go_to_location.png -share/gnome/help/user-guide/fi/figures/naut_link_emblem.png -share/gnome/help/user-guide/fi/figures/naut_noread_emblem.png -share/gnome/help/user-guide/fi/figures/naut_normal_size_button.png -share/gnome/help/user-guide/fi/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/fi/figures/naut_refine_search.png -share/gnome/help/user-guide/fi/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/fi/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/fi/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/fi/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/fi/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/fi/figures/naut_search_bar.png -share/gnome/help/user-guide/fi/figures/naut_search_results.png -share/gnome/help/user-guide/fi/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/fi/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/fi/figures/naut_spatial_mode.png -share/gnome/help/user-guide/fi/figures/naut_spatial_view.png -share/gnome/help/user-guide/fi/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/fi/figures/naut_trash_launcher.png -share/gnome/help/user-guide/fi/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/fi/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/fi/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/fi/figures/normal_pointer.png -share/gnome/help/user-guide/fi/figures/not_available_pointer.png -share/gnome/help/user-guide/fi/figures/notification_area_icon.png -share/gnome/help/user-guide/fi/figures/open_drawer.png -share/gnome/help/user-guide/fi/figures/openwindows_menu.png -share/gnome/help/user-guide/fi/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/fi/figures/resize_pointer.png -share/gnome/help/user-guide/fi/figures/run_button.png -share/gnome/help/user-guide/fi/figures/sample_applet.png -share/gnome/help/user-guide/fi/figures/screenshot_button.png -share/gnome/help/user-guide/fi/figures/searchtool_button.png -share/gnome/help/user-guide/fi/figures/show_desktop_button.png -share/gnome/help/user-guide/fi/figures/titlebar_anno_window.png -share/gnome/help/user-guide/fi/figures/titlebar_window.png -share/gnome/help/user-guide/fi/figures/typical_menu.png -share/gnome/help/user-guide/fi/figures/window_list_applet.png -share/gnome/help/user-guide/fi/figures/window_list_group_applet.png -share/gnome/help/user-guide/fi/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/fi/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/fi/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/fi/figures/yelp_preferences.png -share/gnome/help/user-guide/fi/figures/yelp_window.png -share/gnome/help/user-guide/fi/glossary.xml -share/gnome/help/user-guide/fi/gosbasic.xml -share/gnome/help/user-guide/fi/goscustdesk.xml -share/gnome/help/user-guide/fi/goseditmainmenu.xml -share/gnome/help/user-guide/fi/gosfeedback.xml -share/gnome/help/user-guide/fi/gosnautilus.xml -share/gnome/help/user-guide/fi/gosoverview.xml -share/gnome/help/user-guide/fi/gospanel.xml -share/gnome/help/user-guide/fi/gosstartsession.xml -share/gnome/help/user-guide/fi/gostools.xml -share/gnome/help/user-guide/fi/user-guide.xml -share/gnome/help/user-guide/fr/figures/ask_pointer.png -share/gnome/help/user-guide/fr/figures/busy_pointer.png -share/gnome/help/user-guide/fr/figures/com_file_manager_menu.png -share/gnome/help/user-guide/fr/figures/copy_pointer.png -share/gnome/help/user-guide/fr/figures/force_quit.png -share/gnome/help/user-guide/fr/figures/four_hide_button.png -share/gnome/help/user-guide/fr/figures/gedit_window.png -share/gnome/help/user-guide/fr/figures/gnome_panel.png -share/gnome/help/user-guide/fr/figures/hyperlink_pointer.png -share/gnome/help/user-guide/fr/figures/ibeam_pointer.png -share/gnome/help/user-guide/fr/figures/link_pointer.png -share/gnome/help/user-guide/fr/figures/lockscreen_icon.png -share/gnome/help/user-guide/fr/figures/logout_icon.png -share/gnome/help/user-guide/fr/figures/menu_bar_applet.png -share/gnome/help/user-guide/fr/figures/menu_panel.png -share/gnome/help/user-guide/fr/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/fr/figures/move_pointer.png -share/gnome/help/user-guide/fr/figures/movewindow_pointer.png -share/gnome/help/user-guide/fr/figures/naut_browser_mode.png -share/gnome/help/user-guide/fr/figures/naut_button_bar.png -share/gnome/help/user-guide/fr/figures/naut_computer_launcher.png -share/gnome/help/user-guide/fr/figures/naut_emblem.png -share/gnome/help/user-guide/fr/figures/naut_go_to_location.png -share/gnome/help/user-guide/fr/figures/naut_link_emblem.png -share/gnome/help/user-guide/fr/figures/naut_noread_emblem.png -share/gnome/help/user-guide/fr/figures/naut_normal_size_button.png -share/gnome/help/user-guide/fr/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/fr/figures/naut_refine_search.png -share/gnome/help/user-guide/fr/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/fr/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/fr/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/fr/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/fr/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/fr/figures/naut_search_bar.png -share/gnome/help/user-guide/fr/figures/naut_search_results.png -share/gnome/help/user-guide/fr/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/fr/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/fr/figures/naut_spatial_mode.png -share/gnome/help/user-guide/fr/figures/naut_spatial_view.png -share/gnome/help/user-guide/fr/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/fr/figures/naut_trash_launcher.png -share/gnome/help/user-guide/fr/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/fr/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/fr/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/fr/figures/normal_pointer.png -share/gnome/help/user-guide/fr/figures/not_available_pointer.png -share/gnome/help/user-guide/fr/figures/notification_area_icon.png -share/gnome/help/user-guide/fr/figures/open_drawer.png -share/gnome/help/user-guide/fr/figures/openwindows_menu.png -share/gnome/help/user-guide/fr/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/fr/figures/resize_pointer.png -share/gnome/help/user-guide/fr/figures/run_button.png -share/gnome/help/user-guide/fr/figures/sample_applet.png -share/gnome/help/user-guide/fr/figures/screenshot_button.png -share/gnome/help/user-guide/fr/figures/searchtool_button.png -share/gnome/help/user-guide/fr/figures/show_desktop_button.png -share/gnome/help/user-guide/fr/figures/titlebar_anno_window.png -share/gnome/help/user-guide/fr/figures/titlebar_window.png -share/gnome/help/user-guide/fr/figures/typical_menu.png -share/gnome/help/user-guide/fr/figures/window_list_applet.png -share/gnome/help/user-guide/fr/figures/window_list_group_applet.png -share/gnome/help/user-guide/fr/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/fr/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/fr/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/fr/figures/yelp_preferences.png -share/gnome/help/user-guide/fr/figures/yelp_window.png -share/gnome/help/user-guide/fr/glossary.xml -share/gnome/help/user-guide/fr/gosbasic.xml -share/gnome/help/user-guide/fr/goscustdesk.xml -share/gnome/help/user-guide/fr/goseditmainmenu.xml -share/gnome/help/user-guide/fr/gosfeedback.xml -share/gnome/help/user-guide/fr/gosnautilus.xml -share/gnome/help/user-guide/fr/gosoverview.xml -share/gnome/help/user-guide/fr/gospanel.xml -share/gnome/help/user-guide/fr/gosstartsession.xml -share/gnome/help/user-guide/fr/gostools.xml -share/gnome/help/user-guide/fr/user-guide.xml -share/gnome/help/user-guide/hu/figures/ask_pointer.png -share/gnome/help/user-guide/hu/figures/busy_pointer.png -share/gnome/help/user-guide/hu/figures/com_file_manager_menu.png -share/gnome/help/user-guide/hu/figures/copy_pointer.png -share/gnome/help/user-guide/hu/figures/force_quit.png -share/gnome/help/user-guide/hu/figures/four_hide_button.png -share/gnome/help/user-guide/hu/figures/gedit_window.png -share/gnome/help/user-guide/hu/figures/gnome_panel.png -share/gnome/help/user-guide/hu/figures/hyperlink_pointer.png -share/gnome/help/user-guide/hu/figures/ibeam_pointer.png -share/gnome/help/user-guide/hu/figures/link_pointer.png -share/gnome/help/user-guide/hu/figures/lockscreen_icon.png -share/gnome/help/user-guide/hu/figures/logout_icon.png -share/gnome/help/user-guide/hu/figures/menu_bar_applet.png -share/gnome/help/user-guide/hu/figures/menu_panel.png -share/gnome/help/user-guide/hu/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/hu/figures/move_pointer.png -share/gnome/help/user-guide/hu/figures/movewindow_pointer.png -share/gnome/help/user-guide/hu/figures/naut_browser_mode.png -share/gnome/help/user-guide/hu/figures/naut_button_bar.png -share/gnome/help/user-guide/hu/figures/naut_computer_launcher.png -share/gnome/help/user-guide/hu/figures/naut_emblem.png -share/gnome/help/user-guide/hu/figures/naut_go_to_location.png -share/gnome/help/user-guide/hu/figures/naut_link_emblem.png -share/gnome/help/user-guide/hu/figures/naut_noread_emblem.png -share/gnome/help/user-guide/hu/figures/naut_normal_size_button.png -share/gnome/help/user-guide/hu/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/hu/figures/naut_refine_search.png -share/gnome/help/user-guide/hu/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/hu/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/hu/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/hu/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/hu/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/hu/figures/naut_search_bar.png -share/gnome/help/user-guide/hu/figures/naut_search_results.png -share/gnome/help/user-guide/hu/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/hu/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/hu/figures/naut_spatial_mode.png -share/gnome/help/user-guide/hu/figures/naut_spatial_view.png -share/gnome/help/user-guide/hu/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/hu/figures/naut_trash_launcher.png -share/gnome/help/user-guide/hu/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/hu/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/hu/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/hu/figures/normal_pointer.png -share/gnome/help/user-guide/hu/figures/not_available_pointer.png -share/gnome/help/user-guide/hu/figures/notification_area_icon.png -share/gnome/help/user-guide/hu/figures/open_drawer.png -share/gnome/help/user-guide/hu/figures/openwindows_menu.png -share/gnome/help/user-guide/hu/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/hu/figures/resize_pointer.png -share/gnome/help/user-guide/hu/figures/run_button.png -share/gnome/help/user-guide/hu/figures/sample_applet.png -share/gnome/help/user-guide/hu/figures/screenshot_button.png -share/gnome/help/user-guide/hu/figures/searchtool_button.png -share/gnome/help/user-guide/hu/figures/show_desktop_button.png -share/gnome/help/user-guide/hu/figures/titlebar_anno_window.png -share/gnome/help/user-guide/hu/figures/titlebar_window.png -share/gnome/help/user-guide/hu/figures/typical_menu.png -share/gnome/help/user-guide/hu/figures/window_list_applet.png -share/gnome/help/user-guide/hu/figures/window_list_group_applet.png -share/gnome/help/user-guide/hu/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/hu/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/hu/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/hu/figures/yelp_preferences.png -share/gnome/help/user-guide/hu/figures/yelp_window.png -share/gnome/help/user-guide/hu/glossary.xml -share/gnome/help/user-guide/hu/gosbasic.xml -share/gnome/help/user-guide/hu/goscustdesk.xml -share/gnome/help/user-guide/hu/goseditmainmenu.xml -share/gnome/help/user-guide/hu/gosfeedback.xml -share/gnome/help/user-guide/hu/gosnautilus.xml -share/gnome/help/user-guide/hu/gosoverview.xml -share/gnome/help/user-guide/hu/gospanel.xml -share/gnome/help/user-guide/hu/gosstartsession.xml -share/gnome/help/user-guide/hu/gostools.xml -share/gnome/help/user-guide/hu/user-guide.xml -share/gnome/help/user-guide/it/figures/ask_pointer.png -share/gnome/help/user-guide/it/figures/busy_pointer.png -share/gnome/help/user-guide/it/figures/com_file_manager_menu.png -share/gnome/help/user-guide/it/figures/copy_pointer.png -share/gnome/help/user-guide/it/figures/force_quit.png -share/gnome/help/user-guide/it/figures/four_hide_button.png -share/gnome/help/user-guide/it/figures/gedit_window.png -share/gnome/help/user-guide/it/figures/gnome_panel.png -share/gnome/help/user-guide/it/figures/hyperlink_pointer.png -share/gnome/help/user-guide/it/figures/ibeam_pointer.png -share/gnome/help/user-guide/it/figures/link_pointer.png -share/gnome/help/user-guide/it/figures/lockscreen_icon.png -share/gnome/help/user-guide/it/figures/logout_icon.png -share/gnome/help/user-guide/it/figures/menu_bar_applet.png -share/gnome/help/user-guide/it/figures/menu_panel.png -share/gnome/help/user-guide/it/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/it/figures/move_pointer.png -share/gnome/help/user-guide/it/figures/movewindow_pointer.png -share/gnome/help/user-guide/it/figures/naut_browser_mode.png -share/gnome/help/user-guide/it/figures/naut_button_bar.png -share/gnome/help/user-guide/it/figures/naut_computer_launcher.png -share/gnome/help/user-guide/it/figures/naut_emblem.png -share/gnome/help/user-guide/it/figures/naut_go_to_location.png -share/gnome/help/user-guide/it/figures/naut_link_emblem.png -share/gnome/help/user-guide/it/figures/naut_noread_emblem.png -share/gnome/help/user-guide/it/figures/naut_normal_size_button.png -share/gnome/help/user-guide/it/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/it/figures/naut_refine_search.png -share/gnome/help/user-guide/it/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/it/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/it/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/it/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/it/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/it/figures/naut_search_bar.png -share/gnome/help/user-guide/it/figures/naut_search_results.png -share/gnome/help/user-guide/it/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/it/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/it/figures/naut_spatial_mode.png -share/gnome/help/user-guide/it/figures/naut_spatial_view.png -share/gnome/help/user-guide/it/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/it/figures/naut_trash_launcher.png -share/gnome/help/user-guide/it/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/it/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/it/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/it/figures/normal_pointer.png -share/gnome/help/user-guide/it/figures/not_available_pointer.png -share/gnome/help/user-guide/it/figures/notification_area_icon.png -share/gnome/help/user-guide/it/figures/open_drawer.png -share/gnome/help/user-guide/it/figures/openwindows_menu.png -share/gnome/help/user-guide/it/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/it/figures/resize_pointer.png -share/gnome/help/user-guide/it/figures/run_button.png -share/gnome/help/user-guide/it/figures/sample_applet.png -share/gnome/help/user-guide/it/figures/screenshot_button.png -share/gnome/help/user-guide/it/figures/searchtool_button.png -share/gnome/help/user-guide/it/figures/show_desktop_button.png -share/gnome/help/user-guide/it/figures/titlebar_anno_window.png -share/gnome/help/user-guide/it/figures/titlebar_window.png -share/gnome/help/user-guide/it/figures/typical_menu.png -share/gnome/help/user-guide/it/figures/window_list_applet.png -share/gnome/help/user-guide/it/figures/window_list_group_applet.png -share/gnome/help/user-guide/it/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/it/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/it/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/it/figures/yelp_preferences.png -share/gnome/help/user-guide/it/figures/yelp_window.png -share/gnome/help/user-guide/it/glossary.xml -share/gnome/help/user-guide/it/gosbasic.xml -share/gnome/help/user-guide/it/goscustdesk.xml -share/gnome/help/user-guide/it/goseditmainmenu.xml -share/gnome/help/user-guide/it/gosfeedback.xml -share/gnome/help/user-guide/it/gosnautilus.xml -share/gnome/help/user-guide/it/gosoverview.xml -share/gnome/help/user-guide/it/gospanel.xml -share/gnome/help/user-guide/it/gosstartsession.xml -share/gnome/help/user-guide/it/gostools.xml -share/gnome/help/user-guide/it/user-guide.xml -share/gnome/help/user-guide/ja/figures/ask_pointer.png -share/gnome/help/user-guide/ja/figures/busy_pointer.png -share/gnome/help/user-guide/ja/figures/com_file_manager_menu.png -share/gnome/help/user-guide/ja/figures/copy_pointer.png -share/gnome/help/user-guide/ja/figures/force_quit.png -share/gnome/help/user-guide/ja/figures/four_hide_button.png -share/gnome/help/user-guide/ja/figures/gedit_window.png -share/gnome/help/user-guide/ja/figures/gnome_panel.png -share/gnome/help/user-guide/ja/figures/hyperlink_pointer.png -share/gnome/help/user-guide/ja/figures/ibeam_pointer.png -share/gnome/help/user-guide/ja/figures/link_pointer.png -share/gnome/help/user-guide/ja/figures/lockscreen_icon.png -share/gnome/help/user-guide/ja/figures/logout_icon.png -share/gnome/help/user-guide/ja/figures/menu_bar_applet.png -share/gnome/help/user-guide/ja/figures/menu_panel.png -share/gnome/help/user-guide/ja/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/ja/figures/move_pointer.png -share/gnome/help/user-guide/ja/figures/movewindow_pointer.png -share/gnome/help/user-guide/ja/figures/naut_browser_mode.png -share/gnome/help/user-guide/ja/figures/naut_button_bar.png -share/gnome/help/user-guide/ja/figures/naut_computer_launcher.png -share/gnome/help/user-guide/ja/figures/naut_emblem.png -share/gnome/help/user-guide/ja/figures/naut_go_to_location.png -share/gnome/help/user-guide/ja/figures/naut_link_emblem.png -share/gnome/help/user-guide/ja/figures/naut_noread_emblem.png -share/gnome/help/user-guide/ja/figures/naut_normal_size_button.png -share/gnome/help/user-guide/ja/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/ja/figures/naut_refine_search.png -share/gnome/help/user-guide/ja/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/ja/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/ja/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/ja/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/ja/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/ja/figures/naut_search_bar.png -share/gnome/help/user-guide/ja/figures/naut_search_results.png -share/gnome/help/user-guide/ja/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/ja/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/ja/figures/naut_spatial_mode.png -share/gnome/help/user-guide/ja/figures/naut_spatial_view.png -share/gnome/help/user-guide/ja/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/ja/figures/naut_trash_launcher.png -share/gnome/help/user-guide/ja/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/ja/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/ja/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/ja/figures/normal_pointer.png -share/gnome/help/user-guide/ja/figures/not_available_pointer.png -share/gnome/help/user-guide/ja/figures/notification_area_icon.png -share/gnome/help/user-guide/ja/figures/open_drawer.png -share/gnome/help/user-guide/ja/figures/openwindows_menu.png -share/gnome/help/user-guide/ja/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/ja/figures/resize_pointer.png -share/gnome/help/user-guide/ja/figures/run_button.png -share/gnome/help/user-guide/ja/figures/sample_applet.png -share/gnome/help/user-guide/ja/figures/screenshot_button.png -share/gnome/help/user-guide/ja/figures/searchtool_button.png -share/gnome/help/user-guide/ja/figures/show_desktop_button.png -share/gnome/help/user-guide/ja/figures/titlebar_anno_window.png -share/gnome/help/user-guide/ja/figures/titlebar_window.png -share/gnome/help/user-guide/ja/figures/typical_menu.png -share/gnome/help/user-guide/ja/figures/window_list_applet.png -share/gnome/help/user-guide/ja/figures/window_list_group_applet.png -share/gnome/help/user-guide/ja/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/ja/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/ja/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/ja/figures/yelp_preferences.png -share/gnome/help/user-guide/ja/figures/yelp_window.png -share/gnome/help/user-guide/ja/glossary.xml -share/gnome/help/user-guide/ja/gosbasic.xml -share/gnome/help/user-guide/ja/goscustdesk.xml -share/gnome/help/user-guide/ja/goseditmainmenu.xml -share/gnome/help/user-guide/ja/gosfeedback.xml -share/gnome/help/user-guide/ja/gosnautilus.xml -share/gnome/help/user-guide/ja/gosoverview.xml -share/gnome/help/user-guide/ja/gospanel.xml -share/gnome/help/user-guide/ja/gosstartsession.xml -share/gnome/help/user-guide/ja/gostools.xml -share/gnome/help/user-guide/ja/user-guide.xml -share/gnome/help/user-guide/ko/figures/ask_pointer.png -share/gnome/help/user-guide/ko/figures/busy_pointer.png -share/gnome/help/user-guide/ko/figures/com_file_manager_menu.png -share/gnome/help/user-guide/ko/figures/copy_pointer.png -share/gnome/help/user-guide/ko/figures/force_quit.png -share/gnome/help/user-guide/ko/figures/four_hide_button.png -share/gnome/help/user-guide/ko/figures/gedit_window.png -share/gnome/help/user-guide/ko/figures/gnome_panel.png -share/gnome/help/user-guide/ko/figures/hyperlink_pointer.png -share/gnome/help/user-guide/ko/figures/ibeam_pointer.png -share/gnome/help/user-guide/ko/figures/link_pointer.png -share/gnome/help/user-guide/ko/figures/lockscreen_icon.png -share/gnome/help/user-guide/ko/figures/logout_icon.png -share/gnome/help/user-guide/ko/figures/menu_bar_applet.png -share/gnome/help/user-guide/ko/figures/menu_panel.png -share/gnome/help/user-guide/ko/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/ko/figures/move_pointer.png -share/gnome/help/user-guide/ko/figures/movewindow_pointer.png -share/gnome/help/user-guide/ko/figures/naut_browser_mode.png -share/gnome/help/user-guide/ko/figures/naut_button_bar.png -share/gnome/help/user-guide/ko/figures/naut_computer_launcher.png -share/gnome/help/user-guide/ko/figures/naut_emblem.png -share/gnome/help/user-guide/ko/figures/naut_go_to_location.png -share/gnome/help/user-guide/ko/figures/naut_link_emblem.png -share/gnome/help/user-guide/ko/figures/naut_noread_emblem.png -share/gnome/help/user-guide/ko/figures/naut_normal_size_button.png -share/gnome/help/user-guide/ko/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/ko/figures/naut_refine_search.png -share/gnome/help/user-guide/ko/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/ko/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/ko/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/ko/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/ko/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/ko/figures/naut_search_bar.png -share/gnome/help/user-guide/ko/figures/naut_search_results.png -share/gnome/help/user-guide/ko/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/ko/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/ko/figures/naut_spatial_mode.png -share/gnome/help/user-guide/ko/figures/naut_spatial_view.png -share/gnome/help/user-guide/ko/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/ko/figures/naut_trash_launcher.png -share/gnome/help/user-guide/ko/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/ko/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/ko/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/ko/figures/normal_pointer.png -share/gnome/help/user-guide/ko/figures/not_available_pointer.png -share/gnome/help/user-guide/ko/figures/notification_area_icon.png -share/gnome/help/user-guide/ko/figures/open_drawer.png -share/gnome/help/user-guide/ko/figures/openwindows_menu.png -share/gnome/help/user-guide/ko/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/ko/figures/resize_pointer.png -share/gnome/help/user-guide/ko/figures/run_button.png -share/gnome/help/user-guide/ko/figures/sample_applet.png -share/gnome/help/user-guide/ko/figures/screenshot_button.png -share/gnome/help/user-guide/ko/figures/searchtool_button.png -share/gnome/help/user-guide/ko/figures/show_desktop_button.png -share/gnome/help/user-guide/ko/figures/titlebar_anno_window.png -share/gnome/help/user-guide/ko/figures/titlebar_window.png -share/gnome/help/user-guide/ko/figures/typical_menu.png -share/gnome/help/user-guide/ko/figures/window_list_applet.png -share/gnome/help/user-guide/ko/figures/window_list_group_applet.png -share/gnome/help/user-guide/ko/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/ko/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/ko/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/ko/figures/yelp_preferences.png -share/gnome/help/user-guide/ko/figures/yelp_window.png -share/gnome/help/user-guide/ko/glossary.xml -share/gnome/help/user-guide/ko/gosbasic.xml -share/gnome/help/user-guide/ko/goscustdesk.xml -share/gnome/help/user-guide/ko/goseditmainmenu.xml -share/gnome/help/user-guide/ko/gosfeedback.xml -share/gnome/help/user-guide/ko/gosnautilus.xml -share/gnome/help/user-guide/ko/gosoverview.xml -share/gnome/help/user-guide/ko/gospanel.xml -share/gnome/help/user-guide/ko/gosstartsession.xml -share/gnome/help/user-guide/ko/gostools.xml -share/gnome/help/user-guide/ko/user-guide.xml -share/gnome/help/user-guide/oc/figures/ask_pointer.png -share/gnome/help/user-guide/oc/figures/busy_pointer.png -share/gnome/help/user-guide/oc/figures/com_file_manager_menu.png -share/gnome/help/user-guide/oc/figures/copy_pointer.png -share/gnome/help/user-guide/oc/figures/force_quit.png -share/gnome/help/user-guide/oc/figures/four_hide_button.png -share/gnome/help/user-guide/oc/figures/gedit_window.png -share/gnome/help/user-guide/oc/figures/gnome_panel.png -share/gnome/help/user-guide/oc/figures/hyperlink_pointer.png -share/gnome/help/user-guide/oc/figures/ibeam_pointer.png -share/gnome/help/user-guide/oc/figures/link_pointer.png -share/gnome/help/user-guide/oc/figures/lockscreen_icon.png -share/gnome/help/user-guide/oc/figures/logout_icon.png -share/gnome/help/user-guide/oc/figures/menu_bar_applet.png -share/gnome/help/user-guide/oc/figures/menu_panel.png -share/gnome/help/user-guide/oc/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/oc/figures/move_pointer.png -share/gnome/help/user-guide/oc/figures/movewindow_pointer.png -share/gnome/help/user-guide/oc/figures/naut_browser_mode.png -share/gnome/help/user-guide/oc/figures/naut_button_bar.png -share/gnome/help/user-guide/oc/figures/naut_computer_launcher.png -share/gnome/help/user-guide/oc/figures/naut_emblem.png -share/gnome/help/user-guide/oc/figures/naut_go_to_location.png -share/gnome/help/user-guide/oc/figures/naut_link_emblem.png -share/gnome/help/user-guide/oc/figures/naut_noread_emblem.png -share/gnome/help/user-guide/oc/figures/naut_normal_size_button.png -share/gnome/help/user-guide/oc/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/oc/figures/naut_refine_search.png -share/gnome/help/user-guide/oc/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/oc/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/oc/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/oc/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/oc/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/oc/figures/naut_search_bar.png -share/gnome/help/user-guide/oc/figures/naut_search_results.png -share/gnome/help/user-guide/oc/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/oc/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/oc/figures/naut_spatial_mode.png -share/gnome/help/user-guide/oc/figures/naut_spatial_view.png -share/gnome/help/user-guide/oc/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/oc/figures/naut_trash_launcher.png -share/gnome/help/user-guide/oc/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/oc/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/oc/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/oc/figures/normal_pointer.png -share/gnome/help/user-guide/oc/figures/not_available_pointer.png -share/gnome/help/user-guide/oc/figures/notification_area_icon.png -share/gnome/help/user-guide/oc/figures/open_drawer.png -share/gnome/help/user-guide/oc/figures/openwindows_menu.png -share/gnome/help/user-guide/oc/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/oc/figures/resize_pointer.png -share/gnome/help/user-guide/oc/figures/run_button.png -share/gnome/help/user-guide/oc/figures/sample_applet.png -share/gnome/help/user-guide/oc/figures/screenshot_button.png -share/gnome/help/user-guide/oc/figures/searchtool_button.png -share/gnome/help/user-guide/oc/figures/show_desktop_button.png -share/gnome/help/user-guide/oc/figures/titlebar_anno_window.png -share/gnome/help/user-guide/oc/figures/titlebar_window.png -share/gnome/help/user-guide/oc/figures/typical_menu.png -share/gnome/help/user-guide/oc/figures/window_list_applet.png -share/gnome/help/user-guide/oc/figures/window_list_group_applet.png -share/gnome/help/user-guide/oc/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/oc/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/oc/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/oc/figures/yelp_preferences.png -share/gnome/help/user-guide/oc/figures/yelp_window.png -share/gnome/help/user-guide/oc/glossary.xml -share/gnome/help/user-guide/oc/gosbasic.xml -share/gnome/help/user-guide/oc/goscustdesk.xml -share/gnome/help/user-guide/oc/goseditmainmenu.xml -share/gnome/help/user-guide/oc/gosfeedback.xml -share/gnome/help/user-guide/oc/gosnautilus.xml -share/gnome/help/user-guide/oc/gosoverview.xml -share/gnome/help/user-guide/oc/gospanel.xml -share/gnome/help/user-guide/oc/gosstartsession.xml -share/gnome/help/user-guide/oc/gostools.xml -share/gnome/help/user-guide/oc/user-guide.xml -share/gnome/help/user-guide/pa/figures/ask_pointer.png -share/gnome/help/user-guide/pa/figures/busy_pointer.png -share/gnome/help/user-guide/pa/figures/com_file_manager_menu.png -share/gnome/help/user-guide/pa/figures/copy_pointer.png -share/gnome/help/user-guide/pa/figures/force_quit.png -share/gnome/help/user-guide/pa/figures/four_hide_button.png -share/gnome/help/user-guide/pa/figures/gedit_window.png -share/gnome/help/user-guide/pa/figures/gnome_panel.png -share/gnome/help/user-guide/pa/figures/hyperlink_pointer.png -share/gnome/help/user-guide/pa/figures/ibeam_pointer.png -share/gnome/help/user-guide/pa/figures/link_pointer.png -share/gnome/help/user-guide/pa/figures/lockscreen_icon.png -share/gnome/help/user-guide/pa/figures/logout_icon.png -share/gnome/help/user-guide/pa/figures/menu_bar_applet.png -share/gnome/help/user-guide/pa/figures/menu_panel.png -share/gnome/help/user-guide/pa/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/pa/figures/move_pointer.png -share/gnome/help/user-guide/pa/figures/movewindow_pointer.png -share/gnome/help/user-guide/pa/figures/naut_browser_mode.png -share/gnome/help/user-guide/pa/figures/naut_button_bar.png -share/gnome/help/user-guide/pa/figures/naut_computer_launcher.png -share/gnome/help/user-guide/pa/figures/naut_emblem.png -share/gnome/help/user-guide/pa/figures/naut_go_to_location.png -share/gnome/help/user-guide/pa/figures/naut_link_emblem.png -share/gnome/help/user-guide/pa/figures/naut_noread_emblem.png -share/gnome/help/user-guide/pa/figures/naut_normal_size_button.png -share/gnome/help/user-guide/pa/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/pa/figures/naut_refine_search.png -share/gnome/help/user-guide/pa/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/pa/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/pa/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/pa/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/pa/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/pa/figures/naut_search_bar.png -share/gnome/help/user-guide/pa/figures/naut_search_results.png -share/gnome/help/user-guide/pa/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/pa/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/pa/figures/naut_spatial_mode.png -share/gnome/help/user-guide/pa/figures/naut_spatial_view.png -share/gnome/help/user-guide/pa/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/pa/figures/naut_trash_launcher.png -share/gnome/help/user-guide/pa/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/pa/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/pa/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/pa/figures/normal_pointer.png -share/gnome/help/user-guide/pa/figures/not_available_pointer.png -share/gnome/help/user-guide/pa/figures/notification_area_icon.png -share/gnome/help/user-guide/pa/figures/open_drawer.png -share/gnome/help/user-guide/pa/figures/openwindows_menu.png -share/gnome/help/user-guide/pa/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/pa/figures/resize_pointer.png -share/gnome/help/user-guide/pa/figures/run_button.png -share/gnome/help/user-guide/pa/figures/sample_applet.png -share/gnome/help/user-guide/pa/figures/screenshot_button.png -share/gnome/help/user-guide/pa/figures/searchtool_button.png -share/gnome/help/user-guide/pa/figures/show_desktop_button.png -share/gnome/help/user-guide/pa/figures/titlebar_anno_window.png -share/gnome/help/user-guide/pa/figures/titlebar_window.png -share/gnome/help/user-guide/pa/figures/typical_menu.png -share/gnome/help/user-guide/pa/figures/window_list_applet.png -share/gnome/help/user-guide/pa/figures/window_list_group_applet.png -share/gnome/help/user-guide/pa/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/pa/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/pa/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/pa/figures/yelp_preferences.png -share/gnome/help/user-guide/pa/figures/yelp_window.png -share/gnome/help/user-guide/pa/glossary.xml -share/gnome/help/user-guide/pa/gosbasic.xml -share/gnome/help/user-guide/pa/goscustdesk.xml -share/gnome/help/user-guide/pa/goseditmainmenu.xml -share/gnome/help/user-guide/pa/gosfeedback.xml -share/gnome/help/user-guide/pa/gosnautilus.xml -share/gnome/help/user-guide/pa/gosoverview.xml -share/gnome/help/user-guide/pa/gospanel.xml -share/gnome/help/user-guide/pa/gosstartsession.xml -share/gnome/help/user-guide/pa/gostools.xml -share/gnome/help/user-guide/pa/user-guide.xml -share/gnome/help/user-guide/pt/figures/ask_pointer.png -share/gnome/help/user-guide/pt/figures/busy_pointer.png -share/gnome/help/user-guide/pt/figures/com_file_manager_menu.png -share/gnome/help/user-guide/pt/figures/copy_pointer.png -share/gnome/help/user-guide/pt/figures/force_quit.png -share/gnome/help/user-guide/pt/figures/four_hide_button.png -share/gnome/help/user-guide/pt/figures/gedit_window.png -share/gnome/help/user-guide/pt/figures/gnome_panel.png -share/gnome/help/user-guide/pt/figures/hyperlink_pointer.png -share/gnome/help/user-guide/pt/figures/ibeam_pointer.png -share/gnome/help/user-guide/pt/figures/link_pointer.png -share/gnome/help/user-guide/pt/figures/lockscreen_icon.png -share/gnome/help/user-guide/pt/figures/logout_icon.png -share/gnome/help/user-guide/pt/figures/menu_bar_applet.png -share/gnome/help/user-guide/pt/figures/menu_panel.png -share/gnome/help/user-guide/pt/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/pt/figures/move_pointer.png -share/gnome/help/user-guide/pt/figures/movewindow_pointer.png -share/gnome/help/user-guide/pt/figures/naut_browser_mode.png -share/gnome/help/user-guide/pt/figures/naut_button_bar.png -share/gnome/help/user-guide/pt/figures/naut_computer_launcher.png -share/gnome/help/user-guide/pt/figures/naut_emblem.png -share/gnome/help/user-guide/pt/figures/naut_go_to_location.png -share/gnome/help/user-guide/pt/figures/naut_link_emblem.png -share/gnome/help/user-guide/pt/figures/naut_noread_emblem.png -share/gnome/help/user-guide/pt/figures/naut_normal_size_button.png -share/gnome/help/user-guide/pt/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/pt/figures/naut_refine_search.png -share/gnome/help/user-guide/pt/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/pt/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/pt/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/pt/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/pt/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/pt/figures/naut_search_bar.png -share/gnome/help/user-guide/pt/figures/naut_search_results.png -share/gnome/help/user-guide/pt/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/pt/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/pt/figures/naut_spatial_mode.png -share/gnome/help/user-guide/pt/figures/naut_spatial_view.png -share/gnome/help/user-guide/pt/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/pt/figures/naut_trash_launcher.png -share/gnome/help/user-guide/pt/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/pt/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/pt/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/pt/figures/normal_pointer.png -share/gnome/help/user-guide/pt/figures/not_available_pointer.png -share/gnome/help/user-guide/pt/figures/notification_area_icon.png -share/gnome/help/user-guide/pt/figures/open_drawer.png -share/gnome/help/user-guide/pt/figures/openwindows_menu.png -share/gnome/help/user-guide/pt/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/pt/figures/resize_pointer.png -share/gnome/help/user-guide/pt/figures/run_button.png -share/gnome/help/user-guide/pt/figures/sample_applet.png -share/gnome/help/user-guide/pt/figures/screenshot_button.png -share/gnome/help/user-guide/pt/figures/searchtool_button.png -share/gnome/help/user-guide/pt/figures/show_desktop_button.png -share/gnome/help/user-guide/pt/figures/titlebar_anno_window.png -share/gnome/help/user-guide/pt/figures/titlebar_window.png -share/gnome/help/user-guide/pt/figures/typical_menu.png -share/gnome/help/user-guide/pt/figures/window_list_applet.png -share/gnome/help/user-guide/pt/figures/window_list_group_applet.png -share/gnome/help/user-guide/pt/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/pt/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/pt/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/pt/figures/yelp_preferences.png -share/gnome/help/user-guide/pt/figures/yelp_window.png -share/gnome/help/user-guide/pt/glossary.xml -share/gnome/help/user-guide/pt/gosbasic.xml -share/gnome/help/user-guide/pt/goscustdesk.xml -share/gnome/help/user-guide/pt/goseditmainmenu.xml -share/gnome/help/user-guide/pt/gosfeedback.xml -share/gnome/help/user-guide/pt/gosnautilus.xml -share/gnome/help/user-guide/pt/gosoverview.xml -share/gnome/help/user-guide/pt/gospanel.xml -share/gnome/help/user-guide/pt/gosstartsession.xml -share/gnome/help/user-guide/pt/gostools.xml -share/gnome/help/user-guide/pt/user-guide.xml -share/gnome/help/user-guide/pt_BR/figures/ask_pointer.png -share/gnome/help/user-guide/pt_BR/figures/busy_pointer.png -share/gnome/help/user-guide/pt_BR/figures/com_file_manager_menu.png -share/gnome/help/user-guide/pt_BR/figures/copy_pointer.png -share/gnome/help/user-guide/pt_BR/figures/force_quit.png -share/gnome/help/user-guide/pt_BR/figures/four_hide_button.png -share/gnome/help/user-guide/pt_BR/figures/gedit_window.png -share/gnome/help/user-guide/pt_BR/figures/gnome_panel.png -share/gnome/help/user-guide/pt_BR/figures/hyperlink_pointer.png -share/gnome/help/user-guide/pt_BR/figures/ibeam_pointer.png -share/gnome/help/user-guide/pt_BR/figures/link_pointer.png -share/gnome/help/user-guide/pt_BR/figures/lockscreen_icon.png -share/gnome/help/user-guide/pt_BR/figures/logout_icon.png -share/gnome/help/user-guide/pt_BR/figures/menu_bar_applet.png -share/gnome/help/user-guide/pt_BR/figures/menu_panel.png -share/gnome/help/user-guide/pt_BR/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/pt_BR/figures/move_pointer.png -share/gnome/help/user-guide/pt_BR/figures/movewindow_pointer.png -share/gnome/help/user-guide/pt_BR/figures/naut_browser_mode.png -share/gnome/help/user-guide/pt_BR/figures/naut_button_bar.png -share/gnome/help/user-guide/pt_BR/figures/naut_computer_launcher.png -share/gnome/help/user-guide/pt_BR/figures/naut_emblem.png -share/gnome/help/user-guide/pt_BR/figures/naut_go_to_location.png -share/gnome/help/user-guide/pt_BR/figures/naut_link_emblem.png -share/gnome/help/user-guide/pt_BR/figures/naut_noread_emblem.png -share/gnome/help/user-guide/pt_BR/figures/naut_normal_size_button.png -share/gnome/help/user-guide/pt_BR/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/pt_BR/figures/naut_refine_search.png -share/gnome/help/user-guide/pt_BR/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/pt_BR/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/pt_BR/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/pt_BR/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/pt_BR/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/pt_BR/figures/naut_search_bar.png -share/gnome/help/user-guide/pt_BR/figures/naut_search_results.png -share/gnome/help/user-guide/pt_BR/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/pt_BR/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/pt_BR/figures/naut_spatial_mode.png -share/gnome/help/user-guide/pt_BR/figures/naut_spatial_view.png -share/gnome/help/user-guide/pt_BR/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/pt_BR/figures/naut_trash_launcher.png -share/gnome/help/user-guide/pt_BR/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/pt_BR/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/pt_BR/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/pt_BR/figures/normal_pointer.png -share/gnome/help/user-guide/pt_BR/figures/not_available_pointer.png -share/gnome/help/user-guide/pt_BR/figures/notification_area_icon.png -share/gnome/help/user-guide/pt_BR/figures/open_drawer.png -share/gnome/help/user-guide/pt_BR/figures/openwindows_menu.png -share/gnome/help/user-guide/pt_BR/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/pt_BR/figures/resize_pointer.png -share/gnome/help/user-guide/pt_BR/figures/run_button.png -share/gnome/help/user-guide/pt_BR/figures/sample_applet.png -share/gnome/help/user-guide/pt_BR/figures/screenshot_button.png -share/gnome/help/user-guide/pt_BR/figures/searchtool_button.png -share/gnome/help/user-guide/pt_BR/figures/show_desktop_button.png -share/gnome/help/user-guide/pt_BR/figures/titlebar_anno_window.png -share/gnome/help/user-guide/pt_BR/figures/titlebar_window.png -share/gnome/help/user-guide/pt_BR/figures/typical_menu.png -share/gnome/help/user-guide/pt_BR/figures/window_list_applet.png -share/gnome/help/user-guide/pt_BR/figures/window_list_group_applet.png -share/gnome/help/user-guide/pt_BR/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/pt_BR/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/pt_BR/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/pt_BR/figures/yelp_preferences.png -share/gnome/help/user-guide/pt_BR/figures/yelp_window.png -share/gnome/help/user-guide/pt_BR/glossary.xml -share/gnome/help/user-guide/pt_BR/gosbasic.xml -share/gnome/help/user-guide/pt_BR/goscustdesk.xml -share/gnome/help/user-guide/pt_BR/goseditmainmenu.xml -share/gnome/help/user-guide/pt_BR/gosfeedback.xml -share/gnome/help/user-guide/pt_BR/gosnautilus.xml -share/gnome/help/user-guide/pt_BR/gosoverview.xml -share/gnome/help/user-guide/pt_BR/gospanel.xml -share/gnome/help/user-guide/pt_BR/gosstartsession.xml -share/gnome/help/user-guide/pt_BR/gostools.xml -share/gnome/help/user-guide/pt_BR/user-guide.xml -share/gnome/help/user-guide/ru/figures/ask_pointer.png -share/gnome/help/user-guide/ru/figures/busy_pointer.png -share/gnome/help/user-guide/ru/figures/com_file_manager_menu.png -share/gnome/help/user-guide/ru/figures/copy_pointer.png -share/gnome/help/user-guide/ru/figures/force_quit.png -share/gnome/help/user-guide/ru/figures/four_hide_button.png -share/gnome/help/user-guide/ru/figures/gedit_window.png -share/gnome/help/user-guide/ru/figures/gnome_panel.png -share/gnome/help/user-guide/ru/figures/hyperlink_pointer.png -share/gnome/help/user-guide/ru/figures/ibeam_pointer.png -share/gnome/help/user-guide/ru/figures/link_pointer.png -share/gnome/help/user-guide/ru/figures/lockscreen_icon.png -share/gnome/help/user-guide/ru/figures/logout_icon.png -share/gnome/help/user-guide/ru/figures/menu_bar_applet.png -share/gnome/help/user-guide/ru/figures/menu_panel.png -share/gnome/help/user-guide/ru/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/ru/figures/move_pointer.png -share/gnome/help/user-guide/ru/figures/movewindow_pointer.png -share/gnome/help/user-guide/ru/figures/naut_browser_mode.png -share/gnome/help/user-guide/ru/figures/naut_button_bar.png -share/gnome/help/user-guide/ru/figures/naut_computer_launcher.png -share/gnome/help/user-guide/ru/figures/naut_emblem.png -share/gnome/help/user-guide/ru/figures/naut_go_to_location.png -share/gnome/help/user-guide/ru/figures/naut_link_emblem.png -share/gnome/help/user-guide/ru/figures/naut_noread_emblem.png -share/gnome/help/user-guide/ru/figures/naut_normal_size_button.png -share/gnome/help/user-guide/ru/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/ru/figures/naut_refine_search.png -share/gnome/help/user-guide/ru/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/ru/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/ru/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/ru/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/ru/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/ru/figures/naut_search_bar.png -share/gnome/help/user-guide/ru/figures/naut_search_results.png -share/gnome/help/user-guide/ru/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/ru/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/ru/figures/naut_spatial_mode.png -share/gnome/help/user-guide/ru/figures/naut_spatial_view.png -share/gnome/help/user-guide/ru/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/ru/figures/naut_trash_launcher.png -share/gnome/help/user-guide/ru/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/ru/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/ru/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/ru/figures/normal_pointer.png -share/gnome/help/user-guide/ru/figures/not_available_pointer.png -share/gnome/help/user-guide/ru/figures/notification_area_icon.png -share/gnome/help/user-guide/ru/figures/open_drawer.png -share/gnome/help/user-guide/ru/figures/openwindows_menu.png -share/gnome/help/user-guide/ru/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/ru/figures/resize_pointer.png -share/gnome/help/user-guide/ru/figures/run_button.png -share/gnome/help/user-guide/ru/figures/sample_applet.png -share/gnome/help/user-guide/ru/figures/screenshot_button.png -share/gnome/help/user-guide/ru/figures/searchtool_button.png -share/gnome/help/user-guide/ru/figures/show_desktop_button.png -share/gnome/help/user-guide/ru/figures/titlebar_anno_window.png -share/gnome/help/user-guide/ru/figures/titlebar_window.png -share/gnome/help/user-guide/ru/figures/typical_menu.png -share/gnome/help/user-guide/ru/figures/window_list_applet.png -share/gnome/help/user-guide/ru/figures/window_list_group_applet.png -share/gnome/help/user-guide/ru/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/ru/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/ru/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/ru/figures/yelp_preferences.png -share/gnome/help/user-guide/ru/figures/yelp_window.png -share/gnome/help/user-guide/ru/glossary.xml -share/gnome/help/user-guide/ru/gosbasic.xml -share/gnome/help/user-guide/ru/goscustdesk.xml -share/gnome/help/user-guide/ru/goseditmainmenu.xml -share/gnome/help/user-guide/ru/gosfeedback.xml -share/gnome/help/user-guide/ru/gosnautilus.xml -share/gnome/help/user-guide/ru/gosoverview.xml -share/gnome/help/user-guide/ru/gospanel.xml -share/gnome/help/user-guide/ru/gosstartsession.xml -share/gnome/help/user-guide/ru/gostools.xml -share/gnome/help/user-guide/ru/user-guide.xml -share/gnome/help/user-guide/sv/figures/ask_pointer.png -share/gnome/help/user-guide/sv/figures/busy_pointer.png -share/gnome/help/user-guide/sv/figures/com_file_manager_menu.png -share/gnome/help/user-guide/sv/figures/copy_pointer.png -share/gnome/help/user-guide/sv/figures/force_quit.png -share/gnome/help/user-guide/sv/figures/four_hide_button.png -share/gnome/help/user-guide/sv/figures/gedit_window.png -share/gnome/help/user-guide/sv/figures/gnome_panel.png -share/gnome/help/user-guide/sv/figures/hyperlink_pointer.png -share/gnome/help/user-guide/sv/figures/ibeam_pointer.png -share/gnome/help/user-guide/sv/figures/link_pointer.png -share/gnome/help/user-guide/sv/figures/lockscreen_icon.png -share/gnome/help/user-guide/sv/figures/logout_icon.png -share/gnome/help/user-guide/sv/figures/menu_bar_applet.png -share/gnome/help/user-guide/sv/figures/menu_panel.png -share/gnome/help/user-guide/sv/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/sv/figures/move_pointer.png -share/gnome/help/user-guide/sv/figures/movewindow_pointer.png -share/gnome/help/user-guide/sv/figures/naut_browser_mode.png -share/gnome/help/user-guide/sv/figures/naut_button_bar.png -share/gnome/help/user-guide/sv/figures/naut_computer_launcher.png -share/gnome/help/user-guide/sv/figures/naut_emblem.png -share/gnome/help/user-guide/sv/figures/naut_go_to_location.png -share/gnome/help/user-guide/sv/figures/naut_link_emblem.png -share/gnome/help/user-guide/sv/figures/naut_noread_emblem.png -share/gnome/help/user-guide/sv/figures/naut_normal_size_button.png -share/gnome/help/user-guide/sv/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/sv/figures/naut_refine_search.png -share/gnome/help/user-guide/sv/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/sv/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/sv/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/sv/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/sv/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/sv/figures/naut_search_bar.png -share/gnome/help/user-guide/sv/figures/naut_search_results.png -share/gnome/help/user-guide/sv/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/sv/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/sv/figures/naut_spatial_mode.png -share/gnome/help/user-guide/sv/figures/naut_spatial_view.png -share/gnome/help/user-guide/sv/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/sv/figures/naut_trash_launcher.png -share/gnome/help/user-guide/sv/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/sv/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/sv/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/sv/figures/normal_pointer.png -share/gnome/help/user-guide/sv/figures/not_available_pointer.png -share/gnome/help/user-guide/sv/figures/notification_area_icon.png -share/gnome/help/user-guide/sv/figures/open_drawer.png -share/gnome/help/user-guide/sv/figures/openwindows_menu.png -share/gnome/help/user-guide/sv/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/sv/figures/resize_pointer.png -share/gnome/help/user-guide/sv/figures/run_button.png -share/gnome/help/user-guide/sv/figures/sample_applet.png -share/gnome/help/user-guide/sv/figures/screenshot_button.png -share/gnome/help/user-guide/sv/figures/searchtool_button.png -share/gnome/help/user-guide/sv/figures/show_desktop_button.png -share/gnome/help/user-guide/sv/figures/titlebar_anno_window.png -share/gnome/help/user-guide/sv/figures/titlebar_window.png -share/gnome/help/user-guide/sv/figures/typical_menu.png -share/gnome/help/user-guide/sv/figures/window_list_applet.png -share/gnome/help/user-guide/sv/figures/window_list_group_applet.png -share/gnome/help/user-guide/sv/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/sv/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/sv/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/sv/figures/yelp_preferences.png -share/gnome/help/user-guide/sv/figures/yelp_window.png -share/gnome/help/user-guide/sv/glossary.xml -share/gnome/help/user-guide/sv/gosbasic.xml -share/gnome/help/user-guide/sv/goscustdesk.xml -share/gnome/help/user-guide/sv/goseditmainmenu.xml -share/gnome/help/user-guide/sv/gosfeedback.xml -share/gnome/help/user-guide/sv/gosnautilus.xml -share/gnome/help/user-guide/sv/gosoverview.xml -share/gnome/help/user-guide/sv/gospanel.xml -share/gnome/help/user-guide/sv/gosstartsession.xml -share/gnome/help/user-guide/sv/gostools.xml -share/gnome/help/user-guide/sv/user-guide.xml -share/gnome/help/user-guide/th/figures/ask_pointer.png -share/gnome/help/user-guide/th/figures/busy_pointer.png -share/gnome/help/user-guide/th/figures/com_file_manager_menu.png -share/gnome/help/user-guide/th/figures/copy_pointer.png -share/gnome/help/user-guide/th/figures/force_quit.png -share/gnome/help/user-guide/th/figures/four_hide_button.png -share/gnome/help/user-guide/th/figures/gedit_window.png -share/gnome/help/user-guide/th/figures/gnome_panel.png -share/gnome/help/user-guide/th/figures/hyperlink_pointer.png -share/gnome/help/user-guide/th/figures/ibeam_pointer.png -share/gnome/help/user-guide/th/figures/link_pointer.png -share/gnome/help/user-guide/th/figures/lockscreen_icon.png -share/gnome/help/user-guide/th/figures/logout_icon.png -share/gnome/help/user-guide/th/figures/menu_bar_applet.png -share/gnome/help/user-guide/th/figures/menu_panel.png -share/gnome/help/user-guide/th/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/th/figures/move_pointer.png -share/gnome/help/user-guide/th/figures/movewindow_pointer.png -share/gnome/help/user-guide/th/figures/naut_browser_mode.png -share/gnome/help/user-guide/th/figures/naut_button_bar.png -share/gnome/help/user-guide/th/figures/naut_computer_launcher.png -share/gnome/help/user-guide/th/figures/naut_emblem.png -share/gnome/help/user-guide/th/figures/naut_go_to_location.png -share/gnome/help/user-guide/th/figures/naut_link_emblem.png -share/gnome/help/user-guide/th/figures/naut_noread_emblem.png -share/gnome/help/user-guide/th/figures/naut_normal_size_button.png -share/gnome/help/user-guide/th/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/th/figures/naut_refine_search.png -share/gnome/help/user-guide/th/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/th/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/th/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/th/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/th/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/th/figures/naut_search_bar.png -share/gnome/help/user-guide/th/figures/naut_search_results.png -share/gnome/help/user-guide/th/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/th/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/th/figures/naut_spatial_mode.png -share/gnome/help/user-guide/th/figures/naut_spatial_view.png -share/gnome/help/user-guide/th/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/th/figures/naut_trash_launcher.png -share/gnome/help/user-guide/th/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/th/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/th/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/th/figures/normal_pointer.png -share/gnome/help/user-guide/th/figures/not_available_pointer.png -share/gnome/help/user-guide/th/figures/notification_area_icon.png -share/gnome/help/user-guide/th/figures/open_drawer.png -share/gnome/help/user-guide/th/figures/openwindows_menu.png -share/gnome/help/user-guide/th/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/th/figures/resize_pointer.png -share/gnome/help/user-guide/th/figures/run_button.png -share/gnome/help/user-guide/th/figures/sample_applet.png -share/gnome/help/user-guide/th/figures/screenshot_button.png -share/gnome/help/user-guide/th/figures/searchtool_button.png -share/gnome/help/user-guide/th/figures/show_desktop_button.png -share/gnome/help/user-guide/th/figures/titlebar_anno_window.png -share/gnome/help/user-guide/th/figures/titlebar_window.png -share/gnome/help/user-guide/th/figures/typical_menu.png -share/gnome/help/user-guide/th/figures/window_list_applet.png -share/gnome/help/user-guide/th/figures/window_list_group_applet.png -share/gnome/help/user-guide/th/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/th/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/th/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/th/figures/yelp_preferences.png -share/gnome/help/user-guide/th/figures/yelp_window.png -share/gnome/help/user-guide/th/glossary.xml -share/gnome/help/user-guide/th/gosbasic.xml -share/gnome/help/user-guide/th/goscustdesk.xml -share/gnome/help/user-guide/th/goseditmainmenu.xml -share/gnome/help/user-guide/th/gosfeedback.xml -share/gnome/help/user-guide/th/gosnautilus.xml -share/gnome/help/user-guide/th/gosoverview.xml -share/gnome/help/user-guide/th/gospanel.xml -share/gnome/help/user-guide/th/gosstartsession.xml -share/gnome/help/user-guide/th/gostools.xml -share/gnome/help/user-guide/th/user-guide.xml -share/gnome/help/user-guide/zh_CN/figures/ask_pointer.png -share/gnome/help/user-guide/zh_CN/figures/busy_pointer.png -share/gnome/help/user-guide/zh_CN/figures/com_file_manager_menu.png -share/gnome/help/user-guide/zh_CN/figures/copy_pointer.png -share/gnome/help/user-guide/zh_CN/figures/force_quit.png -share/gnome/help/user-guide/zh_CN/figures/four_hide_button.png -share/gnome/help/user-guide/zh_CN/figures/gedit_window.png -share/gnome/help/user-guide/zh_CN/figures/gnome_panel.png -share/gnome/help/user-guide/zh_CN/figures/hyperlink_pointer.png -share/gnome/help/user-guide/zh_CN/figures/ibeam_pointer.png -share/gnome/help/user-guide/zh_CN/figures/link_pointer.png -share/gnome/help/user-guide/zh_CN/figures/lockscreen_icon.png -share/gnome/help/user-guide/zh_CN/figures/logout_icon.png -share/gnome/help/user-guide/zh_CN/figures/menu_bar_applet.png -share/gnome/help/user-guide/zh_CN/figures/menu_panel.png -share/gnome/help/user-guide/zh_CN/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/zh_CN/figures/move_pointer.png -share/gnome/help/user-guide/zh_CN/figures/movewindow_pointer.png -share/gnome/help/user-guide/zh_CN/figures/naut_browser_mode.png -share/gnome/help/user-guide/zh_CN/figures/naut_button_bar.png -share/gnome/help/user-guide/zh_CN/figures/naut_computer_launcher.png -share/gnome/help/user-guide/zh_CN/figures/naut_emblem.png -share/gnome/help/user-guide/zh_CN/figures/naut_go_to_location.png -share/gnome/help/user-guide/zh_CN/figures/naut_link_emblem.png -share/gnome/help/user-guide/zh_CN/figures/naut_noread_emblem.png -share/gnome/help/user-guide/zh_CN/figures/naut_normal_size_button.png -share/gnome/help/user-guide/zh_CN/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/zh_CN/figures/naut_refine_search.png -share/gnome/help/user-guide/zh_CN/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/zh_CN/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/zh_CN/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/zh_CN/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/zh_CN/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/zh_CN/figures/naut_search_bar.png -share/gnome/help/user-guide/zh_CN/figures/naut_search_results.png -share/gnome/help/user-guide/zh_CN/figures/naut_spatial_icon_view.png -share/gnome/help/user-guide/zh_CN/figures/naut_spatial_list_view.png -share/gnome/help/user-guide/zh_CN/figures/naut_spatial_mode.png -share/gnome/help/user-guide/zh_CN/figures/naut_spatial_view.png -share/gnome/help/user-guide/zh_CN/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/zh_CN/figures/naut_trash_launcher.png -share/gnome/help/user-guide/zh_CN/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/zh_CN/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/zh_CN/figures/nautilus_restore_saved_search.png -share/gnome/help/user-guide/zh_CN/figures/normal_pointer.png -share/gnome/help/user-guide/zh_CN/figures/not_available_pointer.png -share/gnome/help/user-guide/zh_CN/figures/notification_area_icon.png -share/gnome/help/user-guide/zh_CN/figures/open_drawer.png -share/gnome/help/user-guide/zh_CN/figures/openwindows_menu.png -share/gnome/help/user-guide/zh_CN/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/zh_CN/figures/resize_pointer.png -share/gnome/help/user-guide/zh_CN/figures/run_button.png -share/gnome/help/user-guide/zh_CN/figures/sample_applet.png -share/gnome/help/user-guide/zh_CN/figures/screenshot_button.png -share/gnome/help/user-guide/zh_CN/figures/searchtool_button.png -share/gnome/help/user-guide/zh_CN/figures/show_desktop_button.png -share/gnome/help/user-guide/zh_CN/figures/titlebar_anno_window.png -share/gnome/help/user-guide/zh_CN/figures/titlebar_window.png -share/gnome/help/user-guide/zh_CN/figures/typical_menu.png -share/gnome/help/user-guide/zh_CN/figures/window_list_applet.png -share/gnome/help/user-guide/zh_CN/figures/window_list_group_applet.png -share/gnome/help/user-guide/zh_CN/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/zh_CN/figures/yelp_add_bookmark.png -share/gnome/help/user-guide/zh_CN/figures/yelp_edit_bookmarks.png -share/gnome/help/user-guide/zh_CN/figures/yelp_preferences.png -share/gnome/help/user-guide/zh_CN/figures/yelp_window.png -share/gnome/help/user-guide/zh_CN/glossary.xml -share/gnome/help/user-guide/zh_CN/gosbasic.xml -share/gnome/help/user-guide/zh_CN/goscustdesk.xml -share/gnome/help/user-guide/zh_CN/goseditmainmenu.xml -share/gnome/help/user-guide/zh_CN/gosfeedback.xml -share/gnome/help/user-guide/zh_CN/gosnautilus.xml -share/gnome/help/user-guide/zh_CN/gosoverview.xml -share/gnome/help/user-guide/zh_CN/gospanel.xml -share/gnome/help/user-guide/zh_CN/gosstartsession.xml -share/gnome/help/user-guide/zh_CN/gostools.xml -share/gnome/help/user-guide/zh_CN/user-guide.xml -share/omf/gnome-access-guide/gnome-access-guide-C.omf -share/omf/gnome-access-guide/gnome-access-guide-de.omf -share/omf/gnome-access-guide/gnome-access-guide-el.omf -share/omf/gnome-access-guide/gnome-access-guide-en_GB.omf -share/omf/gnome-access-guide/gnome-access-guide-es.omf -share/omf/gnome-access-guide/gnome-access-guide-eu.omf -share/omf/gnome-access-guide/gnome-access-guide-fi.omf -share/omf/gnome-access-guide/gnome-access-guide-fr.omf -share/omf/gnome-access-guide/gnome-access-guide-hu.omf -share/omf/gnome-access-guide/gnome-access-guide-it.omf -share/omf/gnome-access-guide/gnome-access-guide-oc.omf -share/omf/gnome-access-guide/gnome-access-guide-pt.omf -share/omf/gnome-access-guide/gnome-access-guide-sv.omf -share/omf/gnome-access-guide/gnome-access-guide-zh_CN.omf -share/omf/system-admin-guide/system-admin-guide-C.omf -share/omf/system-admin-guide/system-admin-guide-ca.omf -share/omf/system-admin-guide/system-admin-guide-de.omf -share/omf/system-admin-guide/system-admin-guide-el.omf -share/omf/system-admin-guide/system-admin-guide-es.omf -share/omf/system-admin-guide/system-admin-guide-eu.omf -share/omf/system-admin-guide/system-admin-guide-fi.omf -share/omf/system-admin-guide/system-admin-guide-fr.omf -share/omf/system-admin-guide/system-admin-guide-it.omf -share/omf/system-admin-guide/system-admin-guide-ja.omf -share/omf/system-admin-guide/system-admin-guide-ko.omf -share/omf/system-admin-guide/system-admin-guide-oc.omf -share/omf/system-admin-guide/system-admin-guide-pa.omf -share/omf/system-admin-guide/system-admin-guide-pt.omf -share/omf/system-admin-guide/system-admin-guide-sv.omf -share/omf/system-admin-guide/system-admin-guide-zh_CN.omf -share/omf/user-guide/user-guide-C.omf -share/omf/user-guide/user-guide-ar.omf -share/omf/user-guide/user-guide-bg.omf -share/omf/user-guide/user-guide-cs.omf -share/omf/user-guide/user-guide-de.omf -share/omf/user-guide/user-guide-el.omf -share/omf/user-guide/user-guide-es.omf -share/omf/user-guide/user-guide-fi.omf -share/omf/user-guide/user-guide-fr.omf -share/omf/user-guide/user-guide-hu.omf -share/omf/user-guide/user-guide-it.omf -share/omf/user-guide/user-guide-ja.omf -share/omf/user-guide/user-guide-ko.omf -share/omf/user-guide/user-guide-oc.omf -share/omf/user-guide/user-guide-pa.omf -share/omf/user-guide/user-guide-pt.omf -share/omf/user-guide/user-guide-pt_BR.omf -share/omf/user-guide/user-guide-ru.omf -share/omf/user-guide/user-guide-sv.omf -share/omf/user-guide/user-guide-th.omf -share/omf/user-guide/user-guide-zh_CN.omf -@dirrm share/omf/user-guide -@dirrm share/omf/system-admin-guide -@dirrm share/omf/gnome-access-guide -@dirrm share/gnome/help/user-guide/zh_CN/figures -@dirrm share/gnome/help/user-guide/zh_CN -@dirrm share/gnome/help/user-guide/th/figures -@dirrm share/gnome/help/user-guide/th -@dirrm share/gnome/help/user-guide/sv/figures -@dirrm share/gnome/help/user-guide/sv -@dirrm share/gnome/help/user-guide/ru/figures -@dirrm share/gnome/help/user-guide/ru -@dirrm share/gnome/help/user-guide/pt_BR/figures -@dirrm share/gnome/help/user-guide/pt_BR -@dirrm share/gnome/help/user-guide/pt/figures -@dirrm share/gnome/help/user-guide/pt -@dirrm share/gnome/help/user-guide/pa/figures -@dirrm share/gnome/help/user-guide/pa -@dirrm share/gnome/help/user-guide/oc/figures -@dirrm share/gnome/help/user-guide/oc -@dirrm share/gnome/help/user-guide/ko/figures -@dirrm share/gnome/help/user-guide/ko -@dirrm share/gnome/help/user-guide/ja/figures -@dirrm share/gnome/help/user-guide/ja -@dirrm share/gnome/help/user-guide/it/figures -@dirrm share/gnome/help/user-guide/it -@dirrm share/gnome/help/user-guide/hu/figures -@dirrm share/gnome/help/user-guide/hu -@dirrm share/gnome/help/user-guide/fr/figures -@dirrm share/gnome/help/user-guide/fr -@dirrm share/gnome/help/user-guide/fi/figures -@dirrm share/gnome/help/user-guide/fi -@dirrm share/gnome/help/user-guide/es/figures -@dirrm share/gnome/help/user-guide/es -@dirrm share/gnome/help/user-guide/el/figures -@dirrm share/gnome/help/user-guide/el -@dirrm share/gnome/help/user-guide/de/figures -@dirrm share/gnome/help/user-guide/de -@dirrm share/gnome/help/user-guide/cs/figures -@dirrm share/gnome/help/user-guide/cs -@dirrm share/gnome/help/user-guide/bg/figures -@dirrm share/gnome/help/user-guide/bg -@dirrm share/gnome/help/user-guide/ar/figures -@dirrm share/gnome/help/user-guide/ar -@dirrm share/gnome/help/user-guide/C/figures -@dirrm share/gnome/help/user-guide/C -@dirrm share/gnome/help/user-guide -@dirrm share/gnome/help/system-admin-guide/zh_CN -@dirrm share/gnome/help/system-admin-guide/sv -@dirrm share/gnome/help/system-admin-guide/pt -@dirrm share/gnome/help/system-admin-guide/pa -@dirrm share/gnome/help/system-admin-guide/oc -@dirrm share/gnome/help/system-admin-guide/ko -@dirrm share/gnome/help/system-admin-guide/ja -@dirrm share/gnome/help/system-admin-guide/it -@dirrm share/gnome/help/system-admin-guide/fr -@dirrm share/gnome/help/system-admin-guide/fi -@dirrm share/gnome/help/system-admin-guide/eu -@dirrm share/gnome/help/system-admin-guide/es -@dirrm share/gnome/help/system-admin-guide/el -@dirrm share/gnome/help/system-admin-guide/de -@dirrm share/gnome/help/system-admin-guide/ca -@dirrm share/gnome/help/system-admin-guide/C -@dirrm share/gnome/help/system-admin-guide -@dirrm share/gnome/help/gnome-access-guide/zh_CN/figures -@dirrm share/gnome/help/gnome-access-guide/zh_CN -@dirrm share/gnome/help/gnome-access-guide/sv/figures -@dirrm share/gnome/help/gnome-access-guide/sv -@dirrm share/gnome/help/gnome-access-guide/pt/figures -@dirrm share/gnome/help/gnome-access-guide/pt -@dirrm share/gnome/help/gnome-access-guide/oc/figures -@dirrm share/gnome/help/gnome-access-guide/oc -@dirrm share/gnome/help/gnome-access-guide/it/figures -@dirrm share/gnome/help/gnome-access-guide/it -@dirrm share/gnome/help/gnome-access-guide/hu/figures -@dirrm share/gnome/help/gnome-access-guide/hu -@dirrm share/gnome/help/gnome-access-guide/fr/figures -@dirrm share/gnome/help/gnome-access-guide/fr -@dirrm share/gnome/help/gnome-access-guide/fi/figures -@dirrm share/gnome/help/gnome-access-guide/fi -@dirrm share/gnome/help/gnome-access-guide/eu/figures -@dirrm share/gnome/help/gnome-access-guide/eu -@dirrm share/gnome/help/gnome-access-guide/es/figures -@dirrm share/gnome/help/gnome-access-guide/es -@dirrm share/gnome/help/gnome-access-guide/en_GB/figures -@dirrm share/gnome/help/gnome-access-guide/en_GB -@dirrm share/gnome/help/gnome-access-guide/el/figures -@dirrm share/gnome/help/gnome-access-guide/el -@dirrm share/gnome/help/gnome-access-guide/de/figures -@dirrm share/gnome/help/gnome-access-guide/de -@dirrm share/gnome/help/gnome-access-guide/C/figures -@dirrm share/gnome/help/gnome-access-guide/C -@dirrm share/gnome/help/gnome-access-guide diff --git a/misc/gnomehier/Makefile b/misc/gnomehier/Makefile deleted file mode 100644 index ca8d2e9dc..000000000 --- a/misc/gnomehier/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# New ports collection makefile for: gnomehier -# Date created: 2 July 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/misc/gnomehier/Makefile,v 1.33 2009/03/10 22:27:13 mezz Exp $ -# -# !!DON'T BUMP PORTREVISION ON MTREE CHANGES ANYMORE!! - -PORTNAME= gnomehier -PORTVERSION= 2.3 -PORTREVISION= 12 -CATEGORIES= misc gnome -MASTER_SITES= # none -DISTFILES= # none - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A utility port that creates the GNOME directory tree - -NO_BUILD= yes -PLIST?= ${WRKDIR}/pkg-plist -PKGINSTALL= ${WRKDIR}/pkg-install - -GNOME_MTREE= BSD.gnome.dist -GNOME_MTREE_ARGS=${MTREE_ARGS:S|${MTREE_FILE}|${PREFIX}/etc/mtree/${GNOME_MTREE}|} - -do-fetch: - @${DO_NADA} - -pre-install: - @${CP} -f ${FILESDIR}/dirlist ${WRKDIR} - @${RM} -f ${PLIST} ${WRKDIR}/${GNOME_MTREE} - @${TOUCH} -f ${PLIST} - @${ECHO_CMD} etc/mtree/${GNOME_MTREE} >> ${PLIST} - @${MKDIR} ${WRKSRC} - @${CAT} ${FILESDIR}/dirlist | ${SORT} -r | ${SED} -e \ - 's|^|@dirrm |' >> ${PLIST} - @${ECHO_CMD} "@unexec ${RMDIR} %D/etc/mtree 2>/dev/null || ${TRUE}" >> ${PLIST} - @for dir in `${CAT} ${WRKDIR}/dirlist`; \ - do \ - ${MKDIR} ${WRKSRC}/$${dir}; \ - done - @${SED} -e 's|%%MTREE_ARGS%%|${GNOME_MTREE_ARGS}|' \ - < ${FILESDIR}/pkg-install.in > ${PKGINSTALL} - -pre-su-install: - ${CHGRP} games ${WRKSRC}/share/games - ${CHMOD} g=rwXs ${WRKSRC}/share/games - cd ${WRKSRC} && \ - ${MTREE_CMD} -U -d -n -i -c -k "uname, gname, mode" | \ - ${SED} -e 's|uname=[A-Za-z0-9_]*|uname=root|' \ - -e 's|gname=[A-Za-z0-9_]*|gname=wheel|' \ - > ${WRKDIR}/${GNOME_MTREE} - -do-install: - ${MKDIR} ${PREFIX}/etc/mtree - ${INSTALL_DATA} ${WRKDIR}/${GNOME_MTREE} ${PREFIX}/etc/mtree - -post-install: - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - -.include <bsd.port.mk> diff --git a/misc/gnomehier/files/dirlist b/misc/gnomehier/files/dirlist deleted file mode 100644 index 9ef1b4c8f..000000000 --- a/misc/gnomehier/files/dirlist +++ /dev/null @@ -1,101 +0,0 @@ -etc/CORBA -etc/CORBA/servers -etc/X11 -etc/X11/serverconfig -etc/X11/starthere -etc/X11/sysconfig -etc/gconf -etc/gconf/gconf.xml.defaults -etc/gconf/gconf.xml.mandatory -etc/gconf/gconf.xml.system -etc/gconf/schemas -etc/gnome -etc/gnome-vfs-2.0 -etc/gnome-vfs-2.0/modules -etc/gnome/config -etc/sound -etc/sound/events -etc/vfs -etc/vfs/modules -etc/xdg -etc/xdg/autostart -include/gconf -include/gdkcardimage -include/gnome-1.0 -lib/GConf -lib/bonobo -lib/bonobo/monikers -lib/bonobo/plugin -lib/gnome-vfs-2.0 -lib/gnome-vfs-2.0/modules -lib/vfs -lib/vfs/modules -libdata/bonobo -libdata/bonobo/servers -share/applets -share/applets/Amusements -share/applets/Clocks -share/applets/Monitors -share/applets/Multimedia -share/applets/Network -share/applets/Utility -share/application-registry -share/capplets -share/control-center -share/control-center-2.0 -share/control-center-2.0/capplets -share/control-center/Desktop -share/control-center/Documents -share/control-center/Peripherals -share/control-center/Session -share/control-center/capplets -share/control-center/keybindings -share/doc/libgda -share/games -share/gnome -share/gnome-2.0 -share/gnome-2.0/ui -share/gnome-about -share/gnome-control-center -share/gnome-control-center/keybindings -share/gnome/apps -share/gnome/apps/Applications -share/gnome/apps/Audio -share/gnome/apps/Development -share/gnome/apps/Games -share/gnome/apps/Graphics -share/gnome/apps/Internet -share/gnome/apps/Multimedia -share/gnome/apps/Settings -share/gnome/apps/Settings/Desktop -share/gnome/apps/Settings/Documents -share/gnome/apps/Settings/Peripherals -share/gnome/apps/Settings/Session -share/gnome/apps/System -share/gnome/apps/Utilities -share/gnome/autostart -share/gnome/help -share/gnome/help/fdl -share/gnome/help/fdl/C -share/gnome/help/gpl -share/gnome/help/gpl/C -share/gnome/help/lgpl -share/gnome/help/lgpl/C -share/gnome/panel -share/gnome/ui -share/gnome/wm-properties -share/images -share/mc -share/mc/templates -share/mime-info -share/oaf -share/omf -share/pixmaps/document-icons -share/pixmaps/splash -share/sgml/docbook -share/sgml/docbook/gnome-customization-0.1 -share/sounds -share/vala -share/vala/vapi -share/vfolders -share/xmodmap diff --git a/misc/gnomehier/files/pkg-install.in b/misc/gnomehier/files/pkg-install.in deleted file mode 100644 index 20e30328e..000000000 --- a/misc/gnomehier/files/pkg-install.in +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -case $2 in -POST-INSTALL) - /usr/sbin/mtree %%MTREE_ARGS%% ${PKG_PREFIX} - exit 0 - ;; -esac diff --git a/misc/gnomehier/pkg-descr b/misc/gnomehier/pkg-descr deleted file mode 100644 index ec27b1ee2..000000000 --- a/misc/gnomehier/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a utility port that creates the common GNOME directory -structure. This way, the existence of the directories can be -ensured before applications attempt to install into them. diff --git a/misc/quick-lounge-applet/Makefile b/misc/quick-lounge-applet/Makefile deleted file mode 100644 index b679add8c..000000000 --- a/misc/quick-lounge-applet/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: quick-lounge-applet -# Date created: 01 March 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= quick-lounge-applet -PORTVERSION= 2.13.2 -CATEGORIES= misc gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= marcus@FreeBSD.org -COMMENT= Applet to orginize your preferred applications on the GNOME Panel - -USE_BZIP2= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= quick-lounge.schemas - -.include <bsd.port.mk> diff --git a/misc/quick-lounge-applet/distinfo b/misc/quick-lounge-applet/distinfo deleted file mode 100644 index 48e058b71..000000000 --- a/misc/quick-lounge-applet/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/quick-lounge-applet-2.13.2.tar.bz2) = 033723a90f6ce15d1340ee542631607c -SHA256 (gnome2/quick-lounge-applet-2.13.2.tar.bz2) = 7f43fa3b12cc517fa947399a5d93feee72280c71f5698ba9abd207d7e6771a9a -SIZE (gnome2/quick-lounge-applet-2.13.2.tar.bz2) = 405000 diff --git a/misc/quick-lounge-applet/pkg-descr b/misc/quick-lounge-applet/pkg-descr deleted file mode 100644 index 675b59b0b..000000000 --- a/misc/quick-lounge-applet/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Quick Lounge Applet is a GNOME 2 panel applet that lets you organize all -your preferred applications in one place. - -WWW: http://quick-lounge.sourceforge.net/ diff --git a/misc/quick-lounge-applet/pkg-plist b/misc/quick-lounge-applet/pkg-plist deleted file mode 100644 index a78f6d018..000000000 --- a/misc/quick-lounge-applet/pkg-plist +++ /dev/null @@ -1,75 +0,0 @@ -libdata/bonobo/servers/GNOME_QuickLoungeApplet_Factory.server -libexec/quick-lounge-applet -share/gnome-2.0/ui/GNOME_QuickLoungeApplet.xml -share/gnome/help/quick-lounge/C/figures/quick-lounge_down.png -share/gnome/help/quick-lounge/C/figures/quick-lounge_end.png -share/gnome/help/quick-lounge/C/figures/quick-lounge_start.png -share/gnome/help/quick-lounge/C/figures/quick-lounge_up.png -share/gnome/help/quick-lounge/C/figures/quick-lounge_window.png -share/gnome/help/quick-lounge/C/legal.xml -share/gnome/help/quick-lounge/C/quick-lounge.xml -share/gnome/help/quick-lounge/fr/figures/quick-lounge_down.png -share/gnome/help/quick-lounge/fr/figures/quick-lounge_end.png -share/gnome/help/quick-lounge/fr/figures/quick-lounge_start.png -share/gnome/help/quick-lounge/fr/figures/quick-lounge_up.png -share/gnome/help/quick-lounge/fr/figures/quick-lounge_window.png -share/gnome/help/quick-lounge/fr/quick-lounge.xml -share/icons/hicolor/48x48/apps/quick-lounge-applet.png -share/locale/ar/LC_MESSAGES/quick-lounge-applet.mo -share/locale/az/LC_MESSAGES/quick-lounge-applet.mo -share/locale/bg/LC_MESSAGES/quick-lounge-applet.mo -share/locale/bs/LC_MESSAGES/quick-lounge-applet.mo -share/locale/ca/LC_MESSAGES/quick-lounge-applet.mo -share/locale/cs/LC_MESSAGES/quick-lounge-applet.mo -share/locale/da/LC_MESSAGES/quick-lounge-applet.mo -share/locale/de/LC_MESSAGES/quick-lounge-applet.mo -share/locale/dz/LC_MESSAGES/quick-lounge-applet.mo -share/locale/el/LC_MESSAGES/quick-lounge-applet.mo -share/locale/en_CA/LC_MESSAGES/quick-lounge-applet.mo -share/locale/en_GB/LC_MESSAGES/quick-lounge-applet.mo -share/locale/es/LC_MESSAGES/quick-lounge-applet.mo -share/locale/eu/LC_MESSAGES/quick-lounge-applet.mo -share/locale/fi/LC_MESSAGES/quick-lounge-applet.mo -share/locale/fr/LC_MESSAGES/quick-lounge-applet.mo -share/locale/gl/LC_MESSAGES/quick-lounge-applet.mo -share/locale/gu/LC_MESSAGES/quick-lounge-applet.mo -share/locale/hr/LC_MESSAGES/quick-lounge-applet.mo -share/locale/hu/LC_MESSAGES/quick-lounge-applet.mo -share/locale/it/LC_MESSAGES/quick-lounge-applet.mo -share/locale/ja/LC_MESSAGES/quick-lounge-applet.mo -share/locale/ko/LC_MESSAGES/quick-lounge-applet.mo -share/locale/ms/LC_MESSAGES/quick-lounge-applet.mo -share/locale/nb/LC_MESSAGES/quick-lounge-applet.mo -share/locale/ne/LC_MESSAGES/quick-lounge-applet.mo -share/locale/nl/LC_MESSAGES/quick-lounge-applet.mo -share/locale/oc/LC_MESSAGES/quick-lounge-applet.mo -share/locale/pa/LC_MESSAGES/quick-lounge-applet.mo -share/locale/pl/LC_MESSAGES/quick-lounge-applet.mo -share/locale/pt/LC_MESSAGES/quick-lounge-applet.mo -share/locale/pt_BR/LC_MESSAGES/quick-lounge-applet.mo -share/locale/ru/LC_MESSAGES/quick-lounge-applet.mo -share/locale/rw/LC_MESSAGES/quick-lounge-applet.mo -share/locale/sk/LC_MESSAGES/quick-lounge-applet.mo -share/locale/sl/LC_MESSAGES/quick-lounge-applet.mo -share/locale/sr/LC_MESSAGES/quick-lounge-applet.mo -share/locale/sr@Latn/LC_MESSAGES/quick-lounge-applet.mo -share/locale/sv/LC_MESSAGES/quick-lounge-applet.mo -share/locale/tr/LC_MESSAGES/quick-lounge-applet.mo -share/locale/uk/LC_MESSAGES/quick-lounge-applet.mo -share/locale/vi/LC_MESSAGES/quick-lounge-applet.mo -share/locale/zh_CN/LC_MESSAGES/quick-lounge-applet.mo -share/quick-lounge-applet/ui/add-from-menu.ui -share/quick-lounge-applet/ui/desktop-entry-editor.ui -share/quick-lounge-applet/ui/link-entry-editor.ui -share/quick-lounge-applet/ui/properties.ui -@dirrm share/quick-lounge-applet/ui -@dirrm share/quick-lounge-applet -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrm share/gnome/help/quick-lounge/fr/figures -@dirrm share/gnome/help/quick-lounge/fr -@dirrm share/gnome/help/quick-lounge/C/figures -@dirrm share/gnome/help/quick-lounge/C -@dirrm share/gnome/help/quick-lounge diff --git a/misc/wmcalendar/Makefile b/misc/wmcalendar/Makefile deleted file mode 100644 index cff718154..000000000 --- a/misc/wmcalendar/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: wmcalendar -# Date created: 24 Apr 2003 -# Whom: Alexey Dokuchaev <danfe@regency.nsu.ru> -# -# $FreeBSD$ -# - -PORTNAME= wmcalendar -PORTVERSION= 0.5.2 -PORTREVISION= 7 -CATEGORIES= misc windowmaker -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= xride@FreeBSD.org -COMMENT= A dockable calendar with interface to iCalendar based calendars - -LIB_DEPENDS= ical.43:${PORTSDIR}/devel/libical - -WRKSRC= ${WRKDIR}/${DISTNAME}/Src - -USE_XORG= xpm -USE_GNOME= gtk20 -MAKE_ARGS= CC="${CC}" \ - LFLAGS="`pkg-config --libs gtk+-2.0` -L${LOCALBASE}/lib" \ - CFLAGS="${CFLAGS}" \ - INCDIR="`pkg-config --cflags gtk+-2.0` -I${LOCALBASE}/include" \ - LIBDIR="" \ - LIBS="-lical -lXpm" -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= wmCalendar.1 -PLIST_FILES= bin/wmCalendar - -post-patch: - ${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' \ - -e 's#/usr/X11R6#${LOCALBASE}#g' \ - ${WRKSRC}/Makefile -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/wmCalendar ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/wmCalendar.1 ${MANPREFIX}/man/man1 - -.include <bsd.port.mk> diff --git a/misc/wmcalendar/distinfo b/misc/wmcalendar/distinfo deleted file mode 100644 index 1f65645b1..000000000 --- a/misc/wmcalendar/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (wmcalendar-0.5.2.tar.gz) = 4151430410d608bd68368f3c15de567b -SHA256 (wmcalendar-0.5.2.tar.gz) = 1915fe5b9af9de400650db4e9e4fa5934115902e8906144bf266b2f3503e0c00 -SIZE (wmcalendar-0.5.2.tar.gz) = 42720 diff --git a/misc/wmcalendar/files/patch-calendar.c b/misc/wmcalendar/files/patch-calendar.c deleted file mode 100644 index 3d4824f41..000000000 --- a/misc/wmcalendar/files/patch-calendar.c +++ /dev/null @@ -1,20 +0,0 @@ ---- calendar.c.orig 2007-01-15 01:14:32.000000000 +0100 -+++ calendar.c 2009-01-26 19:11:27.000000000 +0100 -@@ -48,7 +48,7 @@ - - - --void kill (GtkWidget * widget) -+void wmkill (GtkWidget * widget) - { - gtk_widget_destroy ((GtkWidget*)gtk_widget_get_toplevel(widget)); - gtk_main_quit (); -@@ -193,7 +193,7 @@ - gtk_signal_connect(GTK_OBJECT (event_box), "button_press_event", - GTK_SIGNAL_FUNC (move), NULL); - gtk_signal_connect(GTK_OBJECT (event_box2), "button_press_event", -- (GtkSignalFunc) kill, GTK_OBJECT(dayView)); -+ (GtkSignalFunc) wmkill, GTK_OBJECT(dayView)); - - gtk_widget_realize(dayView); - // gtk_window_set_position(GTK_WINDOW (dayView),GTK_WIN_POS_CENTER_ON_PARENT); diff --git a/misc/wmcalendar/files/patch-calendar.h b/misc/wmcalendar/files/patch-calendar.h deleted file mode 100644 index a07b43b50..000000000 --- a/misc/wmcalendar/files/patch-calendar.h +++ /dev/null @@ -1,8 +0,0 @@ ---- calendar.h.orig 2009-01-26 18:35:48.000000000 +0100 -+++ calendar.h 2009-01-26 18:36:03.000000000 +0100 -@@ -1,4 +1,4 @@ --#include <ical.h> -+#include <libical/ical.h> - #include <stdlib.h> - #include <gtk/gtk.h> - #include <string.h> diff --git a/misc/wmcalendar/files/patch-calendarfunc.h b/misc/wmcalendar/files/patch-calendarfunc.h deleted file mode 100644 index 46e560860..000000000 --- a/misc/wmcalendar/files/patch-calendarfunc.h +++ /dev/null @@ -1,11 +0,0 @@ ---- calendarfunc.h.orig 2009-01-26 19:19:55.000000000 +0100 -+++ calendarfunc.h 2009-01-26 19:20:13.000000000 +0100 -@@ -22,7 +22,7 @@ - - #include <unistd.h> - #include <stdlib.h> --#include <ical.h> -+#include <libical/ical.h> - #define TIMZ 3.0 - #define MINAGE 13.5 - #define SUNSET 19.5 /*approximate */ diff --git a/misc/wmcalendar/pkg-descr b/misc/wmcalendar/pkg-descr deleted file mode 100644 index 5d6523ae8..000000000 --- a/misc/wmcalendar/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -A dockapp calendar with monthly view and interface to iCalendar based -calendars like Ximian Evolution or Mozilla calendar. - -WWW: http://wmcalendar.sourceforge.net/ diff --git a/multimedia/cheese/Makefile b/multimedia/cheese/Makefile deleted file mode 100644 index 0ea359e55..000000000 --- a/multimedia/cheese/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: cheese -# Date created: 13 January 2008 -# Whom: FreeBSD GNOME Team <gnome@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/multimedia/cheese/Makefile,v 1.30 2009/03/04 13:20:57 mezz Exp $ -# - -PORTNAME= cheese -PORTVERSION= 2.26.0 -CATEGORIES= multimedia gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A Photobooth-inspired app for taking pictures and videos from webcam - -BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat - -USE_XORG= xxf86vm -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnomeprefix intlhack evolutiondataserver librsvg2 \ - gnomedocutils gnomedesktop -USE_GETTEXT= yes -USE_GSTREAMER= good -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -DOCS= AUTHORS COPYING ChangeLog NEWS README -GCONF_SCHEMAS= cheese.schemas - -.ifndef (NOPORTDOCS) -post-install: - @${MKDIR} ${DOCSDIR} -.for i in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/multimedia/cheese/distinfo b/multimedia/cheese/distinfo deleted file mode 100644 index 5a5547631..000000000 --- a/multimedia/cheese/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/cheese-2.26.0.tar.bz2) = 17c991c695c3a7549da6e42d1b327d79 -SHA256 (gnome2/cheese-2.26.0.tar.bz2) = 297c7aa579e14c1c22fbbc19254fbefca3b79ef8e6643856c83be0fdb8721412 -SIZE (gnome2/cheese-2.26.0.tar.bz2) = 3234803 diff --git a/multimedia/cheese/files/patch-src_cheese-webcam.c b/multimedia/cheese/files/patch-src_cheese-webcam.c deleted file mode 100644 index a0b5afd21..000000000 --- a/multimedia/cheese/files/patch-src_cheese-webcam.c +++ /dev/null @@ -1,40 +0,0 @@ ---- src/cheese-webcam.c.orig 2008-09-09 11:59:18.000000000 -0400 -+++ src/cheese-webcam.c 2008-09-09 12:01:14.000000000 -0400 -@@ -301,7 +301,9 @@ cheese_webcam_get_video_devices_from_hal - { - char *device; - char *gstreamer_src, *product_name; -+#ifdef VIDIOC_QUERYCAP - struct v4l2_capability v2cap; -+#endif - struct video_capability v1cap; - - device = libhal_device_get_property_string (hal_ctx, udis[i], "video4linux.device", &error); -@@ -327,7 +329,11 @@ cheese_webcam_get_video_devices_from_hal - libhal_free_string (device); - continue; - } -+#ifdef VIDIOC_QUERYCAP - ok = ioctl (fd, VIDIOC_QUERYCAP, &v2cap); -+#else -+ ok = -1; -+#endif - if (ok < 0) - { - ok = ioctl (fd, VIDIOCGCAP, &v1cap); -@@ -346,6 +352,7 @@ cheese_webcam_get_video_devices_from_hal - } - else - { -+#ifdef VIDIOC_QUERYCAP - guint cap = v2cap.capabilities; - g_print ("Detected v4l2 device: %s\n", v2cap.card); - g_print ("Driver: %s, version: %d\n", v2cap.driver, v2cap.version); -@@ -361,6 +368,7 @@ cheese_webcam_get_video_devices_from_hal - } - gstreamer_src = "v4l2src"; - product_name = (char *) v2cap.card; -+#endif - } - - priv->webcam_devices[priv->num_webcam_devices].hal_udi = g_strdup (udis[i]); diff --git a/multimedia/cheese/pkg-descr b/multimedia/cheese/pkg-descr deleted file mode 100644 index 51402b10a..000000000 --- a/multimedia/cheese/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Cheese is a Photobooth-inspired GNOME application for taking pictures and -videos from a webcam. It also includes fancy graphical effects based on the -gstreamer-backend. - -WWW: http://www.gnome.org/projects/cheese/ diff --git a/multimedia/cheese/pkg-plist b/multimedia/cheese/pkg-plist deleted file mode 100644 index 581e89e55..000000000 --- a/multimedia/cheese/pkg-plist +++ /dev/null @@ -1,231 +0,0 @@ -bin/cheese -libexec/cheese/cheese-bugreport.sh -share/applications/cheese.desktop -%%DATADIR%%/cheese-prefs.ui -%%DATADIR%%/cheese-ui.xml -%%DATADIR%%/cheese.ui -%%DATADIR%%/effects/Hulk.png -%%DATADIR%%/effects/Mauve.png -%%DATADIR%%/effects/NoirBlanc.png -%%DATADIR%%/effects/Saturation.png -%%DATADIR%%/effects/dicetv.png -%%DATADIR%%/effects/edgetv.png -%%DATADIR%%/effects/identity.png -%%DATADIR%%/effects/shagadelictv.png -%%DATADIR%%/effects/vertigotv.png -%%DATADIR%%/effects/videoflip_h.png -%%DATADIR%%/effects/videoflip_v.png -%%DATADIR%%/effects/warptv.png -%%DATADIR%%/gtkrc -%%DATADIR%%/icons/hicolor/16x16/actions/browse-webcam-effects.png -%%DATADIR%%/icons/hicolor/22x22/actions/browse-webcam-effects.png -%%DATADIR%%/icons/hicolor/24x24/actions/browse-webcam-effects.png -%%DATADIR%%/icons/hicolor/32x32/actions/browse-webcam-effects.png -%%DATADIR%%/icons/hicolor/48x48/actions/browse-webcam-effects.png -%%DATADIR%%/icons/hicolor/scalable/actions/browse-webcam-effects.svg -%%DATADIR%%/pixmaps/camera-icon.svg -%%DATADIR%%/pixmaps/cheese-1.svg -%%DATADIR%%/pixmaps/cheese-2.svg -%%DATADIR%%/pixmaps/cheese-3.svg -%%DATADIR%%/pixmaps/thumbnail-frame.png -%%DATADIR%%/sounds/shutter0.ogg -%%DATADIR%%/sounds/shutter1.ogg -%%DATADIR%%/sounds/shutter2.ogg -%%DATADIR%%/sounds/shutter3.ogg -%%DATADIR%%/sounds/shutter4.ogg -share/dbus-1/services/org.gnome.Cheese.service -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -share/gnome/help/cheese/C/cheese.xml -share/gnome/help/cheese/C/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/C/figures/cheese-screenshot.jpg -share/gnome/help/cheese/C/legal.xml -share/gnome/help/cheese/ca/cheese.xml -share/gnome/help/cheese/ca/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/ca/figures/cheese-screenshot.jpg -share/gnome/help/cheese/de/cheese.xml -share/gnome/help/cheese/de/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/de/figures/cheese-screenshot.jpg -share/gnome/help/cheese/el/cheese.xml -share/gnome/help/cheese/el/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/el/figures/cheese-screenshot.jpg -share/gnome/help/cheese/en_GB/cheese.xml -share/gnome/help/cheese/en_GB/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/en_GB/figures/cheese-screenshot.jpg -share/gnome/help/cheese/es/cheese.xml -share/gnome/help/cheese/es/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/es/figures/cheese-screenshot.jpg -share/gnome/help/cheese/fr/cheese.xml -share/gnome/help/cheese/fr/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/fr/figures/cheese-screenshot.jpg -share/gnome/help/cheese/nl/cheese.xml -share/gnome/help/cheese/nl/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/nl/figures/cheese-screenshot.jpg -share/gnome/help/cheese/oc/cheese.xml -share/gnome/help/cheese/oc/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/oc/figures/cheese-screenshot.jpg -share/gnome/help/cheese/pt_BR/cheese.xml -share/gnome/help/cheese/pt_BR/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/pt_BR/figures/cheese-screenshot.jpg -share/gnome/help/cheese/ru/cheese.xml -share/gnome/help/cheese/ru/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/ru/figures/cheese-screenshot.jpg -share/gnome/help/cheese/sv/cheese.xml -share/gnome/help/cheese/sv/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/sv/figures/cheese-screenshot.jpg -share/gnome/help/cheese/th/cheese.xml -share/gnome/help/cheese/th/figures/cheese-effects-screenshot.jpg -share/gnome/help/cheese/th/figures/cheese-screenshot.jpg -share/icons/hicolor/16x16/apps/cheese.png -share/icons/hicolor/22x22/apps/cheese.png -share/icons/hicolor/24x24/apps/cheese.png -share/icons/hicolor/32x32/apps/cheese.png -share/icons/hicolor/48x48/apps/cheese.png -share/icons/hicolor/scalable/apps/cheese.svg -share/locale/ar/LC_MESSAGES/cheese.mo -share/locale/as/LC_MESSAGES/cheese.mo -share/locale/be@latin/LC_MESSAGES/cheese.mo -share/locale/bg/LC_MESSAGES/cheese.mo -share/locale/bn_IN/LC_MESSAGES/cheese.mo -share/locale/ca/LC_MESSAGES/cheese.mo -share/locale/cs/LC_MESSAGES/cheese.mo -share/locale/da/LC_MESSAGES/cheese.mo -share/locale/de/LC_MESSAGES/cheese.mo -share/locale/dz/LC_MESSAGES/cheese.mo -share/locale/el/LC_MESSAGES/cheese.mo -share/locale/en_GB/LC_MESSAGES/cheese.mo -share/locale/es/LC_MESSAGES/cheese.mo -share/locale/et/LC_MESSAGES/cheese.mo -share/locale/eu/LC_MESSAGES/cheese.mo -share/locale/fi/LC_MESSAGES/cheese.mo -share/locale/fr/LC_MESSAGES/cheese.mo -share/locale/ga/LC_MESSAGES/cheese.mo -share/locale/gl/LC_MESSAGES/cheese.mo -share/locale/gu/LC_MESSAGES/cheese.mo -share/locale/he/LC_MESSAGES/cheese.mo -share/locale/hi/LC_MESSAGES/cheese.mo -share/locale/hr/LC_MESSAGES/cheese.mo -share/locale/hu/LC_MESSAGES/cheese.mo -share/locale/it/LC_MESSAGES/cheese.mo -share/locale/ja/LC_MESSAGES/cheese.mo -share/locale/kn/LC_MESSAGES/cheese.mo -share/locale/ko/LC_MESSAGES/cheese.mo -share/locale/ku/LC_MESSAGES/cheese.mo -share/locale/lt/LC_MESSAGES/cheese.mo -share/locale/lv/LC_MESSAGES/cheese.mo -share/locale/mk/LC_MESSAGES/cheese.mo -share/locale/ml/LC_MESSAGES/cheese.mo -share/locale/mr/LC_MESSAGES/cheese.mo -share/locale/nb/LC_MESSAGES/cheese.mo -share/locale/nl/LC_MESSAGES/cheese.mo -share/locale/nn/LC_MESSAGES/cheese.mo -share/locale/oc/LC_MESSAGES/cheese.mo -share/locale/or/LC_MESSAGES/cheese.mo -share/locale/pa/LC_MESSAGES/cheese.mo -share/locale/pl/LC_MESSAGES/cheese.mo -share/locale/ps/LC_MESSAGES/cheese.mo -share/locale/pt/LC_MESSAGES/cheese.mo -share/locale/pt_BR/LC_MESSAGES/cheese.mo -share/locale/ro/LC_MESSAGES/cheese.mo -share/locale/ru/LC_MESSAGES/cheese.mo -share/locale/sl/LC_MESSAGES/cheese.mo -share/locale/sq/LC_MESSAGES/cheese.mo -share/locale/sr/LC_MESSAGES/cheese.mo -share/locale/sr@latin/LC_MESSAGES/cheese.mo -share/locale/sv/LC_MESSAGES/cheese.mo -share/locale/ta/LC_MESSAGES/cheese.mo -share/locale/te/LC_MESSAGES/cheese.mo -share/locale/th/LC_MESSAGES/cheese.mo -share/locale/tr/LC_MESSAGES/cheese.mo -share/locale/uk/LC_MESSAGES/cheese.mo -share/locale/vi/LC_MESSAGES/cheese.mo -share/locale/zh_CN/LC_MESSAGES/cheese.mo -share/locale/zh_HK/LC_MESSAGES/cheese.mo -share/locale/zh_TW/LC_MESSAGES/cheese.mo -share/omf/cheese/cheese-C.omf -share/omf/cheese/cheese-ca.omf -share/omf/cheese/cheese-de.omf -share/omf/cheese/cheese-el.omf -share/omf/cheese/cheese-en_GB.omf -share/omf/cheese/cheese-es.omf -share/omf/cheese/cheese-fr.omf -share/omf/cheese/cheese-nl.omf -share/omf/cheese/cheese-oc.omf -share/omf/cheese/cheese-pt_BR.omf -share/omf/cheese/cheese-ru.omf -share/omf/cheese/cheese-sv.omf -share/omf/cheese/cheese-th.omf -@dirrm share/omf/cheese -@dirrm share/gnome/help/cheese/th/figures -@dirrm share/gnome/help/cheese/th -@dirrm share/gnome/help/cheese/sv/figures -@dirrm share/gnome/help/cheese/sv -@dirrm share/gnome/help/cheese/ru/figures -@dirrm share/gnome/help/cheese/ru -@dirrm share/gnome/help/cheese/pt_BR/figures -@dirrm share/gnome/help/cheese/pt_BR -@dirrm share/gnome/help/cheese/oc/figures -@dirrm share/gnome/help/cheese/oc -@dirrm share/gnome/help/cheese/nl/figures -@dirrm share/gnome/help/cheese/nl -@dirrm share/gnome/help/cheese/fr/figures -@dirrm share/gnome/help/cheese/fr -@dirrm share/gnome/help/cheese/es/figures -@dirrm share/gnome/help/cheese/es -@dirrm share/gnome/help/cheese/en_GB/figures -@dirrm share/gnome/help/cheese/en_GB -@dirrm share/gnome/help/cheese/el/figures -@dirrm share/gnome/help/cheese/el -@dirrm share/gnome/help/cheese/de/figures -@dirrm share/gnome/help/cheese/de -@dirrm share/gnome/help/cheese/ca/figures -@dirrm share/gnome/help/cheese/ca -@dirrm share/gnome/help/cheese/C/figures -@dirrm share/gnome/help/cheese/C -@dirrm share/gnome/help/cheese -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/48x48/actions -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%%/effects -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm libexec/cheese -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/multimedia/gxmms/Makefile b/multimedia/gxmms/Makefile deleted file mode 100644 index 0a011b7aa..000000000 --- a/multimedia/gxmms/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: gxmms -# Date created: 3 November 2004 -# Whom: Radek Kozlowski <radek@raadradd.com> -# -# $FreeBSD$ -# - -PORTNAME= gxmms -PORTVERSION= 0.2.1 -PORTREVISION= 8 -CATEGORIES= multimedia gnome -MASTER_SITES= ${MASTER_SITE_SAVANNAH} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= radek@raadradd.com -COMMENT= A simple GNOME panel applet for controlling XMMS - -BUILD_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms -RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms - -USE_GMAKE= yes -USE_GNOME= gnomehack gnomepanel gnomeprefix intlhack -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" - -.include <bsd.port.mk> diff --git a/multimedia/gxmms/distinfo b/multimedia/gxmms/distinfo deleted file mode 100644 index 39aac6586..000000000 --- a/multimedia/gxmms/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gxmms-0.2.1.tar.gz) = cdb986fa0545b787ac71ef6336823831 -SHA256 (gxmms-0.2.1.tar.gz) = bf3cc3bd5b42935db7589434a4777bc6125de3f49f8885bb086e9ebd9e85fb26 -SIZE (gxmms-0.2.1.tar.gz) = 129794 diff --git a/multimedia/gxmms/files/patch-src-interface.c b/multimedia/gxmms/files/patch-src-interface.c deleted file mode 100644 index 4c12cd24a..000000000 --- a/multimedia/gxmms/files/patch-src-interface.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/interface.c.orig 2008-04-24 15:30:43.000000000 +0200 -+++ src/interface.c 2008-04-24 15:31:31.000000000 +0200 -@@ -224,7 +224,7 @@ - gdouble width; - GtkWidget *progress; - BonoboUIComponent *popup; -- gchar info[256] = _("No track"); -+ gchar info[256] = "No track"; - - progress = xmms->track_control.progress; - if (!xmms_remote_is_running(xmms->session)) diff --git a/multimedia/gxmms/files/patch-src-xmmsctrl.c b/multimedia/gxmms/files/patch-src-xmmsctrl.c deleted file mode 100644 index cdde4c8a3..000000000 --- a/multimedia/gxmms/files/patch-src-xmmsctrl.c +++ /dev/null @@ -1,22 +0,0 @@ ---- src/xmmsctrl.c.orig 2004-09-03 00:19:54.000000000 +0200 -+++ src/xmmsctrl.c 2008-04-24 15:36:57.000000000 +0200 -@@ -45,16 +45,17 @@ - xmms_start(XMMSData *xmms) - { - static gchar *exec_cmd = "xmms"; -- static gchar *msg_error = _("Sorry, unable to launch XMMS."); -+ gchar *msg_error = _("Sorry, unable to launch XMMS."); - gint timer; - time_t lt; -+ gchar *exec_this; - - if (xmms_remote_is_running(xmms->session)) - { - return; - } - -- gchar *exec_this = g_strdup_printf("%s &", exec_cmd); -+ exec_this = g_strdup_printf("%s &", exec_cmd); - - if (system(exec_this)) - { diff --git a/multimedia/gxmms/pkg-descr b/multimedia/gxmms/pkg-descr deleted file mode 100644 index 8c7cc24c1..000000000 --- a/multimedia/gxmms/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Gxmms is a simple GNOME panel applet that lets you control the basic -functions of the X MultiMedia System (XMMS). It has the following -features: - - * Scrollable track time progress bar - * Volume control with mouse scrollwheel - * Buttons: Previous track - Play / Pause - Stop - Next track - Eject - * Real-time tooltips with track title and time - * Control repeat and shuffle properties - * Show/Hide main window, playlist editor, graphical eq and more - * Internazionalization (i18n) - -WWW: http://www.nongnu.org/gxmms/ diff --git a/multimedia/gxmms/pkg-plist b/multimedia/gxmms/pkg-plist deleted file mode 100644 index c958bcb41..000000000 --- a/multimedia/gxmms/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -libdata/bonobo/servers/GNOME_gxmmsApplet.server -libexec/gxmms_applet -share/gnome-2.0/ui/GNOME_gxmmsApplet.xml -share/gxmms/gxmms.png -share/gxmms/gxmms_eject.png -share/gxmms/gxmms_next.png -share/gxmms/gxmms_play_pause.png -share/gxmms/gxmms_prev.png -share/gxmms/gxmms_stop.png -share/pixmaps/gxmms_mini.png -share/locale/ca/LC_MESSAGES/gxmms.mo -share/locale/es/LC_MESSAGES/gxmms.mo -share/locale/fr/LC_MESSAGES/gxmms.mo -@dirrm share/gxmms diff --git a/multimedia/swfdec-gnome/Makefile b/multimedia/swfdec-gnome/Makefile deleted file mode 100644 index 41ff47dfb..000000000 --- a/multimedia/swfdec-gnome/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# Ports collection makefile for: swfdec-gnome -# Date created: 2008 01 10 -# Whom: Koop Mast <kwm@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/multimedia/swfdec-gnome/Makefile,v 1.16 2009/03/08 03:59:46 mezz Exp $ -# - -PORTNAME= swfdec-gnome -PORTVERSION= 2.26.0 -CATEGORIES= multimedia -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= kwm@FreeBSD.org -COMMENT= Gtk flash player and thumbnailer - -LIB_DEPENDS= swfdec-0.9:${PORTSDIR}/graphics/swfdec - -USE_GNOME= gnomehack gnomeprefix gtk20 intlhack gconf2 -USE_BZIP2= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= swfdec-thumbnailer.schemas - -MAN1= swfdec-player.1 swfdec-thumbnailer.1 - -post-patch: - @${REINPLACE_CMD} -e 's|MAJORMINOR=0\.8|MAJORMINOR=0\.9|g' \ - ${WRKSRC}/configure - -post-install: - @-update-desktop-database - -.include <bsd.port.mk> diff --git a/multimedia/swfdec-gnome/distinfo b/multimedia/swfdec-gnome/distinfo deleted file mode 100644 index 451f89d48..000000000 --- a/multimedia/swfdec-gnome/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/swfdec-gnome-2.26.0.tar.bz2) = 53d611d9a76a06a703650c4b73fd44cc -SHA256 (gnome2/swfdec-gnome-2.26.0.tar.bz2) = bf48dcadd9ca015f40a9aaa9cc94d402e9daf7c88b747789c79fcc921e9e1626 -SIZE (gnome2/swfdec-gnome-2.26.0.tar.bz2) = 193839 diff --git a/multimedia/swfdec-gnome/pkg-descr b/multimedia/swfdec-gnome/pkg-descr deleted file mode 100644 index 7e094c545..000000000 --- a/multimedia/swfdec-gnome/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Swfdec is a library for rendering Flash animations and games. It was -originally designed as a basis library for creating Flash plugins for -GStreamer, but it is a fully standalone library which only use the -libart library for drawing. - -WWW: http://www.schleef.org/swfdec/ diff --git a/multimedia/swfdec-gnome/pkg-plist b/multimedia/swfdec-gnome/pkg-plist deleted file mode 100644 index 15e18fdd9..000000000 --- a/multimedia/swfdec-gnome/pkg-plist +++ /dev/null @@ -1,94 +0,0 @@ -bin/swfdec-player -bin/swfdec-thumbnailer -share/applications/swfdec-player.desktop -share/icons/hicolor/16x16/apps/swfdec-gnome.png -share/icons/hicolor/22x22/apps/swfdec-gnome.png -share/icons/hicolor/24x24/apps/swfdec-gnome.png -share/icons/hicolor/32x32/apps/swfdec-gnome.png -share/icons/hicolor/48x48/apps/swfdec-gnome.png -share/icons/hicolor/scalable/apps/swfdec-gnome.svg -share/locale/ar/LC_MESSAGES/swfdec-gnome.mo -share/locale/as/LC_MESSAGES/swfdec-gnome.mo -share/locale/be@latin/LC_MESSAGES/swfdec-gnome.mo -share/locale/bg/LC_MESSAGES/swfdec-gnome.mo -share/locale/bn_IN/LC_MESSAGES/swfdec-gnome.mo -share/locale/ca/LC_MESSAGES/swfdec-gnome.mo -share/locale/cs/LC_MESSAGES/swfdec-gnome.mo -share/locale/da/LC_MESSAGES/swfdec-gnome.mo -share/locale/de/LC_MESSAGES/swfdec-gnome.mo -share/locale/el/LC_MESSAGES/swfdec-gnome.mo -share/locale/en_GB/LC_MESSAGES/swfdec-gnome.mo -share/locale/es/LC_MESSAGES/swfdec-gnome.mo -share/locale/et/LC_MESSAGES/swfdec-gnome.mo -share/locale/eu/LC_MESSAGES/swfdec-gnome.mo -share/locale/fi/LC_MESSAGES/swfdec-gnome.mo -share/locale/fr/LC_MESSAGES/swfdec-gnome.mo -share/locale/gl/LC_MESSAGES/swfdec-gnome.mo -share/locale/gu/LC_MESSAGES/swfdec-gnome.mo -share/locale/he/LC_MESSAGES/swfdec-gnome.mo -share/locale/hi/LC_MESSAGES/swfdec-gnome.mo -share/locale/hu/LC_MESSAGES/swfdec-gnome.mo -share/locale/it/LC_MESSAGES/swfdec-gnome.mo -share/locale/ja/LC_MESSAGES/swfdec-gnome.mo -share/locale/kk/LC_MESSAGES/swfdec-gnome.mo -share/locale/kn/LC_MESSAGES/swfdec-gnome.mo -share/locale/ko/LC_MESSAGES/swfdec-gnome.mo -share/locale/ku/LC_MESSAGES/swfdec-gnome.mo -share/locale/lt/LC_MESSAGES/swfdec-gnome.mo -share/locale/mk/LC_MESSAGES/swfdec-gnome.mo -share/locale/ml/LC_MESSAGES/swfdec-gnome.mo -share/locale/mr/LC_MESSAGES/swfdec-gnome.mo -share/locale/nb/LC_MESSAGES/swfdec-gnome.mo -share/locale/nl/LC_MESSAGES/swfdec-gnome.mo -share/locale/nn/LC_MESSAGES/swfdec-gnome.mo -share/locale/or/LC_MESSAGES/swfdec-gnome.mo -share/locale/pa/LC_MESSAGES/swfdec-gnome.mo -share/locale/pl/LC_MESSAGES/swfdec-gnome.mo -share/locale/ps/LC_MESSAGES/swfdec-gnome.mo -share/locale/pt/LC_MESSAGES/swfdec-gnome.mo -share/locale/pt_BR/LC_MESSAGES/swfdec-gnome.mo -share/locale/ro/LC_MESSAGES/swfdec-gnome.mo -share/locale/ru/LC_MESSAGES/swfdec-gnome.mo -share/locale/sl/LC_MESSAGES/swfdec-gnome.mo -share/locale/sq/LC_MESSAGES/swfdec-gnome.mo -share/locale/sr/LC_MESSAGES/swfdec-gnome.mo -share/locale/sr@latin/LC_MESSAGES/swfdec-gnome.mo -share/locale/sv/LC_MESSAGES/swfdec-gnome.mo -share/locale/ta/LC_MESSAGES/swfdec-gnome.mo -share/locale/te/LC_MESSAGES/swfdec-gnome.mo -share/locale/th/LC_MESSAGES/swfdec-gnome.mo -share/locale/tr/LC_MESSAGES/swfdec-gnome.mo -share/locale/uk/LC_MESSAGES/swfdec-gnome.mo -share/locale/vi/LC_MESSAGES/swfdec-gnome.mo -share/locale/zh_CN/LC_MESSAGES/swfdec-gnome.mo -share/locale/zh_HK/LC_MESSAGES/swfdec-gnome.mo -share/locale/zh_TW/LC_MESSAGES/swfdec-gnome.mo -%%DATADIR%%/swfdec-player.ui -@dirrm %%DATADIR%% -@dirrmtry share/applications -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr/LC_MESSAGES -@dirrmtry share/locale/sr -@dirrmtry share/locale/ro/LC_MESSAGES -@dirrmtry share/locale/ro -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/multimedia/totem-pl-parser/Makefile b/multimedia/totem-pl-parser/Makefile deleted file mode 100644 index 6ecf4b218..000000000 --- a/multimedia/totem-pl-parser/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: totem-pl-parser -# Date created: 2007-12-04 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/multimedia/totem-pl-parser/Makefile,v 1.23 2009/03/17 13:14:29 kwm Exp $ -# - -PORTNAME= totem-pl-parser -PORTVERSION= 2.26.1 -CATEGORIES= multimedia gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GObject-based library to parse a host of playlist formats - -LIB_DEPENDS= hal.1:${PORTSDIR}/sysutils/hal - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnomeprefix gnomevfs2 intlhack evolutiondataserver \ - ltverhack -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> diff --git a/multimedia/totem-pl-parser/distinfo b/multimedia/totem-pl-parser/distinfo deleted file mode 100644 index 0a99b9cc1..000000000 --- a/multimedia/totem-pl-parser/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/totem-pl-parser-2.26.1.tar.bz2) = 269a003146eaca6b9af0b90ad592571f -SHA256 (gnome2/totem-pl-parser-2.26.1.tar.bz2) = 448cb2b631b1a7b9a627627e7ea27d1bae7cf70496db58ab4467892a4c8c51ce -SIZE (gnome2/totem-pl-parser-2.26.1.tar.bz2) = 632881 diff --git a/multimedia/totem-pl-parser/pkg-descr b/multimedia/totem-pl-parser/pkg-descr deleted file mode 100644 index 90b17c4f2..000000000 --- a/multimedia/totem-pl-parser/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -A simple GObject-based library to parse a host of playlist formats diff --git a/multimedia/totem-pl-parser/pkg-plist b/multimedia/totem-pl-parser/pkg-plist deleted file mode 100644 index 18e2fccb0..000000000 --- a/multimedia/totem-pl-parser/pkg-plist +++ /dev/null @@ -1,145 +0,0 @@ -include/totem-pl-parser/1/plparser/totem-disc.h -include/totem-pl-parser/1/plparser/totem-pl-parser-builtins.h -include/totem-pl-parser/1/plparser/totem-pl-parser-features.h -include/totem-pl-parser/1/plparser/totem-pl-parser-mini.h -include/totem-pl-parser/1/plparser/totem-pl-parser.h -lib/libtotem-plparser-mini.a -lib/libtotem-plparser-mini.la -lib/libtotem-plparser-mini.so -lib/libtotem-plparser-mini.so.12 -lib/libtotem-plparser.a -lib/libtotem-plparser.la -lib/libtotem-plparser.so -lib/libtotem-plparser.so.12 -libdata/pkgconfig/totem-plparser-mini.pc -libdata/pkgconfig/totem-plparser.pc -%%DOCSDIR%%/TotemPlParser.html -%%DOCSDIR%%/api-index-deprecated.html -%%DOCSDIR%%/api-index-full.html -%%DOCSDIR%%/api-reference.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/totem-pl-parser-totem-disc.html -%%DOCSDIR%%/totem-pl-parser.devhelp -%%DOCSDIR%%/totem-pl-parser.devhelp2 -%%DOCSDIR%%/up.png -share/locale/am/LC_MESSAGES/totem-pl-parser.mo -share/locale/ar/LC_MESSAGES/totem-pl-parser.mo -share/locale/as/LC_MESSAGES/totem-pl-parser.mo -share/locale/az/LC_MESSAGES/totem-pl-parser.mo -share/locale/be/LC_MESSAGES/totem-pl-parser.mo -share/locale/be@latin/LC_MESSAGES/totem-pl-parser.mo -share/locale/bg/LC_MESSAGES/totem-pl-parser.mo -share/locale/bn/LC_MESSAGES/totem-pl-parser.mo -share/locale/bn_IN/LC_MESSAGES/totem-pl-parser.mo -share/locale/br/LC_MESSAGES/totem-pl-parser.mo -share/locale/ca/LC_MESSAGES/totem-pl-parser.mo -share/locale/cs/LC_MESSAGES/totem-pl-parser.mo -share/locale/cy/LC_MESSAGES/totem-pl-parser.mo -share/locale/da/LC_MESSAGES/totem-pl-parser.mo -share/locale/de/LC_MESSAGES/totem-pl-parser.mo -share/locale/dz/LC_MESSAGES/totem-pl-parser.mo -share/locale/el/LC_MESSAGES/totem-pl-parser.mo -share/locale/en_CA/LC_MESSAGES/totem-pl-parser.mo -share/locale/en_GB/LC_MESSAGES/totem-pl-parser.mo -share/locale/es/LC_MESSAGES/totem-pl-parser.mo -share/locale/et/LC_MESSAGES/totem-pl-parser.mo -share/locale/eu/LC_MESSAGES/totem-pl-parser.mo -share/locale/fa/LC_MESSAGES/totem-pl-parser.mo -share/locale/fi/LC_MESSAGES/totem-pl-parser.mo -share/locale/fr/LC_MESSAGES/totem-pl-parser.mo -share/locale/ga/LC_MESSAGES/totem-pl-parser.mo -share/locale/gl/LC_MESSAGES/totem-pl-parser.mo -share/locale/gu/LC_MESSAGES/totem-pl-parser.mo -share/locale/he/LC_MESSAGES/totem-pl-parser.mo -share/locale/hi/LC_MESSAGES/totem-pl-parser.mo -share/locale/hr/LC_MESSAGES/totem-pl-parser.mo -share/locale/hu/LC_MESSAGES/totem-pl-parser.mo -share/locale/id/LC_MESSAGES/totem-pl-parser.mo -share/locale/is/LC_MESSAGES/totem-pl-parser.mo -share/locale/it/LC_MESSAGES/totem-pl-parser.mo -share/locale/ja/LC_MESSAGES/totem-pl-parser.mo -share/locale/ka/LC_MESSAGES/totem-pl-parser.mo -share/locale/kn/LC_MESSAGES/totem-pl-parser.mo -share/locale/ko/LC_MESSAGES/totem-pl-parser.mo -share/locale/ku/LC_MESSAGES/totem-pl-parser.mo -share/locale/lt/LC_MESSAGES/totem-pl-parser.mo -share/locale/lv/LC_MESSAGES/totem-pl-parser.mo -share/locale/mg/LC_MESSAGES/totem-pl-parser.mo -share/locale/mk/LC_MESSAGES/totem-pl-parser.mo -share/locale/ml/LC_MESSAGES/totem-pl-parser.mo -share/locale/mr/LC_MESSAGES/totem-pl-parser.mo -share/locale/ms/LC_MESSAGES/totem-pl-parser.mo -share/locale/nb/LC_MESSAGES/totem-pl-parser.mo -share/locale/ne/LC_MESSAGES/totem-pl-parser.mo -share/locale/nl/LC_MESSAGES/totem-pl-parser.mo -share/locale/nn/LC_MESSAGES/totem-pl-parser.mo -share/locale/oc/LC_MESSAGES/totem-pl-parser.mo -share/locale/or/LC_MESSAGES/totem-pl-parser.mo -share/locale/pa/LC_MESSAGES/totem-pl-parser.mo -share/locale/pl/LC_MESSAGES/totem-pl-parser.mo -share/locale/ps/LC_MESSAGES/totem-pl-parser.mo -share/locale/pt/LC_MESSAGES/totem-pl-parser.mo -share/locale/pt_BR/LC_MESSAGES/totem-pl-parser.mo -share/locale/ro/LC_MESSAGES/totem-pl-parser.mo -share/locale/ru/LC_MESSAGES/totem-pl-parser.mo -share/locale/rw/LC_MESSAGES/totem-pl-parser.mo -share/locale/si/LC_MESSAGES/totem-pl-parser.mo -share/locale/sk/LC_MESSAGES/totem-pl-parser.mo -share/locale/sl/LC_MESSAGES/totem-pl-parser.mo -share/locale/sq/LC_MESSAGES/totem-pl-parser.mo -share/locale/sr/LC_MESSAGES/totem-pl-parser.mo -share/locale/sr@latin/LC_MESSAGES/totem-pl-parser.mo -share/locale/sv/LC_MESSAGES/totem-pl-parser.mo -share/locale/ta/LC_MESSAGES/totem-pl-parser.mo -share/locale/te/LC_MESSAGES/totem-pl-parser.mo -share/locale/th/LC_MESSAGES/totem-pl-parser.mo -share/locale/tr/LC_MESSAGES/totem-pl-parser.mo -share/locale/ug/LC_MESSAGES/totem-pl-parser.mo -share/locale/uk/LC_MESSAGES/totem-pl-parser.mo -share/locale/vi/LC_MESSAGES/totem-pl-parser.mo -share/locale/wa/LC_MESSAGES/totem-pl-parser.mo -share/locale/xh/LC_MESSAGES/totem-pl-parser.mo -share/locale/zh_CN/LC_MESSAGES/totem-pl-parser.mo -share/locale/zh_HK/LC_MESSAGES/totem-pl-parser.mo -share/locale/zh_TW/LC_MESSAGES/totem-pl-parser.mo -@dirrm %%DOCSDIR%% -@dirrm include/totem-pl-parser/1/plparser -@dirrm include/totem-pl-parser/1 -@dirrm include/totem-pl-parser -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/multimedia/totem/Makefile b/multimedia/totem/Makefile deleted file mode 100644 index 941b5f8c7..000000000 --- a/multimedia/totem/Makefile +++ /dev/null @@ -1,157 +0,0 @@ -# New ports collection makefile for: totem -# Date created: 17 Oct 2002 -# Whom: Hendrik Scholz <hendrik@scholz.net> -# -# $FreeBSD$ -# $MCom: ports/multimedia/totem/Makefile,v 1.125 2009/03/17 13:20:25 kwm Exp $ -# - -PORTNAME= totem -PORTVERSION= 2.26.1 -PORTREVISION?= 0 -CATEGORIES= multimedia gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER?= gnome@FreeBSD.org -COMMENT?= A gstreamer-based video player for the GNOME 2 Desktop - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes -LIB_DEPENDS= musicbrainz:${PORTSDIR}/audio/libmusicbrainz \ - totem-plparser.12:${PORTSDIR}/multimedia/totem-pl-parser -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon \ - ${PYTHON_SITELIBDIR}/atom/__init__.py:${PORTSDIR}/devel/py-gdata - -USE_PYTHON= yes -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix intlhack gnomehack desktopfileutils \ - nautilus2 ltverhack pygtk2 -GNOME_DESKTOP_VERSION=2 -WANT_GSTREAMER= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -INSTALLS_OMF= yes -PKGMESSAGE= ${WRKDIR}/pkg-message -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lXrandr" \ - BROWSER_PLUGIN_DIR="${WEBPLUGINS_DIR}" -CONFIGURE_ARGS= --with-plugins="${TOTEM_PLUGINS}" - -MAN1= totem.1 totem-video-thumbnailer.1 -GCONF_SCHEMAS= totem-handlers.schemas totem-video-thumbnail.schemas \ - totem.schemas -CONFLICTS?= totem-xine-[0-9]* - -OPTIONS= LIRC "Enable lirc support" off \ - GALAGO "Enable Galago support" off \ - BROWSER_PLUGINS "Enable install plugins for gecko browser" on \ - PUBLISH "Enable Publish (network playlist) plugin" off \ - TRACKER "Enable tracker local search plugin" off - -# check configure script for allowed_plugins="..." for new plugins -TOTEM_PLUGINS= thumbnail screensaver ontop gromit media-player-keys \ - properties skipto youtube -# Not using: -# TOTEM_PLUGINS= mythtv bemused - -.include <bsd.port.pre.mk> - -.if defined(WITH_PUBLISH) -LIB_DEPENDS+= epc-1.0.2:${PORTSDIR}/www/libepc -PLIST_SUB+= PUBLISH="" -TOTEM_PLUGINS:= ${TOTEM_PLUGINS} publish -.else -PLIST_SUB+= PUBLISH="@comment " -.endif - -.if defined(WITH_TRACKER) -LIB_DEPENDS+= tracker-gtk.0:${PORTSDIR}/sysutils/tracker-libtrackergtk -TOTEM_PLUGINS:= ${TOTEM_PLUGINS} tracker -PLIST_SUB+= TRACKER="" -.else -PLIST_SUB+= TRACKER="@comment " -.endif - -.if defined(WITH_LIRC) -LIB_DEPENDS+= lirc_client.1:${PORTSDIR}/comms/lirc -PLIST_SUB+= LIRC="" -TOTEM_PLUGINS:= ${TOTEM_PLUGINS} lirc -.else -PLIST_SUB+= LIRC="@comment " -.endif - -.if defined(WITH_GALAGO) -LIB_DEPENDS+= galago.3:${PORTSDIR}/devel/libgalago -PLIST_SUB+= GALAGO="" -TOTEM_PLUGINS:= ${TOTEM_PLUGINS} galago -.else -PLIST_SUB+= GALAGO="@comment " -.endif - -.if !defined(WITHOUT_BROWSER_PLUGINS) -CONFIGURE_ARGS+=--enable-browser-plugins \ - --enable-gmp-plugin \ - --enable-complex-plugin \ - --enable-narrowspace-plugin -PLIST_SUB+= BROWSER_PLUGINS="" - -USE_WEBPLUGINS= gecko19 webkit-gtk2 -WEBPLUGINS_FILES= libtotem-basic-plugin.so libtotem-complex-plugin.so \ - libtotem-cone-plugin.so libtotem-gmp-plugin.so \ - libtotem-mully-plugin.so \ - libtotem-narrowspace-plugin.so -.include "${PORTSDIR}/www/firefox/Makefile.webplugins" -.else -CONFIGURE_ARGS+=--disable-browser-plugins \ - --disable-basic-plugin \ - --disable-gmp-plugin \ - --disable-complex-plugin \ - --disable-narrowspace-plugin -PLIST_SUB+= BROWSER_PLUGINS="@comment " -.endif - -.if !defined(WITH_TOTEM_XINE) || ${SLAVE_PORT}=="no" -CONFIGURE_ARGS+=--enable-gstreamer=yes -USE_GSTREAMER+= core gconf hal good mpeg2dec soup ugly python gio -WITHOUT_DVDNAV= yes -PLIST_SUB+= GSTREAMER="" -.else -CONFIGURE_ARGS+=--enable-xine=yes -LIB_DEPENDS+= xine.1:${PORTSDIR}/multimedia/libxine -PLIST_SUB+= GSTREAMER="@comment " -.endif - -.if defined(WITH_DVDNAV) && !defined(WITHOUT_DVDNAV) -LIB_DEPENDS+= dvdnav.4:${PORTSDIR}/multimedia/libdvdnav -.endif - -.if defined(WITH_DVD_DEVICE) -DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE} -.else -DEFAULT_DVD_DEVICE=/dev/acd0 -.endif - -pre-everything:: - @${ECHO_MSG} "===> The default DVD device is ${DEFAULT_DVD_DEVICE}" - @${ECHO_MSG} "===> Define WITH_DVD_DEVICE if you want to change the default" - @${ECHO_MSG} "===> For example, 'make WITH_DVD_DEVICE=\"/dev/somedevice\"'" - -post-patch: - @${CP} -f ${FILESDIR}/pkg-message.in ${PKGMESSAGE} - @${REINPLACE_CMD} -e 's|dbus >= 0.61|dbus-1 >= 0.61|g' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|' \ - ${WRKSRC}/src/backend/bacon-video-widget-gst-0.10.c - -post-install: - @-update-desktop-database - ${MKDIR} ${PREFIX}/share/vala/vapi - ${INSTALL_DATA} ${WRKSRC}/bindings/vala/totem.vapi ${PREFIX}/share/vala/vapi - ${INSTALL_DATA} ${WRKSRC}/bindings/vala/totem.deps ${PREFIX}/share/vala/vapi - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/multimedia/totem/distinfo b/multimedia/totem/distinfo deleted file mode 100644 index 0781cf6b0..000000000 --- a/multimedia/totem/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/totem-2.26.1.tar.bz2) = 410d14957f48ae179c03e5c663607536 -SHA256 (gnome2/totem-2.26.1.tar.bz2) = 1f312290c68ddb4211ca338d7c41a06b57b39ebc242f2d0bdc135a8e88348237 -SIZE (gnome2/totem-2.26.1.tar.bz2) = 3084948 diff --git a/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp b/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp deleted file mode 100644 index 6e697364d..000000000 --- a/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- browser-plugin/totemPluginGlue.cpp.orig 2008-03-15 18:00:23.000000000 -0500 -+++ browser-plugin/totemPluginGlue.cpp 2008-03-15 18:01:54.000000000 -0500 -@@ -356,7 +356,7 @@ - user_ini_file = g_build_filename (g_get_user_config_dir (), - "totem", - "browser-plugins.ini", -- NULL); -+ (char *)NULL); - if (g_key_file_load_from_file (user, - user_ini_file, - G_KEY_FILE_NONE, -@@ -439,7 +439,7 @@ - /* we want to open libdbus-glib-1.so.2 in such a way - * in such a way that it becomes permanentely resident */ - void *handle; -- handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW | RTLD_NODELETE); -+ handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW); - if (!handle) { - fprintf (stderr, "%s\n", dlerror()); - return NPERR_MODULE_LOAD_FAILED_ERROR; diff --git a/multimedia/totem/files/patch-configure b/multimedia/totem/files/patch-configure deleted file mode 100644 index 4c6c7b340..000000000 --- a/multimedia/totem/files/patch-configure +++ /dev/null @@ -1,12 +0,0 @@ ---- configure.orig 2008-08-30 08:23:22.000000000 +0200 -+++ configure 2008-08-30 08:24:20.000000000 +0200 -@@ -25171,7 +25171,9 @@ - _ACEOF - - -+if [ -z "${BROWSER_PLUGIN_DIR}" ]; then - BROWSER_PLUGIN_DIR="${BROWSER_PLUGIN_DIR:-"\${libdir}/mozilla/plugins"}" -+fi - - - diff --git a/multimedia/totem/files/pkg-message.in b/multimedia/totem/files/pkg-message.in deleted file mode 100644 index 5c4332981..000000000 --- a/multimedia/totem/files/pkg-message.in +++ /dev/null @@ -1,6 +0,0 @@ -******************************************************** -* Make sure you've enough shared memory, the xine FAQ * -* advises to have the following sysctl settings: * -* kern.ipc.shmmax=67108864 * -* kern.ipc.shmall=32768 * -******************************************************** diff --git a/multimedia/totem/pkg-descr b/multimedia/totem/pkg-descr deleted file mode 100644 index 3f33f1f5f..000000000 --- a/multimedia/totem/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Totem is simple movie player for the Gnome 2 desktop based on xine. -It features a simple playlist, a full-screen mode, seek and volume controls, -as well as a pretty complete keyboard navigation. - -WWW: http://www.gnome.org/projects/totem/ - --- Hendrik Scholz <hendrik@scholz.net> diff --git a/multimedia/totem/pkg-plist b/multimedia/totem/pkg-plist deleted file mode 100644 index cd5233e3b..000000000 --- a/multimedia/totem/pkg-plist +++ /dev/null @@ -1,516 +0,0 @@ -bin/totem -bin/totem-audio-preview -bin/totem-video-indexer -bin/totem-video-thumbnailer -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-complex-plugin.a -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-complex-plugin.la -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-complex-plugin.so -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-cone-plugin.a -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-cone-plugin.la -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-cone-plugin.so -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-gmp-plugin.a -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-gmp-plugin.la -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-gmp-plugin.so -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-mully-plugin.a -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-mully-plugin.la -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-mully-plugin.so -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-narrowspace-plugin.a -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-narrowspace-plugin.la -%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-narrowspace-plugin.so -lib/libbaconvideowidget.a -lib/libbaconvideowidget.la -lib/libbaconvideowidget.so -lib/libbaconvideowidget.so.0 -lib/nautilus/extensions-2.0/libtotem-properties-page.a -lib/nautilus/extensions-2.0/libtotem-properties-page.la -lib/nautilus/extensions-2.0/libtotem-properties-page.so -%%GALAGO%%lib/totem/plugins/galago/galago.totem-plugin -%%GALAGO%%lib/totem/plugins/galago/libtgp.a -%%GALAGO%%lib/totem/plugins/galago/libtgp.la -%%GALAGO%%lib/totem/plugins/galago/libtgp.so -lib/totem/plugins/gromit/gromit.totem-plugin -lib/totem/plugins/gromit/libgromit.a -lib/totem/plugins/gromit/libgromit.la -lib/totem/plugins/gromit/libgromit.so -%%LIRC%%lib/totem/plugins/lirc/lirc.totem-plugin -%%LIRC%%lib/totem/plugins/lirc/liblirc.a -%%LIRC%%lib/totem/plugins/lirc/liblirc.la -%%LIRC%%lib/totem/plugins/lirc/liblirc.so -lib/totem/plugins/media-player-keys/libmedia_player_keys.a -lib/totem/plugins/media-player-keys/libmedia_player_keys.la -lib/totem/plugins/media-player-keys/libmedia_player_keys.so -lib/totem/plugins/media-player-keys/media-player-keys.totem-plugin -lib/totem/plugins/ontop/libontop.a -lib/totem/plugins/ontop/libontop.la -lib/totem/plugins/ontop/libontop.so -lib/totem/plugins/ontop/ontop.totem-plugin -%%PUBLISH%%lib/totem/plugins/publish/libpublish.a -%%PUBLISH%%lib/totem/plugins/publish/libpublish.la -%%PUBLISH%%lib/totem/plugins/publish/libpublish.so -%%PUBLISH%%lib/totem/plugins/publish/publish-plugin.ui -%%PUBLISH%%lib/totem/plugins/publish/publish.totem-plugin -lib/totem/plugins/properties/libmovie-properties.a -lib/totem/plugins/properties/libmovie-properties.la -lib/totem/plugins/properties/libmovie-properties.so -lib/totem/plugins/properties/movie-properties.totem-plugin -lib/totem/plugins/screensaver/libscreensaver.a -lib/totem/plugins/screensaver/libscreensaver.la -lib/totem/plugins/screensaver/libscreensaver.so -lib/totem/plugins/screensaver/screensaver.totem-plugin -lib/totem/plugins/skipto/libskipto.a -lib/totem/plugins/skipto/libskipto.la -lib/totem/plugins/skipto/libskipto.so -lib/totem/plugins/skipto/skipto.totem-plugin -lib/totem/plugins/skipto/skipto.ui -lib/totem/plugins/thumbnail/libthumbnail.a -lib/totem/plugins/thumbnail/libthumbnail.la -lib/totem/plugins/thumbnail/libthumbnail.so -lib/totem/plugins/thumbnail/thumbnail.totem-plugin -%%TRACKER%%lib/totem/plugins/tracker/libtracker.a -%%TRACKER%%lib/totem/plugins/tracker/libtracker.la -%%TRACKER%%lib/totem/plugins/tracker/libtracker.so -%%TRACKER%%lib/totem/plugins/tracker/tracker.totem-plugin -lib/totem/plugins/totem/__init__.py -lib/totem/plugins/totem/__init__.pyc -lib/totem/plugins/totem/__init__.pyo -lib/totem/plugins/youtube/youtube.py -lib/totem/plugins/youtube/youtube.pyc -lib/totem/plugins/youtube/youtube.pyo -lib/totem/plugins/youtube/youtube.totem-plugin -lib/totem/plugins/youtube/youtube.ui -%%BROWSER_PLUGINS%%libexec/totem-plugin-viewer -libexec/totem/totem-bugreport.py -share/applications/totem.desktop -%%DOCSDIR%%/TotemCellRendererVideo.html -%%DOCSDIR%%/TotemObject.html -%%DOCSDIR%%/TotemPlugin.html -%%DOCSDIR%%/TotemVideoList.html -%%DOCSDIR%%/api-index-deprecated.html -%%DOCSDIR%%/api-index-full.html -%%DOCSDIR%%/core-api.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/totem-Interface.html -%%DOCSDIR%%/totem.devhelp -%%DOCSDIR%%/totem.devhelp2 -%%DOCSDIR%%/up.png -%%DOCSDIR%%/widget-api.html -share/gnome/help/totem/C/figures/totem_next_button.png -share/gnome/help/totem/C/figures/totem_pause_button.png -share/gnome/help/totem/C/figures/totem_play_button.png -share/gnome/help/totem/C/figures/totem_previous_button.png -share/gnome/help/totem/C/figures/totem_show_playlist_button.png -share/gnome/help/totem/C/figures/totem_start_window.png -share/gnome/help/totem/C/figures/totem_volume_maximum_button.png -share/gnome/help/totem/C/figures/totem_volume_mute_button.png -share/gnome/help/totem/C/legal.xml -share/gnome/help/totem/C/totem.xml -share/gnome/help/totem/bg/figures/totem_start_window.png -share/gnome/help/totem/bg/legal.xml -share/gnome/help/totem/bg/totem.xml -share/gnome/help/totem/ca/figures/totem_next_button.png -share/gnome/help/totem/ca/figures/totem_pause_button.png -share/gnome/help/totem/ca/figures/totem_play_button.png -share/gnome/help/totem/ca/figures/totem_previous_button.png -share/gnome/help/totem/ca/figures/totem_show_playlist_button.png -share/gnome/help/totem/ca/figures/totem_start_window.png -share/gnome/help/totem/ca/figures/totem_volume_maximum_button.png -share/gnome/help/totem/ca/figures/totem_volume_mute_button.png -share/gnome/help/totem/ca/totem.xml -share/gnome/help/totem/cs/figures/totem_next_button.png -share/gnome/help/totem/cs/figures/totem_pause_button.png -share/gnome/help/totem/cs/figures/totem_play_button.png -share/gnome/help/totem/cs/figures/totem_previous_button.png -share/gnome/help/totem/cs/figures/totem_show_playlist_button.png -share/gnome/help/totem/cs/figures/totem_start_window.png -share/gnome/help/totem/cs/figures/totem_volume_maximum_button.png -share/gnome/help/totem/cs/figures/totem_volume_mute_button.png -share/gnome/help/totem/cs/totem.xml -share/gnome/help/totem/de/figures/totem_next_button.png -share/gnome/help/totem/de/figures/totem_pause_button.png -share/gnome/help/totem/de/figures/totem_play_button.png -share/gnome/help/totem/de/figures/totem_previous_button.png -share/gnome/help/totem/de/figures/totem_show_playlist_button.png -share/gnome/help/totem/de/figures/totem_start_window.png -share/gnome/help/totem/de/figures/totem_volume_maximum_button.png -share/gnome/help/totem/de/figures/totem_volume_mute_button.png -share/gnome/help/totem/de/totem.xml -share/gnome/help/totem/el/figures/totem_next_button.png -share/gnome/help/totem/el/figures/totem_pause_button.png -share/gnome/help/totem/el/figures/totem_play_button.png -share/gnome/help/totem/el/figures/totem_previous_button.png -share/gnome/help/totem/el/figures/totem_show_playlist_button.png -share/gnome/help/totem/el/figures/totem_start_window.png -share/gnome/help/totem/el/figures/totem_volume_maximum_button.png -share/gnome/help/totem/el/figures/totem_volume_mute_button.png -share/gnome/help/totem/el/totem.xml -share/gnome/help/totem/en_GB/figures/totem_next_button.png -share/gnome/help/totem/en_GB/figures/totem_pause_button.png -share/gnome/help/totem/en_GB/figures/totem_play_button.png -share/gnome/help/totem/en_GB/figures/totem_previous_button.png -share/gnome/help/totem/en_GB/figures/totem_show_playlist_button.png -share/gnome/help/totem/en_GB/figures/totem_start_window.png -share/gnome/help/totem/en_GB/figures/totem_volume_maximum_button.png -share/gnome/help/totem/en_GB/figures/totem_volume_mute_button.png -share/gnome/help/totem/en_GB/totem.xml -share/gnome/help/totem/es/figures/totem_next_button.png -share/gnome/help/totem/es/figures/totem_pause_button.png -share/gnome/help/totem/es/figures/totem_play_button.png -share/gnome/help/totem/es/figures/totem_previous_button.png -share/gnome/help/totem/es/figures/totem_show_playlist_button.png -share/gnome/help/totem/es/figures/totem_start_window.png -share/gnome/help/totem/es/figures/totem_volume_maximum_button.png -share/gnome/help/totem/es/figures/totem_volume_mute_button.png -share/gnome/help/totem/es/totem.xml -share/gnome/help/totem/eu/figures/totem_next_button.png -share/gnome/help/totem/eu/figures/totem_pause_button.png -share/gnome/help/totem/eu/figures/totem_play_button.png -share/gnome/help/totem/eu/figures/totem_previous_button.png -share/gnome/help/totem/eu/figures/totem_show_playlist_button.png -share/gnome/help/totem/eu/figures/totem_start_window.png -share/gnome/help/totem/eu/figures/totem_volume_maximum_button.png -share/gnome/help/totem/eu/figures/totem_volume_mute_button.png -share/gnome/help/totem/eu/totem.xml -share/gnome/help/totem/fr/figures/totem_next_button.png -share/gnome/help/totem/fr/figures/totem_pause_button.png -share/gnome/help/totem/fr/figures/totem_play_button.png -share/gnome/help/totem/fr/figures/totem_previous_button.png -share/gnome/help/totem/fr/figures/totem_show_playlist_button.png -share/gnome/help/totem/fr/figures/totem_start_window.png -share/gnome/help/totem/fr/figures/totem_volume_maximum_button.png -share/gnome/help/totem/fr/figures/totem_volume_mute_button.png -share/gnome/help/totem/fr/totem.xml -share/gnome/help/totem/it/figures/totem_next_button.png -share/gnome/help/totem/it/figures/totem_pause_button.png -share/gnome/help/totem/it/figures/totem_play_button.png -share/gnome/help/totem/it/figures/totem_previous_button.png -share/gnome/help/totem/it/figures/totem_show_playlist_button.png -share/gnome/help/totem/it/figures/totem_start_window.png -share/gnome/help/totem/it/figures/totem_volume_maximum_button.png -share/gnome/help/totem/it/figures/totem_volume_mute_button.png -share/gnome/help/totem/it/totem.xml -share/gnome/help/totem/ja/figures/totem_next_button.png -share/gnome/help/totem/ja/figures/totem_pause_button.png -share/gnome/help/totem/ja/figures/totem_play_button.png -share/gnome/help/totem/ja/figures/totem_previous_button.png -share/gnome/help/totem/ja/figures/totem_show_playlist_button.png -share/gnome/help/totem/ja/figures/totem_start_window.png -share/gnome/help/totem/ja/figures/totem_volume_maximum_button.png -share/gnome/help/totem/ja/figures/totem_volume_mute_button.png -share/gnome/help/totem/ja/totem.xml -share/gnome/help/totem/oc/figures/totem_next_button.png -share/gnome/help/totem/oc/figures/totem_pause_button.png -share/gnome/help/totem/oc/figures/totem_play_button.png -share/gnome/help/totem/oc/figures/totem_previous_button.png -share/gnome/help/totem/oc/figures/totem_show_playlist_button.png -share/gnome/help/totem/oc/figures/totem_start_window.png -share/gnome/help/totem/oc/figures/totem_volume_maximum_button.png -share/gnome/help/totem/oc/figures/totem_volume_mute_button.png -share/gnome/help/totem/oc/totem.xml -share/gnome/help/totem/pa/figures/totem_next_button.png -share/gnome/help/totem/pa/figures/totem_pause_button.png -share/gnome/help/totem/pa/figures/totem_play_button.png -share/gnome/help/totem/pa/figures/totem_previous_button.png -share/gnome/help/totem/pa/figures/totem_show_playlist_button.png -share/gnome/help/totem/pa/figures/totem_start_window.png -share/gnome/help/totem/pa/figures/totem_volume_maximum_button.png -share/gnome/help/totem/pa/figures/totem_volume_mute_button.png -share/gnome/help/totem/pa/totem.xml -share/gnome/help/totem/pl/figures/totem_next_button.png -share/gnome/help/totem/pl/figures/totem_pause_button.png -share/gnome/help/totem/pl/figures/totem_play_button.png -share/gnome/help/totem/pl/figures/totem_previous_button.png -share/gnome/help/totem/pl/figures/totem_show_playlist_button.png -share/gnome/help/totem/pl/figures/totem_start_window.png -share/gnome/help/totem/pl/figures/totem_volume_maximum_button.png -share/gnome/help/totem/pl/figures/totem_volume_mute_button.png -share/gnome/help/totem/pl/totem.xml -share/gnome/help/totem/pt_BR/figures/totem_next_button.png -share/gnome/help/totem/pt_BR/figures/totem_pause_button.png -share/gnome/help/totem/pt_BR/figures/totem_play_button.png -share/gnome/help/totem/pt_BR/figures/totem_previous_button.png -share/gnome/help/totem/pt_BR/figures/totem_show_playlist_button.png -share/gnome/help/totem/pt_BR/figures/totem_start_window.png -share/gnome/help/totem/pt_BR/figures/totem_volume_maximum_button.png -share/gnome/help/totem/pt_BR/figures/totem_volume_mute_button.png -share/gnome/help/totem/pt_BR/totem.xml -share/gnome/help/totem/ru/figures/totem_next_button.png -share/gnome/help/totem/ru/figures/totem_pause_button.png -share/gnome/help/totem/ru/figures/totem_play_button.png -share/gnome/help/totem/ru/figures/totem_previous_button.png -share/gnome/help/totem/ru/figures/totem_show_playlist_button.png -share/gnome/help/totem/ru/figures/totem_start_window.png -share/gnome/help/totem/ru/figures/totem_volume_maximum_button.png -share/gnome/help/totem/ru/figures/totem_volume_mute_button.png -share/gnome/help/totem/ru/totem.xml -share/gnome/help/totem/sv/figures/totem_next_button.png -share/gnome/help/totem/sv/figures/totem_pause_button.png -share/gnome/help/totem/sv/figures/totem_play_button.png -share/gnome/help/totem/sv/figures/totem_previous_button.png -share/gnome/help/totem/sv/figures/totem_show_playlist_button.png -share/gnome/help/totem/sv/figures/totem_start_window.png -share/gnome/help/totem/sv/figures/totem_volume_maximum_button.png -share/gnome/help/totem/sv/figures/totem_volume_mute_button.png -share/gnome/help/totem/sv/totem.xml -share/gnome/help/totem/uk/figures/totem_next_button.png -share/gnome/help/totem/uk/figures/totem_pause_button.png -share/gnome/help/totem/uk/figures/totem_play_button.png -share/gnome/help/totem/uk/figures/totem_previous_button.png -share/gnome/help/totem/uk/figures/totem_show_playlist_button.png -share/gnome/help/totem/uk/figures/totem_start_window.png -share/gnome/help/totem/uk/figures/totem_volume_maximum_button.png -share/gnome/help/totem/uk/figures/totem_volume_mute_button.png -share/gnome/help/totem/uk/totem.xml -share/gnome/help/totem/zh_HK/figures/totem_next_button.png -share/gnome/help/totem/zh_HK/figures/totem_pause_button.png -share/gnome/help/totem/zh_HK/figures/totem_play_button.png -share/gnome/help/totem/zh_HK/figures/totem_previous_button.png -share/gnome/help/totem/zh_HK/figures/totem_show_playlist_button.png -share/gnome/help/totem/zh_HK/figures/totem_start_window.png -share/gnome/help/totem/zh_HK/figures/totem_volume_maximum_button.png -share/gnome/help/totem/zh_HK/figures/totem_volume_mute_button.png -share/gnome/help/totem/zh_HK/totem.xml -share/gnome/help/totem/zh_TW/figures/totem_next_button.png -share/gnome/help/totem/zh_TW/figures/totem_pause_button.png -share/gnome/help/totem/zh_TW/figures/totem_play_button.png -share/gnome/help/totem/zh_TW/figures/totem_previous_button.png -share/gnome/help/totem/zh_TW/figures/totem_show_playlist_button.png -share/gnome/help/totem/zh_TW/figures/totem_start_window.png -share/gnome/help/totem/zh_TW/figures/totem_volume_maximum_button.png -share/gnome/help/totem/zh_TW/figures/totem_volume_mute_button.png -share/gnome/help/totem/zh_TW/totem.xml -share/icons/hicolor/16x16/apps/totem.png -share/icons/hicolor/16x16/devices/totem-tv.png -share/icons/hicolor/22x22/apps/totem.png -share/icons/hicolor/22x22/devices/totem-tv.png -share/icons/hicolor/24x24/apps/totem.png -share/icons/hicolor/24x24/devices/totem-tv.png -share/icons/hicolor/32x32/apps/totem.png -share/icons/hicolor/32x32/devices/totem-tv.png -share/icons/hicolor/48x48/apps/totem.png -share/icons/hicolor/48x48/devices/totem-tv.png -share/icons/hicolor/scalable/apps/totem.svg -share/icons/hicolor/scalable/devices/totem-tv.svg -share/locale/am/LC_MESSAGES/totem.mo -share/locale/ar/LC_MESSAGES/totem.mo -share/locale/as/LC_MESSAGES/totem.mo -share/locale/ast/LC_MESSAGES/totem.mo -share/locale/az/LC_MESSAGES/totem.mo -share/locale/be/LC_MESSAGES/totem.mo -share/locale/be@latin/LC_MESSAGES/totem.mo -share/locale/bg/LC_MESSAGES/totem.mo -share/locale/bn/LC_MESSAGES/totem.mo -share/locale/bn_IN/LC_MESSAGES/totem.mo -share/locale/br/LC_MESSAGES/totem.mo -share/locale/ca/LC_MESSAGES/totem.mo -share/locale/cs/LC_MESSAGES/totem.mo -share/locale/cy/LC_MESSAGES/totem.mo -share/locale/da/LC_MESSAGES/totem.mo -share/locale/de/LC_MESSAGES/totem.mo -share/locale/dz/LC_MESSAGES/totem.mo -share/locale/el/LC_MESSAGES/totem.mo -share/locale/en_CA/LC_MESSAGES/totem.mo -share/locale/en_GB/LC_MESSAGES/totem.mo -share/locale/es/LC_MESSAGES/totem.mo -share/locale/et/LC_MESSAGES/totem.mo -share/locale/eu/LC_MESSAGES/totem.mo -share/locale/fa/LC_MESSAGES/totem.mo -share/locale/fi/LC_MESSAGES/totem.mo -share/locale/fr/LC_MESSAGES/totem.mo -share/locale/ga/LC_MESSAGES/totem.mo -share/locale/gl/LC_MESSAGES/totem.mo -share/locale/gu/LC_MESSAGES/totem.mo -share/locale/he/LC_MESSAGES/totem.mo -share/locale/hi/LC_MESSAGES/totem.mo -share/locale/hr/LC_MESSAGES/totem.mo -share/locale/hu/LC_MESSAGES/totem.mo -share/locale/id/LC_MESSAGES/totem.mo -share/locale/is/LC_MESSAGES/totem.mo -share/locale/it/LC_MESSAGES/totem.mo -share/locale/ja/LC_MESSAGES/totem.mo -share/locale/ka/LC_MESSAGES/totem.mo -share/locale/kn/LC_MESSAGES/totem.mo -share/locale/ko/LC_MESSAGES/totem.mo -share/locale/ku/LC_MESSAGES/totem.mo -share/locale/lt/LC_MESSAGES/totem.mo -share/locale/lv/LC_MESSAGES/totem.mo -share/locale/mai/LC_MESSAGES/totem.mo -share/locale/mg/LC_MESSAGES/totem.mo -share/locale/mk/LC_MESSAGES/totem.mo -share/locale/ml/LC_MESSAGES/totem.mo -share/locale/mr/LC_MESSAGES/totem.mo -share/locale/ms/LC_MESSAGES/totem.mo -share/locale/nb/LC_MESSAGES/totem.mo -share/locale/ne/LC_MESSAGES/totem.mo -share/locale/nl/LC_MESSAGES/totem.mo -share/locale/nn/LC_MESSAGES/totem.mo -share/locale/oc/LC_MESSAGES/totem.mo -share/locale/or/LC_MESSAGES/totem.mo -share/locale/pa/LC_MESSAGES/totem.mo -share/locale/pl/LC_MESSAGES/totem.mo -share/locale/ps/LC_MESSAGES/totem.mo -share/locale/pt/LC_MESSAGES/totem.mo -share/locale/pt_BR/LC_MESSAGES/totem.mo -share/locale/ro/LC_MESSAGES/totem.mo -share/locale/ru/LC_MESSAGES/totem.mo -share/locale/rw/LC_MESSAGES/totem.mo -share/locale/si/LC_MESSAGES/totem.mo -share/locale/sk/LC_MESSAGES/totem.mo -share/locale/sl/LC_MESSAGES/totem.mo -share/locale/sq/LC_MESSAGES/totem.mo -share/locale/sr/LC_MESSAGES/totem.mo -share/locale/sr@latin/LC_MESSAGES/totem.mo -share/locale/sv/LC_MESSAGES/totem.mo -share/locale/ta/LC_MESSAGES/totem.mo -share/locale/te/LC_MESSAGES/totem.mo -share/locale/th/LC_MESSAGES/totem.mo -share/locale/tr/LC_MESSAGES/totem.mo -share/locale/ug/LC_MESSAGES/totem.mo -share/locale/uk/LC_MESSAGES/totem.mo -share/locale/vi/LC_MESSAGES/totem.mo -share/locale/wa/LC_MESSAGES/totem.mo -share/locale/xh/LC_MESSAGES/totem.mo -share/locale/zh_CN/LC_MESSAGES/totem.mo -share/locale/zh_HK/LC_MESSAGES/totem.mo -share/locale/zh_TW/LC_MESSAGES/totem.mo -share/omf/totem/totem-C.omf -share/omf/totem/totem-bg.omf -share/omf/totem/totem-ca.omf -share/omf/totem/totem-cs.omf -share/omf/totem/totem-de.omf -share/omf/totem/totem-el.omf -share/omf/totem/totem-en_GB.omf -share/omf/totem/totem-es.omf -share/omf/totem/totem-eu.omf -share/omf/totem/totem-fr.omf -share/omf/totem/totem-it.omf -share/omf/totem/totem-ja.omf -share/omf/totem/totem-oc.omf -share/omf/totem/totem-pa.omf -share/omf/totem/totem-pl.omf -share/omf/totem/totem-pt_BR.omf -share/omf/totem/totem-ru.omf -share/omf/totem/totem-sv.omf -share/omf/totem/totem-uk.omf -share/omf/totem/totem-zh_HK.omf -share/omf/totem/totem-zh_TW.omf -%%DATADIR%%/filmholes-big-left.png -%%DATADIR%%/filmholes-big-right.png -%%DATADIR%%/filmholes.png -%%DATADIR%%/fullscreen.ui -%%DATADIR%%/mozilla-viewer.ui -%%DATADIR%%/playlist.ui -%%DATADIR%%/plugins.ui -%%DATADIR%%/properties.ui -%%DATADIR%%/totem.ui -%%DATADIR%%/totem_logo.png -%%DATADIR%%/uri.ui -%%DATADIR%%/video-list.ui -share/vala/vapi/totem.deps -share/vala/vapi/totem.vapi -@dirrm %%DATADIR%% -@dirrm share/omf/totem -@dirrm share/gnome/help/totem/zh_TW/figures -@dirrm share/gnome/help/totem/zh_TW -@dirrm share/gnome/help/totem/zh_HK/figures -@dirrm share/gnome/help/totem/zh_HK -@dirrm share/gnome/help/totem/uk/figures -@dirrm share/gnome/help/totem/uk -@dirrm share/gnome/help/totem/sv/figures -@dirrm share/gnome/help/totem/sv -@dirrm share/gnome/help/totem/ru/figures -@dirrm share/gnome/help/totem/ru -@dirrm share/gnome/help/totem/pt_BR/figures -@dirrm share/gnome/help/totem/pt_BR -@dirrm share/gnome/help/totem/pl/figures -@dirrm share/gnome/help/totem/pl -@dirrm share/gnome/help/totem/pa/figures -@dirrm share/gnome/help/totem/pa -@dirrm share/gnome/help/totem/oc/figures -@dirrm share/gnome/help/totem/oc -@dirrm share/gnome/help/totem/ja/figures -@dirrm share/gnome/help/totem/ja -@dirrm share/gnome/help/totem/it/figures -@dirrm share/gnome/help/totem/it -@dirrm share/gnome/help/totem/fr/figures -@dirrm share/gnome/help/totem/fr -@dirrm share/gnome/help/totem/eu/figures -@dirrm share/gnome/help/totem/eu -@dirrm share/gnome/help/totem/es/figures -@dirrm share/gnome/help/totem/es -@dirrm share/gnome/help/totem/en_GB/figures -@dirrm share/gnome/help/totem/en_GB -@dirrm share/gnome/help/totem/el/figures -@dirrm share/gnome/help/totem/el -@dirrm share/gnome/help/totem/de/figures -@dirrm share/gnome/help/totem/de -@dirrm share/gnome/help/totem/cs/figures -@dirrm share/gnome/help/totem/cs -@dirrm share/gnome/help/totem/ca/figures -@dirrm share/gnome/help/totem/ca -@dirrm share/gnome/help/totem/bg/figures -@dirrm share/gnome/help/totem/bg -@dirrm share/gnome/help/totem/C/figures -@dirrm share/gnome/help/totem/C -@dirrm share/gnome/help/totem -@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@dirrm libexec/totem -@dirrm lib/totem/plugins/youtube -@dirrm lib/totem/plugins/totem -%%TRACKER%%@dirrm lib/totem/plugins/tracker -@dirrm lib/totem/plugins/thumbnail -@dirrm lib/totem/plugins/skipto -@dirrm lib/totem/plugins/screensaver -%%PUBLISH%%@dirrm lib/totem/plugins/publish -@dirrm lib/totem/plugins/properties -@dirrm lib/totem/plugins/ontop -@dirrm lib/totem/plugins/media-player-keys -%%LIRC%%@dirrm lib/totem/plugins/lirc -@dirrm lib/totem/plugins/gromit -%%GALAGO%%@dirrm lib/totem/plugins/galago -@dirrm lib/totem/plugins -@dirrm lib/totem -%%BROWSER_PLUGINS%%@dirrmtry %%WEBPLUGINS_DIR%% -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net-im/ayttm/Makefile b/net-im/ayttm/Makefile deleted file mode 100644 index b169ad98e..000000000 --- a/net-im/ayttm/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -# New ports collection makefile for: ayttm -# Date created: 1 Mar 2000 -# Whom: Jim Mock <jim@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ayttm -PORTVERSION= 0.5.0.45 -PORTREVISION= 1 -CATEGORIES= net-im -MASTER_SITES= SF -DISTNAME= ${PORTNAME}-${PORTVERSION:R}-${PORTVERSION:E} - -MAINTAINER= ports@FreeBSD.org -COMMENT= A "chat" program that combines AIM, ICQ, and Yahoo! Chat into one - -LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile \ - jasper.4:${PORTSDIR}/graphics/jasper \ - gpgme.17:${PORTSDIR}/security/gpgme \ - pspell.16:${PORTSDIR}/textproc/aspell - -OPTIONS= ARTS "Enable aRts support" off \ - ESOUND "Enable EsounD support" off - -USE_BZIP2= yes -USE_XORG= xpm xscrnsaver -USE_GNOME= gnometarget gtk20 -USE_OPENSSL= yes -USE_GMAKE= yes -USE_AUTOTOOLS= libltdl:15 libtool:15 -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -CONFIGURE_ARGS= --enable-oscar --disable-workwizu --enable-smtp --enable-lj - -MAN1= ayttm.1 - -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib - -.include <bsd.port.pre.mk> - -.if defined(WITH_ARTS) -LIB_DEPENDS+= artsc:${PORTSDIR}/audio/arts -.else -CONFIGURE_ARGS+= --disable-arts -.endif - -.if defined(WITH_ESOUND) -USE_GNOME+= esound -.else -CONFIGURE_ARGS+= --disable-esd -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-L/usr/local/lib||g ; \ - s|-lpthread|${PTHREAD_LIBS}|g ; \ - /CFLAGS=/s|-pthread|${PTHREAD_CFLAGS}|g ; \ - s|-DGTK_DISABLE_DEPRECATED||g ; \ - /LIBS=/s|-L/usr/X11R6/lib||g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e \ - 's|/gnome/apps/Internet|/applications|g' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e \ - 's|-L/usr/local/lib/pth/||g ; \ - s|-lproxy|../libproxy/libproxy.a|g' ${WRKSRC}/src/Makefile.in - -.include <bsd.port.post.mk> diff --git a/net-im/ayttm/distinfo b/net-im/ayttm/distinfo deleted file mode 100644 index 8fd5a3a41..000000000 --- a/net-im/ayttm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ayttm-0.5.0-45.tar.bz2) = b609a148cd36ecb219c2b3f1513bfbd0 -SHA256 (ayttm-0.5.0-45.tar.bz2) = 4c732c742205f04023b09c2a884ace558ec2bd58ddcf3e9db1bd56395cbc48b9 -SIZE (ayttm-0.5.0-45.tar.bz2) = 1408451 diff --git a/net-im/ayttm/pkg-descr b/net-im/ayttm/pkg-descr deleted file mode 100644 index 6a306f16b..000000000 --- a/net-im/ayttm/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Ayttm is an instant messaging (aka chat) client that provides all-in-one -chat functionality for several major instant messaging services from one -simple program. Ayttm "Contacts" allow you to refer to several accounts of -the same person from a single contact name, making it one of the cleanest -and simplest clients to use. - -WWW: http://ayttm.sourceforge.net/ - -- jim <jim@FreeBSD.org> diff --git a/net-im/ayttm/pkg-plist b/net-im/ayttm/pkg-plist deleted file mode 100644 index 7256a896b..000000000 --- a/net-im/ayttm/pkg-plist +++ /dev/null @@ -1,125 +0,0 @@ -bin/ayttm -bin/ayttm_streamer_wrapper.sh -etc/ayttmrc -include/ayttm/yahoo2.h -include/ayttm/yahoo2_callbacks.h -include/ayttm/yahoo2_types.h -include/ayttm/yahoo_fn.h -include/ayttm/yahoo_httplib.h -include/ayttm/yahoo_list.h -lib/ayttm/aim-oscar.a -lib/ayttm/aim-oscar.la -lib/ayttm/aim-oscar.so -lib/ayttm/aim-toc.a -lib/ayttm/aim-toc.la -lib/ayttm/aim-toc.so -lib/ayttm/autotrans.a -lib/ayttm/autotrans.la -lib/ayttm/autotrans.so -lib/ayttm/aycryption.a -lib/ayttm/aycryption.la -lib/ayttm/aycryption.so -lib/ayttm/custmsg.a -lib/ayttm/custmsg.la -lib/ayttm/custmsg.so -lib/ayttm/icq-toc.a -lib/ayttm/icq-toc.la -lib/ayttm/icq-toc.so -lib/ayttm/img2jpc.a -lib/ayttm/img2jpc.la -lib/ayttm/img2jpc.so -lib/ayttm/import_everybuddy.a -lib/ayttm/import_everybuddy.la -lib/ayttm/import_everybuddy.so -lib/ayttm/import_gaim.a -lib/ayttm/import_gaim.la -lib/ayttm/import_gaim.so -lib/ayttm/import_gnomeicu.a -lib/ayttm/import_gnomeicu.la -lib/ayttm/import_gnomeicu.so -lib/ayttm/importicq.a -lib/ayttm/importicq.la -lib/ayttm/importicq.so -lib/ayttm/importlicq.a -lib/ayttm/importlicq.la -lib/ayttm/importlicq.so -lib/ayttm/irc.a -lib/ayttm/irc.la -lib/ayttm/irc.so -lib/ayttm/jabber.a -lib/ayttm/jabber.la -lib/ayttm/jabber.so -lib/ayttm/lj.a -lib/ayttm/lj.la -lib/ayttm/lj.so -lib/ayttm/middle.a -lib/ayttm/middle.la -lib/ayttm/middle.so -lib/ayttm/msn2.a -lib/ayttm/msn2.la -lib/ayttm/msn2.so -lib/ayttm/notes.a -lib/ayttm/notes.la -lib/ayttm/notes.so -lib/ayttm/rainbow.a -lib/ayttm/rainbow.la -lib/ayttm/rainbow.so -lib/ayttm/smiley-themer.a -lib/ayttm/smiley-themer.la -lib/ayttm/smiley-themer.so -lib/ayttm/smtp.a -lib/ayttm/smtp.la -lib/ayttm/smtp.so -lib/ayttm/video_capture.a -lib/ayttm/video_capture.la -lib/ayttm/video_capture.so -lib/ayttm/yahoo2.a -lib/ayttm/yahoo2.la -lib/ayttm/yahoo2.so -share/applications/ayttm.desktop -share/applnk/Internet/ayttm.desktop -%%DATADIR%%/smileys/Console Smileys/aysmile.rc -%%DATADIR%%/smileys/Console Smileys/blank.xpm -%%DATADIR%%/smileys/Console Smileys/blush.xpm -%%DATADIR%%/smileys/Console Smileys/confused.xpm -%%DATADIR%%/smileys/Console Smileys/cooldude.xpm -%%DATADIR%%/smileys/Console Smileys/grin.xpm -%%DATADIR%%/smileys/Console Smileys/heyy.xpm -%%DATADIR%%/smileys/Console Smileys/kiss.xpm -%%DATADIR%%/smileys/Console Smileys/laugh.xpm -%%DATADIR%%/smileys/Console Smileys/oh.xpm -%%DATADIR%%/smileys/Console Smileys/sad.xpm -%%DATADIR%%/smileys/Console Smileys/smile.xpm -%%DATADIR%%/smileys/Console Smileys/sob.xpm -%%DATADIR%%/smileys/Console Smileys/tongue.xpm -%%DATADIR%%/smileys/Console Smileys/wink.xpm -%%DATADIR%%/smileys/Console Smileys/worried.xpm -%%DATADIR%%/smileys/Giles Smileys/aysmile.rc -%%DATADIR%%/smileys/Giles Smileys/dead.xpm -%%DATADIR%%/smileys/Giles Smileys/embarrased.xpm -%%DATADIR%%/smileys/Giles Smileys/grin.xpm -%%DATADIR%%/smileys/Giles Smileys/indifferent.xpm -%%DATADIR%%/smileys/Giles Smileys/kiss.xpm -%%DATADIR%%/smileys/Giles Smileys/quiet.xpm -%%DATADIR%%/smileys/Giles Smileys/sad.xpm -%%DATADIR%%/smileys/Giles Smileys/shades.xpm -%%DATADIR%%/smileys/Giles Smileys/shocked.xpm -%%DATADIR%%/smileys/Giles Smileys/smile.xpm -%%DATADIR%%/smileys/Giles Smileys/tears.xpm -%%DATADIR%%/smileys/Giles Smileys/tongue.xpm -%%DATADIR%%/smileys/Giles Smileys/wink.xpm -%%DATADIR%%/sounds/BuddyArrive.au -%%DATADIR%%/sounds/BuddyLeave.au -%%DATADIR%%/sounds/Receive.au -%%DATADIR%%/sounds/Send.au -share/pixmaps/ayttm.png -@dirrmtry share/applnk/Internet -@dirrmtry share/applnk -@dirrmtry share/applications -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/smileys/Giles Smileys -@dirrm %%DATADIR%%/smileys/Console Smileys -@dirrm %%DATADIR%%/smileys -@dirrm %%DATADIR%% -@dirrm lib/ayttm -@dirrm include/ayttm diff --git a/net-im/empathy/Makefile b/net-im/empathy/Makefile deleted file mode 100644 index 21f61b2ce..000000000 --- a/net-im/empathy/Makefile +++ /dev/null @@ -1,75 +0,0 @@ -# New ports collection makefile for: empathy -# Date created: 2007-10-29 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/net-im/empathy/Makefile,v 1.21 2009/03/18 03:43:53 mezz Exp $ - -PORTNAME= empathy -PORTVERSION= 2.26.0.1 -CATEGORIES= net-im gnome -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME IM client based around telepathy - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes -LIB_DEPENDS= missioncontrol-server.1:${PORTSDIR}/net-im/telepathy-mission-control \ - aspell.16:${PORTSDIR}/textproc/aspell \ - telepathy.2:${PORTSDIR}/net-im/libtelepathy \ - telepathy-glib.0:${PORTSDIR}/net-im/telepathy-glib \ - telepathy-farsight.0:${PORTSDIR}/net-im/telepathy-farsight \ - canberra-gtk.0:${PORTSDIR}/audio/libcanberra -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes - -USE_GMAKE= yes -USE_BZIP2= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_GNOME= evolutiondataserver gnomehack gnomeprefix pygtk2 ltverhack \ - gnomepanel -USE_GSTREAMER= yes -USE_AUTOTOOLS= libtool:15 -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_PYTHON= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= GNOME_Megaphone_Applet.schemas empathy.schemas - -MAN1= empathy.1 - -OPTIONS= JABBER "Enable jabber (XMPP) client support" on \ - MSN "Enable MSN client support" on \ - IRC "Enable IRC client support" on \ - SALUT "Enable link-local (serverless) XMPP support" off \ - HAZE "Enable libpurple protocol integration" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_JABBER) -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-gabble:${PORTSDIR}/net-im/telepathy-gabble -.endif - -.if defined(WITH_MSN) -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-butterfly:${PORTSDIR}/net-im/telepathy-butterfly -.endif - -.if defined(WITH_IRC) -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-idle:${PORTSDIR}/net-im/telepathy-idle -.endif - -.if !defined(WITHOUT_SALUT) -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-salut:${PORTSDIR}/net-im/telepathy-salut -.endif - -.if !defined(WITHOUT_HAZE) -RUN_DEPENDS+= ${LOCALBASE}/libexec/telepathy-haze:${PORTSDIR}/net-im/telepathy-haze -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|$${datadir}/gtk-doc/html|${DOCSDIR}|g ; \ - s|-Werror||g' ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/net-im/empathy/distinfo b/net-im/empathy/distinfo deleted file mode 100644 index 8bd4e142d..000000000 --- a/net-im/empathy/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (empathy-2.26.0.1.tar.bz2) = e3b0e891c7eac3d6f3eb85373a6f4e25 -SHA256 (empathy-2.26.0.1.tar.bz2) = 02c5648cf48ddd726aba4a484b8c2317af846f9c01d61e2b3700f30e8944b390 -SIZE (empathy-2.26.0.1.tar.bz2) = 2181144 diff --git a/net-im/empathy/pkg-descr b/net-im/empathy/pkg-descr deleted file mode 100644 index 0f6191c68..000000000 --- a/net-im/empathy/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Empathy consists of a rich set of reusable instant messaging widgets, and a -GNOME client using those widgets. It uses Telepathy and Nokia's Mission Control, -and reuses Gossip's UI. The main goal is to permit desktop integration by -providing libempathy and libempathy-gtk libraries. libempathy-gtk is a set of -powerful widgets that can be embeded into any GNOME application. - -WWW: http://live.gnome.org/Empathy diff --git a/net-im/empathy/pkg-plist b/net-im/empathy/pkg-plist deleted file mode 100644 index 24d08c2c8..000000000 --- a/net-im/empathy/pkg-plist +++ /dev/null @@ -1,546 +0,0 @@ -bin/empathy -bin/empathy-logs -include/libempathy-gtk/empathy-account-chooser.h -include/libempathy-gtk/empathy-account-widget-irc.h -include/libempathy-gtk/empathy-account-widget-sip.h -include/libempathy-gtk/empathy-account-widget.h -include/libempathy-gtk/empathy-audio-sink.h -include/libempathy-gtk/empathy-audio-src.h -include/libempathy-gtk/empathy-avatar-chooser.h -include/libempathy-gtk/empathy-avatar-image.h -include/libempathy-gtk/empathy-cell-renderer-activatable.h -include/libempathy-gtk/empathy-cell-renderer-expander.h -include/libempathy-gtk/empathy-cell-renderer-text.h -include/libempathy-gtk/empathy-chat-text-view.h -include/libempathy-gtk/empathy-chat-view.h -include/libempathy-gtk/empathy-chat.h -include/libempathy-gtk/empathy-conf.h -include/libempathy-gtk/empathy-contact-dialogs.h -include/libempathy-gtk/empathy-contact-list-store.h -include/libempathy-gtk/empathy-contact-list-view.h -include/libempathy-gtk/empathy-contact-menu.h -include/libempathy-gtk/empathy-contact-selector.h -include/libempathy-gtk/empathy-contact-widget.h -include/libempathy-gtk/empathy-geometry.h -include/libempathy-gtk/empathy-gtk-enum-types.h -include/libempathy-gtk/empathy-images.h -include/libempathy-gtk/empathy-irc-network-dialog.h -include/libempathy-gtk/empathy-log-window.h -include/libempathy-gtk/empathy-new-message-dialog.h -include/libempathy-gtk/empathy-presence-chooser.h -include/libempathy-gtk/empathy-profile-chooser.h -include/libempathy-gtk/empathy-smiley-manager.h -include/libempathy-gtk/empathy-spell-dialog.h -include/libempathy-gtk/empathy-spell.h -include/libempathy-gtk/empathy-theme-boxes.h -include/libempathy-gtk/empathy-theme-irc.h -include/libempathy-gtk/empathy-theme-manager.h -include/libempathy-gtk/empathy-ui-utils.h -include/libempathy-gtk/empathy-video-src.h -include/libempathy-gtk/empathy-video-widget.h -include/libempathy/empathy-account-manager.h -include/libempathy/empathy-call-factory.h -include/libempathy/empathy-call-handler.h -include/libempathy/empathy-chatroom-manager.h -include/libempathy/empathy-chatroom.h -include/libempathy/empathy-contact-factory.h -include/libempathy/empathy-contact-groups.h -include/libempathy/empathy-contact-list.h -include/libempathy/empathy-contact-manager.h -include/libempathy/empathy-contact-monitor.h -include/libempathy/empathy-contact.h -include/libempathy/empathy-debug.h -include/libempathy/empathy-dispatch-operation.h -include/libempathy/empathy-dispatcher.h -include/libempathy/empathy-enum-types.h -include/libempathy/empathy-idle.h -include/libempathy/empathy-irc-network-manager.h -include/libempathy/empathy-irc-network.h -include/libempathy/empathy-irc-server.h -include/libempathy/empathy-log-manager.h -include/libempathy/empathy-log-store-empathy.h -include/libempathy/empathy-log-store.h -include/libempathy/empathy-message.h -include/libempathy/empathy-status-presets.h -include/libempathy/empathy-time.h -include/libempathy/empathy-tp-call.h -include/libempathy/empathy-tp-chat.h -include/libempathy/empathy-tp-contact-factory.h -include/libempathy/empathy-tp-contact-list.h -include/libempathy/empathy-tp-file.h -include/libempathy/empathy-tp-group.h -include/libempathy/empathy-tp-roomlist.h -include/libempathy/empathy-tp-tube.h -include/libempathy/empathy-tube-handler.h -include/libempathy/empathy-types.h -include/libempathy/empathy-utils.h -lib/libempathy-gtk.a -lib/libempathy-gtk.la -lib/libempathy-gtk.so -lib/libempathy-gtk.so.19 -lib/libempathy.a -lib/libempathy.la -lib/libempathy.so -lib/libempathy.so.23 -%%PYTHON_SITELIBDIR%%/empathy.a -%%PYTHON_SITELIBDIR%%/empathy.la -%%PYTHON_SITELIBDIR%%/empathy.so -%%PYTHON_SITELIBDIR%%/empathygtk.a -%%PYTHON_SITELIBDIR%%/empathygtk.la -%%PYTHON_SITELIBDIR%%/empathygtk.so -libdata/bonobo/servers/GNOME_Megaphone_Applet.server -libdata/bonobo/servers/GNOME_NotHere_Applet.server -libdata/pkgconfig/libempathy-gtk.pc -libdata/pkgconfig/libempathy.pc -libexec/megaphone-applet -libexec/nothere-applet -share/applications/empathy.desktop -share/doc/libempathy-gtk/EmpathyAccountChooser.html -share/doc/libempathy-gtk/EmpathyAvatarChooser.html -share/doc/libempathy-gtk/EmpathyAvatarImage.html -share/doc/libempathy-gtk/EmpathyCellRendererActivatable.html -share/doc/libempathy-gtk/EmpathyCellRendererExpander.html -share/doc/libempathy-gtk/EmpathyCellRendererText.html -share/doc/libempathy-gtk/EmpathyChat.html -share/doc/libempathy-gtk/EmpathyChatTextView.html -share/doc/libempathy-gtk/EmpathyConf.html -share/doc/libempathy-gtk/EmpathyContactListStore.html -share/doc/libempathy-gtk/EmpathyContactListView.html -share/doc/libempathy-gtk/EmpathyContactSelector.html -share/doc/libempathy-gtk/EmpathyGstAudioSink.html -share/doc/libempathy-gtk/EmpathyGstAudioSrc.html -share/doc/libempathy-gtk/EmpathyGstVideoSrc.html -share/doc/libempathy-gtk/EmpathyPresenceChooser.html -share/doc/libempathy-gtk/EmpathySmileyManager.html -share/doc/libempathy-gtk/EmpathyThemeBoxes.html -share/doc/libempathy-gtk/EmpathyThemeIrc.html -share/doc/libempathy-gtk/EmpathyThemeManager.html -share/doc/libempathy-gtk/EmpathyVideoWidget.html -share/doc/libempathy-gtk/home.png -share/doc/libempathy-gtk/index.html -share/doc/libempathy-gtk/index.sgml -share/doc/libempathy-gtk/ix01.html -share/doc/libempathy-gtk/left.png -share/doc/libempathy-gtk/libempathy-gtk-empathy-account-widget-irc.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-account-widget-sip.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-account-widget.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-chat-view.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-contact-dialogs.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-contact-menu.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-contact-widget.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-geometry.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-images.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-irc-network-dialog.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-log-window.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-new-message-dialog.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-profile-chooser.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-spell-dialog.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-spell.html -share/doc/libempathy-gtk/libempathy-gtk-empathy-ui-utils.html -share/doc/libempathy-gtk/libempathy-gtk-hierarchy.html -share/doc/libempathy-gtk/libempathy-gtk.devhelp -share/doc/libempathy-gtk/libempathy-gtk.devhelp2 -share/doc/libempathy-gtk/libempathy_api.html -share/doc/libempathy-gtk/pt01.html -share/doc/libempathy-gtk/pt02.html -share/doc/libempathy-gtk/right.png -share/doc/libempathy-gtk/style.css -share/doc/libempathy-gtk/up.png -share/doc/libempathy/EmpathyAccountManager.html -share/doc/libempathy/EmpathyCallFactory.html -share/doc/libempathy/EmpathyCallHandler.html -share/doc/libempathy/EmpathyChatroom.html -share/doc/libempathy/EmpathyChatroomManager.html -share/doc/libempathy/EmpathyContact.html -share/doc/libempathy/EmpathyContactFactory.html -share/doc/libempathy/EmpathyContactManager.html -share/doc/libempathy/EmpathyContactMonitor.html -share/doc/libempathy/EmpathyDispatcher.html -share/doc/libempathy/EmpathyDispatchOperation.html -share/doc/libempathy/EmpathyIdle.html -share/doc/libempathy/EmpathyIrcNetwork.html -share/doc/libempathy/EmpathyIrcNetworkManager.html -share/doc/libempathy/EmpathyIrcServer.html -share/doc/libempathy/EmpathyLogManager.html -share/doc/libempathy/EmpathyLogStoreEmpathy.html -share/doc/libempathy/EmpathyMessage.html -share/doc/libempathy/EmpathyTpCall.html -share/doc/libempathy/EmpathyTpChat.html -share/doc/libempathy/EmpathyTpContactFactory.html -share/doc/libempathy/EmpathyTpContactList.html -share/doc/libempathy/EmpathyTpFile.html -share/doc/libempathy/EmpathyTpGroup.html -share/doc/libempathy/EmpathyTpRoomlist.html -share/doc/libempathy/EmpathyTpTube.html -share/doc/libempathy/EmpathyTubeHandler.html -share/doc/libempathy/home.png -share/doc/libempathy/index.html -share/doc/libempathy/index.sgml -share/doc/libempathy/ix01.html -share/doc/libempathy/left.png -share/doc/libempathy/libempathy-empathy-contact-groups.html -share/doc/libempathy/libempathy-empathy-contact-list.html -share/doc/libempathy/libempathy-empathy-enum-types.html -share/doc/libempathy/libempathy-empathy-log-store.html -share/doc/libempathy/libempathy-empathy-status-presets.html -share/doc/libempathy/libempathy-empathy-time.html -share/doc/libempathy/libempathy-empathy-types.html -share/doc/libempathy/libempathy-empathy-utils.html -share/doc/libempathy/libempathy-hierarchy.html -share/doc/libempathy/libempathy.devhelp -share/doc/libempathy/libempathy.devhelp2 -share/doc/libempathy/libempathy_api.html -share/doc/libempathy/pt01.html -share/doc/libempathy/pt02.html -share/doc/libempathy/right.png -share/doc/libempathy/style.css -share/doc/libempathy/up.png -%%DATADIR%%/GNOME_Megaphone_Applet.xml -%%DATADIR%%/GNOME_NotHere_Applet.xml -%%DATADIR%%/empathy-account-widget-aim.glade -%%DATADIR%%/empathy-account-widget-generic.glade -%%DATADIR%%/empathy-account-widget-groupwise.glade -%%DATADIR%%/empathy-account-widget-icq.glade -%%DATADIR%%/empathy-account-widget-irc.glade -%%DATADIR%%/empathy-account-widget-jabber.glade -%%DATADIR%%/empathy-account-widget-msn.glade -%%DATADIR%%/empathy-account-widget-salut.glade -%%DATADIR%%/empathy-account-widget-sip.glade -%%DATADIR%%/empathy-account-widget-yahoo.glade -%%DATADIR%%/empathy-accounts-dialog.glade -%%DATADIR%%/empathy-call-window.glade -%%DATADIR%%/empathy-chat-window.glade -%%DATADIR%%/empathy-chat.glade -%%DATADIR%%/empathy-chatroom-manager.dtd -%%DATADIR%%/empathy-chatrooms-window.glade -%%DATADIR%%/empathy-contact-dialogs.glade -%%DATADIR%%/empathy-contact-groups.dtd -%%DATADIR%%/empathy-contact-widget.glade -%%DATADIR%%/empathy-ft-manager.glade -%%DATADIR%%/empathy-irc-networks.dtd -%%DATADIR%%/empathy-import-dialog.glade -%%DATADIR%%/empathy-log-manager.xsl -%%DATADIR%%/empathy-log-window.glade -%%DATADIR%%/empathy-main-window.glade -%%DATADIR%%/empathy-new-chatroom-dialog.glade -%%DATADIR%%/empathy-new-message-dialog.glade -%%DATADIR%%/empathy-preferences.glade -%%DATADIR%%/empathy-presence-chooser.glade -%%DATADIR%%/empathy-spell-dialog.glade -%%DATADIR%%/empathy-status-icon.glade -%%DATADIR%%/empathy-status-presets.dtd -%%DATADIR%%/icons/hicolor/16x16/actions/im-message-new.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-ekiga.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-gadugadu.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-gizmo.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-google-talk.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-irc.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-local-xmpp.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-msn.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-qq.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-sip.png -%%DATADIR%%/icons/hicolor/16x16/apps/im-xmpp.png -%%DATADIR%%/icons/hicolor/16x16/status/empathy-available.png -%%DATADIR%%/icons/hicolor/16x16/status/empathy-away.png -%%DATADIR%%/icons/hicolor/16x16/status/empathy-busy.png -%%DATADIR%%/icons/hicolor/16x16/status/empathy-extended-away.png -%%DATADIR%%/icons/hicolor/16x16/status/empathy-offline.png -%%DATADIR%%/icons/hicolor/16x16/status/empathy-pending.png -%%DATADIR%%/icons/hicolor/16x16/status/im-message.png -%%DATADIR%%/icons/hicolor/16x16/status/user-typing.png -%%DATADIR%%/icons/hicolor/22x22/actions/im-message-new.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-ekiga.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-gadugadu.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-gizmo.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-google-talk.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-irc.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-local-xmpp.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-msn.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-qq.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-sip.png -%%DATADIR%%/icons/hicolor/22x22/apps/im-xmpp.png -%%DATADIR%%/icons/hicolor/22x22/status/empathy-available.png -%%DATADIR%%/icons/hicolor/22x22/status/empathy-away.png -%%DATADIR%%/icons/hicolor/22x22/status/empathy-busy.png -%%DATADIR%%/icons/hicolor/22x22/status/empathy-extended-away.png -%%DATADIR%%/icons/hicolor/22x22/status/empathy-offline.png -%%DATADIR%%/icons/hicolor/22x22/status/empathy-pending.png -%%DATADIR%%/icons/hicolor/24x24/actions/im-message-new.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-ekiga.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-gadugadu.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-gizmo.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-google-talk.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-irc.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-local-xmpp.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-msn.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-qq.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-sip.png -%%DATADIR%%/icons/hicolor/24x24/apps/im-xmpp.png -%%DATADIR%%/icons/hicolor/24x24/status/empathy-available.png -%%DATADIR%%/icons/hicolor/24x24/status/empathy-away.png -%%DATADIR%%/icons/hicolor/24x24/status/empathy-busy.png -%%DATADIR%%/icons/hicolor/24x24/status/empathy-extended-away.png -%%DATADIR%%/icons/hicolor/24x24/status/empathy-offline.png -%%DATADIR%%/icons/hicolor/24x24/status/empathy-pending.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-ekiga.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-gadugadu.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-gizmo.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-google-talk.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-irc.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-local-xmpp.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-msn.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-qq.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-sip.png -%%DATADIR%%/icons/hicolor/32x32/apps/im-xmpp.png -%%DATADIR%%/icons/hicolor/32x32/status/empathy-available.png -%%DATADIR%%/icons/hicolor/32x32/status/empathy-away.png -%%DATADIR%%/icons/hicolor/32x32/status/empathy-busy.png -%%DATADIR%%/icons/hicolor/32x32/status/empathy-extended-away.png -%%DATADIR%%/icons/hicolor/32x32/status/empathy-offline.png -%%DATADIR%%/icons/hicolor/32x32/status/empathy-pending.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-ekiga.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-gadugadu.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-gizmo.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-google-talk.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-irc.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-local-xmpp.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-msn.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-qq.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-sip.png -%%DATADIR%%/icons/hicolor/48x48/apps/im-xmpp.png -%%DATADIR%%/icons/hicolor/48x48/status/empathy-available.png -%%DATADIR%%/icons/hicolor/48x48/status/empathy-away.png -%%DATADIR%%/icons/hicolor/48x48/status/empathy-busy.png -%%DATADIR%%/icons/hicolor/48x48/status/empathy-extended-away.png -%%DATADIR%%/icons/hicolor/48x48/status/empathy-offline.png -%%DATADIR%%/icons/hicolor/48x48/status/empathy-pending.png -%%DATADIR%%/icons/hicolor/icon-theme.cache -%%DATADIR%%/icons/hicolor/scalable/apps/im-ekiga.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-gadugadu.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-gizmo.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-google-talk.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-irc.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-local-xmpp.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-msn.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-qq.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-sip.svg -%%DATADIR%%/icons/hicolor/scalable/apps/im-xmpp.svg -%%DATADIR%%/icons/hicolor/scalable/status/empathy-available.svg -%%DATADIR%%/icons/hicolor/scalable/status/empathy-away.svg -%%DATADIR%%/icons/hicolor/scalable/status/empathy-busy.svg -%%DATADIR%%/icons/hicolor/scalable/status/empathy-extended-away.svg -%%DATADIR%%/icons/hicolor/scalable/status/empathy-offline.svg -%%DATADIR%%/icons/hicolor/scalable/status/empathy-pending.svg -%%DATADIR%%/irc-networks.xml -share/gnome/help/empathy/C/empathy.xml -share/gnome/help/empathy/C/figures/empathy-main-window.png -share/gnome/help/empathy/C/legal.xml -share/gnome/help/empathy/ca/empathy.xml -share/gnome/help/empathy/ca/figures/empathy-main-window.png -share/gnome/help/empathy/ca/figures/empathy-new-account.png -share/gnome/help/empathy/cs/empathy.xml -share/gnome/help/empathy/cs/figures/empathy-main-window.png -share/gnome/help/empathy/de/empathy.xml -share/gnome/help/empathy/de/figures/empathy-main-window.png -share/gnome/help/empathy/de/figures/empathy-new-account.png -share/gnome/help/empathy/el/empathy.xml -share/gnome/help/empathy/el/figures/empathy-main-window.png -share/gnome/help/empathy/el/figures/empathy-new-account.png -share/gnome/help/empathy/en_GB/empathy.xml -share/gnome/help/empathy/en_GB/figures/empathy-main-window.png -share/gnome/help/empathy/es/empathy.xml -share/gnome/help/empathy/es/figures/empathy-main-window.png -share/gnome/help/empathy/es/figures/empathy-new-account.png -share/gnome/help/empathy/fi/empathy.xml -share/gnome/help/empathy/fi/figures/empathy-main-window.png -share/gnome/help/empathy/fi/figures/empathy-new-account.png -share/gnome/help/empathy/fr/empathy.xml -share/gnome/help/empathy/fr/figures/empathy-main-window.png -share/gnome/help/empathy/fr/figures/empathy-new-account.png -share/gnome/help/empathy/it/empathy.xml -share/gnome/help/empathy/it/figures/empathy-main-window.png -share/gnome/help/empathy/ru/empathy.xml -share/gnome/help/empathy/ru/figures/empathy-main-window.png -share/gnome/help/empathy/sv/empathy.xml -share/gnome/help/empathy/sv/figures/empathy-main-window.png -share/gnome/help/empathy/sv/figures/empathy-new-account.png -share/icons/hicolor/16x16/apps/empathy.png -share/icons/hicolor/22x22/apps/empathy.png -share/icons/hicolor/24x24/apps/empathy.png -share/icons/hicolor/32x32/apps/empathy.png -share/icons/hicolor/48x48/apps/empathy.png -share/icons/hicolor/scalable/apps/empathy.svg -share/locale/ar/LC_MESSAGES/empathy.mo -share/locale/as/LC_MESSAGES/empathy.mo -share/locale/az/LC_MESSAGES/empathy.mo -share/locale/be@latin/LC_MESSAGES/empathy.mo -share/locale/bg/LC_MESSAGES/empathy.mo -share/locale/bn_IN/LC_MESSAGES/empathy.mo -share/locale/ca/LC_MESSAGES/empathy.mo -share/locale/cs/LC_MESSAGES/empathy.mo -share/locale/cy/LC_MESSAGES/empathy.mo -share/locale/da/LC_MESSAGES/empathy.mo -share/locale/de/LC_MESSAGES/empathy.mo -share/locale/dz/LC_MESSAGES/empathy.mo -share/locale/el/LC_MESSAGES/empathy.mo -share/locale/en_CA/LC_MESSAGES/empathy.mo -share/locale/en_GB/LC_MESSAGES/empathy.mo -share/locale/eo/LC_MESSAGES/empathy.mo -share/locale/es/LC_MESSAGES/empathy.mo -share/locale/eu/LC_MESSAGES/empathy.mo -share/locale/fi/LC_MESSAGES/empathy.mo -share/locale/fr/LC_MESSAGES/empathy.mo -share/locale/ga/LC_MESSAGES/empathy.mo -share/locale/gl/LC_MESSAGES/empathy.mo -share/locale/gu/LC_MESSAGES/empathy.mo -share/locale/he/LC_MESSAGES/empathy.mo -share/locale/hi/LC_MESSAGES/empathy.mo -share/locale/hr/LC_MESSAGES/empathy.mo -share/locale/hu/LC_MESSAGES/empathy.mo -share/locale/it/LC_MESSAGES/empathy.mo -share/locale/ja/LC_MESSAGES/empathy.mo -share/locale/kn/LC_MESSAGES/empathy.mo -share/locale/ko/LC_MESSAGES/empathy.mo -share/locale/ku/LC_MESSAGES/empathy.mo -share/locale/lt/LC_MESSAGES/empathy.mo -share/locale/lv/LC_MESSAGES/empathy.mo -share/locale/mai/LC_MESSAGES/empathy.mo -share/locale/mk/LC_MESSAGES/empathy.mo -share/locale/ml/LC_MESSAGES/empathy.mo -share/locale/mr/LC_MESSAGES/empathy.mo -share/locale/ms/LC_MESSAGES/empathy.mo -share/locale/nb/LC_MESSAGES/empathy.mo -share/locale/ne/LC_MESSAGES/empathy.mo -share/locale/nl/LC_MESSAGES/empathy.mo -share/locale/oc/LC_MESSAGES/empathy.mo -share/locale/or/LC_MESSAGES/empathy.mo -share/locale/pa/LC_MESSAGES/empathy.mo -share/locale/pl/LC_MESSAGES/empathy.mo -share/locale/ps/LC_MESSAGES/empathy.mo -share/locale/pt/LC_MESSAGES/empathy.mo -share/locale/pt_BR/LC_MESSAGES/empathy.mo -share/locale/ro/LC_MESSAGES/empathy.mo -share/locale/ru/LC_MESSAGES/empathy.mo -share/locale/sl/LC_MESSAGES/empathy.mo -share/locale/sq/LC_MESSAGES/empathy.mo -share/locale/sr/LC_MESSAGES/empathy.mo -share/locale/sr@latin/LC_MESSAGES/empathy.mo -share/locale/sv/LC_MESSAGES/empathy.mo -share/locale/ta/LC_MESSAGES/empathy.mo -share/locale/te/LC_MESSAGES/empathy.mo -share/locale/th/LC_MESSAGES/empathy.mo -share/locale/tr/LC_MESSAGES/empathy.mo -share/locale/uk/LC_MESSAGES/empathy.mo -share/locale/vi/LC_MESSAGES/empathy.mo -share/locale/zh_CN/LC_MESSAGES/empathy.mo -share/locale/zh_HK/LC_MESSAGES/empathy.mo -share/locale/zh_TW/LC_MESSAGES/empathy.mo -share/mission-control/profiles/aim.profile -share/mission-control/profiles/ekiga.profile -share/mission-control/profiles/fwd.profile -share/mission-control/profiles/gadugadu.profile -share/mission-control/profiles/groupwise.profile -share/mission-control/profiles/gtalk.profile -share/mission-control/profiles/icq.profile -share/mission-control/profiles/irc.profile -share/mission-control/profiles/jabber.profile -share/mission-control/profiles/msn-haze.profile -share/mission-control/profiles/msn.profile -share/mission-control/profiles/qq.profile -share/mission-control/profiles/salut.profile -share/mission-control/profiles/sipphone.profile -share/mission-control/profiles/sofiasip.profile -share/mission-control/profiles/yahoo.profile -share/omf/empathy/empathy-C.omf -share/omf/empathy/empathy-ca.omf -share/omf/empathy/empathy-cs.omf -share/omf/empathy/empathy-de.omf -share/omf/empathy/empathy-el.omf -share/omf/empathy/empathy-en_GB.omf -share/omf/empathy/empathy-es.omf -share/omf/empathy/empathy-fi.omf -share/omf/empathy/empathy-fr.omf -share/omf/empathy/empathy-it.omf -share/omf/empathy/empathy-ru.omf -share/omf/empathy/empathy-sv.omf -@dirrm share/omf/empathy -@dirrm share/mission-control/profiles -@dirrm share/mission-control -@dirrm share/gnome/help/empathy/sv/figures -@dirrm share/gnome/help/empathy/sv -@dirrm share/gnome/help/empathy/ru/figures -@dirrm share/gnome/help/empathy/ru -@dirrm share/gnome/help/empathy/it/figures -@dirrm share/gnome/help/empathy/it -@dirrm share/gnome/help/empathy/fr/figures -@dirrm share/gnome/help/empathy/fr -@dirrm share/gnome/help/empathy/fi/figures -@dirrm share/gnome/help/empathy/fi -@dirrm share/gnome/help/empathy/es/figures -@dirrm share/gnome/help/empathy/es -@dirrm share/gnome/help/empathy/en_GB/figures -@dirrm share/gnome/help/empathy/en_GB -@dirrm share/gnome/help/empathy/el/figures -@dirrm share/gnome/help/empathy/el -@dirrm share/gnome/help/empathy/de/figures -@dirrm share/gnome/help/empathy/de -@dirrm share/gnome/help/empathy/cs/figures -@dirrm share/gnome/help/empathy/cs -@dirrm share/gnome/help/empathy/ca/figures -@dirrm share/gnome/help/empathy/ca -@dirrm share/gnome/help/empathy/C/figures -@dirrm share/gnome/help/empathy/C -@dirrm share/gnome/help/empathy -@dirrm %%DATADIR%%/icons/hicolor/scalable/status -@dirrm %%DATADIR%%/icons/hicolor/scalable/apps -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/48x48/status -@dirrm %%DATADIR%%/icons/hicolor/48x48/apps -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/32x32/status -@dirrm %%DATADIR%%/icons/hicolor/32x32/apps -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/24x24/status -@dirrm %%DATADIR%%/icons/hicolor/24x24/apps -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/status -@dirrm %%DATADIR%%/icons/hicolor/22x22/apps -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16/apps -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm share/doc/libempathy-gtk -@dirrm share/doc/libempathy -@dirrmtry share/applications -@dirrm include/libempathy-gtk -@dirrm include/libempathy -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/gnome-netstatus/Makefile b/net/gnome-netstatus/Makefile deleted file mode 100644 index 4ad4b8390..000000000 --- a/net/gnome-netstatus/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: gnomenetstatus -# Date Created: 05 December 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/net/gnome-netstatus/Makefile,v 1.50 2008/09/22 23:33:17 kwm Exp $ -# - -PORTNAME= gnome-netstatus -PORTVERSION= 2.26.0 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A GNOME applet that shows network status - -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_BZIP2= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnome gnomepanel libglade2 \ - gnomedocutils -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= netstatus.schemas - -.include <bsd.port.mk> diff --git a/net/gnome-netstatus/distinfo b/net/gnome-netstatus/distinfo deleted file mode 100644 index 818e6650a..000000000 --- a/net/gnome-netstatus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-netstatus-2.26.0.tar.bz2) = f116157535ec185f0ea7503fafc5edd6 -SHA256 (gnome2/gnome-netstatus-2.26.0.tar.bz2) = 17169ef602037ac40e5d6b43a7add0593c9fe3f04da65aa06d70c59bc6bbccd8 -SIZE (gnome2/gnome-netstatus-2.26.0.tar.bz2) = 552061 diff --git a/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c b/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c deleted file mode 100644 index 0c9c78b83..000000000 --- a/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c +++ /dev/null @@ -1,212 +0,0 @@ ---- src/netstatus-sysdeps.c.orig 2009-03-08 00:25:52.000000000 -0500 -+++ src/netstatus-sysdeps.c 2009-03-08 15:24:33.000000000 -0400 -@@ -37,13 +37,26 @@ - - #ifdef __FreeBSD__ - #include <sys/types.h> -+#include <sys/param.h> - #include <sys/socket.h> - #include <sys/ioctl.h> -+#include <ifaddrs.h> - #include <net/if.h> -+#include <net/if_media.h> - #include <net/if_var.h> -+#if __FreeBSD_version < 700046 - #include <dev/an/if_aironet_ieee.h> - #include <dev/wi/if_wavelan_ieee.h> - #endif -+#if __FreeBSD_version >= 602000 -+#include <net80211/ieee80211.h> -+#include <net80211/ieee80211_ioctl.h> -+#endif -+#include <stdlib.h> -+#ifndef IEEE80211_ADDR_COPY -+#define IEEE80211_ADDR_COPY(dst, src) memcpy(dst, src, IEEE80211_ADDR_LEN) -+#endif -+#endif - - static inline gboolean - parse_stats (char *buf, -@@ -426,15 +439,16 @@ wireless_getval (const char *iface, - return TRUE; - } - -+#if __FreeBSD_version < 700046 - static inline char * - get_an_data (const char *iface, - int *signal_strength) - { -+ struct an_ltv_status *sts; -+ struct an_req areq; - #ifdef AN_RID_RSSI_MAP - struct an_ltv_rssi_map an_rssimap; - #endif -- struct an_req areq; -- struct an_ltv_status *sts; - int level; - char *error = NULL; - gboolean rssimap_valid = FALSE; -@@ -486,11 +500,11 @@ get_wi_data (const char *iface, - level = (int) wreq.wi_val[1]; - - #ifdef WI_RID_READ_APS -- if (signal_strength <= 0) -+ if (level <= 0) - { - /* we fail to get signal strength by usual means, try another way */ - static time_t last_scan; -- static long int cached; -+ static int cached; - time_t now; - - now = time (NULL); -@@ -510,15 +524,15 @@ get_wi_data (const char *iface, - if (nstations > 0) - { - w = (struct wi_apinfo *)(((char *) &wreq.wi_val) + sizeof (int)); -- signal_strength = (long int) w->signal; -+ level = w->signal; - } - -- cached = signal_strength; -+ cached = level; - last_scan = now; - } - else - { -- signal_strength = cached; -+ level = cached; - } - } - #endif -@@ -527,6 +541,77 @@ get_wi_data (const char *iface, - - return error; - } -+#endif -+ -+#if __FreeBSD_version >= 602000 -+static inline char * -+get_net80211_data (const char *iface, -+ int *signal_strength) -+{ -+ struct ieee80211req_sta_info *si; -+ struct ieee80211req ireq; -+ int level; -+ int s; -+ uint8_t mac[IEEE80211_ADDR_LEN]; -+ int8_t noise; -+ char *error = NULL; -+ union { -+ struct ieee80211req_sta_req info; -+ char buf[1024]; -+ } u_info; -+ -+ memset (&u_info, 0, sizeof (u_info)); -+ memset (&ireq, 0, sizeof (ireq)); -+ -+ strlcpy (ireq.i_name, iface, sizeof (ireq.i_name)); -+ ireq.i_type = IEEE80211_IOC_BSSID; -+ ireq.i_data = mac; -+ ireq.i_len = IEEE80211_ADDR_LEN; -+ -+ s = socket (AF_INET, SOCK_DGRAM, 0); -+ if (s == -1) -+ { -+ error = g_strdup_printf (_("Could not connect to interface, '%s'"), iface); -+ return error; -+ } -+ -+ if (ioctl (s, SIOCG80211, &ireq) == -1) -+ { -+ error = g_strdup_printf (_("Could not get MAC for interface, '%s'"), iface); -+ close (s); -+ return error; -+ } -+ -+ IEEE80211_ADDR_COPY (u_info.info.is_u.macaddr, mac); -+ ireq.i_type = IEEE80211_IOC_STA_INFO; -+ ireq.i_data = (caddr_t) &u_info; -+ ireq.i_len = sizeof (u_info); -+ -+ if (ioctl (s, SIOCG80211, &ireq) == -1) -+ { -+ error = g_strdup_printf (_("Could not send ioctl to interface, '%s'"), iface); -+ close (s); -+ return error; -+ } -+ -+ close (s); -+ -+ si = &u_info.info.info[0]; -+ noise = si->isi_noise; -+ if (si->isi_rssi == 0) -+ level = 0; -+ else -+ { -+ if (noise == 0) -+ noise = -95; -+ level = (int) abs (rint ((si->isi_rssi / (si->isi_rssi/2. + noise)) * 100.0)); -+ level = CLAMP (level, 0, 100); -+ } -+ -+ memcpy (signal_strength, &level, sizeof (signal_strength)); -+ return error; -+} -+#endif - - char * - netstatus_sysdeps_read_iface_wireless_details (const char *iface, -@@ -544,25 +629,52 @@ netstatus_sysdeps_read_iface_wireless_de - if (signal_strength) - *signal_strength = 0; - -+#if __FreeBSD_version < 800036 - if (g_ascii_strncasecmp (iface, "an", 2) && - g_ascii_strncasecmp (iface, "wi", 2) && - g_ascii_strncasecmp (iface, "ath", 3) && - g_ascii_strncasecmp (iface, "ndis", 4) && -+ g_ascii_strncasecmp (iface, "ural", 4) && -+ g_ascii_strncasecmp (iface, "ral", 3) && - g_ascii_strncasecmp (iface, "ipw", 3) && - g_ascii_strncasecmp (iface, "iwi", 3) && -+ g_ascii_strncasecmp (iface, "rum", 3) && -+ g_ascii_strncasecmp (iface, "ray", 3) && - g_ascii_strncasecmp (iface, "acx", 3)) -+#else -+ if (g_strncasecmp (iface, "wlan", 4)) -+#endif - return error_message; - -+#if __FreeBSD_version < 700046 - if (g_ascii_strncasecmp (iface, "an", 2) == 0) - { - error_message = get_an_data (iface, signal_strength); - *is_wireless = TRUE; - } -+#endif -+#if __FreeBSD_version >= 602000 -+#if __FreeBSD_version < 700046 -+ else if (g_strncasecmp (iface, "wi", 2) == 0) -+ { -+ error_message = get_wi_data (iface, signal_strength); -+ *is_wireless = TRUE; -+ } -+ else -+#endif -+ { -+ error_message = get_net80211_data (iface, signal_strength); -+ *is_wireless = TRUE; -+ } -+#else -+#if __FreeBSD_version < 700046 - else - { - error_message = get_wi_data (iface, signal_strength); - *is_wireless = TRUE; - } -+#endif -+#endif - - return error_message; - } diff --git a/net/gnome-netstatus/pkg-descr b/net/gnome-netstatus/pkg-descr deleted file mode 100644 index 0848cf01f..000000000 --- a/net/gnome-netstatus/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -Gnome-netstatus is a panel applet which provides information about -network interfaces. diff --git a/net/gnome-netstatus/pkg-plist b/net/gnome-netstatus/pkg-plist deleted file mode 100644 index b3c64e8bc..000000000 --- a/net/gnome-netstatus/pkg-plist +++ /dev/null @@ -1,346 +0,0 @@ -libdata/bonobo/servers/GNOME_NetstatusApplet_Factory.server -libexec/gnome-netstatus-applet -share/gnome-2.0/ui/GNOME_NetstatusApplet.xml -share/gnome-netstatus/gnome-netstatus.glade -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/C/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/C/legal.xml -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/bg/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/ca/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/de/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/de/legal.xml -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/el/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/en_GB/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/es/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/fr/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/it/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/ja/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/ja/legal.xml -share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/ko/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/ko/legal.xml -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/nl/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/oc/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/pa/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/ru/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/sv/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/th/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/uk/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/zh_CN/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/zh_CN/legal.xml -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/zh_HK/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/zh_HK/legal.xml -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/zh_TW/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/zh_TW/legal.xml -share/omf/gnome-netstatus/gnome-netstatus-C.omf -share/omf/gnome-netstatus/gnome-netstatus-ca.omf -share/omf/gnome-netstatus/gnome-netstatus-bg.omf -share/omf/gnome-netstatus/gnome-netstatus-de.omf -share/omf/gnome-netstatus/gnome-netstatus-el.omf -share/omf/gnome-netstatus/gnome-netstatus-en_GB.omf -share/omf/gnome-netstatus/gnome-netstatus-es.omf -share/omf/gnome-netstatus/gnome-netstatus-fr.omf -share/omf/gnome-netstatus/gnome-netstatus-it.omf -share/omf/gnome-netstatus/gnome-netstatus-ja.omf -share/omf/gnome-netstatus/gnome-netstatus-ko.omf -share/omf/gnome-netstatus/gnome-netstatus-nl.omf -share/omf/gnome-netstatus/gnome-netstatus-oc.omf -share/omf/gnome-netstatus/gnome-netstatus-pa.omf -share/omf/gnome-netstatus/gnome-netstatus-ru.omf -share/omf/gnome-netstatus/gnome-netstatus-sv.omf -share/omf/gnome-netstatus/gnome-netstatus-th.omf -share/omf/gnome-netstatus/gnome-netstatus-uk.omf -share/omf/gnome-netstatus/gnome-netstatus-zh_CN.omf -share/omf/gnome-netstatus/gnome-netstatus-zh_HK.omf -share/omf/gnome-netstatus/gnome-netstatus-zh_TW.omf -share/icons/hicolor/48x48/apps/gnome-netstatus-0-24.png -share/icons/hicolor/48x48/apps/gnome-netstatus-25-49.png -share/icons/hicolor/48x48/apps/gnome-netstatus-50-74.png -share/icons/hicolor/48x48/apps/gnome-netstatus-75-100.png -share/icons/hicolor/48x48/apps/gnome-netstatus-disconn.png -share/icons/hicolor/48x48/apps/gnome-netstatus-error.png -share/icons/hicolor/48x48/apps/gnome-netstatus-idle.png -share/icons/hicolor/48x48/apps/gnome-netstatus-rx.png -share/icons/hicolor/48x48/apps/gnome-netstatus-tx.png -share/icons/hicolor/48x48/apps/gnome-netstatus-txrx.png -share/locale/af/LC_MESSAGES/gnome-netstatus.mo -share/locale/ar/LC_MESSAGES/gnome-netstatus.mo -share/locale/az/LC_MESSAGES/gnome-netstatus.mo -share/locale/be@latin/LC_MESSAGES/gnome-netstatus.mo -share/locale/bg/LC_MESSAGES/gnome-netstatus.mo -share/locale/bn/LC_MESSAGES/gnome-netstatus.mo -share/locale/bn_IN/LC_MESSAGES/gnome-netstatus.mo -share/locale/bs/LC_MESSAGES/gnome-netstatus.mo -share/locale/ca/LC_MESSAGES/gnome-netstatus.mo -share/locale/crh/LC_MESSAGES/gnome-netstatus.mo -share/locale/cs/LC_MESSAGES/gnome-netstatus.mo -share/locale/cy/LC_MESSAGES/gnome-netstatus.mo -share/locale/da/LC_MESSAGES/gnome-netstatus.mo -share/locale/de/LC_MESSAGES/gnome-netstatus.mo -share/locale/dz/LC_MESSAGES/gnome-netstatus.mo -share/locale/el/LC_MESSAGES/gnome-netstatus.mo -share/locale/en_CA/LC_MESSAGES/gnome-netstatus.mo -share/locale/en_GB/LC_MESSAGES/gnome-netstatus.mo -share/locale/es/LC_MESSAGES/gnome-netstatus.mo -share/locale/et/LC_MESSAGES/gnome-netstatus.mo -share/locale/eu/LC_MESSAGES/gnome-netstatus.mo -share/locale/fa/LC_MESSAGES/gnome-netstatus.mo -share/locale/fi/LC_MESSAGES/gnome-netstatus.mo -share/locale/fr/LC_MESSAGES/gnome-netstatus.mo -share/locale/fur/LC_MESSAGES/gnome-netstatus.mo -share/locale/ga/LC_MESSAGES/gnome-netstatus.mo -share/locale/gl/LC_MESSAGES/gnome-netstatus.mo -share/locale/gu/LC_MESSAGES/gnome-netstatus.mo -share/locale/he/LC_MESSAGES/gnome-netstatus.mo -share/locale/hi/LC_MESSAGES/gnome-netstatus.mo -share/locale/hr/LC_MESSAGES/gnome-netstatus.mo -share/locale/hu/LC_MESSAGES/gnome-netstatus.mo -share/locale/id/LC_MESSAGES/gnome-netstatus.mo -share/locale/is/LC_MESSAGES/gnome-netstatus.mo -share/locale/it/LC_MESSAGES/gnome-netstatus.mo -share/locale/ja/LC_MESSAGES/gnome-netstatus.mo -share/locale/ka/LC_MESSAGES/gnome-netstatus.mo -share/locale/kn/LC_MESSAGES/gnome-netstatus.mo -share/locale/ku/LC_MESSAGES/gnome-netstatus.mo -share/locale/ko/LC_MESSAGES/gnome-netstatus.mo -share/locale/lt/LC_MESSAGES/gnome-netstatus.mo -share/locale/lv/LC_MESSAGES/gnome-netstatus.mo -share/locale/mg/LC_MESSAGES/gnome-netstatus.mo -share/locale/ml/LC_MESSAGES/gnome-netstatus.mo -share/locale/mn/LC_MESSAGES/gnome-netstatus.mo -share/locale/mr/LC_MESSAGES/gnome-netstatus.mo -share/locale/ms/LC_MESSAGES/gnome-netstatus.mo -share/locale/nb/LC_MESSAGES/gnome-netstatus.mo -share/locale/ne/LC_MESSAGES/gnome-netstatus.mo -share/locale/nl/LC_MESSAGES/gnome-netstatus.mo -share/locale/nn/LC_MESSAGES/gnome-netstatus.mo -share/locale/oc/LC_MESSAGES/gnome-netstatus.mo -share/locale/or/LC_MESSAGES/gnome-netstatus.mo -share/locale/pa/LC_MESSAGES/gnome-netstatus.mo -share/locale/pl/LC_MESSAGES/gnome-netstatus.mo -share/locale/ps/LC_MESSAGES/gnome-netstatus.mo -share/locale/pt/LC_MESSAGES/gnome-netstatus.mo -share/locale/pt_BR/LC_MESSAGES/gnome-netstatus.mo -share/locale/ro/LC_MESSAGES/gnome-netstatus.mo -share/locale/ru/LC_MESSAGES/gnome-netstatus.mo -share/locale/rw/LC_MESSAGES/gnome-netstatus.mo -share/locale/sk/LC_MESSAGES/gnome-netstatus.mo -share/locale/sl/LC_MESSAGES/gnome-netstatus.mo -share/locale/sq/LC_MESSAGES/gnome-netstatus.mo -share/locale/sr/LC_MESSAGES/gnome-netstatus.mo -share/locale/sr@latin/LC_MESSAGES/gnome-netstatus.mo -share/locale/sv/LC_MESSAGES/gnome-netstatus.mo -share/locale/ta/LC_MESSAGES/gnome-netstatus.mo -share/locale/te/LC_MESSAGES/gnome-netstatus.mo -share/locale/th/LC_MESSAGES/gnome-netstatus.mo -share/locale/tr/LC_MESSAGES/gnome-netstatus.mo -share/locale/uk/LC_MESSAGES/gnome-netstatus.mo -share/locale/uz/LC_MESSAGES/gnome-netstatus.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-netstatus.mo -share/locale/vi/LC_MESSAGES/gnome-netstatus.mo -share/locale/wa/LC_MESSAGES/gnome-netstatus.mo -share/locale/xh/LC_MESSAGES/gnome-netstatus.mo -share/locale/zh_CN/LC_MESSAGES/gnome-netstatus.mo -share/locale/zh_HK/LC_MESSAGES/gnome-netstatus.mo -share/locale/zh_TW/LC_MESSAGES/gnome-netstatus.mo -@dirrm share/omf/gnome-netstatus -@dirrm share/gnome/help/gnome-netstatus/zh_TW/figures -@dirrm share/gnome/help/gnome-netstatus/zh_TW -@dirrm share/gnome/help/gnome-netstatus/zh_HK/figures -@dirrm share/gnome/help/gnome-netstatus/zh_HK -@dirrm share/gnome/help/gnome-netstatus/zh_CN/figures -@dirrm share/gnome/help/gnome-netstatus/zh_CN -@dirrm share/gnome/help/gnome-netstatus/uk/figures -@dirrm share/gnome/help/gnome-netstatus/uk -@dirrm share/gnome/help/gnome-netstatus/th/figures -@dirrm share/gnome/help/gnome-netstatus/th -@dirrm share/gnome/help/gnome-netstatus/sv/figures -@dirrm share/gnome/help/gnome-netstatus/sv -@dirrm share/gnome/help/gnome-netstatus/ru/figures -@dirrm share/gnome/help/gnome-netstatus/ru -@dirrm share/gnome/help/gnome-netstatus/pa/figures -@dirrm share/gnome/help/gnome-netstatus/pa -@dirrm share/gnome/help/gnome-netstatus/oc/figures -@dirrm share/gnome/help/gnome-netstatus/oc -@dirrm share/gnome/help/gnome-netstatus/nl/figures -@dirrm share/gnome/help/gnome-netstatus/nl -@dirrm share/gnome/help/gnome-netstatus/ko/figures -@dirrm share/gnome/help/gnome-netstatus/ko -@dirrm share/gnome/help/gnome-netstatus/ja/figures -@dirrm share/gnome/help/gnome-netstatus/ja -@dirrm share/gnome/help/gnome-netstatus/it/figures -@dirrm share/gnome/help/gnome-netstatus/it -@dirrm share/gnome/help/gnome-netstatus/fr/figures -@dirrm share/gnome/help/gnome-netstatus/fr -@dirrm share/gnome/help/gnome-netstatus/es/figures -@dirrm share/gnome/help/gnome-netstatus/es -@dirrm share/gnome/help/gnome-netstatus/en_GB/figures -@dirrm share/gnome/help/gnome-netstatus/en_GB -@dirrm share/gnome/help/gnome-netstatus/el/figures -@dirrm share/gnome/help/gnome-netstatus/el -@dirrm share/gnome/help/gnome-netstatus/de/figures -@dirrm share/gnome/help/gnome-netstatus/de -@dirrm share/gnome/help/gnome-netstatus/ca/figures -@dirrm share/gnome/help/gnome-netstatus/ca -@dirrm share/gnome/help/gnome-netstatus/bg/figures -@dirrm share/gnome/help/gnome-netstatus/bg -@dirrm share/gnome/help/gnome-netstatus/C/figures -@dirrm share/gnome/help/gnome-netstatus/C -@dirrm share/gnome/help/gnome-netstatus -@dirrm share/gnome-netstatus -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/net/gnome-nettool/Makefile b/net/gnome-nettool/Makefile deleted file mode 100644 index a48de0b4e..000000000 --- a/net/gnome-nettool/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: gnomenetwork -# Date Created: 03 June 2003 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/net/gnome-nettool/Makefile,v 1.49 2009/03/21 19:24:06 marcus Exp $ -# - -PORTNAME= gnome-nettool -PORTVERSION= 2.26.1 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A GNOME utility that provides network information statistics - -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop - -USE_BZIP2= yes -USE_GNOME= gnomehack intlhack gnomeprefix libglade2 gconf2 gnomedocutils -USE_GMAKE= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CFLAGS+= -DHAVE_SOCKADDR_SA_LEN - -post-install: - ${MKDIR} ${PREFIX}/share/pixmaps - ${LN} -sf ${PREFIX}/share/gnome-nettool/pixmaps/gnome-nettool.png \ - ${PREFIX}/share/pixmaps/gnome-nettool.png - -.include <bsd.port.mk> diff --git a/net/gnome-nettool/distinfo b/net/gnome-nettool/distinfo deleted file mode 100644 index 6f4d384b5..000000000 --- a/net/gnome-nettool/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-nettool-2.26.1.tar.bz2) = 476a0ffe807cfc374732d944efc83058 -SHA256 (gnome2/gnome-nettool-2.26.1.tar.bz2) = d8e71f2df9da5d5ba38c408f7646e92a89acc9a4a6af791cd1e9256c9b3af08f -SIZE (gnome2/gnome-nettool-2.26.1.tar.bz2) = 611892 diff --git a/net/gnome-nettool/files/patch-src_info.c b/net/gnome-nettool/files/patch-src_info.c deleted file mode 100644 index 88a107e6f..000000000 --- a/net/gnome-nettool/files/patch-src_info.c +++ /dev/null @@ -1,76 +0,0 @@ ---- src/info.c.orig 2008-12-08 23:29:39.000000000 -0500 -+++ src/info.c 2009-02-27 16:33:49.000000000 -0500 -@@ -20,6 +20,10 @@ - #include <gtk/gtk.h> - #include <glib/gi18n.h> - #include <glib/gprintf.h> -+#include <sys/types.h> -+#include <string.h> -+#include <errno.h> -+#include <unistd.h> - - #ifdef HAVE_CONFIG_H - # include <config.h> -@@ -37,6 +41,9 @@ - #include <sys/ioctl.h> - #include <stdlib.h> - #include <net/if.h> -+#ifdef __FreeBSD__ -+#include <net/if_media.h> -+#endif - - #include <glibtop.h> - #include <glibtop/netlist.h> -@@ -61,6 +68,7 @@ static InfoInterfaceDescription info_ifa - { N_("Ethernet Interface"), INFO_INTERFACE_ETH, "16_ethernet.xpm", "eth", NULL }, - { N_("Wireless Interface"), INFO_INTERFACE_WLAN, "wavelan-16.png", "wlan", NULL }, - { N_("Modem Interface"), INFO_INTERFACE_PPP, "16_ppp.xpm", "ppp", NULL }, -+ { N_("Modem Interface"), INFO_INTERFACE_PPP, "16_ppp.xpm", "tun", NULL }, - { N_("Parallel Line Interface"), INFO_INTERFACE_PLIP, "16_plip.xpm", "plip", NULL }, - { N_("Infrared Interface"), INFO_INTERFACE_IRLAN, "irda-16.png", "irlan", NULL }, - { N_("Loopback Interface"), INFO_INTERFACE_LO, "16_loopback.xpm", "lo", NULL }, -@@ -131,9 +139,42 @@ info_get_interface_from_dev_name (const - { - gint i; - gchar *path; -- -+ gchar *dev_type = NULL; -+#if defined(__FreeBSD__) -+ int s; -+ struct ifmediareq ifmr; -+ -+ if ((s = socket (AF_INET, SOCK_DGRAM, 0)) > -1) { -+ -+ (void) memset (&ifmr, 0, sizeof (ifmr)); -+ (void) strncpy (ifmr.ifm_name, dev_name, sizeof (ifmr.ifm_name)); -+ -+ if (ioctl (s, SIOCGIFMEDIA, (caddr_t) &ifmr) > -1) { -+ switch (IFM_TYPE (ifmr.ifm_active)) { -+ case IFM_ETHER: -+ dev_type = "eth"; -+ break; -+ case IFM_FDDI: -+ case IFM_TOKEN: -+#ifdef IFM_ATM -+ case IFM_ATM: -+#endif -+ dev_type = "other_type"; -+ break; -+ case IFM_IEEE80211: -+ dev_type = "wlan"; -+ break; -+ } -+ } -+ close (s); -+ } -+#endif /* defined(__FreeBSD__) */ -+ -+ if (!dev_type) -+ dev_type = (gchar *) dev_name; -+ - for (i = 0; info_iface_desc[i].name; i++) -- if (strstr (dev_name, info_iface_desc[i].prefix) == dev_name) { -+ if (strstr (dev_type, info_iface_desc[i].prefix) == dev_type) { - (*iface) = g_strdup_printf ("%s (%s)", _(info_iface_desc[i].name), dev_name); - if (info_iface_desc[i].pixbuf == NULL) { - path = g_build_filename (PIXMAPS_DIR, info_iface_desc[i].icon, NULL); diff --git a/net/gnome-nettool/files/patch-src_lookup.c b/net/gnome-nettool/files/patch-src_lookup.c deleted file mode 100644 index 9744c1397..000000000 --- a/net/gnome-nettool/files/patch-src_lookup.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/lookup.c.orig Sun Jul 3 17:47:02 2005 -+++ src/lookup.c Sun Jul 3 17:47:20 2005 -@@ -21,6 +21,7 @@ - #include <gtk/gtk.h> - #include <glib/gi18n.h> - #include <glib/gprintf.h> -+#include <sys/types.h> - - #include "lookup.h" - #include "utils.h" diff --git a/net/gnome-nettool/files/patch-src_netstat.c b/net/gnome-nettool/files/patch-src_netstat.c deleted file mode 100644 index 1eec84927..000000000 --- a/net/gnome-nettool/files/patch-src_netstat.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/netstat.c.orig Tue Jul 6 13:55:25 2004 -+++ src/netstat.c Fri Aug 20 15:55:40 2004 -@@ -108,12 +108,17 @@ - g_return_val_if_fail (netinfo != NULL, NULL); - - if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (netinfo->routing))) { -+#ifdef __FreeBSD__ -+ /* XXX We only support ipv4 now */ -+ option = g_strdup ("-rn -f inet"); -+#else - /* Works for Solaris and Linux */ - if (netinfo_is_ipv6_enable ()) { - option = g_strdup ("-rn -A inet -A inet6"); - } else { - option = g_strdup ("-rn -A inet"); - } -+#endif - - if (netinfo->stbar_text) - g_free (netinfo->stbar_text); diff --git a/net/gnome-nettool/files/patch-src_nettool.c b/net/gnome-nettool/files/patch-src_nettool.c deleted file mode 100644 index 1009298e6..000000000 --- a/net/gnome-nettool/files/patch-src_nettool.c +++ /dev/null @@ -1,37 +0,0 @@ ---- src/nettool.c.orig Fri Apr 14 08:36:08 2006 -+++ src/nettool.c Fri May 12 15:54:15 2006 -@@ -24,6 +24,7 @@ - #include <string.h> - #include <sys/types.h> - #include <sys/socket.h> -+#include <netinet/in.h> - #include <signal.h> - #include <errno.h> - #include <sys/wait.h> -@@ -360,6 +361,10 @@ netinfo_io_text_buffer_dialog (GIOChanne - len, NULL); - } - -+ g_free (text); -+ -+ return TRUE; -+ - } else if (status == G_IO_STATUS_AGAIN) { - char buf[1]; - -@@ -371,12 +376,13 @@ netinfo_io_text_buffer_dialog (GIOChanne - } - g_string_append_c (netinfo->command_output, buf[0]); - } -+ -+ g_free (text); -+ return TRUE; - } else if (status == G_IO_STATUS_EOF) { - } - - g_free (text); -- -- return TRUE; - } - - /* The condition is not G_IO_HUP | G_IO_ERR | G_IO_NVAL, so diff --git a/net/gnome-nettool/pkg-descr b/net/gnome-nettool/pkg-descr deleted file mode 100644 index 5619126fe..000000000 --- a/net/gnome-nettool/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Gnome-nettool is a utility for getting network information such as interface -statistics, and for front-ending commands like ping and traceroute. It -is very similar to the MacOS X Network Utility. diff --git a/net/gnome-nettool/pkg-plist b/net/gnome-nettool/pkg-plist deleted file mode 100644 index 39446f94d..000000000 --- a/net/gnome-nettool/pkg-plist +++ /dev/null @@ -1,177 +0,0 @@ -bin/gnome-nettool -share/applications/gnome-nettool.desktop -%%DATADIR%%/dialogs/gnome-nettool.glade -%%DATADIR%%/pixmaps/16_ethernet.xpm -%%DATADIR%%/pixmaps/16_loopback.xpm -%%DATADIR%%/pixmaps/16_plip.xpm -%%DATADIR%%/pixmaps/16_ppp.xpm -%%DATADIR%%/pixmaps/gnome-nettool.png -%%DATADIR%%/pixmaps/irda-16.png -%%DATADIR%%/pixmaps/network.png -%%DATADIR%%/pixmaps/wavelan-16.png -share/gnome/help/gnome-nettool/C/gnome-nettool.xml -share/gnome/help/gnome-nettool/C/legal.xml -share/gnome/help/gnome-nettool/ca/gnome-nettool.xml -share/gnome/help/gnome-nettool/cs/gnome-nettool.xml -share/gnome/help/gnome-nettool/da/gnome-nettool.xml -share/gnome/help/gnome-nettool/de/gnome-nettool.xml -share/gnome/help/gnome-nettool/en_GB/gnome-nettool.xml -share/gnome/help/gnome-nettool/es/gnome-nettool.xml -share/gnome/help/gnome-nettool/fr/gnome-nettool.xml -share/gnome/help/gnome-nettool/oc/gnome-nettool.xml -share/gnome/help/gnome-nettool/pa/gnome-nettool.xml -share/gnome/help/gnome-nettool/pt_BR/gnome-nettool.xml -share/gnome/help/gnome-nettool/sv/gnome-nettool.xml -share/gnome/help/gnome-nettool/uk/gnome-nettool.xml -share/gnome/help/gnome-nettool/vi/gnome-nettool.xml -share/gnome/help/gnome-nettool/zh_CN/gnome-nettool.xml -share/icons/hicolor/16x16/apps/gnome-nettool.png -share/icons/hicolor/22x22/apps/gnome-nettool.png -share/icons/hicolor/24x24/apps/gnome-nettool.png -share/icons/hicolor/32x32/apps/gnome-nettool.png -share/icons/hicolor/scalable/apps/gnome-nettool.svg -share/locale/af/LC_MESSAGES/gnome-nettool.mo -share/locale/ar/LC_MESSAGES/gnome-nettool.mo -share/locale/as/LC_MESSAGES/gnome-nettool.mo -share/locale/ast/LC_MESSAGES/gnome-nettool.mo -share/locale/az/LC_MESSAGES/gnome-nettool.mo -share/locale/bg/LC_MESSAGES/gnome-nettool.mo -share/locale/bn/LC_MESSAGES/gnome-nettool.mo -share/locale/bn_IN/LC_MESSAGES/gnome-nettool.mo -share/locale/bs/LC_MESSAGES/gnome-nettool.mo -share/locale/ca/LC_MESSAGES/gnome-nettool.mo -share/locale/cs/LC_MESSAGES/gnome-nettool.mo -share/locale/cy/LC_MESSAGES/gnome-nettool.mo -share/locale/da/LC_MESSAGES/gnome-nettool.mo -share/locale/de/LC_MESSAGES/gnome-nettool.mo -share/locale/dz/LC_MESSAGES/gnome-nettool.mo -share/locale/el/LC_MESSAGES/gnome-nettool.mo -share/locale/en_CA/LC_MESSAGES/gnome-nettool.mo -share/locale/en_GB/LC_MESSAGES/gnome-nettool.mo -share/locale/es/LC_MESSAGES/gnome-nettool.mo -share/locale/et/LC_MESSAGES/gnome-nettool.mo -share/locale/eu/LC_MESSAGES/gnome-nettool.mo -share/locale/fa/LC_MESSAGES/gnome-nettool.mo -share/locale/fi/LC_MESSAGES/gnome-nettool.mo -share/locale/fr/LC_MESSAGES/gnome-nettool.mo -share/locale/ga/LC_MESSAGES/gnome-nettool.mo -share/locale/gl/LC_MESSAGES/gnome-nettool.mo -share/locale/gu/LC_MESSAGES/gnome-nettool.mo -share/locale/he/LC_MESSAGES/gnome-nettool.mo -share/locale/hi/LC_MESSAGES/gnome-nettool.mo -share/locale/hr/LC_MESSAGES/gnome-nettool.mo -share/locale/hu/LC_MESSAGES/gnome-nettool.mo -share/locale/id/LC_MESSAGES/gnome-nettool.mo -share/locale/it/LC_MESSAGES/gnome-nettool.mo -share/locale/ja/LC_MESSAGES/gnome-nettool.mo -share/locale/ka/LC_MESSAGES/gnome-nettool.mo -share/locale/kn/LC_MESSAGES/gnome-nettool.mo -share/locale/ko/LC_MESSAGES/gnome-nettool.mo -share/locale/ku/LC_MESSAGES/gnome-nettool.mo -share/locale/lt/LC_MESSAGES/gnome-nettool.mo -share/locale/lv/LC_MESSAGES/gnome-nettool.mo -share/locale/mg/LC_MESSAGES/gnome-nettool.mo -share/locale/mk/LC_MESSAGES/gnome-nettool.mo -share/locale/ml/LC_MESSAGES/gnome-nettool.mo -share/locale/mn/LC_MESSAGES/gnome-nettool.mo -share/locale/mr/LC_MESSAGES/gnome-nettool.mo -share/locale/ms/LC_MESSAGES/gnome-nettool.mo -share/locale/nb/LC_MESSAGES/gnome-nettool.mo -share/locale/ne/LC_MESSAGES/gnome-nettool.mo -share/locale/nl/LC_MESSAGES/gnome-nettool.mo -share/locale/nn/LC_MESSAGES/gnome-nettool.mo -share/locale/oc/LC_MESSAGES/gnome-nettool.mo -share/locale/or/LC_MESSAGES/gnome-nettool.mo -share/locale/pa/LC_MESSAGES/gnome-nettool.mo -share/locale/pl/LC_MESSAGES/gnome-nettool.mo -share/locale/ps/LC_MESSAGES/gnome-nettool.mo -share/locale/pt/LC_MESSAGES/gnome-nettool.mo -share/locale/pt_BR/LC_MESSAGES/gnome-nettool.mo -share/locale/ro/LC_MESSAGES/gnome-nettool.mo -share/locale/ru/LC_MESSAGES/gnome-nettool.mo -share/locale/rw/LC_MESSAGES/gnome-nettool.mo -share/locale/si/LC_MESSAGES/gnome-nettool.mo -share/locale/sk/LC_MESSAGES/gnome-nettool.mo -share/locale/sl/LC_MESSAGES/gnome-nettool.mo -share/locale/sq/LC_MESSAGES/gnome-nettool.mo -share/locale/sr/LC_MESSAGES/gnome-nettool.mo -share/locale/sr@latin/LC_MESSAGES/gnome-nettool.mo -share/locale/sv/LC_MESSAGES/gnome-nettool.mo -share/locale/ta/LC_MESSAGES/gnome-nettool.mo -share/locale/te/LC_MESSAGES/gnome-nettool.mo -share/locale/th/LC_MESSAGES/gnome-nettool.mo -share/locale/tr/LC_MESSAGES/gnome-nettool.mo -share/locale/uk/LC_MESSAGES/gnome-nettool.mo -share/locale/uz/LC_MESSAGES/gnome-nettool.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-nettool.mo -share/locale/vi/LC_MESSAGES/gnome-nettool.mo -share/locale/wa/LC_MESSAGES/gnome-nettool.mo -share/locale/xh/LC_MESSAGES/gnome-nettool.mo -share/locale/zh_CN/LC_MESSAGES/gnome-nettool.mo -share/locale/zh_HK/LC_MESSAGES/gnome-nettool.mo -share/locale/zh_TW/LC_MESSAGES/gnome-nettool.mo -share/omf/gnome-nettool/gnome-nettool-C.omf -share/omf/gnome-nettool/gnome-nettool-ca.omf -share/omf/gnome-nettool/gnome-nettool-cs.omf -share/omf/gnome-nettool/gnome-nettool-da.omf -share/omf/gnome-nettool/gnome-nettool-de.omf -share/omf/gnome-nettool/gnome-nettool-en_GB.omf -share/omf/gnome-nettool/gnome-nettool-es.omf -share/omf/gnome-nettool/gnome-nettool-fr.omf -share/omf/gnome-nettool/gnome-nettool-oc.omf -share/omf/gnome-nettool/gnome-nettool-pa.omf -share/omf/gnome-nettool/gnome-nettool-pt_BR.omf -share/omf/gnome-nettool/gnome-nettool-sv.omf -share/omf/gnome-nettool/gnome-nettool-uk.omf -share/omf/gnome-nettool/gnome-nettool-vi.omf -share/omf/gnome-nettool/gnome-nettool-zh_CN.omf -share/pixmaps/gnome-nettool.png -@dirrm share/omf/gnome-nettool -@dirrm share/gnome/help/gnome-nettool/zh_CN -@dirrm share/gnome/help/gnome-nettool/vi -@dirrm share/gnome/help/gnome-nettool/uk -@dirrm share/gnome/help/gnome-nettool/sv -@dirrm share/gnome/help/gnome-nettool/pt_BR -@dirrm share/gnome/help/gnome-nettool/pa -@dirrm share/gnome/help/gnome-nettool/oc -@dirrm share/gnome/help/gnome-nettool/fr -@dirrm share/gnome/help/gnome-nettool/es -@dirrm share/gnome/help/gnome-nettool/en_GB -@dirrm share/gnome/help/gnome-nettool/de -@dirrm share/gnome/help/gnome-nettool/da -@dirrm share/gnome/help/gnome-nettool/cs -@dirrm share/gnome/help/gnome-nettool/ca -@dirrm share/gnome/help/gnome-nettool/C -@dirrm share/gnome/help/gnome-nettool -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/dialogs -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/libgweather/Makefile b/net/libgweather/Makefile deleted file mode 100644 index ee340a793..000000000 --- a/net/libgweather/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: libgweather -# Date created: 14th Jan 2008 -# Whom: Koop Mast <kwm@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/net/libgweather/Makefile,v 1.24 2009/03/05 05:52:55 marcus Exp $ -# - -PORTNAME= libgweather -PORTVERSION= 2.26.0 -CATEGORIES= net gnome -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Library to accessing online weather informations - -LIB_DEPENDS= soup-2.4.1:${PORTSDIR}/devel/libsoup - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gtk20 gnomevfs2 ltverhack -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gweather.schemas - -.include <bsd.port.mk> diff --git a/net/libgweather/distinfo b/net/libgweather/distinfo deleted file mode 100644 index cfe463151..000000000 --- a/net/libgweather/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libgweather-2.26.0.tar.bz2) = b96016d7b35c66cf251189e9851ee252 -SHA256 (libgweather-2.26.0.tar.bz2) = c1efdeb59fe87145d13d99b7bb6f51b56505081fb2ebc2f7fe7dc3f7699da45e -SIZE (libgweather-2.26.0.tar.bz2) = 6536099 diff --git a/net/libgweather/pkg-descr b/net/libgweather/pkg-descr deleted file mode 100644 index 99ea830ef..000000000 --- a/net/libgweather/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -libgweather is a library to access weather information from online -services for numerous locations. - -libgweather isn't supported in the devel platform, which means OS vendors -won't guarantee the API/ABI long-term, but authors of open source apps -should feel free to use libgweather as users can always recompile against -a new version. - -WWW: http://www.gnome.org/ diff --git a/net/libgweather/pkg-plist b/net/libgweather/pkg-plist deleted file mode 100644 index 049dc64a0..000000000 --- a/net/libgweather/pkg-plist +++ /dev/null @@ -1,275 +0,0 @@ -include/libgweather/gweather-enum-types.h -include/libgweather/gweather-gconf.h -include/libgweather/gweather-location.h -include/libgweather/gweather-prefs.h -include/libgweather/gweather-timezone.h -include/libgweather/gweather-xml.h -include/libgweather/location-entry.h -include/libgweather/timezone-menu.h -include/libgweather/weather.h -lib/libgweather.a -lib/libgweather.la -lib/libgweather.so -lib/libgweather.so.1 -libdata/pkgconfig/gweather.pc -%%DOCSDIR%%/GWeatherLocationEntry.html -%%DOCSDIR%%/GWeatherTimezoneMenu.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/libgweather-gweather-gconf.html -%%DOCSDIR%%/libgweather-gweather-location.html -%%DOCSDIR%%/libgweather-gweather-prefs.html -%%DOCSDIR%%/libgweather-gweather-timezone.html -%%DOCSDIR%%/libgweather-gweather-xml.html -%%DOCSDIR%%/libgweather-weather.html -%%DOCSDIR%%/libgweather.devhelp -%%DOCSDIR%%/libgweather.devhelp2 -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%DATADIR%%/Locations.ang.xml -%%DATADIR%%/Locations.ar.xml -%%DATADIR%%/Locations.as.xml -%%DATADIR%%/Locations.az.xml -%%DATADIR%%/Locations.be.xml -%%DATADIR%%/Locations.be@latin.xml -%%DATADIR%%/Locations.bg.xml -%%DATADIR%%/Locations.bn.xml -%%DATADIR%%/Locations.bn_IN.xml -%%DATADIR%%/Locations.bs.xml -%%DATADIR%%/Locations.ca.xml -%%DATADIR%%/Locations.cs.xml -%%DATADIR%%/Locations.cy.xml -%%DATADIR%%/Locations.da.xml -%%DATADIR%%/Locations.de.xml -%%DATADIR%%/Locations.dz.xml -%%DATADIR%%/Locations.el.xml -%%DATADIR%%/Locations.en_CA.xml -%%DATADIR%%/Locations.en_GB.xml -%%DATADIR%%/Locations.es.xml -%%DATADIR%%/Locations.et.xml -%%DATADIR%%/Locations.eu.xml -%%DATADIR%%/Locations.fa.xml -%%DATADIR%%/Locations.fi.xml -%%DATADIR%%/Locations.fr.xml -%%DATADIR%%/Locations.ga.xml -%%DATADIR%%/Locations.gl.xml -%%DATADIR%%/Locations.gu.xml -%%DATADIR%%/Locations.he.xml -%%DATADIR%%/Locations.hi.xml -%%DATADIR%%/Locations.hr.xml -%%DATADIR%%/Locations.hu.xml -%%DATADIR%%/Locations.id.xml -%%DATADIR%%/Locations.it.xml -%%DATADIR%%/Locations.ja.xml -%%DATADIR%%/Locations.ka.xml -%%DATADIR%%/Locations.kn.xml -%%DATADIR%%/Locations.ko.xml -%%DATADIR%%/Locations.ku.xml -%%DATADIR%%/Locations.ky.xml -%%DATADIR%%/Locations.lt.xml -%%DATADIR%%/Locations.lv.xml -%%DATADIR%%/Locations.mai.xml -%%DATADIR%%/Locations.mg.xml -%%DATADIR%%/Locations.mk.xml -%%DATADIR%%/Locations.ml.xml -%%DATADIR%%/Locations.mn.xml -%%DATADIR%%/Locations.mr.xml -%%DATADIR%%/Locations.ms.xml -%%DATADIR%%/Locations.nb.xml -%%DATADIR%%/Locations.ne.xml -%%DATADIR%%/Locations.nl.xml -%%DATADIR%%/Locations.nn.xml -%%DATADIR%%/Locations.oc.xml -%%DATADIR%%/Locations.or.xml -%%DATADIR%%/Locations.pa.xml -%%DATADIR%%/Locations.pl.xml -%%DATADIR%%/Locations.pt.xml -%%DATADIR%%/Locations.pt_BR.xml -%%DATADIR%%/Locations.ro.xml -%%DATADIR%%/Locations.ru.xml -%%DATADIR%%/Locations.rw.xml -%%DATADIR%%/Locations.si.xml -%%DATADIR%%/Locations.sk.xml -%%DATADIR%%/Locations.sl.xml -%%DATADIR%%/Locations.sq.xml -%%DATADIR%%/Locations.sr.xml -%%DATADIR%%/Locations.sr@latin.xml -%%DATADIR%%/Locations.sv.xml -%%DATADIR%%/Locations.ta.xml -%%DATADIR%%/Locations.te.xml -%%DATADIR%%/Locations.th.xml -%%DATADIR%%/Locations.tr.xml -%%DATADIR%%/Locations.uk.xml -%%DATADIR%%/Locations.vi.xml -%%DATADIR%%/Locations.xml -%%DATADIR%%/Locations.zh_CN.xml -%%DATADIR%%/Locations.zh_HK.xml -%%DATADIR%%/Locations.zh_TW.xml -%%DATADIR%%/locations.dtd -share/locale/am/LC_MESSAGES/libgweather.mo -share/locale/ar/LC_MESSAGES/libgweather.mo -share/locale/as/LC_MESSAGES/libgweather.mo -share/locale/az/LC_MESSAGES/libgweather.mo -share/locale/be/LC_MESSAGES/libgweather.mo -share/locale/be@latin/LC_MESSAGES/libgweather.mo -share/locale/bg/LC_MESSAGES/libgweather.mo -share/locale/bn/LC_MESSAGES/libgweather.mo -share/locale/bn_IN/LC_MESSAGES/libgweather.mo -share/locale/bs/LC_MESSAGES/libgweather.mo -share/locale/ca/LC_MESSAGES/libgweather.mo -share/locale/cs/LC_MESSAGES/libgweather.mo -share/locale/cy/LC_MESSAGES/libgweather.mo -share/locale/da/LC_MESSAGES/libgweather.mo -share/locale/de/LC_MESSAGES/libgweather.mo -share/locale/dz/LC_MESSAGES/libgweather.mo -share/locale/el/LC_MESSAGES/libgweather.mo -share/locale/en_CA/LC_MESSAGES/libgweather.mo -share/locale/en_GB/LC_MESSAGES/libgweather.mo -share/locale/es/LC_MESSAGES/libgweather.mo -share/locale/es_AR/LC_MESSAGES/libgweather.mo -share/locale/es_CL/LC_MESSAGES/libgweather.mo -share/locale/es_CO/LC_MESSAGES/libgweather.mo -share/locale/es_CR/LC_MESSAGES/libgweather.mo -share/locale/es_DO/LC_MESSAGES/libgweather.mo -share/locale/es_EC/LC_MESSAGES/libgweather.mo -share/locale/es_ES/LC_MESSAGES/libgweather.mo -share/locale/es_GT/LC_MESSAGES/libgweather.mo -share/locale/es_HN/LC_MESSAGES/libgweather.mo -share/locale/es_MX/LC_MESSAGES/libgweather.mo -share/locale/es_NI/LC_MESSAGES/libgweather.mo -share/locale/es_PA/LC_MESSAGES/libgweather.mo -share/locale/es_PE/LC_MESSAGES/libgweather.mo -share/locale/es_PR/LC_MESSAGES/libgweather.mo -share/locale/es_SV/LC_MESSAGES/libgweather.mo -share/locale/es_UY/LC_MESSAGES/libgweather.mo -share/locale/es_VE/LC_MESSAGES/libgweather.mo -share/locale/et/LC_MESSAGES/libgweather.mo -share/locale/eu/LC_MESSAGES/libgweather.mo -share/locale/fa/LC_MESSAGES/libgweather.mo -share/locale/fi/LC_MESSAGES/libgweather.mo -share/locale/fr/LC_MESSAGES/libgweather.mo -share/locale/ga/LC_MESSAGES/libgweather.mo -share/locale/gl/LC_MESSAGES/libgweather.mo -share/locale/gu/LC_MESSAGES/libgweather.mo -share/locale/he/LC_MESSAGES/libgweather.mo -share/locale/hi/LC_MESSAGES/libgweather.mo -share/locale/hr/LC_MESSAGES/libgweather.mo -share/locale/hu/LC_MESSAGES/libgweather.mo -share/locale/hy/LC_MESSAGES/libgweather.mo -share/locale/id/LC_MESSAGES/libgweather.mo -share/locale/is/LC_MESSAGES/libgweather.mo -share/locale/it/LC_MESSAGES/libgweather.mo -share/locale/ja/LC_MESSAGES/libgweather.mo -share/locale/ka/LC_MESSAGES/libgweather.mo -share/locale/kn/LC_MESSAGES/libgweather.mo -share/locale/ko/LC_MESSAGES/libgweather.mo -share/locale/ku/LC_MESSAGES/libgweather.mo -share/locale/ky/LC_MESSAGES/libgweather.mo -share/locale/lt/LC_MESSAGES/libgweather.mo -share/locale/lv/LC_MESSAGES/libgweather.mo -share/locale/mg/LC_MESSAGES/libgweather.mo -share/locale/mk/LC_MESSAGES/libgweather.mo -share/locale/ml/LC_MESSAGES/libgweather.mo -share/locale/mn/LC_MESSAGES/libgweather.mo -share/locale/mr/LC_MESSAGES/libgweather.mo -share/locale/ms/LC_MESSAGES/libgweather.mo -share/locale/nb/LC_MESSAGES/libgweather.mo -share/locale/ne/LC_MESSAGES/libgweather.mo -share/locale/nl/LC_MESSAGES/libgweather.mo -share/locale/nn/LC_MESSAGES/libgweather.mo -share/locale/oc/LC_MESSAGES/libgweather.mo -share/locale/or/LC_MESSAGES/libgweather.mo -share/locale/pa/LC_MESSAGES/libgweather.mo -share/locale/pl/LC_MESSAGES/libgweather.mo -share/locale/pt/LC_MESSAGES/libgweather.mo -share/locale/pt_BR/LC_MESSAGES/libgweather.mo -share/locale/ro/LC_MESSAGES/libgweather.mo -share/locale/ru/LC_MESSAGES/libgweather.mo -share/locale/rw/LC_MESSAGES/libgweather.mo -share/locale/si/LC_MESSAGES/libgweather.mo -share/locale/sk/LC_MESSAGES/libgweather.mo -share/locale/sl/LC_MESSAGES/libgweather.mo -share/locale/sq/LC_MESSAGES/libgweather.mo -share/locale/sr/LC_MESSAGES/libgweather.mo -share/locale/sr@latin/LC_MESSAGES/libgweather.mo -share/locale/sv/LC_MESSAGES/libgweather.mo -share/locale/ta/LC_MESSAGES/libgweather.mo -share/locale/te/LC_MESSAGES/libgweather.mo -share/locale/th/LC_MESSAGES/libgweather.mo -share/locale/tr/LC_MESSAGES/libgweather.mo -share/locale/uk/LC_MESSAGES/libgweather.mo -share/locale/vi/LC_MESSAGES/libgweather.mo -share/locale/wa/LC_MESSAGES/libgweather.mo -share/locale/xh/LC_MESSAGES/libgweather.mo -share/locale/zh_CN/LC_MESSAGES/libgweather.mo -share/locale/zh_HK/LC_MESSAGES/libgweather.mo -share/locale/zh_TW/LC_MESSAGES/libgweather.mo -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@dirrm include/libgweather -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/es_VE/LC_MESSAGES -@dirrmtry share/locale/es_VE -@dirrmtry share/locale/es_UY/LC_MESSAGES -@dirrmtry share/locale/es_UY -@dirrmtry share/locale/es_SV/LC_MESSAGES -@dirrmtry share/locale/es_SV -@dirrmtry share/locale/es_PR/LC_MESSAGES -@dirrmtry share/locale/es_PR -@dirrmtry share/locale/es_PE/LC_MESSAGES -@dirrmtry share/locale/es_PE -@dirrmtry share/locale/es_PA/LC_MESSAGES -@dirrmtry share/locale/es_PA -@dirrmtry share/locale/es_NI/LC_MESSAGES -@dirrmtry share/locale/es_NI -@dirrmtry share/locale/es_HN/LC_MESSAGES -@dirrmtry share/locale/es_HN -@dirrmtry share/locale/es_GT/LC_MESSAGES -@dirrmtry share/locale/es_GT -@dirrmtry share/locale/es_EC/LC_MESSAGES -@dirrmtry share/locale/es_EC -@dirrmtry share/locale/es_DO/LC_MESSAGES -@dirrmtry share/locale/es_DO -@dirrmtry share/locale/es_CR/LC_MESSAGES -@dirrmtry share/locale/es_CR -@dirrmtry share/locale/es_CO/LC_MESSAGES -@dirrmtry share/locale/es_CO -@dirrmtry share/locale/es_CL/LC_MESSAGES -@dirrmtry share/locale/es_CL -@dirrmtry share/locale/es_AR/LC_MESSAGES -@dirrmtry share/locale/es_AR -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/tsclient/Makefile b/net/tsclient/Makefile deleted file mode 100644 index 013a84a64..000000000 --- a/net/tsclient/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# New ports collection makefile for: tsclient -# Date created: 01 Mar 2003 -# Whom: Koop Mast <einekoai@chello.nl> -# -# $FreeBSD$ -# - -PORTNAME= tsclient -PORTVERSION= 0.150 -PORTREVISION= 4 -CATEGORIES= net gnome -MASTER_SITES= SF - -MAINTAINER= ports@thepentagon.org -COMMENT= A GNOME 2 frontend for rdesktop and vncviewer - -RUN_DEPENDS= rdesktop:${PORTSDIR}/net/rdesktop - -OPTIONS= GNOME "Build with gnome support" on \ - TIGHTVNC "vncviewer support" off \ - XNEST "X via Xnest support (experimental)" off - -USE_AUTOTOOLS= libtool:15 automake:19 autoconf:262 -USE_GNOME= gtk20 -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" - -MAN1= tsclient.1 -PORTDOCS= COPYING NEWS README - -.include <bsd.port.pre.mk> - -.if defined(WITH_GNOME) -USE_GNOME+= gnomeprefix gnomehack gnomepanel libgnomeui -.else -CONFIGURE_ARGS+= --disable-gnome -.endif - -.if defined(WITH_TIGHTVNC) -RUN_DEPENDS+= vncviewer:${PORTSDIR}/net/tightvnc -.endif - -.if defined(WITH_XNEST) -RUN_DEPENDS+= Xnest:${X_NESTSERVER_PORT} -.endif - -post-patch: - @${REINPLACE_CMD} -e '/^man1dir *=/ s,datadir,prefix,g' \ - ${WRKSRC}/Makefile.am - @${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|g' \ - ${WRKSRC}/aclocal.m4 - -post-install: - @${LN} -sf ${PREFIX}/share/pixmaps/tsclient/tsclient.png \ - ${PREFIX}/share/pixmaps/tsclient.png -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -. for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} -. endfor -.endif - -.include <bsd.port.post.mk> diff --git a/net/tsclient/distinfo b/net/tsclient/distinfo deleted file mode 100644 index d4639de94..000000000 --- a/net/tsclient/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (tsclient-0.150.tar.gz) = 1dc95fbdbcf4344d05114e1f43bf32ea -SHA256 (tsclient-0.150.tar.gz) = 7dbcad13d98c45a4365dffb3d775be89f49d4e27e139aeaf028e9cd4a41a3ae1 -SIZE (tsclient-0.150.tar.gz) = 495975 diff --git a/net/tsclient/files/patch-src_support.c b/net/tsclient/files/patch-src_support.c deleted file mode 100644 index 76e0edcd6..000000000 --- a/net/tsclient/files/patch-src_support.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/support.c.orig Tue May 10 07:30:51 2005 -+++ src/support.c Sat May 21 13:47:21 2005 -@@ -23,6 +23,8 @@ - #include <fcntl.h> - - #include <arpa/inet.h> -+#include <sys/socket.h> -+#include <netinet/in.h> - #ifdef HAVE_SYS_SOCKIO_H - #include <sys/sockio.h> - #endif diff --git a/net/tsclient/pkg-descr b/net/tsclient/pkg-descr deleted file mode 100644 index 8f9e943cc..000000000 --- a/net/tsclient/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Tsclient is a GNOME 2 frontend for rdesktop, and also supports VNC clients, -Citrix ICA client (experimental) and X via Xnest (experimental). - -WWW: http://sourceforge.net/projects/tsclient/ diff --git a/net/tsclient/pkg-plist b/net/tsclient/pkg-plist deleted file mode 100644 index 12f67fb09..000000000 --- a/net/tsclient/pkg-plist +++ /dev/null @@ -1,72 +0,0 @@ -bin/tsclient -lib/bonobo/servers/GNOME_TSClientApplet.server -libexec/tsclient-applet -share/application-registry/tsclient.applications -share/applications/tsclient.desktop -share/locale/ar/LC_MESSAGES/tsclient.mo -share/locale/ca/LC_MESSAGES/tsclient.mo -share/locale/cs/LC_MESSAGES/tsclient.mo -share/locale/da/LC_MESSAGES/tsclient.mo -share/locale/de/LC_MESSAGES/tsclient.mo -share/locale/el/LC_MESSAGES/tsclient.mo -share/locale/es/LC_MESSAGES/tsclient.mo -share/locale/fi/LC_MESSAGES/tsclient.mo -share/locale/fr/LC_MESSAGES/tsclient.mo -share/locale/gr/LC_MESSAGES/tsclient.mo -share/locale/he/LC_MESSAGES/tsclient.mo -share/locale/hu/LC_MESSAGES/tsclient.mo -share/locale/id/LC_MESSAGES/tsclient.mo -share/locale/it/LC_MESSAGES/tsclient.mo -share/locale/ja/LC_MESSAGES/tsclient.mo -share/locale/mk/LC_MESSAGES/tsclient.mo -share/locale/ms/LC_MESSAGES/tsclient.mo -share/locale/nb/LC_MESSAGES/tsclient.mo -share/locale/nl_NL/LC_MESSAGES/tsclient.mo -share/locale/pa/LC_MESSAGES/tsclient.mo -share/locale/pl_PL/LC_MESSAGES/tsclient.mo -share/locale/pt_BR/LC_MESSAGES/tsclient.mo -share/locale/pt_PT/LC_MESSAGES/tsclient.mo -share/locale/ru/LC_MESSAGES/tsclient.mo -share/locale/sv/LC_MESSAGES/tsclient.mo -share/locale/tr/LC_MESSAGES/tsclient.mo -share/locale/xh/LC_MESSAGES/tsclient.mo -share/locale/zh_CN/LC_MESSAGES/tsclient.mo -share/locale/zh_HK/LC_MESSAGES/tsclient.mo -share/locale/zh_TW/LC_MESSAGES/tsclient.mo -share/mime-info/tsclient.keys -share/mime-info/tsclient.mime -share/pixmaps/tsclient.png -share/pixmaps/tsclient/banner-ar.png -share/pixmaps/tsclient/banner-en.png -share/pixmaps/tsclient/banner-es.png -share/pixmaps/tsclient/banner-he.png -share/pixmaps/tsclient/banner-hu.png -share/pixmaps/tsclient/banner-ja.png -share/pixmaps/tsclient/banner-ms.png -share/pixmaps/tsclient/banner-nl.png -share/pixmaps/tsclient/banner-pa.png -share/pixmaps/tsclient/banner-ru.png -share/pixmaps/tsclient/banner-sv.png -share/pixmaps/tsclient/banner-zh-cn.png -share/pixmaps/tsclient/banner-zh-tw.png -share/pixmaps/tsclient/colors.png -share/pixmaps/tsclient/computer.png -share/pixmaps/tsclient/keyboard.png -share/pixmaps/tsclient/perform.png -share/pixmaps/tsclient/program.png -share/pixmaps/tsclient/size.png -share/pixmaps/tsclient/sound.png -share/pixmaps/tsclient/tsclient.png -@dirrm share/pixmaps/tsclient -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/pl_PL/LC_MESSAGES -@dirrmtry share/locale/pl_PL -@dirrmtry share/locale/nl_NL/LC_MESSAGES -@dirrmtry share/locale/nl_NL -@dirrmtry share/locale/gr/LC_MESSAGES -@dirrmtry share/locale/gr -@dirrmtry share/applications -@dirrmtry lib/bonobo/servers diff --git a/net/vinagre/Makefile b/net/vinagre/Makefile deleted file mode 100644 index 714a4ccb7..000000000 --- a/net/vinagre/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: vinagre -# Date created: 16 December 2007 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/net/vinagre/Makefile,v 1.23 2009/03/03 07:44:53 marcus Exp $ -# - -PORTNAME= vinagre -PORTVERSION= 2.26.0 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= VNC client for the GNOME Desktop - -LIB_DEPENDS= gtk-vnc-1.0.0:${PORTSDIR}/net/gtk-vnc \ - avahi-core.6:${PORTSDIR}/net/avahi-app \ - avahi-ui.0:${PORTSDIR}/net/avahi-gtk \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix intlhack gnomehack libglade2 gconf2 gnomedocutils \ - gnomepanel -USE_GMAKE= yes -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -CONFIGURE_ARGS= --enable-avahi -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= vinagre.schemas - -MAN1= vinagre.1 - -post-install: - @-update-desktop-database > /dev/null - @-update-mime-database ${PREFIX}/share/mime > /dev/null -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in AUTHORS COPYING ChangeLog MAINTAINERS NEWS README - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/vinagre/distinfo b/net/vinagre/distinfo deleted file mode 100644 index 8f873d515..000000000 --- a/net/vinagre/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/vinagre-2.26.0.tar.bz2) = 6930bec2968c96dfb3407d6492ae42d4 -SHA256 (gnome2/vinagre-2.26.0.tar.bz2) = 3308e8072335370aa88201cbac23896c3f6118669c2fc531b7f7e8b62fb89c3e -SIZE (gnome2/vinagre-2.26.0.tar.bz2) = 1412103 diff --git a/net/vinagre/files/patch-Makefile.in b/net/vinagre/files/patch-Makefile.in deleted file mode 100644 index d54e01e7f..000000000 --- a/net/vinagre/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig 2007-12-16 14:18:35.000000000 -0500 -+++ Makefile.in 2007-12-16 14:19:09.000000000 -0500 -@@ -667,7 +667,7 @@ info: info-recursive - - info-am: - --install-data-am: install-vinagredocDATA -+install-data-am: - - install-dvi: install-dvi-recursive - diff --git a/net/vinagre/pkg-descr b/net/vinagre/pkg-descr deleted file mode 100644 index 9aa3ad1fa..000000000 --- a/net/vinagre/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Vinagre is a VNC Client for the GNOME Desktop. Its features include: - -* You can connect to several machines at the same time, we like tabs -* You can keep track of your most used connections, we like favorites -* You can keep track of your recently used connections, we like GtkRecent -* You can browse your network for VNC servers, we like avahi -* You don't need to supply the password on every connection, we like GNOME - Keyring - -WWW: http://www.gnome.org/projects/vinagre/ diff --git a/net/vinagre/pkg-plist b/net/vinagre/pkg-plist deleted file mode 100644 index b9943a89a..000000000 --- a/net/vinagre/pkg-plist +++ /dev/null @@ -1,199 +0,0 @@ -bin/vinagre -libdata/bonobo/servers/GNOME_VinagreApplet.server -libexec/vinagre-applet -share/applications/vinagre-file.desktop -share/applications/vinagre.desktop -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -share/gnome/help/vinagre/C/figures/vinagre-screenshot.png -share/gnome/help/vinagre/C/legal.xml -share/gnome/help/vinagre/C/vinagre.xml -share/gnome/help/vinagre/ca/figures/vinagre-screenshot.png -share/gnome/help/vinagre/ca/vinagre.xml -share/gnome/help/vinagre/cs/figures/vinagre-screenshot.png -share/gnome/help/vinagre/cs/vinagre.xml -share/gnome/help/vinagre/de/figures/vinagre-screenshot.png -share/gnome/help/vinagre/de/vinagre.xml -share/gnome/help/vinagre/en_GB/figures/vinagre-screenshot.png -share/gnome/help/vinagre/en_GB/vinagre.xml -share/gnome/help/vinagre/es/figures/vinagre-screenshot.png -share/gnome/help/vinagre/es/vinagre.xml -share/gnome/help/vinagre/fr/figures/vinagre-screenshot.png -share/gnome/help/vinagre/fr/vinagre.xml -share/gnome/help/vinagre/it/figures/vinagre-screenshot.png -share/gnome/help/vinagre/it/vinagre.xml -share/gnome/help/vinagre/oc/figures/vinagre-screenshot.png -share/gnome/help/vinagre/oc/vinagre.xml -share/gnome/help/vinagre/pt/figures/vinagre-screenshot.png -share/gnome/help/vinagre/pt/vinagre.xml -share/gnome/help/vinagre/pt_BR/figures/vinagre-screenshot.png -share/gnome/help/vinagre/pt_BR/vinagre.xml -share/gnome/help/vinagre/sq/figures/vinagre-screenshot.png -share/gnome/help/vinagre/sq/vinagre.xml -share/gnome/help/vinagre/sv/figures/vinagre-screenshot.png -share/gnome/help/vinagre/sv/vinagre.xml -share/gnome/help/vinagre/th/figures/vinagre-screenshot.png -share/gnome/help/vinagre/th/vinagre.xml -share/icons/hicolor/16x16/apps/vinagre.png -share/icons/hicolor/16x16/mimetypes/application-x-remote-connection.png -share/icons/hicolor/16x16/mimetypes/application-x-vnc.png -share/icons/hicolor/16x16/status/view-minimize.png -share/icons/hicolor/22x22/apps/vinagre.png -share/icons/hicolor/22x22/mimetypes/application-x-remote-connection.png -share/icons/hicolor/22x22/mimetypes/application-x-vnc.png -share/icons/hicolor/22x22/status/view-minimize.png -share/icons/hicolor/24x24/apps/vinagre.png -share/icons/hicolor/24x24/mimetypes/application-x-remote-connection.png -share/icons/hicolor/24x24/mimetypes/application-x-vnc.png -share/icons/hicolor/32x32/apps/vinagre.png -share/icons/hicolor/32x32/mimetypes/application-x-remote-connection.png -share/icons/hicolor/32x32/mimetypes/application-x-vnc.png -share/icons/hicolor/32x32/status/view-minimize.png -share/icons/hicolor/48x48/apps/vinagre.png -share/icons/hicolor/48x48/mimetypes/application-x-remote-connection.png -share/icons/hicolor/48x48/mimetypes/application-x-vnc.png -share/icons/hicolor/48x48/status/view-minimize.png -share/icons/hicolor/scalable/apps/vinagre.svg -share/icons/hicolor/scalable/mimetypes/application-x-remote-connection.svg -share/icons/hicolor/scalable/mimetypes/application-x-vnc.svg -share/locale/ar/LC_MESSAGES/vinagre.mo -share/locale/as/LC_MESSAGES/vinagre.mo -share/locale/ast/LC_MESSAGES/vinagre.mo -share/locale/be@latin/LC_MESSAGES/vinagre.mo -share/locale/bg/LC_MESSAGES/vinagre.mo -share/locale/bn_IN/LC_MESSAGES/vinagre.mo -share/locale/ca/LC_MESSAGES/vinagre.mo -share/locale/cs/LC_MESSAGES/vinagre.mo -share/locale/da/LC_MESSAGES/vinagre.mo -share/locale/de/LC_MESSAGES/vinagre.mo -share/locale/el/LC_MESSAGES/vinagre.mo -share/locale/en_GB/LC_MESSAGES/vinagre.mo -share/locale/es/LC_MESSAGES/vinagre.mo -share/locale/et/LC_MESSAGES/vinagre.mo -share/locale/eu/LC_MESSAGES/vinagre.mo -share/locale/fi/LC_MESSAGES/vinagre.mo -share/locale/fr/LC_MESSAGES/vinagre.mo -share/locale/gl/LC_MESSAGES/vinagre.mo -share/locale/gu/LC_MESSAGES/vinagre.mo -share/locale/he/LC_MESSAGES/vinagre.mo -share/locale/hi/LC_MESSAGES/vinagre.mo -share/locale/hu/LC_MESSAGES/vinagre.mo -share/locale/it/LC_MESSAGES/vinagre.mo -share/locale/ja/LC_MESSAGES/vinagre.mo -share/locale/kn/LC_MESSAGES/vinagre.mo -share/locale/ko/LC_MESSAGES/vinagre.mo -share/locale/ku/LC_MESSAGES/vinagre.mo -share/locale/lt/LC_MESSAGES/vinagre.mo -share/locale/lv/LC_MESSAGES/vinagre.mo -share/locale/mk/LC_MESSAGES/vinagre.mo -share/locale/ml/LC_MESSAGES/vinagre.mo -share/locale/mr/LC_MESSAGES/vinagre.mo -share/locale/nb/LC_MESSAGES/vinagre.mo -share/locale/nl/LC_MESSAGES/vinagre.mo -share/locale/nn/LC_MESSAGES/vinagre.mo -share/locale/oc/LC_MESSAGES/vinagre.mo -share/locale/or/LC_MESSAGES/vinagre.mo -share/locale/pa/LC_MESSAGES/vinagre.mo -share/locale/pl/LC_MESSAGES/vinagre.mo -share/locale/pt/LC_MESSAGES/vinagre.mo -share/locale/pt_BR/LC_MESSAGES/vinagre.mo -share/locale/ro/LC_MESSAGES/vinagre.mo -share/locale/ru/LC_MESSAGES/vinagre.mo -share/locale/si/LC_MESSAGES/vinagre.mo -share/locale/sl/LC_MESSAGES/vinagre.mo -share/locale/sq/LC_MESSAGES/vinagre.mo -share/locale/sr/LC_MESSAGES/vinagre.mo -share/locale/sr@latin/LC_MESSAGES/vinagre.mo -share/locale/sv/LC_MESSAGES/vinagre.mo -share/locale/ta/LC_MESSAGES/vinagre.mo -share/locale/te/LC_MESSAGES/vinagre.mo -share/locale/th/LC_MESSAGES/vinagre.mo -share/locale/tr/LC_MESSAGES/vinagre.mo -share/locale/vi/LC_MESSAGES/vinagre.mo -share/locale/uk/LC_MESSAGES/vinagre.mo -share/locale/zh_CN/LC_MESSAGES/vinagre.mo -share/locale/zh_HK/LC_MESSAGES/vinagre.mo -share/locale/zh_TW/LC_MESSAGES/vinagre.mo -share/mime/application/x-remote-connection.xml -share/mime/application/x-vnc.xml -share/mime/packages/vinagre-mime.xml -share/omf/vinagre/vinagre-C.omf -share/omf/vinagre/vinagre-ca.omf -share/omf/vinagre/vinagre-cs.omf -share/omf/vinagre/vinagre-de.omf -share/omf/vinagre/vinagre-en_GB.omf -share/omf/vinagre/vinagre-es.omf -share/omf/vinagre/vinagre-fr.omf -share/omf/vinagre/vinagre-it.omf -share/omf/vinagre/vinagre-oc.omf -share/omf/vinagre/vinagre-pt.omf -share/omf/vinagre/vinagre-pt_BR.omf -share/omf/vinagre/vinagre-sq.omf -share/omf/vinagre/vinagre-sv.omf -share/omf/vinagre/vinagre-th.omf -%%DATADIR%%/GNOME_VinagreApplet.xml -%%DATADIR%%/vinagre-ui.xml -%%DATADIR%%/vinagre.glade -@dirrm %%DATADIR%% -@dirrm share/omf/vinagre -@dirrm share/gnome/help/vinagre/th/figures -@dirrm share/gnome/help/vinagre/th -@dirrm share/gnome/help/vinagre/sv/figures -@dirrm share/gnome/help/vinagre/sv -@dirrm share/gnome/help/vinagre/sq/figures -@dirrm share/gnome/help/vinagre/sq -@dirrm share/gnome/help/vinagre/pt_BR/figures -@dirrm share/gnome/help/vinagre/pt_BR -@dirrm share/gnome/help/vinagre/pt/figures -@dirrm share/gnome/help/vinagre/pt -@dirrm share/gnome/help/vinagre/oc/figures -@dirrm share/gnome/help/vinagre/oc -@dirrm share/gnome/help/vinagre/it/figures -@dirrm share/gnome/help/vinagre/it -@dirrm share/gnome/help/vinagre/fr/figures -@dirrm share/gnome/help/vinagre/fr -@dirrm share/gnome/help/vinagre/es/figures -@dirrm share/gnome/help/vinagre/es -@dirrm share/gnome/help/vinagre/en_GB/figures -@dirrm share/gnome/help/vinagre/en_GB -@dirrm share/gnome/help/vinagre/de/figures -@dirrm share/gnome/help/vinagre/de -@dirrm share/gnome/help/vinagre/cs/figures -@dirrm share/gnome/help/vinagre/cs -@dirrm share/gnome/help/vinagre/ca/figures -@dirrm share/gnome/help/vinagre/ca -@dirrm share/gnome/help/vinagre/C/figures -@dirrm share/gnome/help/vinagre/C -@dirrm share/gnome/help/vinagre -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/vino/Makefile b/net/vino/Makefile deleted file mode 100644 index 4e22babe2..000000000 --- a/net/vino/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: vino -# Date created: 16 July 2004 -# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org> -# -# $FreeBSD$ -# $MCom: ports/net/vino/Makefile,v 1.67 2009/03/08 01:22:51 marcus Exp $ -# - -PORTNAME= vino -PORTVERSION= 2.26.0 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= VNC server that allows for remote access to your GNOME desktop - -LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls \ - unique-1.0.2:${PORTSDIR}/x11-toolkits/unique - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix intlhack gnomehack gnomepanel -USE_XORG= xtst -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -CONFIGURE_ARGS= --enable-session-support -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= vino-server.schemas - -.if !defined(WITHOUT_NOTIFY) -LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify -CONFIGURE_ARGS+=--enable-libnotify=yes -.else -CONFIGURE_ARGS+=--enable-libnotify=no -.endif - -.include <bsd.port.mk> diff --git a/net/vino/distinfo b/net/vino/distinfo deleted file mode 100644 index b2e2fc193..000000000 --- a/net/vino/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/vino-2.26.0.tar.bz2) = 7a10464824d8446411b90c162d34401e -SHA256 (gnome2/vino-2.26.0.tar.bz2) = 1dfad6b20f99b3f8c79b265c2e71e19ad206317e38b1d167debb41fc9e6d94fb -SIZE (gnome2/vino-2.26.0.tar.bz2) = 710542 diff --git a/net/vino/files/patch-configure b/net/vino/files/patch-configure deleted file mode 100644 index c7da75af7..000000000 --- a/net/vino/files/patch-configure +++ /dev/null @@ -1,28 +0,0 @@ ---- configure.orig 2009-02-27 20:32:40.000000000 -0500 -+++ configure 2009-02-27 20:34:44.000000000 -0500 -@@ -17882,6 +17882,8 @@ cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - -+ #include <sys/types.h> -+ #include <sys/socket.h> - #include <ifaddrs.h> - - int -@@ -17896,6 +17898,7 @@ main () - } - _ACEOF - rm -f conftest.$ac_objext -+have_getifaddrs=yes - if { (ac_try="$ac_compile" - case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -@@ -17921,7 +17924,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 - fi - - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -- if test $"$have_getifaddrs" = "yes"; then -+ if test x"$have_getifaddrs" = x"yes"; then - HAVE_GETIFADDRS_TRUE= - HAVE_GETIFADDRS_FALSE='#' - else diff --git a/net/vino/files/patch-server_libvncserver_sockets.c b/net/vino/files/patch-server_libvncserver_sockets.c deleted file mode 100644 index 348ea91d3..000000000 --- a/net/vino/files/patch-server_libvncserver_sockets.c +++ /dev/null @@ -1,30 +0,0 @@ ---- server/libvncserver/sockets.c.orig 2009-02-13 08:11:38.000000000 -0500 -+++ server/libvncserver/sockets.c 2009-03-07 20:19:28.000000000 -0500 -@@ -668,6 +669,11 @@ NewSocketListenTCP(struct sockaddr *addr - { - int sock = -1; - int one = 1; -+#ifdef ENABLE_IPV6 -+#ifdef IPV6_V6ONLY -+ int off = 0; -+#endif -+#endif - - if ((sock = socket(addr->sa_family, SOCK_STREAM, 0)) < 0) - return -1; -@@ -677,6 +683,15 @@ NewSocketListenTCP(struct sockaddr *addr - return -1; - } - -+#ifdef ENABLE_IPV6 -+#ifdef IPV6_V6ONLY -+ if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off)) < 0) { -+ close(sock); -+ return -1; -+ } -+#endif -+#endif -+ - if (bind(sock, addr, len) < 0) { - close(sock); - return -1; diff --git a/net/vino/files/patch-server_vino-dbus-listener.c b/net/vino/files/patch-server_vino-dbus-listener.c deleted file mode 100644 index 8057b9410..000000000 --- a/net/vino/files/patch-server_vino-dbus-listener.c +++ /dev/null @@ -1,12 +0,0 @@ ---- server/vino-dbus-listener.c.orig 2009-02-27 20:36:08.000000000 -0500 -+++ server/vino-dbus-listener.c 2009-02-27 20:36:30.000000000 -0500 -@@ -35,6 +35,9 @@ - #include <string.h> - #include <unistd.h> - #include <netdb.h> -+#include <sys/types.h> -+#include <sys/socket.h> -+#include <netinet/in.h> - #include <net/if.h> - #include <arpa/inet.h> - diff --git a/net/vino/files/patch-server_vino-http.c b/net/vino/files/patch-server_vino-http.c deleted file mode 100644 index d51f95885..000000000 --- a/net/vino/files/patch-server_vino-http.c +++ /dev/null @@ -1,24 +0,0 @@ -Index: server/vino-http.c -diff -u -p server/vino-http.c.orig server/vino-http.c ---- server/vino-http.c.orig Tue Feb 27 19:47:35 2007 -+++ server/vino-http.c Sun Mar 25 20:56:41 2007 -@@ -595,6 +595,9 @@ vino_http_create_listening_socket (VinoH - { - #ifdef ENABLE_IPV6 - struct sockaddr_in6 saddr_in6; -+#ifdef IPV6_V6ONLY -+ int off = 0; -+#endif - #endif - struct sockaddr_in saddr_in; - struct sockaddr *saddr; -@@ -621,6 +624,9 @@ vino_http_create_listening_socket (VinoH - - #ifdef ENABLE_IPV6 - sock = socket (AF_INET6, SOCK_STREAM, 0); -+#ifdef IPV6_V6ONLY -+ setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off)); -+#endif - - memset (&saddr_in6, 0, sizeof (struct sockaddr_in6)); - saddr_in6.sin6_family = AF_INET6; diff --git a/net/vino/pkg-descr b/net/vino/pkg-descr deleted file mode 100644 index f56a27700..000000000 --- a/net/vino/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Vino is a VNC server for GNOME - it allows someone to remotely connect -to your desktop session using the RFB protocol. - -WWW: http://www.gnome.org diff --git a/net/vino/pkg-plist b/net/vino/pkg-plist deleted file mode 100644 index 1cde68375..000000000 --- a/net/vino/pkg-plist +++ /dev/null @@ -1,116 +0,0 @@ -bin/vino-passwd -bin/vino-preferences -etc/xdg/autostart/vino-server.desktop -libexec/vino-server -share/applications/vino-preferences.desktop -share/locale/ar/LC_MESSAGES/vino.mo -share/locale/as/LC_MESSAGES/vino.mo -share/locale/ast/LC_MESSAGES/vino.mo -share/locale/az/LC_MESSAGES/vino.mo -share/locale/be@latin/LC_MESSAGES/vino.mo -share/locale/bg/LC_MESSAGES/vino.mo -share/locale/bn/LC_MESSAGES/vino.mo -share/locale/bn_IN/LC_MESSAGES/vino.mo -share/locale/bs/LC_MESSAGES/vino.mo -share/locale/ca/LC_MESSAGES/vino.mo -share/locale/cs/LC_MESSAGES/vino.mo -share/locale/cy/LC_MESSAGES/vino.mo -share/locale/da/LC_MESSAGES/vino.mo -share/locale/de/LC_MESSAGES/vino.mo -share/locale/dz/LC_MESSAGES/vino.mo -share/locale/el/LC_MESSAGES/vino.mo -share/locale/en_CA/LC_MESSAGES/vino.mo -share/locale/en_GB/LC_MESSAGES/vino.mo -share/locale/es/LC_MESSAGES/vino.mo -share/locale/et/LC_MESSAGES/vino.mo -share/locale/eu/LC_MESSAGES/vino.mo -share/locale/fa/LC_MESSAGES/vino.mo -share/locale/fi/LC_MESSAGES/vino.mo -share/locale/fr/LC_MESSAGES/vino.mo -share/locale/gl/LC_MESSAGES/vino.mo -share/locale/gu/LC_MESSAGES/vino.mo -share/locale/he/LC_MESSAGES/vino.mo -share/locale/hi/LC_MESSAGES/vino.mo -share/locale/hr/LC_MESSAGES/vino.mo -share/locale/hu/LC_MESSAGES/vino.mo -share/locale/id/LC_MESSAGES/vino.mo -share/locale/it/LC_MESSAGES/vino.mo -share/locale/ja/LC_MESSAGES/vino.mo -share/locale/ka/LC_MESSAGES/vino.mo -share/locale/kn/LC_MESSAGES/vino.mo -share/locale/ko/LC_MESSAGES/vino.mo -share/locale/ku/LC_MESSAGES/vino.mo -share/locale/lt/LC_MESSAGES/vino.mo -share/locale/lv/LC_MESSAGES/vino.mo -share/locale/mk/LC_MESSAGES/vino.mo -share/locale/ml/LC_MESSAGES/vino.mo -share/locale/mn/LC_MESSAGES/vino.mo -share/locale/mr/LC_MESSAGES/vino.mo -share/locale/ms/LC_MESSAGES/vino.mo -share/locale/nb/LC_MESSAGES/vino.mo -share/locale/ne/LC_MESSAGES/vino.mo -share/locale/nl/LC_MESSAGES/vino.mo -share/locale/nn/LC_MESSAGES/vino.mo -share/locale/oc/LC_MESSAGES/vino.mo -share/locale/or/LC_MESSAGES/vino.mo -share/locale/pa/LC_MESSAGES/vino.mo -share/locale/pl/LC_MESSAGES/vino.mo -share/locale/pt/LC_MESSAGES/vino.mo -share/locale/pt_BR/LC_MESSAGES/vino.mo -share/locale/ro/LC_MESSAGES/vino.mo -share/locale/ru/LC_MESSAGES/vino.mo -share/locale/rw/LC_MESSAGES/vino.mo -share/locale/si/LC_MESSAGES/vino.mo -share/locale/sk/LC_MESSAGES/vino.mo -share/locale/sl/LC_MESSAGES/vino.mo -share/locale/sq/LC_MESSAGES/vino.mo -share/locale/sr/LC_MESSAGES/vino.mo -share/locale/sr@latin/LC_MESSAGES/vino.mo -share/locale/sv/LC_MESSAGES/vino.mo -share/locale/ta/LC_MESSAGES/vino.mo -share/locale/te/LC_MESSAGES/vino.mo -share/locale/th/LC_MESSAGES/vino.mo -share/locale/tr/LC_MESSAGES/vino.mo -share/locale/ug/LC_MESSAGES/vino.mo -share/locale/uk/LC_MESSAGES/vino.mo -share/locale/vi/LC_MESSAGES/vino.mo -share/locale/wa/LC_MESSAGES/vino.mo -share/locale/xh/LC_MESSAGES/vino.mo -share/locale/zh_CN/LC_MESSAGES/vino.mo -share/locale/zh_HK/LC_MESSAGES/vino.mo -share/locale/zh_TW/LC_MESSAGES/vino.mo -%%DATADIR%%/vino-preferences.glade -%%DATADIR%%/vino-prompt.glade -%%DATADIR%%/webservices -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/print/freetype2/Makefile b/print/freetype2/Makefile deleted file mode 100644 index a163d1ba8..000000000 --- a/print/freetype2/Makefile +++ /dev/null @@ -1,83 +0,0 @@ -# New ports collection makefile for: freetype -# Date created: January 24, 1998 -# Whom: jseger@FreeBSD.org -# -# $FreeBSD$ -# $MCom: ports/print/freetype2/Makefile,v 1.15 2009/03/27 18:56:24 marcus Exp $ -# - -PORTNAME= freetype2 -PORTVERSION= 2.3.9 -CATEGORIES= print -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S,%SUBDIR%,freetype,} \ - http://sunsite.cnlab-switch.ch/ftp/mirror/freetype/%SUBDIR%/ \ - http://www.funet.fi/pub/mirrors/ftp.freetype.org/%SUBDIR%/ \ - http://ftp.sunet.se/pub/text-processing/freetype/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/freetype/&,} \ - ftp://ftp.freetype.org/freetype/%SUBDIR%/ -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME:S/2//}-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A free and portable TrueType font rendering engine - -USE_AUTOTOOLS= libtool:15 -USE_BZIP2= yes -USE_GMAKE= yes -MAKE_JOBS_SAFE= yes -MAKE_ENV= TOP="" -USE_LDCONFIG= yes -GNU_CONFIGURE= yes -USE_GNOME= gnometarget pkgconfig -LIBTOOLFILES= builds/unix/configure -CONFIGURE_ARGS= --disable-nls -CONFIGURE_WRKSRC= ${WRKSRC}/builds/unix - -.if defined(WITH_LCD_FILTERING) -CFLAGS+= -DFT_CONFIG_OPTION_SUBPIXEL_RENDERING -.endif - -.if defined(WITH_CJK) -#PATCH_SITES+= http://lwj-hinet.myweb.hinet.net/ \ -# ftp://local-distfiles.freebsd.org.cn/pub/china-ports/hamigua/ \ -# http://bsdchat.com/dist/firefly-cjk-patchset/ -#PATCHFILES+= cjk-freetype-2.1.10-20051219.patch.gz -#PATCH_DIST_STRIP+= -p1 -.endif - -pre-everything:: -.if !defined(WITHOUT_TTF_BYTECODE_ENABLED) - @${ECHO_MSG} - @${ECHO_MSG} "You may want not to compile a bytecode interpreter into the" - @${ECHO_MSG} "TrueType driver. Without this you will only compile the code" - @${ECHO_MSG} "necessary to load TrueType glyphs without hinting." - @${ECHO_MSG} - @${ECHO_MSG} "Hit Ctrl-C now and use \"make WITHOUT_TTF_BYTECODE_ENABLED=yes\"" - @${ECHO_MSG} - @${ECHO_MSG} "Note that there are important patent issues related to the" - @${ECHO_MSG} "use of the interpreter." - @${ECHO_MSG} -.endif -.if !defined(WITH_LCD_FILTERING) - @${ECHO_MSG} - @${ECHO_MSG} "You may want to enable LCD filtering." - @${ECHO_MSG} - @${ECHO_MSG} "Hit Ctrl-C now and use \"make WITH_LCD_FILTERING=yes\"" - @${ECHO_MSG} - @${ECHO_MSG} "Note that there are possible patent issues related to the" - @${ECHO_MSG} "use of the LCD filtering technology." - @${ECHO_MSG} -.endif - -pre-patch: - @${REINPLACE_CMD} -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \ - ${WRKSRC}/builds/unix/install.mk -.if !defined(WITHOUT_TTF_BYTECODE_ENABLED) - @${REINPLACE_CMD} -e '/#define TT_CONFIG_OPTION_BYTECODE_INTERPRETER/s,/\* \(.*\) \*/,\1,; /#define TT_CONFIG_OPTION_UNPATENTED_HINTING/s,^\(.*\),/* \1 \*/,' \ - ${WRKSRC}/include/freetype/config/ftoption.h -.endif - -post-configure: - @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} setup) - -.include <bsd.port.mk> diff --git a/print/freetype2/distinfo b/print/freetype2/distinfo deleted file mode 100644 index 90082855f..000000000 --- a/print/freetype2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (freetype-2.3.9.tar.bz2) = d76233108aca9c9606cdbd341562ad9a -SHA256 (freetype-2.3.9.tar.bz2) = 51a033bce9904d73e0821e8e2bba24bd319619d7d1b2e9eeccac611580242ab6 -SIZE (freetype-2.3.9.tar.bz2) = 1363190 diff --git a/print/freetype2/files/patch-aa b/print/freetype2/files/patch-aa deleted file mode 100644 index f18618ec8..000000000 --- a/print/freetype2/files/patch-aa +++ /dev/null @@ -1,24 +0,0 @@ ---- builds/unix/detect.mk.orig 2006-12-09 13:51:54.000000000 -0500 -+++ builds/unix/detect.mk 2007-07-06 12:55:05.000000000 -0400 -@@ -21,6 +21,9 @@ ifeq ($(PLATFORM),ansi) - is_unix := $(strip $(wildcard /sbin/init) \ - $(wildcard /usr/sbin/init) \ - $(wildcard /hurd/auth)) -+ # FreeBSD is "unix" so just mandate this to fix the build in -+ # jails that do not have init (see PR#113470). -+ is_unix := true - ifneq ($(is_unix),) - - PLATFORM := unix -@@ -79,9 +82,9 @@ ifeq ($(PLATFORM),unix) - ifdef must_configure - ifneq ($(have_Makefile),) - # we are building FT2 not in the src tree -- $(TOP_DIR)/builds/unix/configure $(value CFG) -+# $(TOP_DIR)/builds/unix/configure $(value CFG) - else -- cd builds/unix; ./configure $(value CFG) -+# cd builds/unix; ./configure $(value CFG) - endif - endif - diff --git a/print/freetype2/files/patch-builds::unix::freetype-config.in b/print/freetype2/files/patch-builds::unix::freetype-config.in deleted file mode 100644 index ca50202de..000000000 --- a/print/freetype2/files/patch-builds::unix::freetype-config.in +++ /dev/null @@ -1,17 +0,0 @@ ---- builds/unix/freetype-config.in.orig Sun Jan 9 21:18:15 2005 -+++ builds/unix/freetype-config.in Sun Jan 9 21:18:57 2005 -@@ -105,12 +105,8 @@ - fi - - if test "$echo_cflags" = "yes" ; then -- cflags="-I$includedir/freetype2" -- if test "$includedir" != "/usr/include" ; then -- echo $cflags -I$includedir -- else -- echo $cflags -- fi -+ cflags="-I@includedir@/freetype2 -I@includedir@" -+ echo $cflags - fi - - if test "$echo_libs" = "yes" ; then diff --git a/print/freetype2/pkg-descr b/print/freetype2/pkg-descr deleted file mode 100644 index 57ec2a4c6..000000000 --- a/print/freetype2/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -This includes some tools that are in FreeType 1's contrib directory. - -ttf2pfb: Converting TrueType fonts to the Postscript Type 1 format. -ttf2pk: A simple conversion tool to bring TrueType quality to the - TeX world. -ttf2bdf: Produce bitmapped fonts from TrueType files for your X11 - applications. -ttfbanner: make posters using a TrueType font - -WWW: http://freetype.sourceforge.net/ diff --git a/print/freetype2/pkg-plist b/print/freetype2/pkg-plist deleted file mode 100644 index fd0ccd25e..000000000 --- a/print/freetype2/pkg-plist +++ /dev/null @@ -1,57 +0,0 @@ -bin/freetype-config -include/freetype2/freetype/config/ftconfig.h -include/freetype2/freetype/config/ftheader.h -include/freetype2/freetype/config/ftmodule.h -include/freetype2/freetype/config/ftoption.h -include/freetype2/freetype/config/ftstdlib.h -include/freetype2/freetype/freetype.h -include/freetype2/freetype/ftadvanc.h -include/freetype2/freetype/ftbbox.h -include/freetype2/freetype/ftbdf.h -include/freetype2/freetype/ftbitmap.h -include/freetype2/freetype/ftcache.h -include/freetype2/freetype/ftchapters.h -include/freetype2/freetype/ftcid.h -include/freetype2/freetype/fterrdef.h -include/freetype2/freetype/fterrors.h -include/freetype2/freetype/ftgasp.h -include/freetype2/freetype/ftglyph.h -include/freetype2/freetype/ftgxval.h -include/freetype2/freetype/ftgzip.h -include/freetype2/freetype/ftimage.h -include/freetype2/freetype/ftincrem.h -include/freetype2/freetype/ftlcdfil.h -include/freetype2/freetype/ftlist.h -include/freetype2/freetype/ftlzw.h -include/freetype2/freetype/ftmac.h -include/freetype2/freetype/ftmm.h -include/freetype2/freetype/ftmodapi.h -include/freetype2/freetype/ftmoderr.h -include/freetype2/freetype/ftotval.h -include/freetype2/freetype/ftoutln.h -include/freetype2/freetype/ftpfr.h -include/freetype2/freetype/ftrender.h -include/freetype2/freetype/ftsizes.h -include/freetype2/freetype/ftsnames.h -include/freetype2/freetype/ftstroke.h -include/freetype2/freetype/ftsynth.h -include/freetype2/freetype/ftsystem.h -include/freetype2/freetype/fttrigon.h -include/freetype2/freetype/fttypes.h -include/freetype2/freetype/ftwinfnt.h -include/freetype2/freetype/ftxf86.h -include/freetype2/freetype/t1tables.h -include/freetype2/freetype/ttnameid.h -include/freetype2/freetype/tttables.h -include/freetype2/freetype/tttags.h -include/freetype2/freetype/ttunpat.h -include/ft2build.h -lib/libfreetype.a -lib/libfreetype.la -lib/libfreetype.so -lib/libfreetype.so.9 -libdata/pkgconfig/freetype2.pc -share/aclocal/freetype2.m4 -@dirrm include/freetype2/freetype/config -@dirrm include/freetype2/freetype -@dirrm include/freetype2 diff --git a/security/gnome-keyring/Makefile b/security/gnome-keyring/Makefile deleted file mode 100644 index 315c25059..000000000 --- a/security/gnome-keyring/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: gnomekeyring -# Date Created: 08 December 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/security/gnome-keyring/Makefile,v 1.75 2009/03/09 23:26:38 mezz Exp $ -# - -PORTNAME= gnome-keyring -PORTVERSION= 2.26.0 -CATEGORIES= security gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A program that keeps passwords and other secrets - -LIB_DEPENDS= tasn1.4:${PORTSDIR}/security/libtasn1 \ - gcrypt.16:${PORTSDIR}/security/libgcrypt - -USE_BZIP2= yes -USE_GNOME= gnomehack gnomeprefix gtk20 ltverhack intlhack gconf2 -USE_GMAKE= yes -USE_GETTEXT= yes -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -CONFIGURE_ARGS= --with-pam-dir="${PREFIX}/lib" -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -GCONF_SCHEMAS= gnome-keyring.schemas - -OPTIONS= HAL "Use HAL for keys on removable drives" on - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_HAL) -LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal -CONFIGURE_ARGS+=--enable-hal -.else -CONFIGURE_ARGS+=--disable-hal -.endif - -.include <bsd.port.post.mk> diff --git a/security/gnome-keyring/distinfo b/security/gnome-keyring/distinfo deleted file mode 100644 index f34ad439b..000000000 --- a/security/gnome-keyring/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-keyring-2.26.0.tar.bz2) = 0395fcf79b990465030a2795dcddacb9 -SHA256 (gnome2/gnome-keyring-2.26.0.tar.bz2) = 7acda11db2eb07b2f68a1a506203fe95141954acb10c394850418fd04ed80a07 -SIZE (gnome2/gnome-keyring-2.26.0.tar.bz2) = 1211953 diff --git a/security/gnome-keyring/files/patch-configure b/security/gnome-keyring/files/patch-configure deleted file mode 100644 index 9aff6d9eb..000000000 --- a/security/gnome-keyring/files/patch-configure +++ /dev/null @@ -1,29 +0,0 @@ ---- configure.orig 2009-02-24 21:18:47.000000000 +0100 -+++ configure 2009-02-24 21:19:24.000000000 +0100 -@@ -18069,7 +18069,7 @@ - - { echo "$as_me:$LINENO: checking build test tools, unit tests, and -Werror" >&5 - echo $ECHO_N "checking build test tools, unit tests, and -Werror... $ECHO_C" >&6; } --if test "$enable_tests" == "yes"; then -+if test "$enable_tests" = "yes"; then - - cat >>confdefs.h <<_ACEOF - #define WITH_TESTS 1 -@@ -18085,7 +18085,7 @@ - tests_status="no" - fi - -- if test "$enable_tests" == "yes"; then -+ if test "$enable_tests" = "yes"; then - WITH_TESTS_TRUE= - WITH_TESTS_FALSE='#' - else -@@ -18100,7 +18100,7 @@ - fi - - --if test "$enable_coverage" == "yes"; then -+if test "$enable_coverage" = "yes"; then - CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage" - LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage" - fi diff --git a/security/gnome-keyring/files/patch-egg_egg-asn1.h b/security/gnome-keyring/files/patch-egg_egg-asn1.h deleted file mode 100644 index a3d4296af..000000000 --- a/security/gnome-keyring/files/patch-egg_egg-asn1.h +++ /dev/null @@ -1,14 +0,0 @@ ---- egg/egg-asn1.h.orig 2009-02-25 16:40:49.000000000 -0500 -+++ egg/egg-asn1.h 2009-02-25 16:41:21.000000000 -0500 -@@ -75,9 +75,9 @@ gchar* egg_asn1_read_dn - gchar* egg_asn1_read_dn_part (ASN1_TYPE asn, const gchar *part, const gchar *match); - - --glong egg_asn1_time_parse_utc (const gchar* value); -+time_t egg_asn1_time_parse_utc (const gchar* value); - --glong egg_asn1_time_parse_general (const gchar* value); -+time_t egg_asn1_time_parse_general (const gchar* value); - - - typedef void (*EggAsn1DnCallback) (guint index, GQuark oid, const guchar *value, diff --git a/security/gnome-keyring/files/patch-pkcs11_rpc-layer_Makefile.in b/security/gnome-keyring/files/patch-pkcs11_rpc-layer_Makefile.in deleted file mode 100644 index 32ffb1b09..000000000 --- a/security/gnome-keyring/files/patch-pkcs11_rpc-layer_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- pkcs11/rpc-layer/Makefile.in.orig 2009-02-24 21:22:45.000000000 +0100 -+++ pkcs11/rpc-layer/Makefile.in 2009-02-24 21:22:52.000000000 +0100 -@@ -348,7 +348,7 @@ gck_rpc_daemon_standalone_SOURCES = \ - gck-rpc-daemon-standalone.c - - gck_rpc_daemon_standalone_LDADD = \ -- -ldl libgck-rpc-layer.la \ -+ libgck-rpc-layer.la \ - $(top_builddir)/common/libgkr-common.la - - all: all-am diff --git a/security/gnome-keyring/pkg-descr b/security/gnome-keyring/pkg-descr deleted file mode 100644 index 75ce77c6d..000000000 --- a/security/gnome-keyring/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -Gnome-keyring is a program that keep password and other secrets for -users. It is run as a damon in the session, similar to ssh-agent, and -other applications can locate it by an environment variable. - -The program can manage several keyrings, each with its own master -password, and there is also a session keyring which is never stored to -disk, but forgotten when the session ends. - -The library libgnome-keyring is used by applications to integrate with -the gnome keyring system. However, at this point the library hasn't been -tested and used enought to consider the API to be publically -exposed. Therefore use of libgnome-keyring is at the moment limited to -internal use in the gnome desktop. However, we hope that the -gnome-keyring API will turn out useful and good, so that later it -can be made public for any application to use. - --- Gnome-keyring README diff --git a/security/gnome-keyring/pkg-plist b/security/gnome-keyring/pkg-plist deleted file mode 100644 index 9ba05cb2f..000000000 --- a/security/gnome-keyring/pkg-plist +++ /dev/null @@ -1,200 +0,0 @@ -bin/gnome-keyring -bin/gnome-keyring-daemon -etc/xdg/autostart/gnome-keyring-daemon.desktop -include/gcr/gcr-certificate-basics-widget.h -include/gcr/gcr-certificate-details-widget.h -include/gcr/gcr-certificate.h -include/gcr/gcr-importer.h -include/gcr/gcr-parser.h -include/gcr/gcr-types.h -include/gcr/gcr.h -include/gnome-keyring-1/gnome-keyring-memory.h -include/gnome-keyring-1/gnome-keyring-result.h -include/gnome-keyring-1/gnome-keyring.h -include/gp11/gp11.h -include/gp11/pkcs11.h -include/gp11/pkcs11g.h -include/gp11/pkcs11n.h -lib/gnome-keyring/devel/gck-ssh-store-standalone.a -lib/gnome-keyring/devel/gck-ssh-store-standalone.la -lib/gnome-keyring/devel/gck-ssh-store-standalone.so -lib/gnome-keyring/devel/gck-user-store-standalone.a -lib/gnome-keyring/devel/gck-user-store-standalone.la -lib/gnome-keyring/devel/gck-user-store-standalone.so -lib/gnome-keyring/gnome-keyring-pkcs11.a -lib/gnome-keyring/gnome-keyring-pkcs11.la -lib/gnome-keyring/gnome-keyring-pkcs11.so -lib/gnome-keyring/standalone/gck-roots-store-standalone.a -lib/gnome-keyring/standalone/gck-roots-store-standalone.la -lib/gnome-keyring/standalone/gck-roots-store-standalone.so -lib/libgcr.a -lib/libgcr.la -lib/libgcr.so -lib/libgcr.so.0 -lib/libgnome-keyring.a -lib/libgnome-keyring.la -lib/libgnome-keyring.so -lib/libgnome-keyring.so.0 -lib/libgp11.a -lib/libgp11.la -lib/libgp11.so -lib/libgp11.so.0 -lib/pam_gnome_keyring.a -lib/pam_gnome_keyring.la -lib/pam_gnome_keyring.so -libdata/pkgconfig/gcr-0.pc -libdata/pkgconfig/gnome-keyring-1.pc -libdata/pkgconfig/gp11-0.pc -libexec/gnome-keyring-ask -share/dbus-1/services/org.gnome.keyring.service -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-acl.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-attributes.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-daemon.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-find.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-generic-callbacks.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-item-info.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-items.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-keyring-info.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-keyrings.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-memory.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-misc.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-network.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-password.html -%%DOCSDIR%%/gnome-keyring-gnome-keyring-result.html -%%DOCSDIR%%/gnome-keyring.devhelp -%%DOCSDIR%%/gnome-keyring.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/doc/gp11/GP11Object.html -share/doc/gp11/ch01.html -share/doc/gp11/gp11-GP11Call.html -share/doc/gp11/gp11-gp11-test.html -share/doc/gp11/gp11-pkcs11.html -share/doc/gp11/gp11.devhelp -share/doc/gp11/gp11.devhelp2 -share/doc/gp11/home.png -share/doc/gp11/index.html -share/doc/gp11/index.sgml -share/doc/gp11/left.png -share/doc/gp11/right.png -share/doc/gp11/style.css -share/doc/gp11/up.png -share/gcr/ui/gcr-certificate-basics-widget.ui -share/gcr/ui/gcr-import-dialog.ui -share/locale/ar/LC_MESSAGES/gnome-keyring.mo -share/locale/ast/LC_MESSAGES/gnome-keyring.mo -share/locale/az/LC_MESSAGES/gnome-keyring.mo -share/locale/be/LC_MESSAGES/gnome-keyring.mo -share/locale/be@latin/LC_MESSAGES/gnome-keyring.mo -share/locale/bg/LC_MESSAGES/gnome-keyring.mo -share/locale/bn/LC_MESSAGES/gnome-keyring.mo -share/locale/bn_IN/LC_MESSAGES/gnome-keyring.mo -share/locale/bs/LC_MESSAGES/gnome-keyring.mo -share/locale/ca/LC_MESSAGES/gnome-keyring.mo -share/locale/cs/LC_MESSAGES/gnome-keyring.mo -share/locale/cy/LC_MESSAGES/gnome-keyring.mo -share/locale/da/LC_MESSAGES/gnome-keyring.mo -share/locale/de/LC_MESSAGES/gnome-keyring.mo -share/locale/dz/LC_MESSAGES/gnome-keyring.mo -share/locale/el/LC_MESSAGES/gnome-keyring.mo -share/locale/en_CA/LC_MESSAGES/gnome-keyring.mo -share/locale/en_GB/LC_MESSAGES/gnome-keyring.mo -share/locale/es/LC_MESSAGES/gnome-keyring.mo -share/locale/et/LC_MESSAGES/gnome-keyring.mo -share/locale/eu/LC_MESSAGES/gnome-keyring.mo -share/locale/fa/LC_MESSAGES/gnome-keyring.mo -share/locale/fi/LC_MESSAGES/gnome-keyring.mo -share/locale/fr/LC_MESSAGES/gnome-keyring.mo -share/locale/gl/LC_MESSAGES/gnome-keyring.mo -share/locale/gu/LC_MESSAGES/gnome-keyring.mo -share/locale/he/LC_MESSAGES/gnome-keyring.mo -share/locale/hi/LC_MESSAGES/gnome-keyring.mo -share/locale/hr/LC_MESSAGES/gnome-keyring.mo -share/locale/hu/LC_MESSAGES/gnome-keyring.mo -share/locale/id/LC_MESSAGES/gnome-keyring.mo -share/locale/is/LC_MESSAGES/gnome-keyring.mo -share/locale/it/LC_MESSAGES/gnome-keyring.mo -share/locale/ja/LC_MESSAGES/gnome-keyring.mo -share/locale/ka/LC_MESSAGES/gnome-keyring.mo -share/locale/kn/LC_MESSAGES/gnome-keyring.mo -share/locale/ko/LC_MESSAGES/gnome-keyring.mo -share/locale/lt/LC_MESSAGES/gnome-keyring.mo -share/locale/lv/LC_MESSAGES/gnome-keyring.mo -share/locale/mg/LC_MESSAGES/gnome-keyring.mo -share/locale/mk/LC_MESSAGES/gnome-keyring.mo -share/locale/ml/LC_MESSAGES/gnome-keyring.mo -share/locale/mn/LC_MESSAGES/gnome-keyring.mo -share/locale/mr/LC_MESSAGES/gnome-keyring.mo -share/locale/ms/LC_MESSAGES/gnome-keyring.mo -share/locale/nb/LC_MESSAGES/gnome-keyring.mo -share/locale/ne/LC_MESSAGES/gnome-keyring.mo -share/locale/nl/LC_MESSAGES/gnome-keyring.mo -share/locale/nn/LC_MESSAGES/gnome-keyring.mo -share/locale/oc/LC_MESSAGES/gnome-keyring.mo -share/locale/or/LC_MESSAGES/gnome-keyring.mo -share/locale/pa/LC_MESSAGES/gnome-keyring.mo -share/locale/pl/LC_MESSAGES/gnome-keyring.mo -share/locale/pt/LC_MESSAGES/gnome-keyring.mo -share/locale/pt_BR/LC_MESSAGES/gnome-keyring.mo -share/locale/ro/LC_MESSAGES/gnome-keyring.mo -share/locale/ru/LC_MESSAGES/gnome-keyring.mo -share/locale/rw/LC_MESSAGES/gnome-keyring.mo -share/locale/si/LC_MESSAGES/gnome-keyring.mo -share/locale/sk/LC_MESSAGES/gnome-keyring.mo -share/locale/sl/LC_MESSAGES/gnome-keyring.mo -share/locale/sq/LC_MESSAGES/gnome-keyring.mo -share/locale/sr/LC_MESSAGES/gnome-keyring.mo -share/locale/sr@latin/LC_MESSAGES/gnome-keyring.mo -share/locale/sv/LC_MESSAGES/gnome-keyring.mo -share/locale/ta/LC_MESSAGES/gnome-keyring.mo -share/locale/te/LC_MESSAGES/gnome-keyring.mo -share/locale/th/LC_MESSAGES/gnome-keyring.mo -share/locale/tr/LC_MESSAGES/gnome-keyring.mo -share/locale/uk/LC_MESSAGES/gnome-keyring.mo -share/locale/vi/LC_MESSAGES/gnome-keyring.mo -share/locale/xh/LC_MESSAGES/gnome-keyring.mo -share/locale/zh_CN/LC_MESSAGES/gnome-keyring.mo -share/locale/zh_HK/LC_MESSAGES/gnome-keyring.mo -share/locale/zh_TW/LC_MESSAGES/gnome-keyring.mo -@dirrm share/doc/gp11 -@dirrm %%DOCSDIR%% -@dirrm lib/gnome-keyring/standalone -@dirrm lib/gnome-keyring/devel -@dirrm lib/gnome-keyring -@dirrm include/gp11 -@dirrm include/gnome-keyring-1 -@dirrm include/gcr -@dirrm share/gcr/ui -@dirrm share/gcr -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast diff --git a/security/seahorse-plugins/Makefile b/security/seahorse-plugins/Makefile deleted file mode 100644 index f02262ff8..000000000 --- a/security/seahorse-plugins/Makefile +++ /dev/null @@ -1,92 +0,0 @@ -# New ports collection makefile for: seahorse-plugins -# Date created: 06 August 2008 -# Whom: Dave McKay <dave@mu.org> -# -# $FreeBSD$ -# $MCom: ports/security/seahorse-plugins/Makefile,v 1.9 2009/03/17 22:38:44 kwm Exp $ -# - -PORTNAME= seahorse-plugins -PORTVERSION= 2.26.0 -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 - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GECKO= firefox libxul -USE_GNOME= gnomehack intlhack gnomeprefix libglade2 gconf2 gnomedocutils -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -INSTALLS_OMF= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -OPTIONS= EPIPHANY "Enable Epiphany plug-in support" on \ - NAUTILUS "Enable the Nautilus component" on \ - GEDIT "Enable GEdit plug-in support" on \ - APPLET "Enable clipboard encryption applet" on - -GCONF_SCHEMAS= seahorse-plugins.schemas -MAN1= seahorse-agent.1 seahorse-tool.1 - -.include <bsd.port.pre.mk> - -.if ${GECKO}=="libxul" -CONFIGURE_ARGS+=--with-gecko=libxul-unstable -.else -CONFIGURE_ARGS+=--with-gecko=${GECKO} -.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 - -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 <bsd.port.post.mk> diff --git a/security/seahorse-plugins/distinfo b/security/seahorse-plugins/distinfo deleted file mode 100644 index 7897b7b55..000000000 --- a/security/seahorse-plugins/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/seahorse-plugins-2.26.0.tar.bz2) = 8936feb29cf9e4b935d1059ee4e416c6 -SHA256 (gnome2/seahorse-plugins-2.26.0.tar.bz2) = b56c3c947204dac0802332332feea6eee282616a654b92d3135340cb842bf377 -SIZE (gnome2/seahorse-plugins-2.26.0.tar.bz2) = 1350051 diff --git a/security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c b/security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c deleted file mode 100644 index 4ecd84940..000000000 --- a/security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c +++ /dev/null @@ -1,32 +0,0 @@ ---- agent/seahorse-agent-io.c.orig Sun Aug 28 15:52:02 2005 -+++ agent/seahorse-agent-io.c Fri Oct 7 21:51:25 2005 -@@ -412,12 +412,18 @@ io_handler (GIOChannel *source, GIOCondi - gsize length; - GError *err = NULL; - gboolean ret = TRUE; -+ GIOStatus status; - - if (condition & G_IO_IN) { - /* Read 1 line from the io channel, including newline character */ -- g_io_channel_read_line (source, &string, &length, NULL, &err); -+ status = g_io_channel_read_line (source, &string, &length, NULL, &err); - -- if (err != NULL) { -+ if (status == G_IO_STATUS_EOF) { -+ free_conn (cn); -+ ret = FALSE; -+ } -+ -+ else if (err != NULL) { - g_critical ("couldn't read from socket: %s", err->message); - g_clear_error (&err); - free_conn (cn); -@@ -434,7 +440,7 @@ io_handler (GIOChannel *source, GIOCondi - g_free (string); - } - -- if (cn && condition & G_IO_HUP) { -+ else if (cn && condition & G_IO_HUP) { - free_conn (cn); - ret = FALSE; /* removes watch */ - } diff --git a/security/seahorse-plugins/files/patch-agent_seahorse-agent.h b/security/seahorse-plugins/files/patch-agent_seahorse-agent.h deleted file mode 100644 index 7ba32051e..000000000 --- a/security/seahorse-plugins/files/patch-agent_seahorse-agent.h +++ /dev/null @@ -1,11 +0,0 @@ ---- agent/seahorse-agent.h.orig 2008-08-06 01:22:16.000000000 -0400 -+++ agent/seahorse-agent.h 2008-08-06 01:22:27.000000000 -0400 -@@ -22,6 +22,8 @@ - #ifndef __SEAHORSE_AGENT_H__ - #define __SEAHORSE_AGENT_H__ - -+#include <sys/types.h> -+ - #include <glib.h> - #include <gconf/gconf-client.h> - #include <gconf/gconf.h> diff --git a/security/seahorse-plugins/pkg-descr b/security/seahorse-plugins/pkg-descr deleted file mode 100644 index 1fda4fd5d..000000000 --- a/security/seahorse-plugins/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -These are various plug-ins for the Seahorse security management application. -They serve to extend Seahorse, and to integrate Seahorse into other -applications such as Nautilus, GEdit, etc. - -WWW: http://seahorse.sourceforge.net/ diff --git a/security/seahorse-plugins/pkg-plist b/security/seahorse-plugins/pkg-plist deleted file mode 100644 index 1ff664f8c..000000000 --- a/security/seahorse-plugins/pkg-plist +++ /dev/null @@ -1,239 +0,0 @@ -bin/seahorse-agent -bin/seahorse-preferences -bin/seahorse-tool -%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/libseahorseextension.a -%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/libseahorseextension.la -%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/libseahorseextension.so -%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/seahorse.ephy-extension -%%GEDIT%%lib/gedit-2/plugins/libseahorse-pgp.a -%%GEDIT%%lib/gedit-2/plugins/libseahorse-pgp.la -%%GEDIT%%lib/gedit-2/plugins/libseahorse-pgp.so -%%GEDIT%%lib/gedit-2/plugins/seahorse-pgp.gedit-plugin -%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-seahorse.a -%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-seahorse.la -%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-seahorse.so -lib/seahorse/seahorse-applet -libdata/bonobo/servers/GNOME_SeahorseApplet.server -share/applications/seahorse-pgp-encrypted.desktop -share/applications/seahorse-pgp-keys.desktop -share/applications/seahorse-pgp-preferences.desktop -share/applications/seahorse-pgp-signature.desktop -share/gnome-2.0/ui/GNOME_SeahorseApplet.xml -share/gnome/help/seahorse-applet/C/legal.xml -share/gnome/help/seahorse-applet/C/seahorse-applet.xml -share/gnome/help/seahorse-applet/es/seahorse-applet.xml -share/gnome/help/seahorse-applet/fr/seahorse-applet.xml -share/gnome/help/seahorse-applet/it/seahorse-applet.xml -share/gnome/help/seahorse-applet/oc/seahorse-applet.xml -share/gnome/help/seahorse-applet/ru/seahorse-applet.xml -share/gnome/help/seahorse-applet/sv/seahorse-applet.xml -share/gnome/help/seahorse-applet/vi/seahorse-applet.xml -share/gnome/help/seahorse-plugins/C/legal.xml -share/gnome/help/seahorse-plugins/C/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/ca/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/cs/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/de/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/el/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/en_GB/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/es/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/fr/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/it/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/oc/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/ru/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/sv/seahorse-plugins.xml -share/gnome/help/seahorse-plugins/vi/seahorse-plugins.xml -share/icons/hicolor/48x48/apps/seahorse-applet.png -share/icons/hicolor/scalable/apps/seahorse-applet.svg -share/locale/ar/LC_MESSAGES/seahorse-plugins.mo -share/locale/as/LC_MESSAGES/seahorse-plugins.mo -share/locale/az/LC_MESSAGES/seahorse-plugins.mo -share/locale/be@latin/LC_MESSAGES/seahorse-plugins.mo -share/locale/bg/LC_MESSAGES/seahorse-plugins.mo -share/locale/bn/LC_MESSAGES/seahorse-plugins.mo -share/locale/bn_IN/LC_MESSAGES/seahorse-plugins.mo -share/locale/ca/LC_MESSAGES/seahorse-plugins.mo -share/locale/cs/LC_MESSAGES/seahorse-plugins.mo -share/locale/da/LC_MESSAGES/seahorse-plugins.mo -share/locale/de/LC_MESSAGES/seahorse-plugins.mo -share/locale/dz/LC_MESSAGES/seahorse-plugins.mo -share/locale/el/LC_MESSAGES/seahorse-plugins.mo -share/locale/en_CA/LC_MESSAGES/seahorse-plugins.mo -share/locale/en_GB/LC_MESSAGES/seahorse-plugins.mo -share/locale/es/LC_MESSAGES/seahorse-plugins.mo -share/locale/et/LC_MESSAGES/seahorse-plugins.mo -share/locale/eu/LC_MESSAGES/seahorse-plugins.mo -share/locale/fi/LC_MESSAGES/seahorse-plugins.mo -share/locale/fr/LC_MESSAGES/seahorse-plugins.mo -share/locale/ga/LC_MESSAGES/seahorse-plugins.mo -share/locale/gl/LC_MESSAGES/seahorse-plugins.mo -share/locale/gu/LC_MESSAGES/seahorse-plugins.mo -share/locale/he/LC_MESSAGES/seahorse-plugins.mo -share/locale/hi/LC_MESSAGES/seahorse-plugins.mo -share/locale/hr/LC_MESSAGES/seahorse-plugins.mo -share/locale/hu/LC_MESSAGES/seahorse-plugins.mo -share/locale/it/LC_MESSAGES/seahorse-plugins.mo -share/locale/ja/LC_MESSAGES/seahorse-plugins.mo -share/locale/kn/LC_MESSAGES/seahorse-plugins.mo -share/locale/ko/LC_MESSAGES/seahorse-plugins.mo -share/locale/ku/LC_MESSAGES/seahorse-plugins.mo -share/locale/lt/LC_MESSAGES/seahorse-plugins.mo -share/locale/lv/LC_MESSAGES/seahorse-plugins.mo -share/locale/mk/LC_MESSAGES/seahorse-plugins.mo -share/locale/ml/LC_MESSAGES/seahorse-plugins.mo -share/locale/mr/LC_MESSAGES/seahorse-plugins.mo -share/locale/ms/LC_MESSAGES/seahorse-plugins.mo -share/locale/nb/LC_MESSAGES/seahorse-plugins.mo -share/locale/ne/LC_MESSAGES/seahorse-plugins.mo -share/locale/nl/LC_MESSAGES/seahorse-plugins.mo -share/locale/nn/LC_MESSAGES/seahorse-plugins.mo -share/locale/oc/LC_MESSAGES/seahorse-plugins.mo -share/locale/or/LC_MESSAGES/seahorse-plugins.mo -share/locale/pa/LC_MESSAGES/seahorse-plugins.mo -share/locale/pl/LC_MESSAGES/seahorse-plugins.mo -share/locale/pt/LC_MESSAGES/seahorse-plugins.mo -share/locale/pt_BR/LC_MESSAGES/seahorse-plugins.mo -share/locale/ru/LC_MESSAGES/seahorse-plugins.mo -share/locale/rw/LC_MESSAGES/seahorse-plugins.mo -share/locale/si/LC_MESSAGES/seahorse-plugins.mo -share/locale/sk/LC_MESSAGES/seahorse-plugins.mo -share/locale/sl/LC_MESSAGES/seahorse-plugins.mo -share/locale/sq/LC_MESSAGES/seahorse-plugins.mo -share/locale/sr/LC_MESSAGES/seahorse-plugins.mo -share/locale/sr@latin/LC_MESSAGES/seahorse-plugins.mo -share/locale/sv/LC_MESSAGES/seahorse-plugins.mo -share/locale/ta/LC_MESSAGES/seahorse-plugins.mo -share/locale/te/LC_MESSAGES/seahorse-plugins.mo -share/locale/th/LC_MESSAGES/seahorse-plugins.mo -share/locale/tr/LC_MESSAGES/seahorse-plugins.mo -share/locale/uk/LC_MESSAGES/seahorse-plugins.mo -share/locale/vi/LC_MESSAGES/seahorse-plugins.mo -share/locale/zh_CN/LC_MESSAGES/seahorse-plugins.mo -share/locale/zh_HK/LC_MESSAGES/seahorse-plugins.mo -share/locale/zh_TW/LC_MESSAGES/seahorse-plugins.mo -share/mime/packages/seahorse.xml -share/omf/seahorse-applet/seahorse-applet-C.omf -share/omf/seahorse-applet/seahorse-applet-es.omf -share/omf/seahorse-applet/seahorse-applet-fr.omf -share/omf/seahorse-applet/seahorse-applet-it.omf -share/omf/seahorse-applet/seahorse-applet-oc.omf -share/omf/seahorse-applet/seahorse-applet-ru.omf -share/omf/seahorse-applet/seahorse-applet-sv.omf -share/omf/seahorse-applet/seahorse-applet-vi.omf -share/omf/seahorse-plugins/seahorse-plugins-C.omf -share/omf/seahorse-plugins/seahorse-plugins-ca.omf -share/omf/seahorse-plugins/seahorse-plugins-cs.omf -share/omf/seahorse-plugins/seahorse-plugins-de.omf -share/omf/seahorse-plugins/seahorse-plugins-el.omf -share/omf/seahorse-plugins/seahorse-plugins-en_GB.omf -share/omf/seahorse-plugins/seahorse-plugins-es.omf -share/omf/seahorse-plugins/seahorse-plugins-fr.omf -share/omf/seahorse-plugins/seahorse-plugins-it.omf -share/omf/seahorse-plugins/seahorse-plugins-oc.omf -share/omf/seahorse-plugins/seahorse-plugins-ru.omf -share/omf/seahorse-plugins/seahorse-plugins-sv.omf -share/omf/seahorse-plugins/seahorse-plugins-vi.omf -share/pixmaps/seahorse-applet.svg -share/pixmaps/seahorse-plugins/22x22/seahorse-applet-encrypted.png -share/pixmaps/seahorse-plugins/22x22/seahorse-applet-key.png -share/pixmaps/seahorse-plugins/22x22/seahorse-applet-signed.png -share/pixmaps/seahorse-plugins/22x22/seahorse-applet-text.png -share/pixmaps/seahorse-plugins/22x22/seahorse-applet-unknown.png -share/pixmaps/seahorse-plugins/22x22/seahorse-key-personal.png -share/pixmaps/seahorse-plugins/22x22/seahorse-key.png -share/pixmaps/seahorse-plugins/22x22/seahorse-sign-bad.png -share/pixmaps/seahorse-plugins/22x22/seahorse-sign-ok.png -share/pixmaps/seahorse-plugins/22x22/seahorse-sign.png -share/pixmaps/seahorse-plugins/48x48/seahorse-applet-encrypted.png -share/pixmaps/seahorse-plugins/48x48/seahorse-applet-key.png -share/pixmaps/seahorse-plugins/48x48/seahorse-applet-signed.png -share/pixmaps/seahorse-plugins/48x48/seahorse-applet-text.png -share/pixmaps/seahorse-plugins/48x48/seahorse-applet-unknown.png -share/pixmaps/seahorse-plugins/48x48/seahorse-applet.png -share/pixmaps/seahorse-plugins/48x48/seahorse-key-personal.png -share/pixmaps/seahorse-plugins/48x48/seahorse-key.png -share/pixmaps/seahorse-plugins/48x48/seahorse-sign-bad.png -share/pixmaps/seahorse-plugins/48x48/seahorse-sign-ok.png -share/pixmaps/seahorse-plugins/48x48/seahorse-sign-unknown.png -share/pixmaps/seahorse-plugins/48x48/seahorse-sign.png -share/pixmaps/seahorse-plugins/scalable/seahorse-applet-encrypted.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-applet-key.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-applet-signed.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-applet-text.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-applet-unknown.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-applet.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-key-personal.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-key-ssh.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-key.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-person.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-share-keys.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-sign-bad.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-sign-ok.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-sign-unknown.svg -share/pixmaps/seahorse-plugins/scalable/seahorse-sign.svg -%%DATADIR%%/glade/seahorse-agent-cache.glade -%%DATADIR%%/glade/seahorse-applet-preferences.glade -%%DATADIR%%/glade/seahorse-multi-encrypt.glade -%%DATADIR%%/glade/seahorse-notify.glade -%%DATADIR%%/glade/seahorse-prefs.glade -%%DATADIR%%/glade/seahorse-progress.glade -%%EPIPHANY%%@dirrmtry lib/epiphany/%%EPHY_VERSION%%/extensions -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrmtry share/pixmaps/seahorse-plugins/scalable -@dirrmtry share/pixmaps/seahorse-plugins/48x48 -@dirrmtry share/pixmaps/seahorse-plugins/22x22 -@dirrmtry share/pixmaps/seahorse-plugins -@dirrm share/omf/seahorse-plugins -@dirrm share/omf/seahorse-applet -@dirrm share/gnome/help/seahorse-plugins/vi -@dirrm share/gnome/help/seahorse-plugins/sv -@dirrm share/gnome/help/seahorse-plugins/ru -@dirrm share/gnome/help/seahorse-plugins/oc -@dirrm share/gnome/help/seahorse-plugins/it -@dirrm share/gnome/help/seahorse-plugins/fr -@dirrm share/gnome/help/seahorse-plugins/es -@dirrm share/gnome/help/seahorse-plugins/en_GB -@dirrm share/gnome/help/seahorse-plugins/el -@dirrm share/gnome/help/seahorse-plugins/de -@dirrm share/gnome/help/seahorse-plugins/cs -@dirrm share/gnome/help/seahorse-plugins/ca -@dirrm share/gnome/help/seahorse-plugins/C -@dirrm share/gnome/help/seahorse-plugins -@dirrm share/gnome/help/seahorse-applet/vi -@dirrm share/gnome/help/seahorse-applet/sv -@dirrm share/gnome/help/seahorse-applet/ru -@dirrm share/gnome/help/seahorse-applet/oc -@dirrm share/gnome/help/seahorse-applet/it -@dirrm share/gnome/help/seahorse-applet/fr -@dirrm share/gnome/help/seahorse-applet/es -@dirrm share/gnome/help/seahorse-applet/C -@dirrm share/gnome/help/seahorse-applet -@dirrmtry share/applications -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/security/seahorse/Makefile b/security/seahorse/Makefile deleted file mode 100644 index a7a1e76db..000000000 --- a/security/seahorse/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: Seahorse -# Date created: 08 March 2000 -# Whom: Dave McKay <dave@mu.org> -# -# $FreeBSD$ -# $MCom: ports/security/seahorse/Makefile,v 1.78 2009/03/12 22:23:03 mezz Exp $ -# - -PORTNAME= seahorse -PORTVERSION= 2.26.0 -CATEGORIES= security gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME application for managing encryption keys (PGP, SSH) - -BUILD_DEPENDS= gpg:${PORTSDIR}/security/gnupg -RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg -LIB_DEPENDS= gpgme.17:${PORTSDIR}/security/gpgme \ - dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring \ - soup-2.4.1:${PORTSDIR}/devel/libsoup - -USE_XORG= sm -USE_LDCONFIG= yes -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomeprefix libglade2 gconf2 gnomedocutils -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= seahorse.schemas -MAN1= seahorse-daemon.1 - -OPTIONS= LDAP "Enable LDAP support" on \ - NOTIFY "Enable libnotify support" on \ - MDNS "Enable mDNS key sharing" on - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_LDAP) -USE_OPENLDAP= yes -.else -CONFIGURE_ARGS+=--disable-ldap -.endif - -.if !defined(WITHOUT_NOTIFY) -LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify -.else -CONFIGURE_ARGS+=--disable-libnotify -.endif - -.if !defined(WITHOUT_MDNS) -LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app -.else -CONFIGURE_ARGS+=--disable-sharing -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|" == "|" = "|g' \ - ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/security/seahorse/distinfo b/security/seahorse/distinfo deleted file mode 100644 index 5c23c096a..000000000 --- a/security/seahorse/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/seahorse-2.26.0.tar.bz2) = ddecca2181d4c9f0dfbe412b68508e5d -SHA256 (gnome2/seahorse-2.26.0.tar.bz2) = 7918c4fff6fa3d5fc303fdbd6bc7e7579ce47010174550d4e7fc9e0b3e69540e -SIZE (gnome2/seahorse-2.26.0.tar.bz2) = 2151482 diff --git a/security/seahorse/files/patch-common_seahorse-registry.c b/security/seahorse/files/patch-common_seahorse-registry.c deleted file mode 100644 index d3ab78c0d..000000000 --- a/security/seahorse/files/patch-common_seahorse-registry.c +++ /dev/null @@ -1,44 +0,0 @@ ---- common/seahorse-registry.c.orig 2009-02-14 19:20:38.000000000 +0100 -+++ common/seahorse-registry.c 2009-02-24 21:15:26.000000000 +0100 -@@ -51,6 +51,25 @@ - registry_singleton = NULL; - } - -+static guint registry_hash (gconstpointer key) -+{ -+ SeahorseRegistryType *rtype; -+ -+ rtype = (SeahorseRegistryType *) key; -+ -+ return (guint) rtype->type; -+} -+ -+static gboolean registry_equal (gconstpointer a, gconstpointer b) -+{ -+ SeahorseRegistryType *rta, *rtb; -+ -+ rta = (SeahorseRegistryType *) a; -+ rtb = (SeahorseRegistryType *) b; -+ -+ return (rta->type == rtb->type); -+} -+ - static void - keys_to_list (gpointer key, gpointer value, gpointer user_data) - { -@@ -63,13 +82,14 @@ - gpointer value, GDestroyNotify destroy_func) - { - GHashTable *set; -+ SeahorseRegistryType *rtype; - - g_return_if_fail (table); - g_return_if_fail (category); - - set = g_hash_table_lookup (table, GUINT_TO_POINTER (category)); - if (!set) { -- set = g_hash_table_new_full (g_direct_hash, g_direct_equal, destroy_func, NULL); -+ set = g_hash_table_new_full (registry_hash, registry_equal, destroy_func, NULL); - g_hash_table_replace (table, GUINT_TO_POINTER (category), set); - } - diff --git a/security/seahorse/files/patch-common_seahorse-registry.h b/security/seahorse/files/patch-common_seahorse-registry.h deleted file mode 100644 index f1f57de3b..000000000 --- a/security/seahorse/files/patch-common_seahorse-registry.h +++ /dev/null @@ -1,21 +0,0 @@ ---- common/seahorse-registry.h.orig 2008-11-23 18:26:42.000000000 -0500 -+++ common/seahorse-registry.h 2008-11-23 18:26:47.000000000 -0500 -@@ -35,6 +35,7 @@ G_BEGIN_DECLS - - typedef struct _SeahorseRegistry SeahorseRegistry; - typedef struct _SeahorseRegistryClass SeahorseRegistryClass; -+typedef struct _SeahorseRegistryType SeahorseRegistryType; - - struct _SeahorseRegistry { - GObject parent; -@@ -44,6 +45,10 @@ struct _SeahorseRegistryClass { - GObjectClass parent_class; - }; - -+struct _SeahorseRegistryType { -+ GType type; -+}; -+ - /* member functions */ - GType seahorse_registry_get_type (void) G_GNUC_CONST; - diff --git a/security/seahorse/files/patch-ssh_seahorse-ssh-operation.c b/security/seahorse/files/patch-ssh_seahorse-ssh-operation.c deleted file mode 100644 index d3528e2a7..000000000 --- a/security/seahorse/files/patch-ssh_seahorse-ssh-operation.c +++ /dev/null @@ -1,19 +0,0 @@ ---- ssh/seahorse-ssh-operation.c.orig 2008-07-21 18:15:51.000000000 -0400 -+++ ssh/seahorse-ssh-operation.c 2008-07-22 22:49:51.000000000 -0400 -@@ -280,11 +280,14 @@ askpass_handler (GIOChannel *source, GIO - const gchar *result = NULL; - - if (condition & G_IO_IN) { -+ GIOStatus status; - - /* Read 1 line from the io channel, including newline character */ -- g_io_channel_read_line (source, &string, &length, NULL, &err); -+ status = g_io_channel_read_line (source, &string, &length, NULL, &err); - -- if (err != NULL) { -+ if (status == G_IO_STATUS_EOF) { -+ ret = FALSE; -+ } else if (err != NULL) { - g_critical ("couldn't read from seahorse-ssh-askpass: %s", err->message); - g_clear_error (&err); - ret = FALSE; diff --git a/security/seahorse/pkg-descr b/security/seahorse/pkg-descr deleted file mode 100644 index ea4098271..000000000 --- a/security/seahorse/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Seahorse is a Gnome front end for GnuPG - the Gnu Privacy Guard program. - -It is a tool for secure communications and data storage. -Data encryption and digital signature creation can easily -be performed through a GUI and Key Management operations -can easily be carried out through an intuitive interface. - -WWW: http://seahorse.sourceforge.net/ diff --git a/security/seahorse/pkg-plist b/security/seahorse/pkg-plist deleted file mode 100644 index 0f64a8613..000000000 --- a/security/seahorse/pkg-plist +++ /dev/null @@ -1,264 +0,0 @@ -bin/seahorse -bin/seahorse-daemon -etc/xdg/autostart/seahorse-daemon.desktop -include/libcryptui/cryptui-key-chooser.h -include/libcryptui/cryptui-key-combo.h -include/libcryptui/cryptui-key-list.h -include/libcryptui/cryptui-key-store.h -include/libcryptui/cryptui-keyset.h -include/libcryptui/cryptui.h -lib/libcryptui.a -lib/libcryptui.la -lib/libcryptui.so -lib/libcryptui.so.0 -lib/seahorse/seahorse-ssh-askpass -lib/seahorse/xloadimage -libdata/pkgconfig/cryptui-0.0.pc -share/applications/seahorse.desktop -share/dbus-1/services/org.gnome.seahorse.service -share/doc/libcryptui/ch01.html -share/doc/libcryptui/home.png -share/doc/libcryptui/index.html -share/doc/libcryptui/index.sgml -share/doc/libcryptui/left.png -share/doc/libcryptui/libcryptui-CryptUIKeyChooser.html -share/doc/libcryptui/libcryptui-CryptUIKeyStore.html -share/doc/libcryptui/libcryptui-CryptUIKeyset.html -share/doc/libcryptui/libcryptui-cryptui-defines.html -share/doc/libcryptui/libcryptui-cryptui-key-combo.html -share/doc/libcryptui/libcryptui-cryptui-key-list.html -share/doc/libcryptui/libcryptui-cryptui-marshal.html -share/doc/libcryptui/libcryptui-cryptui.html -share/doc/libcryptui/libcryptui.devhelp -share/doc/libcryptui/libcryptui.devhelp2 -share/doc/libcryptui/right.png -share/doc/libcryptui/style.css -share/doc/libcryptui/up.png -share/gnome/help/seahorse/C/figures/seahorse-window.png -share/gnome/help/seahorse/C/legal.xml -share/gnome/help/seahorse/C/seahorse.xml -share/gnome/help/seahorse/ca/figures/seahorse-window.png -share/gnome/help/seahorse/ca/seahorse.xml -share/gnome/help/seahorse/de/figures/seahorse-window.png -share/gnome/help/seahorse/de/seahorse.xml -share/gnome/help/seahorse/el/figures/seahorse-window.png -share/gnome/help/seahorse/el/seahorse.xml -share/gnome/help/seahorse/en_GB/figures/seahorse-window.png -share/gnome/help/seahorse/en_GB/seahorse.xml -share/gnome/help/seahorse/es/figures/seahorse-window.png -share/gnome/help/seahorse/es/seahorse.xml -share/gnome/help/seahorse/eu/figures/seahorse-window.png -share/gnome/help/seahorse/eu/seahorse.xml -share/gnome/help/seahorse/fr/figures/seahorse-window.png -share/gnome/help/seahorse/fr/seahorse.xml -share/gnome/help/seahorse/it/figures/seahorse-window.png -share/gnome/help/seahorse/it/seahorse.xml -share/gnome/help/seahorse/oc/figures/seahorse-window.png -share/gnome/help/seahorse/oc/seahorse.xml -share/gnome/help/seahorse/ru/figures/seahorse-window.png -share/gnome/help/seahorse/ru/seahorse.xml -share/gnome/help/seahorse/sv/figures/seahorse-window.png -share/gnome/help/seahorse/sv/seahorse.xml -share/gnome/help/seahorse/vi/figures/seahorse-window.png -share/gnome/help/seahorse/vi/seahorse.xml -share/icons/hicolor/16x16/apps/seahorse-preferences.png -share/icons/hicolor/16x16/apps/seahorse.png -share/icons/hicolor/22x22/apps/seahorse-preferences.png -share/icons/hicolor/22x22/apps/seahorse.png -share/icons/hicolor/24x24/apps/seahorse-preferences.png -share/icons/hicolor/24x24/apps/seahorse.png -share/icons/hicolor/32x32/apps/seahorse-preferences.png -share/icons/hicolor/32x32/apps/seahorse.png -share/icons/hicolor/48x48/apps/seahorse-preferences.png -share/icons/hicolor/48x48/apps/seahorse.png -share/locale/ar/LC_MESSAGES/seahorse.mo -share/locale/az/LC_MESSAGES/seahorse.mo -share/locale/be@latin/LC_MESSAGES/seahorse.mo -share/locale/bg/LC_MESSAGES/seahorse.mo -share/locale/bn/LC_MESSAGES/seahorse.mo -share/locale/bn_IN/LC_MESSAGES/seahorse.mo -share/locale/ca/LC_MESSAGES/seahorse.mo -share/locale/cs/LC_MESSAGES/seahorse.mo -share/locale/da/LC_MESSAGES/seahorse.mo -share/locale/de/LC_MESSAGES/seahorse.mo -share/locale/dz/LC_MESSAGES/seahorse.mo -share/locale/el/LC_MESSAGES/seahorse.mo -share/locale/en_CA/LC_MESSAGES/seahorse.mo -share/locale/en_GB/LC_MESSAGES/seahorse.mo -share/locale/es/LC_MESSAGES/seahorse.mo -share/locale/et/LC_MESSAGES/seahorse.mo -share/locale/eu/LC_MESSAGES/seahorse.mo -share/locale/fi/LC_MESSAGES/seahorse.mo -share/locale/fr/LC_MESSAGES/seahorse.mo -share/locale/ga/LC_MESSAGES/seahorse.mo -share/locale/gl/LC_MESSAGES/seahorse.mo -share/locale/gu/LC_MESSAGES/seahorse.mo -share/locale/he/LC_MESSAGES/seahorse.mo -share/locale/hi/LC_MESSAGES/seahorse.mo -share/locale/hr/LC_MESSAGES/seahorse.mo -share/locale/hu/LC_MESSAGES/seahorse.mo -share/locale/it/LC_MESSAGES/seahorse.mo -share/locale/ja/LC_MESSAGES/seahorse.mo -share/locale/kn/LC_MESSAGES/seahorse.mo -share/locale/ku/LC_MESSAGES/seahorse.mo -share/locale/ko/LC_MESSAGES/seahorse.mo -share/locale/lt/LC_MESSAGES/seahorse.mo -share/locale/lv/LC_MESSAGES/seahorse.mo -share/locale/mk/LC_MESSAGES/seahorse.mo -share/locale/ml/LC_MESSAGES/seahorse.mo -share/locale/mr/LC_MESSAGES/seahorse.mo -share/locale/ms/LC_MESSAGES/seahorse.mo -share/locale/nb/LC_MESSAGES/seahorse.mo -share/locale/ne/LC_MESSAGES/seahorse.mo -share/locale/nl/LC_MESSAGES/seahorse.mo -share/locale/nn/LC_MESSAGES/seahorse.mo -share/locale/oc/LC_MESSAGES/seahorse.mo -share/locale/or/LC_MESSAGES/seahorse.mo -share/locale/pa/LC_MESSAGES/seahorse.mo -share/locale/pl/LC_MESSAGES/seahorse.mo -share/locale/pt/LC_MESSAGES/seahorse.mo -share/locale/pt_BR/LC_MESSAGES/seahorse.mo -share/locale/ru/LC_MESSAGES/seahorse.mo -share/locale/rw/LC_MESSAGES/seahorse.mo -share/locale/si/LC_MESSAGES/seahorse.mo -share/locale/sk/LC_MESSAGES/seahorse.mo -share/locale/sl/LC_MESSAGES/seahorse.mo -share/locale/sq/LC_MESSAGES/seahorse.mo -share/locale/sr/LC_MESSAGES/seahorse.mo -share/locale/sr@latin/LC_MESSAGES/seahorse.mo -share/locale/sv/LC_MESSAGES/seahorse.mo -share/locale/ta/LC_MESSAGES/seahorse.mo -share/locale/te/LC_MESSAGES/seahorse.mo -share/locale/th/LC_MESSAGES/seahorse.mo -share/locale/tr/LC_MESSAGES/seahorse.mo -share/locale/uk/LC_MESSAGES/seahorse.mo -share/locale/vi/LC_MESSAGES/seahorse.mo -share/locale/zh_CN/LC_MESSAGES/seahorse.mo -share/locale/zh_HK/LC_MESSAGES/seahorse.mo -share/locale/zh_TW/LC_MESSAGES/seahorse.mo -share/omf/seahorse/seahorse-C.omf -share/omf/seahorse/seahorse-ca.omf -share/omf/seahorse/seahorse-de.omf -share/omf/seahorse/seahorse-el.omf -share/omf/seahorse/seahorse-en_GB.omf -share/omf/seahorse/seahorse-es.omf -share/omf/seahorse/seahorse-eu.omf -share/omf/seahorse/seahorse-fr.omf -share/omf/seahorse/seahorse-it.omf -share/omf/seahorse/seahorse-oc.omf -share/omf/seahorse/seahorse-ru.omf -share/omf/seahorse/seahorse-sv.omf -share/omf/seahorse/seahorse-vi.omf -share/pixmaps/seahorse/22x22/seahorse-key-personal.png -share/pixmaps/seahorse/22x22/seahorse-key-ssh.png -share/pixmaps/seahorse/22x22/seahorse-key.png -share/pixmaps/seahorse/22x22/seahorse-person.png -share/pixmaps/seahorse/22x22/seahorse-share-keys.png -share/pixmaps/seahorse/22x22/seahorse-sign-bad.png -share/pixmaps/seahorse/22x22/seahorse-sign-ok.png -share/pixmaps/seahorse/22x22/seahorse-sign.png -share/pixmaps/seahorse/48x48/seahorse-key-personal.png -share/pixmaps/seahorse/48x48/seahorse-key-ssh.png -share/pixmaps/seahorse/48x48/seahorse-key.png -share/pixmaps/seahorse/48x48/seahorse-person.png -share/pixmaps/seahorse/48x48/seahorse-share-keys.png -share/pixmaps/seahorse/48x48/seahorse-sign-bad.png -share/pixmaps/seahorse/48x48/seahorse-sign-ok.png -share/pixmaps/seahorse/48x48/seahorse-sign-unknown.png -share/pixmaps/seahorse/48x48/seahorse-sign.png -share/pixmaps/seahorse/scalable/seahorse-key-personal.svg -share/pixmaps/seahorse/scalable/seahorse-key-ssh.svg -share/pixmaps/seahorse/scalable/seahorse-key.svg -share/pixmaps/seahorse/scalable/seahorse-person.svg -share/pixmaps/seahorse/scalable/seahorse-share-keys.svg -share/pixmaps/seahorse/scalable/seahorse-sign-bad.svg -share/pixmaps/seahorse/scalable/seahorse-sign-ok.svg -share/pixmaps/seahorse/scalable/seahorse-sign-unknown.svg -share/pixmaps/seahorse/scalable/seahorse-sign.svg -%%DATADIR%%/glade/seahorse-add-keyring.glade -%%DATADIR%%/glade/seahorse-add-keyserver.glade -%%DATADIR%%/glade/seahorse-add-subkey.glade -%%DATADIR%%/glade/seahorse-add-uid.glade -%%DATADIR%%/glade/seahorse-change-passphrase.glade -%%DATADIR%%/glade/seahorse-expires.glade -%%DATADIR%%/glade/seahorse-generate-select.glade -%%DATADIR%%/glade/seahorse-gkr-item-properties.glade -%%DATADIR%%/glade/seahorse-gkr-keyring.glade -%%DATADIR%%/glade/seahorse-key-manager.glade -%%DATADIR%%/glade/seahorse-key-manager.ui -%%DATADIR%%/glade/seahorse-keyserver-results.glade -%%DATADIR%%/glade/seahorse-keyserver-results.ui -%%DATADIR%%/glade/seahorse-keyserver-search.glade -%%DATADIR%%/glade/seahorse-keyserver-sync.glade -%%DATADIR%%/glade/seahorse-notify.glade -%%DATADIR%%/glade/seahorse-pgp-generate.glade -%%DATADIR%%/glade/seahorse-pgp-private-key-properties.glade -%%DATADIR%%/glade/seahorse-pgp-public-key-properties.glade -%%DATADIR%%/glade/seahorse-prefs.glade -%%DATADIR%%/glade/seahorse-progress.glade -%%DATADIR%%/glade/seahorse-revoke.glade -%%DATADIR%%/glade/seahorse-sign.glade -%%DATADIR%%/glade/seahorse-signer.glade -%%DATADIR%%/glade/seahorse-ssh-generate.glade -%%DATADIR%%/glade/seahorse-ssh-key-properties.glade -%%DATADIR%%/glade/seahorse-ssh-upload.glade -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrm share/pixmaps/seahorse/scalable -@dirrm share/pixmaps/seahorse/48x48 -@dirrm share/pixmaps/seahorse/22x22 -@dirrm share/pixmaps/seahorse -@dirrm share/omf/seahorse -@dirrm share/gnome/help/seahorse/vi/figures -@dirrm share/gnome/help/seahorse/vi -@dirrm share/gnome/help/seahorse/sv/figures -@dirrm share/gnome/help/seahorse/sv -@dirrm share/gnome/help/seahorse/ru/figures -@dirrm share/gnome/help/seahorse/ru -@dirrm share/gnome/help/seahorse/oc/figures -@dirrm share/gnome/help/seahorse/oc -@dirrm share/gnome/help/seahorse/it/figures -@dirrm share/gnome/help/seahorse/it -@dirrm share/gnome/help/seahorse/fr/figures -@dirrm share/gnome/help/seahorse/fr -@dirrm share/gnome/help/seahorse/eu/figures -@dirrm share/gnome/help/seahorse/eu -@dirrm share/gnome/help/seahorse/es/figures -@dirrm share/gnome/help/seahorse/es -@dirrm share/gnome/help/seahorse/en_GB/figures -@dirrm share/gnome/help/seahorse/en_GB -@dirrm share/gnome/help/seahorse/el/figures -@dirrm share/gnome/help/seahorse/el -@dirrm share/gnome/help/seahorse/de/figures -@dirrm share/gnome/help/seahorse/de -@dirrm share/gnome/help/seahorse/ca/figures -@dirrm share/gnome/help/seahorse/ca -@dirrm share/gnome/help/seahorse/C/figures -@dirrm share/gnome/help/seahorse/C -@dirrm share/gnome/help/seahorse -@dirrm share/doc/libcryptui -@dirrmtry share/applications -@dirrm lib/seahorse -@dirrm include/libcryptui -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/security/tuntun/Makefile b/security/tuntun/Makefile deleted file mode 100644 index acdfb884c..000000000 --- a/security/tuntun/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# New ports collection makefile for: tuntun -# Date created: 2008-09-16 -# Whom: Anderson S. Ferreira <anderson@cnpm.embrapa.br> -# -# $FreeBSD$ -# - -PORTNAME= tuntun -PORTVERSION= 0.3.1 -CATEGORIES= security gnome -MASTER_SITES= http://tuntun.googlecode.com/files/ - -MAINTAINER= anderson@cnpm.embrapa.br -COMMENT= A Gnome applet gui for OpenVPN - -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="`pkg-config --cflags libgnomeui-2.0`" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" -CONFIGURE_ARGS= --libdir=${PREFIX}/libdata/servers -USE_GMAKE= yes - -USE_GNOME= gnomehier intlhack gnomeprefix gnomehack gnomepanel glib20 - -.include <bsd.port.mk> diff --git a/security/tuntun/distinfo b/security/tuntun/distinfo deleted file mode 100644 index 4bc5cfab2..000000000 --- a/security/tuntun/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (tuntun-0.3.1.tar.gz) = 0bd7807e466cb2ea133a9478d4d15e61 -SHA256 (tuntun-0.3.1.tar.gz) = 4d4abca12fbf430402ef0189cfaf1a2d6551cf3faa570b81d18500503c004819 -SIZE (tuntun-0.3.1.tar.gz) = 558837 diff --git a/security/tuntun/files/patch-gnio b/security/tuntun/files/patch-gnio deleted file mode 100644 index e8ca5df1d..000000000 --- a/security/tuntun/files/patch-gnio +++ /dev/null @@ -1,46 +0,0 @@ ---- gnio.build.patch.orig 2008-09-16 08:20:43.000000000 -0300 -+++ gnio.build.patch 2008-09-16 11:08:44.000000000 -0300 -@@ -31,3 +31,43 @@ - bld.install_files('PREFIX', 'include/gnio', 'gnio/gi*.h') - bld.install_files('PREFIX', 'include/gnio', 'gnio/gn*.h') - bld.install_files('PREFIX', 'include/gnio', 'gnio/gr*.h') -+--- gnio/gnio/ginet4address.c.orig 2008-06-16 09:00:35.000000000 -0300 -++++ gnio/gnio/ginet4address.c 2008-09-16 09:39:55.000000000 -0300 -+@@ -23,6 +23,7 @@ -+ -+ #include <config.h> -+ #include <glib.h> -++#include <sys/types.h> -+ -+ #ifndef G_OS_WIN32 -+ # include <netinet/in.h> -+--- gnio/gnio/ginet6address.c.orig 2008-06-16 09:00:35.000000000 -0300 -++++ gnio/gnio/ginet6address.c 2008-09-16 09:39:55.000000000 -0300 -+@@ -27,6 +27,7 @@ -+ -+ #include <netinet/in.h> -+ #include <arpa/inet.h> -++#include <sys/socket.h> -+ -+ #include "ginet6address.h" -+ -+--- gnio/gnio/gresolver.c.orig 2008-07-09 18:15:16.000000000 -0300 -++++ gnio/gnio/gresolver.c 2008-09-16 09:39:55.000000000 -0300 -+@@ -24,6 +24,7 @@ -+ #include <config.h> -+ #include <glib.h> -+ #include <gio/gio.h> -++#include <sys/socket.h> -+ -+ #include <string.h> -+ #ifndef G_OS_WIN32 -+--- gnio/gnio/gsocket.c.orig 2008-07-09 18:15:16.000000000 -0300 -++++ gnio/gnio/gsocket.c 2008-09-16 09:39:55.000000000 -0300 -+@@ -27,6 +27,7 @@ -+ #include <gnio/gnio.h> -+ #include "gasynchelper.h" -+ #include "gnioenums.h" -++#include <sys/socket.h> -+ -+ #include <string.h> -+ #ifndef G_OS_WIN32 diff --git a/security/tuntun/files/patch-po b/security/tuntun/files/patch-po deleted file mode 100644 index c1116dd98..000000000 --- a/security/tuntun/files/patch-po +++ /dev/null @@ -1,11 +0,0 @@ ---- po/Makefile.in.in.orig 2008-09-16 11:15:56.000000000 -0300 -+++ po/Makefile.in.in 2008-09-16 11:16:40.000000000 -0300 -@@ -44,7 +44,7 @@ - INSTALL = @INSTALL@ - INSTALL_DATA = @INSTALL_DATA@ - --GMSGFMT = @GMSGFMT@ -+GMSGFMT = @MSGFMT@ - MSGFMT = @MSGFMT@ - XGETTEXT = @XGETTEXT@ - INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ diff --git a/security/tuntun/files/patch-tuntun.server b/security/tuntun/files/patch-tuntun.server deleted file mode 100644 index b8f75c012..000000000 --- a/security/tuntun/files/patch-tuntun.server +++ /dev/null @@ -1,10 +0,0 @@ ---- src/tuntun.server.in 2008-09-16 11:10:52.000000000 -0300 -+++ src/tuntun.server.in 2008-09-16 11:11:36.000000000 -0300 -@@ -1,6 +1,6 @@ - <oaf_info> - <oaf_server iid="OAFIID:GNOME_Tuntun_Factory" type="exe" -- location="/usr/lib/gnome-applets/tuntun"> -+ location="/usr/local/libexec/tuntun"> - - <oaf_attribute name="repo_ids" type="stringv"> - <item value="IDL:Bonobo/GenericFactory:1.0"/> diff --git a/security/tuntun/pkg-descr b/security/tuntun/pkg-descr deleted file mode 100644 index c529ce002..000000000 --- a/security/tuntun/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Tuntun is an applet for Gnome panel that manage a list of vpn connections -through the OpenVPN Management Interface. - -Main features - - * Simple & lightweight just a client GUI to start/stop your OpenVPN tunnels - and nothing more - * Integrated with the Gnome Desktop (support for the Keyring and notification - daemon) - * Support for Auth and Private-Key OpenVPN authentication methods - - WWW: http://code.google.com/p/tuntun/ diff --git a/security/tuntun/pkg-plist b/security/tuntun/pkg-plist deleted file mode 100644 index 48b0bb647..000000000 --- a/security/tuntun/pkg-plist +++ /dev/null @@ -1,25 +0,0 @@ -libdata/bonobo/servers/tuntun.server -libexec/tuntun -share/locale/it/LC_MESSAGES/tuntun.mo -share/locale/lv/LC_MESSAGES/tuntun.mo -share/pixmaps/tuntun-icon.png -share/tuntun/ui/tuntun.ui -share/tuntun/ui/tuntun-auth-dialog.ui -share/tuntun/pixmaps/tuntun.png -share/tuntun/pixmaps/tuntun_act_1.png -share/tuntun/pixmaps/tuntun_act_2.png -share/tuntun/pixmaps/connect.png -share/tuntun/pixmaps/connected.png -share/tuntun/pixmaps/disconnect.png -share/tuntun/pixmaps/not_connected.png -share/tuntun/pixmaps/unknown.png -share/doc/tuntun/AUTHORS -share/doc/tuntun/COPYING -share/doc/tuntun/ChangeLog -share/doc/tuntun/INSTALL -share/doc/tuntun/NEWS -share/doc/tuntun/README -@dirrm share/doc/tuntun -@dirrm share/tuntun/pixmaps -@dirrm share/tuntun/ui -@dirrm share/tuntun diff --git a/sysutils/brasero/Makefile b/sysutils/brasero/Makefile deleted file mode 100644 index 28428ffa3..000000000 --- a/sysutils/brasero/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: bonfire -# Date created: 2006-05-12 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/brasero/Makefile,v 1.42 2009/03/16 08:13:37 kwm Exp $ - -PORTNAME= brasero -PORTVERSION= 2.26.0 -PORTREVISION= 1 -CATEGORIES= sysutils audio multimedia gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= CD/DVD mastering tool for the GNOME desktop - -LIB_DEPENDS= notify.1:${PORTSDIR}/devel/libnotify \ - totem-plparser.12:${PORTSDIR}/multimedia/totem-pl-parser -RUN_DEPENDS= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools \ - cdrdao:${PORTSDIR}/sysutils/cdrdao - -USE_GETTEXT= yes -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_XORG= sm -USE_GNOME= intlhack gnomeprefix gnomehack nautilus2 -USE_GSTREAMER= gconf core -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -CONFIGURE_ARGS= --disable-inotify --with-html-dir=${PREFIX}/share/doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -DHAVE_CAM_LIB_H=1" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= brasero.1 -GCONF_SCHEMAS= brasero.schemas - -OPTIONS= LIBBURNIA "Enable libburnia plug-ins" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_LIBBURNIA) -LIB_DEPENDS+= burn.4:${PORTSDIR}/devel/libburn \ - isofs.6:${PORTSDIR}/devel/libisofs -CONFIGURE_ARGS+=--enable-libburnia -PLIST_SUB+= LIBBURNIA="" -.else -PLIST_SUB+= LIBBURNIA="@comment " -.endif - -.include <bsd.port.post.mk> diff --git a/sysutils/brasero/distinfo b/sysutils/brasero/distinfo deleted file mode 100644 index d1776af4b..000000000 --- a/sysutils/brasero/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/brasero-2.26.0.tar.bz2) = ef968fe98874da4e26b61591ee57be4a -SHA256 (gnome2/brasero-2.26.0.tar.bz2) = a1d3568f4e6d68e824884c0e06acd38fdd6cf142231ca6ded2647b95ab289c8a -SIZE (gnome2/brasero-2.26.0.tar.bz2) = 3129146 diff --git a/sysutils/brasero/pkg-descr b/sysutils/brasero/pkg-descr deleted file mode 100644 index 2e6f14b59..000000000 --- a/sysutils/brasero/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -CD/DVD mastering tool for the gnome desktop. It has been designed to be -simple and easy to use. - -Features: -Data CD/DVD: -- supports edition of discs contents -- can burn data CD/DVD on the fly -- supports multisession -- supports joliet extension -- can write the image to the hard drive -Audio CD: -- write CD-TEXT information (automatically found thanks to gstreamer) -- supports the edition of CD-TEXT information -- can burn audio CD on the fly -- can use all audio files handled by Gstreamer local installation -- can search for audio files inside dropped folders -CD/DVD copy: -- can copy a CD/DVD to the hard drive -- can copy DVD and CD on the fly -- supports single-session data DVD -- supports any kind of CD - -WWW: http://perso.wanadoo.fr/bonfire/ diff --git a/sysutils/brasero/pkg-plist b/sysutils/brasero/pkg-plist deleted file mode 100644 index b2536ed17..000000000 --- a/sysutils/brasero/pkg-plist +++ /dev/null @@ -1,391 +0,0 @@ -bin/brasero -include/brasero/brasero-drive-selection.h -include/brasero/brasero-drive.h -include/brasero/brasero-media.h -include/brasero/brasero-medium-monitor.h -include/brasero/brasero-medium-selection.h -include/brasero/brasero-medium.h -include/brasero/brasero-units.h -include/brasero/brasero-volume.h -lib/brasero/plugins/libbrasero-burn-uri.la -lib/brasero/plugins/libbrasero-burn-uri.so -lib/brasero/plugins/libbrasero-cdrdao.la -lib/brasero/plugins/libbrasero-cdrdao.so -lib/brasero/plugins/libbrasero-cdrecord.la -lib/brasero/plugins/libbrasero-cdrecord.so -lib/brasero/plugins/libbrasero-checksum-file.la -lib/brasero/plugins/libbrasero-checksum-file.so -lib/brasero/plugins/libbrasero-checksum.la -lib/brasero/plugins/libbrasero-checksum.so -lib/brasero/plugins/libbrasero-dvdauthor.la -lib/brasero/plugins/libbrasero-dvdauthor.so -lib/brasero/plugins/libbrasero-dvdcss.la -lib/brasero/plugins/libbrasero-dvdcss.so -lib/brasero/plugins/libbrasero-dvdrwformat.la -lib/brasero/plugins/libbrasero-dvdrwformat.so -lib/brasero/plugins/libbrasero-genisoimage.la -lib/brasero/plugins/libbrasero-genisoimage.so -lib/brasero/plugins/libbrasero-growisofs.la -lib/brasero/plugins/libbrasero-growisofs.so -%%LIBBURNIA%%lib/brasero/plugins/libbrasero-libburn.la -%%LIBBURNIA%%lib/brasero/plugins/libbrasero-libburn.so -%%LIBBURNIA%%lib/brasero/plugins/libbrasero-libisofs.la -%%LIBBURNIA%%lib/brasero/plugins/libbrasero-libisofs.so -lib/brasero/plugins/libbrasero-local-track.la -lib/brasero/plugins/libbrasero-local-track.so -lib/brasero/plugins/libbrasero-mkisofs.la -lib/brasero/plugins/libbrasero-mkisofs.so -lib/brasero/plugins/libbrasero-normalize.la -lib/brasero/plugins/libbrasero-normalize.so -lib/brasero/plugins/libbrasero-readcd.la -lib/brasero/plugins/libbrasero-readcd.so -lib/brasero/plugins/libbrasero-readom.la -lib/brasero/plugins/libbrasero-readom.so -lib/brasero/plugins/libbrasero-toc2cue.la -lib/brasero/plugins/libbrasero-toc2cue.so -lib/brasero/plugins/libbrasero-transcode.la -lib/brasero/plugins/libbrasero-transcode.so -lib/brasero/plugins/libbrasero-vcdimager.la -lib/brasero/plugins/libbrasero-vcdimager.so -lib/brasero/plugins/libbrasero-vob.la -lib/brasero/plugins/libbrasero-vob.so -lib/brasero/plugins/libbrasero-wodim.la -lib/brasero/plugins/libbrasero-wodim.so -lib/libbrasero-media.la -lib/libbrasero-media.so -lib/libbrasero-media.so.1 -lib/nautilus/extensions-2.0/libnautilus-brasero-extension.la -lib/nautilus/extensions-2.0/libnautilus-brasero-extension.so -libdata/pkgconfig/libbrasero-media.pc -share/applications/brasero.desktop -share/applications/brasero-copy-medium.desktop -share/applications/brasero-nautilus.desktop -share/applications/brasero-open-image.desktop -share/applications/brasero-open-playlist.desktop -share/applications/brasero-open-project.desktop -%%DATADIR%%/icons/hicolor/16x16/actions/insert-pause.png -%%DATADIR%%/icons/hicolor/16x16/actions/iso-image-burn.png -%%DATADIR%%/icons/hicolor/16x16/actions/iso-image-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/media-optical-audio-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/media-optical-blank.png -%%DATADIR%%/icons/hicolor/16x16/actions/media-optical-burn.png -%%DATADIR%%/icons/hicolor/16x16/actions/media-optical-copy.png -%%DATADIR%%/icons/hicolor/16x16/actions/media-optical-data-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/media-optical-video-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/transform-crop-and-resize.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-00.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-05.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-10.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-100.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-15.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-20.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-25.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-30.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-35.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-40.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-45.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-50.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-55.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-60.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-65.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-70.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-75.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-80.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-85.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-90.png -%%DATADIR%%/icons/hicolor/16x16/status/brasero-disc-95.png -%%DATADIR%%/icons/hicolor/22x22/actions/insert-pause.png -%%DATADIR%%/icons/hicolor/22x22/actions/iso-image-burn.png -%%DATADIR%%/icons/hicolor/22x22/actions/iso-image-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/media-optical-audio-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/media-optical-blank.png -%%DATADIR%%/icons/hicolor/22x22/actions/media-optical-burn.png -%%DATADIR%%/icons/hicolor/22x22/actions/media-optical-copy.png -%%DATADIR%%/icons/hicolor/22x22/actions/media-optical-data-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/media-optical-video-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/transform-crop-and-resize.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-00.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-05.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-10.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-100.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-15.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-20.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-25.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-30.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-35.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-40.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-45.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-50.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-55.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-60.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-65.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-70.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-75.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-80.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-85.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-90.png -%%DATADIR%%/icons/hicolor/22x22/status/brasero-disc-95.png -%%DATADIR%%/icons/hicolor/24x24/actions/insert-pause.png -%%DATADIR%%/icons/hicolor/24x24/actions/iso-image-burn.png -%%DATADIR%%/icons/hicolor/24x24/actions/iso-image-new.png -%%DATADIR%%/icons/hicolor/24x24/actions/media-optical-audio-new.png -%%DATADIR%%/icons/hicolor/24x24/actions/media-optical-blank.png -%%DATADIR%%/icons/hicolor/24x24/actions/media-optical-burn.png -%%DATADIR%%/icons/hicolor/24x24/actions/media-optical-copy.png -%%DATADIR%%/icons/hicolor/24x24/actions/media-optical-data-new.png -%%DATADIR%%/icons/hicolor/24x24/actions/media-optical-video-new.png -%%DATADIR%%/icons/hicolor/24x24/actions/transform-crop-and-resize.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-00.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-05.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-10.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-100.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-15.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-20.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-25.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-30.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-35.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-40.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-45.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-50.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-55.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-60.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-65.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-70.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-75.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-80.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-85.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-90.png -%%DATADIR%%/icons/hicolor/24x24/status/brasero-disc-95.png -%%DATADIR%%/icons/hicolor/32x32/actions/insert-pause.png -%%DATADIR%%/icons/hicolor/32x32/actions/iso-image-burn.png -%%DATADIR%%/icons/hicolor/32x32/actions/iso-image-new.png -%%DATADIR%%/icons/hicolor/32x32/actions/media-optical-audio-new.png -%%DATADIR%%/icons/hicolor/32x32/actions/media-optical-blank.png -%%DATADIR%%/icons/hicolor/32x32/actions/media-optical-burn.png -%%DATADIR%%/icons/hicolor/32x32/actions/media-optical-copy.png -%%DATADIR%%/icons/hicolor/32x32/actions/media-optical-data-new.png -%%DATADIR%%/icons/hicolor/32x32/actions/media-optical-video-new.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-00.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-05.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-10.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-100.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-15.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-20.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-25.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-30.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-35.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-40.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-45.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-50.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-55.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-60.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-65.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-70.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-75.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-80.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-85.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-90.png -%%DATADIR%%/icons/hicolor/32x32/status/brasero-disc-95.png -%%DATADIR%%/icons/hicolor/48x48/actions/media-optical-video-new.png -%%DATADIR%%/icons/hicolor/scalable/actions/insert-pause.svg -%%DATADIR%%/icons/hicolor/scalable/actions/iso-image-burn.svg -%%DATADIR%%/icons/hicolor/scalable/actions/iso-image-new.svg -%%DATADIR%%/icons/hicolor/scalable/actions/media-optical-audio-new.svg -%%DATADIR%%/icons/hicolor/scalable/actions/media-optical-blank.svg -%%DATADIR%%/icons/hicolor/scalable/actions/media-optical-burn.svg -%%DATADIR%%/icons/hicolor/scalable/actions/media-optical-copy.svg -%%DATADIR%%/icons/hicolor/scalable/actions/media-optical-data-new.svg -%%DATADIR%%/icons/hicolor/scalable/actions/transform-crop-and-resize.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-00.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-05.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-10.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-15.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-20.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-25.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-30.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-35.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-40.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-45.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-50.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-55.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-60.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-65.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-70.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-75.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-80.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-85.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-90.svg -%%DATADIR%%/icons/hicolor/scalable/status/brasero-disc-95.svg -%%DATADIR%%/logo.png -%%DOCSDIR%%/BraseroDrive.html -%%DOCSDIR%%/BraseroDriveSelection.html -%%DOCSDIR%%/BraseroMedium.html -%%DOCSDIR%%/BraseroMediumMonitor.html -%%DOCSDIR%%/BraseroMediumSelection.html -%%DOCSDIR%%/BraseroVolume.html -%%DOCSDIR%%/brasero-brasero-media.html -%%DOCSDIR%%/brasero-brasero-units.html -%%DOCSDIR%%/brasero.devhelp -%%DOCSDIR%%/brasero.devhelp2 -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/gnome/help/brasero/C/brasero.xml -share/gnome/help/brasero/C/figures/brasero_main.png -share/gnome/help/brasero/C/legal.xml -share/gnome/help/brasero/de/brasero.xml -share/gnome/help/brasero/de/figures/brasero_main.png -share/gnome/help/brasero/el/brasero.xml -share/gnome/help/brasero/el/figures/brasero_main.png -share/gnome/help/brasero/en_GB/brasero.xml -share/gnome/help/brasero/en_GB/figures/brasero_main.png -share/gnome/help/brasero/es/brasero.xml -share/gnome/help/brasero/es/figures/brasero_main.png -share/gnome/help/brasero/fr/brasero.xml -share/gnome/help/brasero/fr/figures/brasero_main.png -share/gnome/help/brasero/it/brasero.xml -share/gnome/help/brasero/it/figures/brasero_main.png -share/gnome/help/brasero/pl/brasero.xml -share/gnome/help/brasero/pl/figures/brasero_main.png -share/gnome/help/brasero/ru/brasero.xml -share/gnome/help/brasero/ru/figures/brasero_main.png -share/gnome/help/brasero/sv/brasero.xml -share/gnome/help/brasero/sv/figures/brasero_main.png -share/icons/hicolor/16x16/apps/brasero.png -share/icons/hicolor/22x22/apps/brasero.png -share/icons/hicolor/24x24/apps/brasero.png -share/icons/hicolor/32x32/apps/brasero.png -share/icons/hicolor/48x48/apps/brasero.png -share/icons/hicolor/scalable/apps/brasero.svg -share/locale/ar/LC_MESSAGES/brasero.mo -share/locale/bg/LC_MESSAGES/brasero.mo -share/locale/bn_IN/LC_MESSAGES/brasero.mo -share/locale/ca/LC_MESSAGES/brasero.mo -share/locale/cs/LC_MESSAGES/brasero.mo -share/locale/da/LC_MESSAGES/brasero.mo -share/locale/de/LC_MESSAGES/brasero.mo -share/locale/dz/LC_MESSAGES/brasero.mo -share/locale/el/LC_MESSAGES/brasero.mo -share/locale/en_GB/LC_MESSAGES/brasero.mo -share/locale/es/LC_MESSAGES/brasero.mo -share/locale/et/LC_MESSAGES/brasero.mo -share/locale/eu/LC_MESSAGES/brasero.mo -share/locale/fi/LC_MESSAGES/brasero.mo -share/locale/fr/LC_MESSAGES/brasero.mo -share/locale/gl/LC_MESSAGES/brasero.mo -share/locale/gu/LC_MESSAGES/brasero.mo -share/locale/he/LC_MESSAGES/brasero.mo -share/locale/hi/LC_MESSAGES/brasero.mo -share/locale/hu/LC_MESSAGES/brasero.mo -share/locale/it/LC_MESSAGES/brasero.mo -share/locale/ja/LC_MESSAGES/brasero.mo -share/locale/kn/LC_MESSAGES/brasero.mo -share/locale/ko/LC_MESSAGES/brasero.mo -share/locale/lt/LC_MESSAGES/brasero.mo -share/locale/lv/LC_MESSAGES/brasero.mo -share/locale/mk/LC_MESSAGES/brasero.mo -share/locale/ml/LC_MESSAGES/brasero.mo -share/locale/mr/LC_MESSAGES/brasero.mo -share/locale/nb/LC_MESSAGES/brasero.mo -share/locale/nl/LC_MESSAGES/brasero.mo -share/locale/oc/LC_MESSAGES/brasero.mo -share/locale/or/LC_MESSAGES/brasero.mo -share/locale/pa/LC_MESSAGES/brasero.mo -share/locale/pl/LC_MESSAGES/brasero.mo -share/locale/pt/LC_MESSAGES/brasero.mo -share/locale/pt_BR/LC_MESSAGES/brasero.mo -share/locale/ro/LC_MESSAGES/brasero.mo -share/locale/ru/LC_MESSAGES/brasero.mo -share/locale/sl/LC_MESSAGES/brasero.mo -share/locale/sr/LC_MESSAGES/brasero.mo -share/locale/sr@latin/LC_MESSAGES/brasero.mo -share/locale/sv/LC_MESSAGES/brasero.mo -share/locale/ta/LC_MESSAGES/brasero.mo -share/locale/te/LC_MESSAGES/brasero.mo -share/locale/th/LC_MESSAGES/brasero.mo -share/locale/vi/LC_MESSAGES/brasero.mo -share/locale/zh_CN/LC_MESSAGES/brasero.mo -share/locale/zh_HK/LC_MESSAGES/brasero.mo -share/locale/zh_TW/LC_MESSAGES/brasero.mo -share/mime/packages/brasero.xml -share/omf/brasero/brasero-C.omf -share/omf/brasero/brasero-de.omf -share/omf/brasero/brasero-el.omf -share/omf/brasero/brasero-en_GB.omf -share/omf/brasero/brasero-es.omf -share/omf/brasero/brasero-fr.omf -share/omf/brasero/brasero-it.omf -share/omf/brasero/brasero-pl.omf -share/omf/brasero/brasero-ru.omf -share/omf/brasero/brasero-sv.omf -@dirrm share/omf/brasero -@dirrm share/gnome/help/brasero/sv/figures -@dirrm share/gnome/help/brasero/sv -@dirrm share/gnome/help/brasero/ru/figures -@dirrm share/gnome/help/brasero/ru -@dirrm share/gnome/help/brasero/pl/figures -@dirrm share/gnome/help/brasero/pl -@dirrm share/gnome/help/brasero/it/figures -@dirrm share/gnome/help/brasero/it -@dirrm share/gnome/help/brasero/fr/figures -@dirrm share/gnome/help/brasero/fr -@dirrm share/gnome/help/brasero/es/figures -@dirrm share/gnome/help/brasero/es -@dirrm share/gnome/help/brasero/en_GB/figures -@dirrm share/gnome/help/brasero/en_GB -@dirrm share/gnome/help/brasero/el/figures -@dirrm share/gnome/help/brasero/el -@dirrm share/gnome/help/brasero/de/figures -@dirrm share/gnome/help/brasero/de -@dirrm share/gnome/help/brasero/C/figures -@dirrm share/gnome/help/brasero/C -@dirrm share/gnome/help/brasero -@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor/22x22/status -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/24x24/status -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/32x32/status -@dirrm %%DATADIR%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/48x48/actions -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/scalable/status -@dirrm %%DATADIR%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm lib/brasero/plugins -@dirrm lib/brasero -@dirrm include/brasero -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/sysutils/bubblemon2/Makefile b/sysutils/bubblemon2/Makefile deleted file mode 100644 index 44465b4f5..000000000 --- a/sysutils/bubblemon2/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: sysutils/bubblemon2 -# Date created: 08 Jul 2002 -# Whom: Juan Salaverria <rael@vectorstar.net> -# -# $FreeBSD$ -# - -PORTNAME= bubblemon2 -PORTVERSION= 2.0.9 -PORTREVISION= 2 -CATEGORIES= sysutils gnome -MASTER_SITES= SAVANNAH/bubblemon -DISTNAME= bubblemon-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= A system CPU and memory load monitor for GNOME2 - -LIB_DEPENDS= gtop-2.0:${PORTSDIR}/devel/libgtop - -USE_GNOME= gnomehack gnomepanel gnomeprefix gnometarget intlhack -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib `pkg-config --libs libgnomeui-2.0`" - -MAN1= bubblemon-gnome2.1 -MANLANG= "" hu sv - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in AUTHORS ChangeLog FAQ PROFILING TRANSLATIONS NEWS README TODO - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/sysutils/bubblemon2/distinfo b/sysutils/bubblemon2/distinfo deleted file mode 100644 index e32e4d6c7..000000000 --- a/sysutils/bubblemon2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (bubblemon-2.0.9.tar.gz) = 2b803da365def732cc43349ed8d1fc2c -SHA256 (bubblemon-2.0.9.tar.gz) = 08566ce2c6f4cb60ef6e2c52e6152e6ee71a762d8e5142d0e0200bd5ac4a5d81 -SIZE (bubblemon-2.0.9.tar.gz) = 249883 diff --git a/sysutils/bubblemon2/pkg-descr b/sysutils/bubblemon2/pkg-descr deleted file mode 100644 index 0f6eb3021..000000000 --- a/sysutils/bubblemon2/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Bubblemon displays something that looks like a vial containing water. The water -level indicates how much memory is in use. The color of the liquid indicates -how much swap space is used (watery blue means none and angry red means all). -The system CPU load is indicated by bubbles floating up through the liquid; -lots of bubbles means high CPU load. - -WWW: http://www.nongnu.org/bubblemon/ - -d92-jwa@nada.kth.se diff --git a/sysutils/bubblemon2/pkg-plist b/sysutils/bubblemon2/pkg-plist deleted file mode 100644 index f0d0d5e8e..000000000 --- a/sysutils/bubblemon2/pkg-plist +++ /dev/null @@ -1,33 +0,0 @@ -libdata/bonobo/servers/GNOME_BubblemonApplet.server -libexec/bubblemon-gnome2 -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/FAQ -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/PROFILING -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS -share/gnome-2.0/ui/GNOME_BubblemonApplet.xml -share/pixmaps/bubblemon.png -share/locale/ca/LC_MESSAGES/bubblemon.mo -share/locale/da/LC_MESSAGES/bubblemon.mo -share/locale/de/LC_MESSAGES/bubblemon.mo -share/locale/es/LC_MESSAGES/bubblemon.mo -share/locale/fi/LC_MESSAGES/bubblemon.mo -share/locale/fr/LC_MESSAGES/bubblemon.mo -share/locale/hu/LC_MESSAGES/bubblemon.mo -share/locale/is/LC_MESSAGES/bubblemon.mo -share/locale/it/LC_MESSAGES/bubblemon.mo -share/locale/ko/LC_MESSAGES/bubblemon.mo -share/locale/no/LC_MESSAGES/bubblemon.mo -share/locale/pl/LC_MESSAGES/bubblemon.mo -share/locale/pt/LC_MESSAGES/bubblemon.mo -share/locale/pt_BR/LC_MESSAGES/bubblemon.mo -share/locale/ro/LC_MESSAGES/bubblemon.mo -share/locale/ru/LC_MESSAGES/bubblemon.mo -share/locale/sh/LC_MESSAGES/bubblemon.mo -share/locale/sv/LC_MESSAGES/bubblemon.mo -@dirrmtry share/locale/sh/LC_MESSAGES -@dirrmtry share/locale/sh -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/sysutils/gconf-editor/Makefile b/sysutils/gconf-editor/Makefile deleted file mode 100644 index 90213fa2d..000000000 --- a/sysutils/gconf-editor/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: gconf-editor -# Date created: 12 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/gconf-editor/Makefile,v 1.75 2009/02/22 15:09:24 kwm Exp $ -# - -PORTNAME= gconf-editor -PORTVERSION= 2.26.0 -PORTEPOCH= 1 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A gconf database editor for the GNOME 2 environment - -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix intlhack gnomehack libgnomeui gnomedocutils -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gconf-editor.1 -GCONF_SCHEMAS= gconf-editor.schemas - -.include <bsd.port.mk> diff --git a/sysutils/gconf-editor/distinfo b/sysutils/gconf-editor/distinfo deleted file mode 100644 index 55794c7fc..000000000 --- a/sysutils/gconf-editor/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gconf-editor-2.26.0.tar.bz2) = 2dc76415b22d805cfacfcd5fb98f185c -SHA256 (gnome2/gconf-editor-2.26.0.tar.bz2) = 2801ff7d595039292850d4f7d87b3f7c950e92dbcb39facfe62c6fb184640e1f -SIZE (gnome2/gconf-editor-2.26.0.tar.bz2) = 1262213 diff --git a/sysutils/gconf-editor/pkg-descr b/sysutils/gconf-editor/pkg-descr deleted file mode 100644 index 0c8d23c9b..000000000 --- a/sysutils/gconf-editor/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -gconf-editor is a GNOME 2 GConf database editor. It is analogous to -regedit on Windows. diff --git a/sysutils/gconf-editor/pkg-plist b/sysutils/gconf-editor/pkg-plist deleted file mode 100644 index f8ccc624f..000000000 --- a/sysutils/gconf-editor/pkg-plist +++ /dev/null @@ -1,290 +0,0 @@ -bin/gconf-editor -share/applications/gconf-editor.desktop -%%DATADIR%%/icons/hicolor/16x16/status/type-boolean.png -%%DATADIR%%/icons/hicolor/16x16/status/type-float.png -%%DATADIR%%/icons/hicolor/16x16/status/type-integer.png -%%DATADIR%%/icons/hicolor/16x16/status/type-list.png -%%DATADIR%%/icons/hicolor/16x16/status/type-pair.png -%%DATADIR%%/icons/hicolor/16x16/status/type-schema.png -%%DATADIR%%/icons/hicolor/16x16/status/type-string.png -%%DATADIR%%/icons/hicolor/16x16/status/type-undefined.png -share/gnome/help/gconf-editor/C/figures/entry-blank.png -share/gnome/help/gconf-editor/C/figures/entry-bool.png -share/gnome/help/gconf-editor/C/figures/entry-list.png -share/gnome/help/gconf-editor/C/figures/entry-number.png -share/gnome/help/gconf-editor/C/figures/entry-schema.png -share/gnome/help/gconf-editor/C/figures/entry-string.png -share/gnome/help/gconf-editor/C/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/C/gconf-editor.xml -share/gnome/help/gconf-editor/C/legal.xml -share/gnome/help/gconf-editor/ca/figures/entry-blank.png -share/gnome/help/gconf-editor/ca/figures/entry-bool.png -share/gnome/help/gconf-editor/ca/figures/entry-list.png -share/gnome/help/gconf-editor/ca/figures/entry-number.png -share/gnome/help/gconf-editor/ca/figures/entry-schema.png -share/gnome/help/gconf-editor/ca/figures/entry-string.png -share/gnome/help/gconf-editor/ca/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/ca/gconf-editor.xml -share/gnome/help/gconf-editor/de/figures/entry-blank.png -share/gnome/help/gconf-editor/de/figures/entry-bool.png -share/gnome/help/gconf-editor/de/figures/entry-list.png -share/gnome/help/gconf-editor/de/figures/entry-number.png -share/gnome/help/gconf-editor/de/figures/entry-schema.png -share/gnome/help/gconf-editor/de/figures/entry-string.png -share/gnome/help/gconf-editor/de/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/de/gconf-editor.xml -share/gnome/help/gconf-editor/el/figures/entry-blank.png -share/gnome/help/gconf-editor/el/figures/entry-bool.png -share/gnome/help/gconf-editor/el/figures/entry-list.png -share/gnome/help/gconf-editor/el/figures/entry-number.png -share/gnome/help/gconf-editor/el/figures/entry-schema.png -share/gnome/help/gconf-editor/el/figures/entry-string.png -share/gnome/help/gconf-editor/el/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/el/gconf-editor.xml -share/gnome/help/gconf-editor/en_GB/figures/entry-blank.png -share/gnome/help/gconf-editor/en_GB/figures/entry-bool.png -share/gnome/help/gconf-editor/en_GB/figures/entry-list.png -share/gnome/help/gconf-editor/en_GB/figures/entry-number.png -share/gnome/help/gconf-editor/en_GB/figures/entry-schema.png -share/gnome/help/gconf-editor/en_GB/figures/entry-string.png -share/gnome/help/gconf-editor/en_GB/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/en_GB/gconf-editor.xml -share/gnome/help/gconf-editor/es/figures/entry-blank.png -share/gnome/help/gconf-editor/es/figures/entry-bool.png -share/gnome/help/gconf-editor/es/figures/entry-list.png -share/gnome/help/gconf-editor/es/figures/entry-number.png -share/gnome/help/gconf-editor/es/figures/entry-schema.png -share/gnome/help/gconf-editor/es/figures/entry-string.png -share/gnome/help/gconf-editor/es/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/es/gconf-editor.xml -share/gnome/help/gconf-editor/fr/figures/entry-blank.png -share/gnome/help/gconf-editor/fr/figures/entry-bool.png -share/gnome/help/gconf-editor/fr/figures/entry-list.png -share/gnome/help/gconf-editor/fr/figures/entry-number.png -share/gnome/help/gconf-editor/fr/figures/entry-schema.png -share/gnome/help/gconf-editor/fr/figures/entry-string.png -share/gnome/help/gconf-editor/fr/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/fr/gconf-editor.xml -share/gnome/help/gconf-editor/it/figures/entry-blank.png -share/gnome/help/gconf-editor/it/figures/entry-bool.png -share/gnome/help/gconf-editor/it/figures/entry-list.png -share/gnome/help/gconf-editor/it/figures/entry-number.png -share/gnome/help/gconf-editor/it/figures/entry-schema.png -share/gnome/help/gconf-editor/it/figures/entry-string.png -share/gnome/help/gconf-editor/it/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/it/gconf-editor.xml -share/gnome/help/gconf-editor/oc/figures/entry-blank.png -share/gnome/help/gconf-editor/oc/figures/entry-bool.png -share/gnome/help/gconf-editor/oc/figures/entry-list.png -share/gnome/help/gconf-editor/oc/figures/entry-number.png -share/gnome/help/gconf-editor/oc/figures/entry-schema.png -share/gnome/help/gconf-editor/oc/figures/entry-string.png -share/gnome/help/gconf-editor/oc/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/oc/gconf-editor.xml -share/gnome/help/gconf-editor/pt_BR/figures/entry-blank.png -share/gnome/help/gconf-editor/pt_BR/figures/entry-bool.png -share/gnome/help/gconf-editor/pt_BR/figures/entry-list.png -share/gnome/help/gconf-editor/pt_BR/figures/entry-number.png -share/gnome/help/gconf-editor/pt_BR/figures/entry-schema.png -share/gnome/help/gconf-editor/pt_BR/figures/entry-string.png -share/gnome/help/gconf-editor/pt_BR/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/pt_BR/gconf-editor.xml -share/gnome/help/gconf-editor/ru/figures/entry-blank.png -share/gnome/help/gconf-editor/ru/figures/entry-bool.png -share/gnome/help/gconf-editor/ru/figures/entry-list.png -share/gnome/help/gconf-editor/ru/figures/entry-number.png -share/gnome/help/gconf-editor/ru/figures/entry-schema.png -share/gnome/help/gconf-editor/ru/figures/entry-string.png -share/gnome/help/gconf-editor/ru/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/ru/gconf-editor.xml -share/gnome/help/gconf-editor/sv/figures/entry-blank.png -share/gnome/help/gconf-editor/sv/figures/entry-bool.png -share/gnome/help/gconf-editor/sv/figures/entry-list.png -share/gnome/help/gconf-editor/sv/figures/entry-number.png -share/gnome/help/gconf-editor/sv/figures/entry-schema.png -share/gnome/help/gconf-editor/sv/figures/entry-string.png -share/gnome/help/gconf-editor/sv/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/sv/gconf-editor.xml -share/gnome/help/gconf-editor/th/figures/entry-blank.png -share/gnome/help/gconf-editor/th/figures/entry-bool.png -share/gnome/help/gconf-editor/th/figures/entry-list.png -share/gnome/help/gconf-editor/th/figures/entry-number.png -share/gnome/help/gconf-editor/th/figures/entry-schema.png -share/gnome/help/gconf-editor/th/figures/entry-string.png -share/gnome/help/gconf-editor/th/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/th/gconf-editor.xml -share/gnome/help/gconf-editor/uk/figures/entry-blank.png -share/gnome/help/gconf-editor/uk/figures/entry-bool.png -share/gnome/help/gconf-editor/uk/figures/entry-list.png -share/gnome/help/gconf-editor/uk/figures/entry-number.png -share/gnome/help/gconf-editor/uk/figures/entry-schema.png -share/gnome/help/gconf-editor/uk/figures/entry-string.png -share/gnome/help/gconf-editor/uk/figures/gconf_editor_anno_window.png -share/gnome/help/gconf-editor/uk/gconf-editor.xml -share/icons/hicolor/48x48/apps/gconf-editor.png -share/locale/am/LC_MESSAGES/gconf-editor.mo -share/locale/ar/LC_MESSAGES/gconf-editor.mo -share/locale/as/LC_MESSAGES/gconf-editor.mo -share/locale/ast/LC_MESSAGES/gconf-editor.mo -share/locale/az/LC_MESSAGES/gconf-editor.mo -share/locale/be/LC_MESSAGES/gconf-editor.mo -share/locale/be@latin/LC_MESSAGES/gconf-editor.mo -share/locale/bg/LC_MESSAGES/gconf-editor.mo -share/locale/bn/LC_MESSAGES/gconf-editor.mo -share/locale/bn_IN/LC_MESSAGES/gconf-editor.mo -share/locale/br/LC_MESSAGES/gconf-editor.mo -share/locale/bs/LC_MESSAGES/gconf-editor.mo -share/locale/ca/LC_MESSAGES/gconf-editor.mo -share/locale/cs/LC_MESSAGES/gconf-editor.mo -share/locale/cy/LC_MESSAGES/gconf-editor.mo -share/locale/da/LC_MESSAGES/gconf-editor.mo -share/locale/de/LC_MESSAGES/gconf-editor.mo -share/locale/dz/LC_MESSAGES/gconf-editor.mo -share/locale/el/LC_MESSAGES/gconf-editor.mo -share/locale/en_CA/LC_MESSAGES/gconf-editor.mo -share/locale/en_GB/LC_MESSAGES/gconf-editor.mo -share/locale/es/LC_MESSAGES/gconf-editor.mo -share/locale/et/LC_MESSAGES/gconf-editor.mo -share/locale/eu/LC_MESSAGES/gconf-editor.mo -share/locale/fa/LC_MESSAGES/gconf-editor.mo -share/locale/fi/LC_MESSAGES/gconf-editor.mo -share/locale/fr/LC_MESSAGES/gconf-editor.mo -share/locale/ga/LC_MESSAGES/gconf-editor.mo -share/locale/gl/LC_MESSAGES/gconf-editor.mo -share/locale/gu/LC_MESSAGES/gconf-editor.mo -share/locale/he/LC_MESSAGES/gconf-editor.mo -share/locale/hi/LC_MESSAGES/gconf-editor.mo -share/locale/hr/LC_MESSAGES/gconf-editor.mo -share/locale/hu/LC_MESSAGES/gconf-editor.mo -share/locale/id/LC_MESSAGES/gconf-editor.mo -share/locale/it/LC_MESSAGES/gconf-editor.mo -share/locale/ja/LC_MESSAGES/gconf-editor.mo -share/locale/ka/LC_MESSAGES/gconf-editor.mo -share/locale/kn/LC_MESSAGES/gconf-editor.mo -share/locale/ko/LC_MESSAGES/gconf-editor.mo -share/locale/ku/LC_MESSAGES/gconf-editor.mo -share/locale/li/LC_MESSAGES/gconf-editor.mo -share/locale/lt/LC_MESSAGES/gconf-editor.mo -share/locale/lv/LC_MESSAGES/gconf-editor.mo -share/locale/mg/LC_MESSAGES/gconf-editor.mo -share/locale/mk/LC_MESSAGES/gconf-editor.mo -share/locale/ml/LC_MESSAGES/gconf-editor.mo -share/locale/mn/LC_MESSAGES/gconf-editor.mo -share/locale/mr/LC_MESSAGES/gconf-editor.mo -share/locale/ms/LC_MESSAGES/gconf-editor.mo -share/locale/nb/LC_MESSAGES/gconf-editor.mo -share/locale/ne/LC_MESSAGES/gconf-editor.mo -share/locale/nl/LC_MESSAGES/gconf-editor.mo -share/locale/nn/LC_MESSAGES/gconf-editor.mo -share/locale/oc/LC_MESSAGES/gconf-editor.mo -share/locale/or/LC_MESSAGES/gconf-editor.mo -share/locale/pa/LC_MESSAGES/gconf-editor.mo -share/locale/pl/LC_MESSAGES/gconf-editor.mo -share/locale/ps/LC_MESSAGES/gconf-editor.mo -share/locale/pt/LC_MESSAGES/gconf-editor.mo -share/locale/pt_BR/LC_MESSAGES/gconf-editor.mo -share/locale/ro/LC_MESSAGES/gconf-editor.mo -share/locale/ru/LC_MESSAGES/gconf-editor.mo -share/locale/rw/LC_MESSAGES/gconf-editor.mo -share/locale/si/LC_MESSAGES/gconf-editor.mo -share/locale/sk/LC_MESSAGES/gconf-editor.mo -share/locale/sl/LC_MESSAGES/gconf-editor.mo -share/locale/sq/LC_MESSAGES/gconf-editor.mo -share/locale/sr/LC_MESSAGES/gconf-editor.mo -share/locale/sr@latin/LC_MESSAGES/gconf-editor.mo -share/locale/sv/LC_MESSAGES/gconf-editor.mo -share/locale/ta/LC_MESSAGES/gconf-editor.mo -share/locale/te/LC_MESSAGES/gconf-editor.mo -share/locale/th/LC_MESSAGES/gconf-editor.mo -share/locale/tr/LC_MESSAGES/gconf-editor.mo -share/locale/ug/LC_MESSAGES/gconf-editor.mo -share/locale/uk/LC_MESSAGES/gconf-editor.mo -share/locale/vi/LC_MESSAGES/gconf-editor.mo -share/locale/xh/LC_MESSAGES/gconf-editor.mo -share/locale/zh_CN/LC_MESSAGES/gconf-editor.mo -share/locale/zh_HK/LC_MESSAGES/gconf-editor.mo -share/locale/zh_TW/LC_MESSAGES/gconf-editor.mo -share/omf/gconf-editor/gconf-editor-C.omf -share/omf/gconf-editor/gconf-editor-ca.omf -share/omf/gconf-editor/gconf-editor-de.omf -share/omf/gconf-editor/gconf-editor-el.omf -share/omf/gconf-editor/gconf-editor-en_GB.omf -share/omf/gconf-editor/gconf-editor-es.omf -share/omf/gconf-editor/gconf-editor-fr.omf -share/omf/gconf-editor/gconf-editor-it.omf -share/omf/gconf-editor/gconf-editor-oc.omf -share/omf/gconf-editor/gconf-editor-pt_BR.omf -share/omf/gconf-editor/gconf-editor-ru.omf -share/omf/gconf-editor/gconf-editor-sv.omf -share/omf/gconf-editor/gconf-editor-th.omf -share/omf/gconf-editor/gconf-editor-uk.omf -@dirrm share/omf/gconf-editor -@dirrm share/gnome/help/gconf-editor/uk/figures -@dirrm share/gnome/help/gconf-editor/uk -@dirrm share/gnome/help/gconf-editor/th/figures -@dirrm share/gnome/help/gconf-editor/th -@dirrm share/gnome/help/gconf-editor/sv/figures -@dirrm share/gnome/help/gconf-editor/sv -@dirrm share/gnome/help/gconf-editor/ru/figures -@dirrm share/gnome/help/gconf-editor/ru -@dirrm share/gnome/help/gconf-editor/pt_BR/figures -@dirrm share/gnome/help/gconf-editor/pt_BR -@dirrm share/gnome/help/gconf-editor/oc/figures -@dirrm share/gnome/help/gconf-editor/oc -@dirrm share/gnome/help/gconf-editor/it/figures -@dirrm share/gnome/help/gconf-editor/it -@dirrm share/gnome/help/gconf-editor/fr/figures -@dirrm share/gnome/help/gconf-editor/fr -@dirrm share/gnome/help/gconf-editor/es/figures -@dirrm share/gnome/help/gconf-editor/es -@dirrm share/gnome/help/gconf-editor/en_GB/figures -@dirrm share/gnome/help/gconf-editor/en_GB -@dirrm share/gnome/help/gconf-editor/el/figures -@dirrm share/gnome/help/gconf-editor/el -@dirrm share/gnome/help/gconf-editor/de/figures -@dirrm share/gnome/help/gconf-editor/de -@dirrm share/gnome/help/gconf-editor/ca/figures -@dirrm share/gnome/help/gconf-editor/ca -@dirrm share/gnome/help/gconf-editor/C/figures -@dirrm share/gnome/help/gconf-editor/C -@dirrm share/gnome/help/gconf-editor -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/sysutils/gnome-control-center/Makefile b/sysutils/gnome-control-center/Makefile deleted file mode 100644 index e891a3d63..000000000 --- a/sysutils/gnome-control-center/Makefile +++ /dev/null @@ -1,65 +0,0 @@ -# New ports collection makefile for: gnomecontrolcenter2 -# Date created: 04 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/gnome-control-center/Makefile,v 1.188 2009/03/04 06:24:40 marcus Exp $ -# - -PORTNAME= gnome-control-center -PORTVERSION= 2.26.0 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Control center for GNOME 2 project - -LIB_DEPENDS= canberra-gtk.0:${PORTSDIR}/audio/libcanberra -BUILD_DEPENDS= ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon -RUN_DEPENDS= gnome-eject:${PORTSDIR}/sysutils/gnome-mount \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -USE_GSTREAMER= good -WANT_GNOME= yes -USE_GNOME= gnomeprefix gnomehack intlhack metacity nautilus2 \ - gnomemenus desktopfileutils libgnomekbd gnomepanel -USE_XORG= xscrnsaver -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-gstreamer=0.10 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= control-center.schemas fontilus.schemas - -.if defined(PACKAGE_BUILDING) -.undef WITHOUT_GNOME -WITH_GNOME= yes -.endif - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mevolutiondataserver}!="" -USE_GNOME+= evolutiondataserver -CONFIGURE_ARGS+=--enable-aboutme -PLIST_SUB+= ABOUTME="" -.else -CONFIGURE_ARGS+=--disable-aboutme -PLIST_SUB+= ABOUTME="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/capplets/common/gnome-theme-info.c - -post-install: - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/sysutils/gnome-control-center/distinfo b/sysutils/gnome-control-center/distinfo deleted file mode 100644 index 4bd79e50c..000000000 --- a/sysutils/gnome-control-center/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-control-center-2.26.0.tar.bz2) = eed8feccc37712e34d88bd3b20e46962 -SHA256 (gnome2/gnome-control-center-2.26.0.tar.bz2) = 62fb84ea1053971a53c5259b92eb3a282c2f317f72f761ed4dff434ed0e99c05 -SIZE (gnome2/gnome-control-center-2.26.0.tar.bz2) = 2262324 diff --git a/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c b/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c deleted file mode 100644 index 69c01de97..000000000 --- a/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c +++ /dev/null @@ -1,15 +0,0 @@ ---- capplets/about-me/gnome-about-me-password.c.orig Sun Jun 11 04:50:31 2006 -+++ capplets/about-me/gnome-about-me-password.c Tue Jun 13 00:02:27 2006 -@@ -52,6 +52,12 @@ - #include <signal.h> - #endif - -+#if __FreeBSD__ -+#include <sys/types.h> -+#include <libutil.h> -+#include <signal.h> -+#endif -+ - #include "capplet-util.h" - #include "eel-alert-dialog.h" - diff --git a/sysutils/gnome-control-center/files/patch-capplets_common_gnome-theme-info.c b/sysutils/gnome-control-center/files/patch-capplets_common_gnome-theme-info.c deleted file mode 100644 index d0e21a6c3..000000000 --- a/sysutils/gnome-control-center/files/patch-capplets_common_gnome-theme-info.c +++ /dev/null @@ -1,20 +0,0 @@ ---- capplets/common/gnome-theme-info.c.orig 2008-05-17 12:46:59.000000000 -0400 -+++ capplets/common/gnome-theme-info.c 2008-05-20 18:10:50.000000000 -0400 -@@ -1843,7 +1843,7 @@ gnome_theme_init () - g_object_unref (top_theme_dir); - - /* The weird /usr/share/icons */ -- top_theme_dir = g_file_new_for_path ("/usr/share/icons"); -+ top_theme_dir = g_file_new_for_path ("%%LOCALBASE%%/lib/X11/icons"); - add_top_icon_theme_dir_monitor (top_theme_dir, 2, NULL); - g_object_unref (top_theme_dir); - -@@ -1857,7 +1857,7 @@ gnome_theme_init () - #ifdef XCURSOR_ICONDIR - /* if there's a separate xcursors dir, add that as well */ - if (strcmp (XCURSOR_ICONDIR, top_theme_dir_string) && -- strcmp (XCURSOR_ICONDIR, "/usr/share/icons")) { -+ strcmp (XCURSOR_ICONDIR, "%%LOCALBASE%%/lib/X11/icons")) { - top_theme_dir = g_file_new_for_path (XCURSOR_ICONDIR); - if (g_file_query_exists (top_theme_dir, NULL)) - add_top_icon_theme_dir_monitor (top_theme_dir, 1, NULL); diff --git a/sysutils/gnome-control-center/files/patch-configure b/sysutils/gnome-control-center/files/patch-configure deleted file mode 100644 index 6527e6758..000000000 --- a/sysutils/gnome-control-center/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Tue Feb 13 07:51:47 2007 -+++ configure Tue Feb 13 07:51:47 2007 -@@ -22302,6 +22302,7 @@ - if test "${gt_cv_func_ngettext_libc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else -+ LIBS="-lintl $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF diff --git a/sysutils/gnome-control-center/files/patch-libslab_directory-tile.c b/sysutils/gnome-control-center/files/patch-libslab_directory-tile.c deleted file mode 100644 index 86acdbe0c..000000000 --- a/sysutils/gnome-control-center/files/patch-libslab_directory-tile.c +++ /dev/null @@ -1,9 +0,0 @@ ---- libslab/directory-tile.c.orig Mon Mar 12 16:33:35 2007 -+++ libslab/directory-tile.c Mon Mar 12 16:35:48 2007 -@@ -644,5 +644,5 @@ static void - disown_spawned_child (gpointer user_data) - { - setsid (); -- setpgrp (); -+ setpgrp (0, 0); - } diff --git a/sysutils/gnome-control-center/pkg-descr b/sysutils/gnome-control-center/pkg-descr deleted file mode 100644 index fba462829..000000000 --- a/sysutils/gnome-control-center/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Configuration tools tightly integrated within the GNOME 2 desktop. - -WWW: http://www.gnome.org diff --git a/sysutils/gnome-control-center/pkg-plist b/sysutils/gnome-control-center/pkg-plist deleted file mode 100644 index 569150975..000000000 --- a/sysutils/gnome-control-center/pkg-plist +++ /dev/null @@ -1,320 +0,0 @@ -%%ABOUTME%%bin/gnome-about-me -bin/gnome-appearance-properties -bin/gnome-at-mobility -bin/gnome-at-properties -bin/gnome-at-visual -bin/gnome-control-center -bin/gnome-default-applications-properties -bin/gnome-display-properties -bin/gnome-font-viewer -bin/gnome-keybinding-properties -bin/gnome-keyboard-properties -bin/gnome-mouse-properties -bin/gnome-network-properties -bin/gnome-thumbnail-font -bin/gnome-typing-monitor -bin/gnome-window-properties -etc/xdg/autostart/gnome-at-session.desktop -etc/xdg/menus/gnomecc.menu -include/gnome-window-settings-2.0/gnome-window-manager.h -include/gnome-window-settings-2.0/gnome-wm-manager.h -lib/libgnome-window-settings.a -lib/libgnome-window-settings.la -lib/libgnome-window-settings.so -lib/libgnome-window-settings.so.1 -lib/window-manager-settings/libmetacity.a -lib/window-manager-settings/libmetacity.la -lib/window-manager-settings/libmetacity.so -libdata/pkgconfig/gnome-default-applications.pc -libdata/pkgconfig/gnome-keybindings.pc -libdata/pkgconfig/gnome-window-settings-2.0.pc -share/applications/at-properties.desktop -share/applications/default-applications.desktop -share/applications/display-properties.desktop -%%ABOUTME%%share/applications/gnome-about-me.desktop -share/applications/gnome-appearance-properties.desktop -share/applications/gnome-font-viewer.desktop -share/applications/gnome-network-properties.desktop -share/applications/gnome-settings-mouse.desktop -share/applications/gnome-theme-installer.desktop -share/applications/gnomecc.desktop -share/applications/keybinding.desktop -share/applications/keyboard.desktop -share/applications/window-properties.desktop -share/desktop-directories/gnomecc.directory -%%DATADIR%%/default-apps/gnome-default-applications.xml -%%DATADIR%%/glade/appearance.glade -%%DATADIR%%/glade/at-enable-dialog.glade -%%DATADIR%%/glade/display-capplet.glade -%%ABOUTME%%%%DATADIR%%/glade/gnome-about-me.glade -%%ABOUTME%%%%DATADIR%%/glade/gnome-about-me-fingerprint.glade -%%DATADIR%%/glade/gnome-default-applications-properties.glade -%%DATADIR%%/glade/gnome-keybinding-properties.glade -%%DATADIR%%/glade/gnome-keyboard-properties.glade -%%DATADIR%%/glade/gnome-mouse-properties.glade -%%DATADIR%%/glade/gnome-network-properties.glade -%%DATADIR%%/glade/gnome-window-properties.glade -%%DATADIR%%/keybindings/00-multimedia-key.xml -%%DATADIR%%/keybindings/01-desktop-key.xml -%%DATADIR%%/pixmaps/at-startup.png -%%DATADIR%%/pixmaps/at-support.png -%%DATADIR%%/pixmaps/bar-disabled.png -%%DATADIR%%/pixmaps/bar-green.png -%%DATADIR%%/pixmaps/bar-red.png -%%DATADIR%%/pixmaps/bar.png -%%DATADIR%%/pixmaps/double-click-maybe.png -%%DATADIR%%/pixmaps/double-click-off.png -%%DATADIR%%/pixmaps/double-click-on.png -%%ABOUTME%%%%DATADIR%%/pixmaps/gnome-about-me-lock-open.png -%%ABOUTME%%%%DATADIR%%/pixmaps/gnome-about-me-lock.png -%%DATADIR%%/pixmaps/gtk-theme-thumbnailing.png -%%DATADIR%%/pixmaps/icon-theme-thumbnailing.png -%%DATADIR%%/pixmaps/mouse-cursor-normal-large.png -%%DATADIR%%/pixmaps/mouse-cursor-normal.png -%%DATADIR%%/pixmaps/mouse-cursor-white-large.png -%%DATADIR%%/pixmaps/mouse-cursor-white.png -%%DATADIR%%/pixmaps/ocean-stripes.png -%%DATADIR%%/pixmaps/subpixel-bgr.png -%%DATADIR%%/pixmaps/subpixel-rgb.png -%%DATADIR%%/pixmaps/subpixel-vbgr.png -%%DATADIR%%/pixmaps/subpixel-vrgb.png -%%DATADIR%%/pixmaps/theme-thumbnailing.png -%%DATADIR%%/pixmaps/window-theme-thumbnailing.png -share/gnome/cursor-fonts/cursor-large-white.pcf -share/gnome/cursor-fonts/cursor-large.pcf -share/gnome/cursor-fonts/cursor-white.pcf -share/gnome/help/control-center/C/config-accessibility-keyboard.xml -share/gnome/help/control-center/C/config-background.xml -share/gnome/help/control-center/C/config-behavior.xml -share/gnome/help/control-center/C/config-cds.xml -share/gnome/help/control-center/C/config-default-apps.xml -share/gnome/help/control-center/C/config-file-type.xml -share/gnome/help/control-center/C/config-hints.xml -share/gnome/help/control-center/C/config-html.xml -share/gnome/help/control-center/C/config-kbd.xml -share/gnome/help/control-center/C/config-keybindings.xml -share/gnome/help/control-center/C/config-mouse.xml -share/gnome/help/control-center/C/config-screensaver.xml -share/gnome/help/control-center/C/config-themes.xml -share/gnome/help/control-center/C/control-center.xml -share/gnome/help/control-center/ca/control-center.xml -share/gnome/help/control-center/ca@valencia/control-center.xml -share/gnome/help/control-center/cs/control-center.xml -share/gnome/help/control-center/de/control-center.xml -share/gnome/help/control-center/en_GB/control-center.xml -share/gnome/help/control-center/es/control-center.xml -share/gnome/help/control-center/fr/control-center.xml -share/gnome/help/control-center/it/control-center.xml -share/gnome/help/control-center/ja/control-center.xml -share/gnome/help/control-center/oc/control-center.xml -share/gnome/help/control-center/pa/control-center.xml -share/gnome/help/control-center/pl/control-center.xml -share/gnome/help/control-center/pt/control-center.xml -share/gnome/help/control-center/pt_BR/control-center.xml -share/gnome/help/control-center/ru/control-center.xml -share/gnome/help/control-center/sv/control-center.xml -share/gnome/help/control-center/uk/control-center.xml -share/gnome/help/control-center/vi/control-center.xml -share/gnome/help/control-center/zh_CN/control-center.xml -share/icons/hicolor/16x16/apps/gnome-display-properties.png -share/icons/hicolor/16x16/apps/gnome-network-properties.png -share/icons/hicolor/16x16/apps/gnome-settings-default-applications.png -share/icons/hicolor/22x22/apps/gnome-display-properties.png -share/icons/hicolor/22x22/apps/gnome-network-properties.png -share/icons/hicolor/22x22/apps/gnome-settings-default-applications.png -share/icons/hicolor/24x24/apps/gnome-display-properties.png -share/icons/hicolor/24x24/apps/gnome-network-properties.png -share/icons/hicolor/24x24/apps/gnome-settings-default-applications.png -share/icons/hicolor/32x32/apps/gnome-display-properties.png -share/icons/hicolor/32x32/apps/gnome-network-properties.png -share/icons/hicolor/32x32/apps/gnome-settings-default-applications.png -share/icons/hicolor/48x48/apps/gnome-network-properties.png -share/icons/hicolor/48x48/apps/gnome-settings-default-applications.png -share/icons/hicolor/48x48/apps/typing-monitor.png -share/icons/hicolor/scalable/apps/gnome-display-properties.svg -share/icons/hicolor/scalable/apps/gnome-network-properties.svg -share/icons/hicolor/scalable/apps/typing-monitor.svg -share/locale/af/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/am/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/as/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ast/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/az/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/be/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/br/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ca@valencia/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/da/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/de/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/el/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/es/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/et/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/he/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/id/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/is/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/it/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/mai/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/nso/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/or/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/si/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/te/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/th/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/uz/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-control-center-2.0.mo -share/locale/zu/LC_MESSAGES/gnome-control-center-2.0.mo -share/mime/application/x-gnome-theme-package.xml -share/mime/packages/gnome-theme-package.xml -share/omf/control-center/control-center-C.omf -share/omf/control-center/control-center-ca.omf -share/omf/control-center/control-center-ca@valencia.omf -share/omf/control-center/control-center-cs.omf -share/omf/control-center/control-center-de.omf -share/omf/control-center/control-center-en_GB.omf -share/omf/control-center/control-center-es.omf -share/omf/control-center/control-center-fr.omf -share/omf/control-center/control-center-it.omf -share/omf/control-center/control-center-ja.omf -share/omf/control-center/control-center-oc.omf -share/omf/control-center/control-center-pa.omf -share/omf/control-center/control-center-pl.omf -share/omf/control-center/control-center-pt.omf -share/omf/control-center/control-center-pt_BR.omf -share/omf/control-center/control-center-ru.omf -share/omf/control-center/control-center-sv.omf -share/omf/control-center/control-center-uk.omf -share/omf/control-center/control-center-vi.omf -share/omf/control-center/control-center-zh_CN.omf -@dirrm share/omf/control-center -@dirrm share/gnome/help/control-center/zh_CN -@dirrm share/gnome/help/control-center/vi -@dirrm share/gnome/help/control-center/uk -@dirrm share/gnome/help/control-center/sv -@dirrm share/gnome/help/control-center/ru -@dirrm share/gnome/help/control-center/pt_BR -@dirrm share/gnome/help/control-center/pt -@dirrm share/gnome/help/control-center/pl -@dirrm share/gnome/help/control-center/pa -@dirrm share/gnome/help/control-center/oc -@dirrm share/gnome/help/control-center/ja -@dirrm share/gnome/help/control-center/it -@dirrm share/gnome/help/control-center/fr -@dirrm share/gnome/help/control-center/es -@dirrm share/gnome/help/control-center/en_GB -@dirrm share/gnome/help/control-center/de -@dirrm share/gnome/help/control-center/cs -@dirrm share/gnome/help/control-center/ca@valencia -@dirrm share/gnome/help/control-center/ca -@dirrm share/gnome/help/control-center/C -@dirrm share/gnome/help/control-center -@dirrm share/gnome/cursor-fonts -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%%/default-apps -@dirrmtry share/desktop-directories -@dirrmtry share/applications -@dirrm lib/window-manager-settings -@dirrm include/gnome-window-settings-2.0 -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/sysutils/gnome-power-manager/Makefile b/sysutils/gnome-power-manager/Makefile deleted file mode 100644 index 02bb9b117..000000000 --- a/sysutils/gnome-power-manager/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: gnome-power-manager -# Date created: 03 May 2006 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/gnome-power-manager/Makefile,v 1.50 2008/11/19 19:49:56 mezz Exp $ -# - -PORTNAME= gnome-power-manager -PORTVERSION= 2.24.4 -PORTREVISION= 1 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Power management system for the GNOME Desktop - -BUILD_DEPENDS= docbook2html:${PORTSDIR}/textproc/docbook-utils \ - ${LOCALBASE}/share/sgml/docbook/4.1/catalog:${PORTSDIR}/textproc/docbook-410 -LIB_DEPENDS= hal.1:${PORTSDIR}/sysutils/hal \ - notify.1:${PORTSDIR}/devel/libnotify \ - execinfo:${PORTSDIR}/devel/libexecinfo - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_GMAKE= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_AUTOTOOLS= libtool:15 -USE_GSTREAMER= good -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui libwnck \ - gnomedocutils gnomepanel -CONFIGURE_ARGS= --with-doc-dir=${PREFIX}/share/doc \ - --disable-docbook-docs -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gnome-power-manager.schemas - -MAN1= gnome-power-manager.1 gnome-power-preferences.1 \ - gnome-power-statistics.1 - -post-patch: - @${REINPLACE_CMD} -e 's|-lresolv|| ; s|-Werror||g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/sysutils/gnome-power-manager/distinfo b/sysutils/gnome-power-manager/distinfo deleted file mode 100644 index c3465ec86..000000000 --- a/sysutils/gnome-power-manager/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-power-manager-2.24.4.tar.bz2) = bad8bba644d31f88d92a11d8880feada -SHA256 (gnome2/gnome-power-manager-2.24.4.tar.bz2) = 00da3aa929c444a600f7e5ccabd7a20f9b43710562b951c69cbe68ea4db37ef1 -SIZE (gnome2/gnome-power-manager-2.24.4.tar.bz2) = 2997032 diff --git a/sysutils/gnome-power-manager/files/patch-src_Makefile.in b/sysutils/gnome-power-manager/files/patch-src_Makefile.in deleted file mode 100644 index 8bbbfb172..000000000 --- a/sysutils/gnome-power-manager/files/patch-src_Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ ---- src/Makefile.in.orig 2008-09-29 17:30:53.000000000 -0400 -+++ src/Makefile.in 2008-09-29 17:35:03.000000000 -0400 -@@ -471,7 +471,7 @@ gnome_power_statistics_SOURCES = \ - $(NULL) - - gnome_power_statistics_LDADD = $(GLIB_LIBS) $(GNOME_LIBS) $(DBUS_LIBS) \ -- $(LOCAL_LIBDBUS_LIBS) $(LOCAL_LIBUNIQUE_LIBS) $(NULL) \ -+ $(LOCAL_LIBDBUS_LIBS) $(LOCAL_LIBUNIQUE_LIBS) -lexecinfo $(NULL) \ - $(am__append_1) - gnome_power_preferences_SOURCES = \ - egg-debug.h \ -@@ -499,7 +499,7 @@ gnome_power_preferences_SOURCES = \ - gnome_power_preferences_LDADD = $(GLIB_LIBS) $(GNOME_LIBS) $(HAL_LIBS) \ - $(DBUS_LIBS) $(POLKIT_GNOME_LIBS) $(GPM_EXTRA_LIBS) \ - $(LOCAL_LIBHAL_LIBS) $(LOCAL_LIBDBUS_LIBS) \ -- $(LOCAL_LIBUNIQUE_LIBS) $(NULL) $(am__append_2) -+ $(LOCAL_LIBUNIQUE_LIBS) -lexecinfo $(NULL) $(am__append_2) - gnome_power_manager_SOURCES = \ - egg-color.c \ - egg-color.h \ -@@ -588,7 +588,7 @@ gnome_power_manager_SOURCES = \ - gnome_power_manager_LDADD = $(GLIB_LIBS) $(GSTREAMER_LIBS) \ - $(GNOME_LIBS) $(HAL_LIBS) $(POLKIT_LIBS) $(DBUS_LIBS) \ - $(XRANDR_LIBS) $(GPM_EXTRA_LIBS) $(LOCAL_LIBHAL_LIBS) \ -- $(LOCAL_LIBDBUS_LIBS) $(NULL) $(am__append_3) -+ $(LOCAL_LIBDBUS_LIBS) -lexecinfo $(NULL) $(am__append_3) - gnome_power_self_test_SOURCES = \ - egg-color.c \ - egg-color.h \ diff --git a/sysutils/gnome-power-manager/files/patch-src_gpm-array-float.h b/sysutils/gnome-power-manager/files/patch-src_gpm-array-float.h deleted file mode 100644 index 8273665a5..000000000 --- a/sysutils/gnome-power-manager/files/patch-src_gpm-array-float.h +++ /dev/null @@ -1,14 +0,0 @@ ---- src/gpm-array-float.h.orig 2009-03-18 19:35:24.000000000 -0400 -+++ src/gpm-array-float.h 2009-03-18 19:35:42.000000000 -0400 -@@ -49,9 +49,9 @@ gfloat gpm_array_float_get_average (G - gboolean gpm_array_float_print (GArray *array); - GArray *gpm_array_float_convolve (GArray *data, - GArray *kernel); --inline gfloat gpm_array_float_get (GArray *array, -+gfloat gpm_array_float_get (GArray *array, - guint i); --inline void gpm_array_float_set (GArray *array, -+void gpm_array_float_set (GArray *array, - guint i, - gfloat value); - diff --git a/sysutils/gnome-power-manager/pkg-descr b/sysutils/gnome-power-manager/pkg-descr deleted file mode 100644 index 5b789d06c..000000000 --- a/sysutils/gnome-power-manager/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -GNOME Power Manager is a GNOME session daemon that acts as a policy agent -on top of HAL (the Hardware Abstraction Layer). GNOME Power Manager listens -for HAL events and responds with user-configurable reactions. -Currently it supports laptop batteries and AC adapters. Its goal is to be -architecture neutral and free of polling and other hacks. - -WWW: http://www.gnome.org/projects/gnome-power-manager/ diff --git a/sysutils/gnome-power-manager/pkg-plist b/sysutils/gnome-power-manager/pkg-plist deleted file mode 100644 index 9329befef..000000000 --- a/sysutils/gnome-power-manager/pkg-plist +++ /dev/null @@ -1,583 +0,0 @@ -bin/gnome-power-bugreport.sh -bin/gnome-power-cmd.sh -bin/gnome-power-manager -bin/gnome-power-preferences -bin/gnome-power-statistics -libdata/bonobo/servers/GNOME_BrightnessApplet.server -libdata/bonobo/servers/GNOME_InhibitApplet.server -libexec/gnome-brightness-applet -libexec/gnome-inhibit-applet -share/applications/gnome-power-preferences.desktop -share/applications/gnome-power-statistics.desktop -share/dbus-1/services/gnome-power-manager.service -share/gnome-2.0/ui/GNOME_BrightnessApplet.xml -share/gnome-2.0/ui/GNOME_InhibitApplet.xml -%%DATADIR%%/gpm-critical-power.wav -%%DATADIR%%/gpm-feedback-widget.glade -%%DATADIR%%/gpm-graph.glade -%%DATADIR%%/gpm-inhibit-test.glade -%%DATADIR%%/gpm-prefs.glade -%%DATADIR%%/gpm-suspend-failure.wav -%%DATADIR%%/gpm-unplugged.wav -%%DATADIR%%/icons/hicolor/16x16/actions/gpm-hibernate.png -%%DATADIR%%/icons/hicolor/16x16/actions/gpm-suspend.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ac-adapter.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-kbd-disabled.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-kbd-invalid.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-kbd.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-lcd-disabled.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-lcd-invalid.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-lcd.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-inhibit-invalid.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-inhibit.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-030.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-060.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-030.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-060.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-030.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-060.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-missing.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-000-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-020-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-020.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-040-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-040.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-060-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-060.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-080-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-080.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-100-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-charged.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-missing.png -%%DATADIR%%/icons/hicolor/22x22/actions/gpm-hibernate.png -%%DATADIR%%/icons/hicolor/22x22/actions/gpm-suspend.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ac-adapter.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-kbd-disabled.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-kbd-invalid.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-kbd.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-lcd-disabled.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-lcd-invalid.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-lcd.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-inhibit-invalid.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-inhibit.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-030.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-060.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-030.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-060.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-030.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-060.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-missing.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-000-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-020-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-020.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-040-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-040.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-060-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-060.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-080-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-080.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-100-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-charged.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-missing.png -%%DATADIR%%/icons/hicolor/24x24/actions/gpm-hibernate.png -%%DATADIR%%/icons/hicolor/24x24/actions/gpm-suspend.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ac-adapter.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-kbd-disabled.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-kbd-invalid.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-kbd.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-lcd-disabled.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-lcd-invalid.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-lcd.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-inhibit-invalid.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-inhibit.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-030.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-060.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-030.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-060.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-030.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-060.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-missing.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-000-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-020-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-020.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-040-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-040.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-060-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-060.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-080-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-080.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-100-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-charged.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-missing.png -%%DATADIR%%/icons/hicolor/48x48/actions/gpm-hibernate.png -%%DATADIR%%/icons/hicolor/48x48/actions/gpm-suspend.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ac-adapter.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-kbd-disabled.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-kbd-invalid.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-kbd.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-lcd-disabled.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-lcd-invalid.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-lcd.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-inhibit-invalid.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-inhibit.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-030.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-060.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-030.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-060.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-030.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-060.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-missing.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-000-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-020-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-020.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-040-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-040.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-060-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-060.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-080-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-080.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-100-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-charged.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-missing.png -%%DATADIR%%/icons/hicolor/scalable/actions/gpm-hibernate.svg -%%DATADIR%%/icons/hicolor/scalable/actions/gpm-suspend.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ac-adapter.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-kbd-disabled.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-kbd-invalid.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-kbd.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-lcd-disabled.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-lcd-invalid.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-lcd.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-inhibit-invalid.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-inhibit.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-030.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-060.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-030.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-060.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-030.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-060.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-000-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-020-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-020.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-040-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-040.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-060-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-060.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-080-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-080.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-100-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-charged.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-missing.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-000-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-020-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-020.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-040-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-040.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-060-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-060.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-080-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-080.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-100-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-charged.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-missing.svg -share/gnome/autostart/gnome-power-manager.desktop -share/gnome/help/gnome-power-manager/C/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/C/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/C/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/C/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/C/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/C/figures/gpm-low.png -share/gnome/help/gnome-power-manager/C/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/C/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/C/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/C/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/C/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/C/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/C/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/C/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/C/legal.xml -share/gnome/help/gnome-power-manager/ca/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/ca/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-low.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/ca/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/ca/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/ca/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/es/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/es/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/es/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/es/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/es/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/es/figures/gpm-low.png -share/gnome/help/gnome-power-manager/es/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/es/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/es/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/es/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/es/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/es/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/es/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/es/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/fr/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/fr/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-low.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/fr/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/fr/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/fr/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/hu/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/hu/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-low.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/hu/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/hu/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/hu/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/it/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/it/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/it/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/it/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/it/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/it/figures/gpm-low.png -share/gnome/help/gnome-power-manager/it/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/it/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/it/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/it/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/it/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/it/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/it/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/it/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/oc/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/oc/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-low.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/oc/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/oc/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/oc/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/pa/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/pa/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-low.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/pa/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/pa/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/pa/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/ru/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/ru/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-low.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/ru/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/ru/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/ru/gnome-power-manager.xml -share/gnome/help/gnome-power-manager/sv/figures/applet-brightness.png -share/gnome/help/gnome-power-manager/sv/figures/applet-inhibit.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-cell-capacity.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-charged.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-critical.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-low.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-prefs-ac.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-prefs-battery.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-prefs-general.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-stats-graph.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-suspend-problem.png -share/gnome/help/gnome-power-manager/sv/figures/gpm-unplugged.png -share/gnome/help/gnome-power-manager/sv/figures/gs-prefs.png -share/gnome/help/gnome-power-manager/sv/gnome-power-manager.xml -share/icons/hicolor/16x16/apps/gnome-brightness-applet.png -share/icons/hicolor/16x16/apps/gnome-inhibit-applet.png -share/icons/hicolor/16x16/apps/gnome-power-manager.png -share/icons/hicolor/16x16/apps/gnome-power-statistics.png -share/icons/hicolor/22x22/apps/gnome-brightness-applet.png -share/icons/hicolor/22x22/apps/gnome-inhibit-applet.png -share/icons/hicolor/22x22/apps/gnome-power-manager.png -share/icons/hicolor/22x22/apps/gnome-power-statistics.png -share/icons/hicolor/24x24/apps/gnome-brightness-applet.png -share/icons/hicolor/24x24/apps/gnome-inhibit-applet.png -share/icons/hicolor/24x24/apps/gnome-power-manager.png -share/icons/hicolor/24x24/apps/gnome-power-statistics.png -share/icons/hicolor/48x48/apps/gnome-brightness-applet.png -share/icons/hicolor/48x48/apps/gnome-inhibit-applet.png -share/icons/hicolor/48x48/apps/gnome-power-manager.png -share/icons/hicolor/48x48/apps/gnome-power-statistics.png -share/icons/hicolor/scalable/apps/gnome-brightness-applet.svg -share/icons/hicolor/scalable/apps/gnome-inhibit-applet.svg -share/icons/hicolor/scalable/apps/gnome-power-manager.svg -share/icons/hicolor/scalable/apps/gnome-power-statistics.svg -share/locale/ar/LC_MESSAGES/gnome-power-manager.mo -share/locale/as/LC_MESSAGES/gnome-power-manager.mo -share/locale/ast/LC_MESSAGES/gnome-power-manager.mo -share/locale/be@latin/LC_MESSAGES/gnome-power-manager.mo -share/locale/bg/LC_MESSAGES/gnome-power-manager.mo -share/locale/bn/LC_MESSAGES/gnome-power-manager.mo -share/locale/bn_IN/LC_MESSAGES/gnome-power-manager.mo -share/locale/ca/LC_MESSAGES/gnome-power-manager.mo -share/locale/cs/LC_MESSAGES/gnome-power-manager.mo -share/locale/cy/LC_MESSAGES/gnome-power-manager.mo -share/locale/da/LC_MESSAGES/gnome-power-manager.mo -share/locale/de/LC_MESSAGES/gnome-power-manager.mo -share/locale/dz/LC_MESSAGES/gnome-power-manager.mo -share/locale/el/LC_MESSAGES/gnome-power-manager.mo -share/locale/en_CA/LC_MESSAGES/gnome-power-manager.mo -share/locale/en_GB/LC_MESSAGES/gnome-power-manager.mo -share/locale/es/LC_MESSAGES/gnome-power-manager.mo -share/locale/et/LC_MESSAGES/gnome-power-manager.mo -share/locale/eu/LC_MESSAGES/gnome-power-manager.mo -share/locale/fa/LC_MESSAGES/gnome-power-manager.mo -share/locale/fi/LC_MESSAGES/gnome-power-manager.mo -share/locale/fr/LC_MESSAGES/gnome-power-manager.mo -share/locale/ga/LC_MESSAGES/gnome-power-manager.mo -share/locale/gl/LC_MESSAGES/gnome-power-manager.mo -share/locale/gu/LC_MESSAGES/gnome-power-manager.mo -share/locale/he/LC_MESSAGES/gnome-power-manager.mo -share/locale/hi/LC_MESSAGES/gnome-power-manager.mo -share/locale/hu/LC_MESSAGES/gnome-power-manager.mo -share/locale/id/LC_MESSAGES/gnome-power-manager.mo -share/locale/is/LC_MESSAGES/gnome-power-manager.mo -share/locale/it/LC_MESSAGES/gnome-power-manager.mo -share/locale/ja/LC_MESSAGES/gnome-power-manager.mo -share/locale/ka/LC_MESSAGES/gnome-power-manager.mo -share/locale/kn/LC_MESSAGES/gnome-power-manager.mo -share/locale/ko/LC_MESSAGES/gnome-power-manager.mo -share/locale/ku/LC_MESSAGES/gnome-power-manager.mo -share/locale/lt/LC_MESSAGES/gnome-power-manager.mo -share/locale/lv/LC_MESSAGES/gnome-power-manager.mo -share/locale/mg/LC_MESSAGES/gnome-power-manager.mo -share/locale/mk/LC_MESSAGES/gnome-power-manager.mo -share/locale/ml/LC_MESSAGES/gnome-power-manager.mo -share/locale/mr/LC_MESSAGES/gnome-power-manager.mo -share/locale/nb/LC_MESSAGES/gnome-power-manager.mo -share/locale/nl/LC_MESSAGES/gnome-power-manager.mo -share/locale/nn/LC_MESSAGES/gnome-power-manager.mo -share/locale/oc/LC_MESSAGES/gnome-power-manager.mo -share/locale/or/LC_MESSAGES/gnome-power-manager.mo -share/locale/pa/LC_MESSAGES/gnome-power-manager.mo -share/locale/pl/LC_MESSAGES/gnome-power-manager.mo -share/locale/pt/LC_MESSAGES/gnome-power-manager.mo -share/locale/pt_BR/LC_MESSAGES/gnome-power-manager.mo -share/locale/ro/LC_MESSAGES/gnome-power-manager.mo -share/locale/ru/LC_MESSAGES/gnome-power-manager.mo -share/locale/si/LC_MESSAGES/gnome-power-manager.mo -share/locale/sk/LC_MESSAGES/gnome-power-manager.mo -share/locale/sl/LC_MESSAGES/gnome-power-manager.mo -share/locale/sr/LC_MESSAGES/gnome-power-manager.mo -share/locale/sr@latin/LC_MESSAGES/gnome-power-manager.mo -share/locale/sv/LC_MESSAGES/gnome-power-manager.mo -share/locale/ta/LC_MESSAGES/gnome-power-manager.mo -share/locale/te/LC_MESSAGES/gnome-power-manager.mo -share/locale/th/LC_MESSAGES/gnome-power-manager.mo -share/locale/tr/LC_MESSAGES/gnome-power-manager.mo -share/locale/uk/LC_MESSAGES/gnome-power-manager.mo -share/locale/vi/LC_MESSAGES/gnome-power-manager.mo -share/locale/zh_CN/LC_MESSAGES/gnome-power-manager.mo -share/locale/zh_HK/LC_MESSAGES/gnome-power-manager.mo -share/locale/zh_TW/LC_MESSAGES/gnome-power-manager.mo -share/omf/gnome-power-manager/gnome-power-manager-C.omf -share/omf/gnome-power-manager/gnome-power-manager-ca.omf -share/omf/gnome-power-manager/gnome-power-manager-es.omf -share/omf/gnome-power-manager/gnome-power-manager-fr.omf -share/omf/gnome-power-manager/gnome-power-manager-hu.omf -share/omf/gnome-power-manager/gnome-power-manager-it.omf -share/omf/gnome-power-manager/gnome-power-manager-oc.omf -share/omf/gnome-power-manager/gnome-power-manager-pa.omf -share/omf/gnome-power-manager/gnome-power-manager-ru.omf -share/omf/gnome-power-manager/gnome-power-manager-sv.omf -@dirrm share/omf/gnome-power-manager -@dirrm share/gnome/help/gnome-power-manager/sv/figures -@dirrm share/gnome/help/gnome-power-manager/sv -@dirrm share/gnome/help/gnome-power-manager/ru/figures -@dirrm share/gnome/help/gnome-power-manager/ru -@dirrm share/gnome/help/gnome-power-manager/pa/figures -@dirrm share/gnome/help/gnome-power-manager/pa -@dirrm share/gnome/help/gnome-power-manager/oc/figures -@dirrm share/gnome/help/gnome-power-manager/oc -@dirrm share/gnome/help/gnome-power-manager/it/figures -@dirrm share/gnome/help/gnome-power-manager/it -@dirrm share/gnome/help/gnome-power-manager/hu/figures -@dirrm share/gnome/help/gnome-power-manager/hu -@dirrm share/gnome/help/gnome-power-manager/fr/figures -@dirrm share/gnome/help/gnome-power-manager/fr -@dirrm share/gnome/help/gnome-power-manager/es/figures -@dirrm share/gnome/help/gnome-power-manager/es -@dirrm share/gnome/help/gnome-power-manager/ca/figures -@dirrm share/gnome/help/gnome-power-manager/ca -@dirrm share/gnome/help/gnome-power-manager/C/figures -@dirrm share/gnome/help/gnome-power-manager/C -@dirrm share/gnome/help/gnome-power-manager -@dirrm %%DATADIR%%/icons/hicolor/scalable/status -@dirrm %%DATADIR%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/48x48/status -@dirrm %%DATADIR%%/icons/hicolor/48x48/actions -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor/24x24/status -@dirrm %%DATADIR%%/icons/hicolor/24x24/actions -@dirrm %%DATADIR%%/icons/hicolor/24x24 -@dirrm %%DATADIR%%/icons/hicolor/22x22/status -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/sysutils/gnome-settings-daemon/Makefile b/sysutils/gnome-settings-daemon/Makefile deleted file mode 100644 index 95d26131d..000000000 --- a/sysutils/gnome-settings-daemon/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: gnome-settings-daemon -# Date created: 14 Jan 2008 -# Whom: Koop Mast <kwm@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/gnome-settings-daemon/Makefile,v 1.36 2009/03/10 04:41:23 marcus Exp $ -# - -PORTNAME= gnome-settings-daemon -PORTVERSION= 2.26.0 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 settings daemon - -LIB_DEPENDS= pulse.0:${PORTSDIR}/audio/pulseaudio - -USE_XORG= xxf86misc -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix intlhack gnomehack gnomedesktop libgnomekbd -USE_GETTEXT= yes -USE_GSTREAMER= good -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -CONFIGURE_ARGS= --enable-gstreamer=0.10 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= apps_gnome_settings_daemon_keybindings.schemas \ - apps_gnome_settings_daemon_xrandr.schemas \ - apps_gnome_settings_daemon_screensaver.schemas \ - desktop_gnome_font_rendering.schemas \ - desktop_gnome_keybindings.schemas \ - gnome-settings-daemon.schemas - -.include <bsd.port.mk> diff --git a/sysutils/gnome-settings-daemon/distinfo b/sysutils/gnome-settings-daemon/distinfo deleted file mode 100644 index e075a7705..000000000 --- a/sysutils/gnome-settings-daemon/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-settings-daemon-2.26.0.tar.bz2) = c3a2934deccfcf13de15507d4be802d3 -SHA256 (gnome2/gnome-settings-daemon-2.26.0.tar.bz2) = 20502568f82ce92bc26122ceafae0f63ed71bfba0366db03c163c8567db2a103 -SIZE (gnome2/gnome-settings-daemon-2.26.0.tar.bz2) = 1143867 diff --git a/sysutils/gnome-settings-daemon/files/patch-plugins_media-keys_gsd-media-keys-manager.c b/sysutils/gnome-settings-daemon/files/patch-plugins_media-keys_gsd-media-keys-manager.c deleted file mode 100644 index 73931511d..000000000 --- a/sysutils/gnome-settings-daemon/files/patch-plugins_media-keys_gsd-media-keys-manager.c +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/media-keys/gsd-media-keys-manager.c.orig 2009-02-04 16:33:14.000000000 -0500 -+++ plugins/media-keys/gsd-media-keys-manager.c 2009-02-27 14:05:26.000000000 -0500 -@@ -64,6 +64,8 @@ - - #if defined(__OpenBSD__) - # define EJECT_COMMAND "eject -t /dev/cd0" -+#elif defined(__FreeBSD__) -+# define EJECT_COMMAND "cdcontrol eject" - #else - # define EJECT_COMMAND "eject -T" - #endif diff --git a/sysutils/gnome-settings-daemon/files/patch-plugins_sound_gst-sound-manager.c b/sysutils/gnome-settings-daemon/files/patch-plugins_sound_gst-sound-manager.c deleted file mode 100644 index cc0baf6fd..000000000 --- a/sysutils/gnome-settings-daemon/files/patch-plugins_sound_gst-sound-manager.c +++ /dev/null @@ -1,10 +0,0 @@ ---- plugins/sound/gsd-sound-manager.c.orig 2008-04-07 10:04:58.426471043 -0400 -+++ plugins/sound/gsd-sound-manager.c 2008-04-07 10:05:10.592326201 -0400 -@@ -23,6 +23,7 @@ - - #include <sys/types.h> - #include <sys/wait.h> -+#include <signal.h> - #include <stdlib.h> - #include <stdio.h> - #include <unistd.h> diff --git a/sysutils/gnome-settings-daemon/pkg-descr b/sysutils/gnome-settings-daemon/pkg-descr deleted file mode 100644 index 9ce205e84..000000000 --- a/sysutils/gnome-settings-daemon/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -GNOME 2 settings daemon. - -WWW: http://www.gnome.org diff --git a/sysutils/gnome-settings-daemon/pkg-plist b/sysutils/gnome-settings-daemon/pkg-plist deleted file mode 100644 index dd7b5a3e2..000000000 --- a/sysutils/gnome-settings-daemon/pkg-plist +++ /dev/null @@ -1,209 +0,0 @@ -etc/xdg/autostart/gnome-settings-daemon.desktop -include/gnome-settings-daemon-2.0/gnome-settings-daemon/gnome-settings-client.h -include/gnome-settings-daemon-2.0/gnome-settings-daemon/gnome-settings-plugin.h -lib/gnome-settings-daemon-2.0/a11y-keyboard.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/background.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/clipboard.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/dummy.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/font.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/housekeeping.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/keybindings.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/keyboard.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/liba11y-keyboard.a -lib/gnome-settings-daemon-2.0/liba11y-keyboard.la -lib/gnome-settings-daemon-2.0/liba11y-keyboard.so -lib/gnome-settings-daemon-2.0/libbackground.a -lib/gnome-settings-daemon-2.0/libbackground.la -lib/gnome-settings-daemon-2.0/libbackground.so -lib/gnome-settings-daemon-2.0/libclipboard.a -lib/gnome-settings-daemon-2.0/libclipboard.la -lib/gnome-settings-daemon-2.0/libclipboard.so -lib/gnome-settings-daemon-2.0/libdummy.a -lib/gnome-settings-daemon-2.0/libdummy.la -lib/gnome-settings-daemon-2.0/libdummy.so -lib/gnome-settings-daemon-2.0/libfont.a -lib/gnome-settings-daemon-2.0/libfont.la -lib/gnome-settings-daemon-2.0/libfont.so -lib/gnome-settings-daemon-2.0/libhousekeeping.a -lib/gnome-settings-daemon-2.0/libhousekeeping.la -lib/gnome-settings-daemon-2.0/libhousekeeping.so -lib/gnome-settings-daemon-2.0/libkeybindings.a -lib/gnome-settings-daemon-2.0/libkeybindings.la -lib/gnome-settings-daemon-2.0/libkeybindings.so -lib/gnome-settings-daemon-2.0/libkeyboard.a -lib/gnome-settings-daemon-2.0/libkeyboard.la -lib/gnome-settings-daemon-2.0/libkeyboard.so -lib/gnome-settings-daemon-2.0/libmedia-keys.a -lib/gnome-settings-daemon-2.0/libmedia-keys.la -lib/gnome-settings-daemon-2.0/libmedia-keys.so -lib/gnome-settings-daemon-2.0/libmouse.a -lib/gnome-settings-daemon-2.0/libmouse.la -lib/gnome-settings-daemon-2.0/libmouse.so -lib/gnome-settings-daemon-2.0/libscreensaver.a -lib/gnome-settings-daemon-2.0/libscreensaver.la -lib/gnome-settings-daemon-2.0/libscreensaver.so -lib/gnome-settings-daemon-2.0/libsound.a -lib/gnome-settings-daemon-2.0/libsound.la -lib/gnome-settings-daemon-2.0/libsound.so -lib/gnome-settings-daemon-2.0/libtyping-break.a -lib/gnome-settings-daemon-2.0/libtyping-break.la -lib/gnome-settings-daemon-2.0/libtyping-break.so -lib/gnome-settings-daemon-2.0/libxrandr.a -lib/gnome-settings-daemon-2.0/libxrandr.la -lib/gnome-settings-daemon-2.0/libxrandr.so -lib/gnome-settings-daemon-2.0/libxrdb.a -lib/gnome-settings-daemon-2.0/libxrdb.la -lib/gnome-settings-daemon-2.0/libxrdb.so -lib/gnome-settings-daemon-2.0/libxsettings.a -lib/gnome-settings-daemon-2.0/libxsettings.la -lib/gnome-settings-daemon-2.0/libxsettings.so -lib/gnome-settings-daemon-2.0/media-keys.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/mouse.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/screensaver.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/sound.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/typing-break.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/xrandr.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/xrdb.gnome-settings-plugin -lib/gnome-settings-daemon-2.0/xsettings.gnome-settings-plugin -libdata/pkgconfig/gnome-settings-daemon.pc -libexec/gnome-settings-daemon -share/dbus-1/services/org.gnome.SettingsDaemon.service -share/gnome-control-center/keybindings/50-accessibility.xml -%%DATADIR%%/acme-eject.png -%%DATADIR%%/acme.glade -%%DATADIR%%/gsd-a11y-preferences-dialog.glade -%%DATADIR%%/modmap-dialog.glade -%%DATADIR%%/xrdb/Editres.ad -%%DATADIR%%/xrdb/Emacs.ad -%%DATADIR%%/xrdb/General.ad -%%DATADIR%%/xrdb/Motif.ad -%%DATADIR%%/xrdb/Tk.ad -%%DATADIR%%/xrdb/Xaw.ad -share/icons/hicolor/16x16/apps/gsd-xrandr.png -share/icons/hicolor/22x22/apps/gsd-xrandr.png -share/icons/hicolor/24x24/apps/gsd-xrandr.png -share/icons/hicolor/32x32/apps/gsd-xrandr.png -share/icons/hicolor/scalable/apps/gsd-xrandr.svg -share/locale/af/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/am/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ar/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/as/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ast/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/az/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/be/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/be@latin/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/bg/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/bn/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/bn_IN/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/br/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/bs/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ca/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/cs/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/cy/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/da/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/de/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/dz/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/el/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/en_CA/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/en_GB/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/es/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/et/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/eu/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/fa/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/fi/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/fr/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ga/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/gl/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/gu/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/he/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/hi/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/hr/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/hu/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/id/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/is/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/it/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ja/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ka/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/kn/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ko/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ku/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/lt/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/lv/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/mg/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/mk/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ml/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/mn/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/mr/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ms/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/nb/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ne/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/nl/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/nn/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/nso/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/oc/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/or/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/pa/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/pl/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/pt/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/pt_BR/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ro/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ru/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/rw/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/si/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/sk/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/sl/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/sq/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/sr/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/sr@latin/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/sv/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/ta/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/te/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/th/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/tr/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/uk/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/vi/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/wa/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/xh/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/zh_CN/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/zh_HK/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/zh_TW/LC_MESSAGES/gnome-settings-daemon.mo -share/locale/zu/LC_MESSAGES/gnome-settings-daemon.mo -@dirrm %%DATADIR%%/xrdb -@dirrm %%DATADIR%% -@dirrm lib/gnome-settings-daemon-2.0 -@dirrm include/gnome-settings-daemon-2.0/gnome-settings-daemon -@dirrm include/gnome-settings-daemon-2.0 -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/sysutils/gnome-system-monitor/Makefile b/sysutils/gnome-system-monitor/Makefile deleted file mode 100644 index c9749f1a5..000000000 --- a/sysutils/gnome-system-monitor/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: gnomesystemmonitor -# Date created: 09 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/gnome-system-monitor/Makefile,v 1.131 2009/03/03 19:13:29 marcus Exp $ -# - -PORTNAME= gnome-system-monitor -PORTVERSION= 2.26.0.1 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 system monitor program - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \ - gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme - -USE_BZIP2= yes -USE_GETTEXT= yes -INSTALLS_OMF= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix intlhack gnomehack libwnck gnomevfs2 gnomedocutils \ - librsvg2 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-pcrecpp -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lutil" - -GCONF_SCHEMAS= gnome-system-monitor.schemas - -.include <bsd.port.mk> diff --git a/sysutils/gnome-system-monitor/distinfo b/sysutils/gnome-system-monitor/distinfo deleted file mode 100644 index b2fda80f4..000000000 --- a/sysutils/gnome-system-monitor/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-system-monitor-2.26.0.1.tar.bz2) = 553de9c4912f4af25f92a3380626c0f1 -SHA256 (gnome2/gnome-system-monitor-2.26.0.1.tar.bz2) = 6b78e253e848b0652e76bfacae300e2b02f4f3081e418f3f19aa54fe337ee6f5 -SIZE (gnome2/gnome-system-monitor-2.26.0.1.tar.bz2) = 2217159 diff --git a/sysutils/gnome-system-monitor/files/patch-src_load-graph.cpp b/sysutils/gnome-system-monitor/files/patch-src_load-graph.cpp deleted file mode 100644 index e57a21704..000000000 --- a/sysutils/gnome-system-monitor/files/patch-src_load-graph.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- src/load-graph.cpp.orig 2008-01-14 23:43:43.000000000 -0600 -+++ src/load-graph.cpp 2008-01-14 23:44:15.000000000 -0600 -@@ -501,7 +501,7 @@ - // e.g: ceil(100.5 KiB) = 101 KiB = 101 * 2**(1 * 10) - // where base10 = 1, coef10 = 101, pow2 = 16 - -- unsigned pow2 = std::floor(log2(new_max)); -+ unsigned pow2 = std::floor(log(new_max) / log(2)); - unsigned base10 = pow2 / 10; - unsigned coef10 = std::ceil(new_max / double(1UL << (base10 * 10))); - g_assert(new_max <= (coef10 * (1UL << (base10 * 10)))); diff --git a/sysutils/gnome-system-monitor/files/patch-src_openfiles.cpp b/sysutils/gnome-system-monitor/files/patch-src_openfiles.cpp deleted file mode 100644 index c00526174..000000000 --- a/sysutils/gnome-system-monitor/files/patch-src_openfiles.cpp +++ /dev/null @@ -1,14 +0,0 @@ ---- src/openfiles.cpp.orig 2008-05-27 16:16:46.000000000 -0400 -+++ src/openfiles.cpp 2008-05-27 16:19:53.000000000 -0400 -@@ -66,7 +66,11 @@ friendlier_hostname(const char *addr_str - goto failsafe; - - if (getnameinfo(res->ai_addr, res->ai_addrlen, hostname, -+#ifdef NI_IDN - sizeof hostname, service, sizeof service, NI_IDN)) -+#else -+ sizeof hostname, service, sizeof service, 0)) -+#endif - goto failsafe; - - if (res) freeaddrinfo(res); diff --git a/sysutils/gnome-system-monitor/pkg-descr b/sysutils/gnome-system-monitor/pkg-descr deleted file mode 100644 index 40caee647..000000000 --- a/sysutils/gnome-system-monitor/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -GNOME 2.0 system monitor program. diff --git a/sysutils/gnome-system-monitor/pkg-plist b/sysutils/gnome-system-monitor/pkg-plist deleted file mode 100644 index f77bc9535..000000000 --- a/sysutils/gnome-system-monitor/pkg-plist +++ /dev/null @@ -1,292 +0,0 @@ -bin/gnome-system-monitor -share/applications/gnome-system-monitor.desktop -share/gnome/help/gnome-system-monitor/C/figures/addColumn.png -share/gnome/help/gnome-system-monitor/C/figures/changePriority.png -share/gnome/help/gnome-system-monitor/C/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/C/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/C/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/C/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/C/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/C/figures/processListing.png -share/gnome/help/gnome-system-monitor/C/figures/sortButton.png -share/gnome/help/gnome-system-monitor/C/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/C/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/C/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/C/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/C/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/C/legal.xml -share/gnome/help/gnome-system-monitor/ar/figures/addColumn.png -share/gnome/help/gnome-system-monitor/ar/figures/changePriority.png -share/gnome/help/gnome-system-monitor/ar/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/ar/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/ar/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/ar/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/ar/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/ar/figures/processListing.png -share/gnome/help/gnome-system-monitor/ar/figures/sortButton.png -share/gnome/help/gnome-system-monitor/ar/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/ar/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/ar/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/ar/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/ar/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/bg/figures/addColumn.png -share/gnome/help/gnome-system-monitor/bg/figures/changePriority.png -share/gnome/help/gnome-system-monitor/bg/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/bg/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/bg/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/bg/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/bg/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/bg/figures/processListing.png -share/gnome/help/gnome-system-monitor/bg/figures/sortButton.png -share/gnome/help/gnome-system-monitor/bg/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/bg/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/bg/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/bg/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/bg/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/ca/figures/addColumn.png -share/gnome/help/gnome-system-monitor/ca/figures/changePriority.png -share/gnome/help/gnome-system-monitor/ca/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/ca/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/ca/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/ca/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/ca/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/ca/figures/processListing.png -share/gnome/help/gnome-system-monitor/ca/figures/sortButton.png -share/gnome/help/gnome-system-monitor/ca/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/ca/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/ca/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/ca/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/ca/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/de/figures/addColumn.png -share/gnome/help/gnome-system-monitor/de/figures/changePriority.png -share/gnome/help/gnome-system-monitor/de/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/de/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/de/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/de/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/de/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/de/figures/processListing.png -share/gnome/help/gnome-system-monitor/de/figures/sortButton.png -share/gnome/help/gnome-system-monitor/de/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/de/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/de/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/de/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/de/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/es/figures/addColumn.png -share/gnome/help/gnome-system-monitor/es/figures/changePriority.png -share/gnome/help/gnome-system-monitor/es/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/es/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/es/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/es/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/es/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/es/figures/processListing.png -share/gnome/help/gnome-system-monitor/es/figures/sortButton.png -share/gnome/help/gnome-system-monitor/es/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/es/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/es/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/es/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/es/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/fr/figures/addColumn.png -share/gnome/help/gnome-system-monitor/fr/figures/changePriority.png -share/gnome/help/gnome-system-monitor/fr/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/fr/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/fr/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/fr/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/fr/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/fr/figures/processListing.png -share/gnome/help/gnome-system-monitor/fr/figures/sortButton.png -share/gnome/help/gnome-system-monitor/fr/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/fr/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/fr/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/fr/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/fr/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/oc/figures/addColumn.png -share/gnome/help/gnome-system-monitor/oc/figures/changePriority.png -share/gnome/help/gnome-system-monitor/oc/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/oc/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/oc/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/oc/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/oc/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/oc/figures/processListing.png -share/gnome/help/gnome-system-monitor/oc/figures/sortButton.png -share/gnome/help/gnome-system-monitor/oc/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/oc/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/oc/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/oc/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/oc/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/pa/figures/addColumn.png -share/gnome/help/gnome-system-monitor/pa/figures/changePriority.png -share/gnome/help/gnome-system-monitor/pa/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/pa/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/pa/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/pa/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/pa/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/pa/figures/processListing.png -share/gnome/help/gnome-system-monitor/pa/figures/sortButton.png -share/gnome/help/gnome-system-monitor/pa/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/pa/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/pa/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/pa/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/pa/gnome-system-monitor.xml -share/gnome/help/gnome-system-monitor/sv/figures/addColumn.png -share/gnome/help/gnome-system-monitor/sv/figures/changePriority.png -share/gnome/help/gnome-system-monitor/sv/figures/colorPanel.png -share/gnome/help/gnome-system-monitor/sv/figures/columnContextMenu.png -share/gnome/help/gnome-system-monitor/sv/figures/gnome-system-monitor_window.png -share/gnome/help/gnome-system-monitor/sv/figures/memoryMaps.png -share/gnome/help/gnome-system-monitor/sv/figures/moreInfo.png -share/gnome/help/gnome-system-monitor/sv/figures/processListing.png -share/gnome/help/gnome-system-monitor/sv/figures/sortButton.png -share/gnome/help/gnome-system-monitor/sv/figures/sortMenu.png -share/gnome/help/gnome-system-monitor/sv/figures/sortMenu2.png -share/gnome/help/gnome-system-monitor/sv/figures/systemMonitor.png -share/gnome/help/gnome-system-monitor/sv/figures/viewMenu.png -share/gnome/help/gnome-system-monitor/sv/gnome-system-monitor.xml -share/locale/am/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ar/LC_MESSAGES/gnome-system-monitor.mo -share/locale/as/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ast/LC_MESSAGES/gnome-system-monitor.mo -share/locale/az/LC_MESSAGES/gnome-system-monitor.mo -share/locale/be/LC_MESSAGES/gnome-system-monitor.mo -share/locale/be@latin/LC_MESSAGES/gnome-system-monitor.mo -share/locale/bg/LC_MESSAGES/gnome-system-monitor.mo -share/locale/bn/LC_MESSAGES/gnome-system-monitor.mo -share/locale/bn_IN/LC_MESSAGES/gnome-system-monitor.mo -share/locale/bs/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ca/LC_MESSAGES/gnome-system-monitor.mo -share/locale/cs/LC_MESSAGES/gnome-system-monitor.mo -share/locale/cy/LC_MESSAGES/gnome-system-monitor.mo -share/locale/da/LC_MESSAGES/gnome-system-monitor.mo -share/locale/de/LC_MESSAGES/gnome-system-monitor.mo -share/locale/dz/LC_MESSAGES/gnome-system-monitor.mo -share/locale/el/LC_MESSAGES/gnome-system-monitor.mo -share/locale/en_CA/LC_MESSAGES/gnome-system-monitor.mo -share/locale/en_GB/LC_MESSAGES/gnome-system-monitor.mo -share/locale/es/LC_MESSAGES/gnome-system-monitor.mo -share/locale/et/LC_MESSAGES/gnome-system-monitor.mo -share/locale/eu/LC_MESSAGES/gnome-system-monitor.mo -share/locale/fa/LC_MESSAGES/gnome-system-monitor.mo -share/locale/fi/LC_MESSAGES/gnome-system-monitor.mo -share/locale/fr/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ga/LC_MESSAGES/gnome-system-monitor.mo -share/locale/gl/LC_MESSAGES/gnome-system-monitor.mo -share/locale/gu/LC_MESSAGES/gnome-system-monitor.mo -share/locale/he/LC_MESSAGES/gnome-system-monitor.mo -share/locale/hi/LC_MESSAGES/gnome-system-monitor.mo -share/locale/hr/LC_MESSAGES/gnome-system-monitor.mo -share/locale/hu/LC_MESSAGES/gnome-system-monitor.mo -share/locale/id/LC_MESSAGES/gnome-system-monitor.mo -share/locale/it/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ja/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ka/LC_MESSAGES/gnome-system-monitor.mo -share/locale/kn/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ko/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ku/LC_MESSAGES/gnome-system-monitor.mo -share/locale/li/LC_MESSAGES/gnome-system-monitor.mo -share/locale/lt/LC_MESSAGES/gnome-system-monitor.mo -share/locale/lv/LC_MESSAGES/gnome-system-monitor.mo -share/locale/mg/LC_MESSAGES/gnome-system-monitor.mo -share/locale/mk/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ml/LC_MESSAGES/gnome-system-monitor.mo -share/locale/mn/LC_MESSAGES/gnome-system-monitor.mo -share/locale/mr/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ms/LC_MESSAGES/gnome-system-monitor.mo -share/locale/nb/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ne/LC_MESSAGES/gnome-system-monitor.mo -share/locale/nl/LC_MESSAGES/gnome-system-monitor.mo -share/locale/nn/LC_MESSAGES/gnome-system-monitor.mo -share/locale/oc/LC_MESSAGES/gnome-system-monitor.mo -share/locale/or/LC_MESSAGES/gnome-system-monitor.mo -share/locale/pa/LC_MESSAGES/gnome-system-monitor.mo -share/locale/pl/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ps/LC_MESSAGES/gnome-system-monitor.mo -share/locale/pt/LC_MESSAGES/gnome-system-monitor.mo -share/locale/pt_BR/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ro/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ru/LC_MESSAGES/gnome-system-monitor.mo -share/locale/rw/LC_MESSAGES/gnome-system-monitor.mo -share/locale/si/LC_MESSAGES/gnome-system-monitor.mo -share/locale/sk/LC_MESSAGES/gnome-system-monitor.mo -share/locale/sl/LC_MESSAGES/gnome-system-monitor.mo -share/locale/sq/LC_MESSAGES/gnome-system-monitor.mo -share/locale/sr/LC_MESSAGES/gnome-system-monitor.mo -share/locale/sr@latin/LC_MESSAGES/gnome-system-monitor.mo -share/locale/sv/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ta/LC_MESSAGES/gnome-system-monitor.mo -share/locale/te/LC_MESSAGES/gnome-system-monitor.mo -share/locale/th/LC_MESSAGES/gnome-system-monitor.mo -share/locale/tr/LC_MESSAGES/gnome-system-monitor.mo -share/locale/ug/LC_MESSAGES/gnome-system-monitor.mo -share/locale/uk/LC_MESSAGES/gnome-system-monitor.mo -share/locale/vi/LC_MESSAGES/gnome-system-monitor.mo -share/locale/zh_CN/LC_MESSAGES/gnome-system-monitor.mo -share/locale/zh_HK/LC_MESSAGES/gnome-system-monitor.mo -share/locale/zh_TW/LC_MESSAGES/gnome-system-monitor.mo -share/omf/gnome-system-monitor/gnome-system-monitor-C.omf -share/omf/gnome-system-monitor/gnome-system-monitor-ar.omf -share/omf/gnome-system-monitor/gnome-system-monitor-bg.omf -share/omf/gnome-system-monitor/gnome-system-monitor-ca.omf -share/omf/gnome-system-monitor/gnome-system-monitor-de.omf -share/omf/gnome-system-monitor/gnome-system-monitor-es.omf -share/omf/gnome-system-monitor/gnome-system-monitor-fr.omf -share/omf/gnome-system-monitor/gnome-system-monitor-oc.omf -share/omf/gnome-system-monitor/gnome-system-monitor-pa.omf -share/omf/gnome-system-monitor/gnome-system-monitor-sv.omf -share/pixmaps/gnome-system-monitor/download.svg -share/pixmaps/gnome-system-monitor/side.png -share/pixmaps/gnome-system-monitor/upload.svg -@dirrm share/pixmaps/gnome-system-monitor -@dirrm share/omf/gnome-system-monitor -@dirrm share/gnome/help/gnome-system-monitor/sv/figures -@dirrm share/gnome/help/gnome-system-monitor/sv -@dirrm share/gnome/help/gnome-system-monitor/pa/figures -@dirrm share/gnome/help/gnome-system-monitor/pa -@dirrm share/gnome/help/gnome-system-monitor/oc/figures -@dirrm share/gnome/help/gnome-system-monitor/oc -@dirrm share/gnome/help/gnome-system-monitor/fr/figures -@dirrm share/gnome/help/gnome-system-monitor/fr -@dirrm share/gnome/help/gnome-system-monitor/es/figures -@dirrm share/gnome/help/gnome-system-monitor/es -@dirrm share/gnome/help/gnome-system-monitor/de/figures -@dirrm share/gnome/help/gnome-system-monitor/de -@dirrm share/gnome/help/gnome-system-monitor/ca/figures -@dirrm share/gnome/help/gnome-system-monitor/ca -@dirrm share/gnome/help/gnome-system-monitor/bg/figures -@dirrm share/gnome/help/gnome-system-monitor/bg -@dirrm share/gnome/help/gnome-system-monitor/ar/figures -@dirrm share/gnome/help/gnome-system-monitor/ar -@dirrm share/gnome/help/gnome-system-monitor/C/figures -@dirrm share/gnome/help/gnome-system-monitor/C -@dirrm share/gnome/help/gnome-system-monitor -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/sysutils/gnome-volume-manager/Makefile b/sysutils/gnome-volume-manager/Makefile deleted file mode 100644 index bd5926fec..000000000 --- a/sysutils/gnome-volume-manager/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: gnome-volume-manager -# Date created: 02 May 2006 -# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/gnome-volume-manager/Makefile,v 1.28 2009/03/11 22:44:12 mezz Exp $ -# - -PORTNAME= gnome-volume-manager -PORTVERSION= 2.24.1 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Automatically mount removable media, and more - -LIB_DEPENDS= hal.1:${PORTSDIR}/sysutils/hal \ - notify.1:${PORTSDIR}/devel/libnotify - -USE_BZIP2= yes -USE_GNOME= gnomeprefix gnomehack intlhack nautilus2 -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-multiuser -GCONF_SCHEMAS= gnome-volume-manager.schemas - -.include <bsd.port.mk> diff --git a/sysutils/gnome-volume-manager/distinfo b/sysutils/gnome-volume-manager/distinfo deleted file mode 100644 index de3b415ce..000000000 --- a/sysutils/gnome-volume-manager/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-volume-manager-2.24.1.tar.bz2) = ef99c49214a2e265b127470b1da97392 -SHA256 (gnome2/gnome-volume-manager-2.24.1.tar.bz2) = 139e9a2c3013098f76537607d4ffb2d2bca93bdcdff8b49f5017713b88e9bae1 -SIZE (gnome2/gnome-volume-manager-2.24.1.tar.bz2) = 374678 diff --git a/sysutils/gnome-volume-manager/files/patch-gnome-volume-manager.schemas.in b/sysutils/gnome-volume-manager/files/patch-gnome-volume-manager.schemas.in deleted file mode 100644 index 94af083a1..000000000 --- a/sysutils/gnome-volume-manager/files/patch-gnome-volume-manager.schemas.in +++ /dev/null @@ -1,11 +0,0 @@ ---- gnome-volume-manager.schemas.in.orig Wed Jun 7 21:41:12 2006 -+++ gnome-volume-manager.schemas.in Wed Jun 7 21:41:40 2006 -@@ -227,7 +227,7 @@ - <key>/schemas/desktop/gnome/volume_manager/autoprinter_command</key> - <applyto>/desktop/gnome/volume_manager/autoprinter_command</applyto> - <type>string</type> -- <default>gnome-printer-add hal://%h</default> -+ <default>gnome-cups-add hal://%h</default> - <locale name="C"> - <short>printer command</short> - <long>Command to run when a printer is connected.</long> diff --git a/sysutils/gnome-volume-manager/pkg-descr b/sysutils/gnome-volume-manager/pkg-descr deleted file mode 100644 index b8ce9b768..000000000 --- a/sysutils/gnome-volume-manager/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -gnome-volume-manager is a desktop-level daemon that enforces volume-related -policy in response to events received from HAL. Its goal is to implement all -functionality as a state-machine in response to asynchronous events from HAL. diff --git a/sysutils/gnome-volume-manager/pkg-plist b/sysutils/gnome-volume-manager/pkg-plist deleted file mode 100644 index 952f6275d..000000000 --- a/sysutils/gnome-volume-manager/pkg-plist +++ /dev/null @@ -1,113 +0,0 @@ -bin/gnome-volume-properties -etc/xdg/autostart/gnome-volume-manager.desktop -libexec/gnome-volume-manager -share/applications/gnome-volume-properties.desktop -%%DATADIR%%/gnome-volume-properties.glade -share/locale/ang/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ar/LC_MESSAGES/gnome-volume-manager.mo -share/locale/az/LC_MESSAGES/gnome-volume-manager.mo -share/locale/be@latin/LC_MESSAGES/gnome-volume-manager.mo -share/locale/bg/LC_MESSAGES/gnome-volume-manager.mo -share/locale/bn/LC_MESSAGES/gnome-volume-manager.mo -share/locale/bn_IN/LC_MESSAGES/gnome-volume-manager.mo -share/locale/bs/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ca/LC_MESSAGES/gnome-volume-manager.mo -share/locale/cs/LC_MESSAGES/gnome-volume-manager.mo -share/locale/cy/LC_MESSAGES/gnome-volume-manager.mo -share/locale/da/LC_MESSAGES/gnome-volume-manager.mo -share/locale/de/LC_MESSAGES/gnome-volume-manager.mo -share/locale/dz/LC_MESSAGES/gnome-volume-manager.mo -share/locale/el/LC_MESSAGES/gnome-volume-manager.mo -share/locale/en_CA/LC_MESSAGES/gnome-volume-manager.mo -share/locale/en_GB/LC_MESSAGES/gnome-volume-manager.mo -share/locale/es/LC_MESSAGES/gnome-volume-manager.mo -share/locale/et/LC_MESSAGES/gnome-volume-manager.mo -share/locale/eu/LC_MESSAGES/gnome-volume-manager.mo -share/locale/fa/LC_MESSAGES/gnome-volume-manager.mo -share/locale/fi/LC_MESSAGES/gnome-volume-manager.mo -share/locale/fr/LC_MESSAGES/gnome-volume-manager.mo -share/locale/gl/LC_MESSAGES/gnome-volume-manager.mo -share/locale/gu/LC_MESSAGES/gnome-volume-manager.mo -share/locale/he/LC_MESSAGES/gnome-volume-manager.mo -share/locale/hi/LC_MESSAGES/gnome-volume-manager.mo -share/locale/hr/LC_MESSAGES/gnome-volume-manager.mo -share/locale/hu/LC_MESSAGES/gnome-volume-manager.mo -share/locale/id/LC_MESSAGES/gnome-volume-manager.mo -share/locale/is/LC_MESSAGES/gnome-volume-manager.mo -share/locale/it/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ja/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ka/LC_MESSAGES/gnome-volume-manager.mo -share/locale/kn/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ko/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ku/LC_MESSAGES/gnome-volume-manager.mo -share/locale/la/LC_MESSAGES/gnome-volume-manager.mo -share/locale/lt/LC_MESSAGES/gnome-volume-manager.mo -share/locale/lv/LC_MESSAGES/gnome-volume-manager.mo -share/locale/mg/LC_MESSAGES/gnome-volume-manager.mo -share/locale/mk/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ml/LC_MESSAGES/gnome-volume-manager.mo -share/locale/mn/LC_MESSAGES/gnome-volume-manager.mo -share/locale/mr/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ms/LC_MESSAGES/gnome-volume-manager.mo -share/locale/nb/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ne/LC_MESSAGES/gnome-volume-manager.mo -share/locale/nl/LC_MESSAGES/gnome-volume-manager.mo -share/locale/nn/LC_MESSAGES/gnome-volume-manager.mo -share/locale/oc/LC_MESSAGES/gnome-volume-manager.mo -share/locale/or/LC_MESSAGES/gnome-volume-manager.mo -share/locale/pa/LC_MESSAGES/gnome-volume-manager.mo -share/locale/pl/LC_MESSAGES/gnome-volume-manager.mo -share/locale/pt/LC_MESSAGES/gnome-volume-manager.mo -share/locale/pt_BR/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ro/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ru/LC_MESSAGES/gnome-volume-manager.mo -share/locale/rw/LC_MESSAGES/gnome-volume-manager.mo -share/locale/si/LC_MESSAGES/gnome-volume-manager.mo -share/locale/sk/LC_MESSAGES/gnome-volume-manager.mo -share/locale/sl/LC_MESSAGES/gnome-volume-manager.mo -share/locale/sq/LC_MESSAGES/gnome-volume-manager.mo -share/locale/sr/LC_MESSAGES/gnome-volume-manager.mo -share/locale/sr@latin/LC_MESSAGES/gnome-volume-manager.mo -share/locale/sv/LC_MESSAGES/gnome-volume-manager.mo -share/locale/ta/LC_MESSAGES/gnome-volume-manager.mo -share/locale/te/LC_MESSAGES/gnome-volume-manager.mo -share/locale/th/LC_MESSAGES/gnome-volume-manager.mo -share/locale/tr/LC_MESSAGES/gnome-volume-manager.mo -share/locale/uk/LC_MESSAGES/gnome-volume-manager.mo -share/locale/vi/LC_MESSAGES/gnome-volume-manager.mo -share/locale/xh/LC_MESSAGES/gnome-volume-manager.mo -share/locale/zh_CN/LC_MESSAGES/gnome-volume-manager.mo -share/locale/zh_HK/LC_MESSAGES/gnome-volume-manager.mo -share/locale/zh_TW/LC_MESSAGES/gnome-volume-manager.mo -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/la/LC_MESSAGES -@dirrmtry share/locale/la -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang diff --git a/sysutils/nautilus-cd-burner/Makefile b/sysutils/nautilus-cd-burner/Makefile deleted file mode 100644 index 175f7f66d..000000000 --- a/sysutils/nautilus-cd-burner/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# New ports collection makefile for: nautilus-cd-burner -# Date created: 13 April 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/nautilus-cd-burner/Makefile,v 1.146 2009/04/07 03:06:35 marcus Exp $ -# - -PORTNAME= nautilus-cd-burner -PORTVERSION= 2.24.0 -PORTREVISION= 1 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= CD burner view for Nautilus - -BUILD_DEPENDS= gnome-mount:${PORTSDIR}/sysutils/gnome-mount -RUN_DEPENDS= gnome-mount:${PORTSDIR}/sysutils/gnome-mount \ - cdrdao:${PORTSDIR}/sysutils/cdrdao - -CONFIGURE_ARGS= --enable-gnome-mount -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -USE_GNOME= gnomeprefix gnomehack intlhack nautilus2 ltverhack \ - desktopfileutils ltasneededhack eel2 -USE_CDRTOOLS= yes -INSTALLS_ICONS= yes -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= nautilus-cd-burner.schemas - -OPTIONS= DVD "Enable DVD support" on \ - CJK "Use cdrtools-cjk instead of cdrtools" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_CJK) -WITHOUT_DVD= yes -.endif - -.if !defined(WITHOUT_DVD) -RUN_DEPENDS+= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools -.endif - -post-install: - -@update-desktop-database - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/sysutils/nautilus-cd-burner/distinfo b/sysutils/nautilus-cd-burner/distinfo deleted file mode 100644 index c4bc507dd..000000000 --- a/sysutils/nautilus-cd-burner/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/nautilus-cd-burner-2.24.0.tar.bz2) = eb211dd03d0518263fa4eadccc3caa88 -SHA256 (gnome2/nautilus-cd-burner-2.24.0.tar.bz2) = d4ff952115a2fca28c613ce6a2b46740ce1000b0c213c482bcf3f127ceab99ad -SIZE (gnome2/nautilus-cd-burner-2.24.0.tar.bz2) = 725247 diff --git a/sysutils/nautilus-cd-burner/files/patch-configure b/sysutils/nautilus-cd-burner/files/patch-configure deleted file mode 100644 index e8dbb4a5b..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-configure +++ /dev/null @@ -1,27 +0,0 @@ ---- configure.orig Thu Jul 22 10:27:35 2004 -+++ configure Thu Jul 22 10:29:32 2004 -@@ -21015,6 +21015,8 @@ - if eval "test \"\${$as_ac_var+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else -+ ac_check_lib_save_LIBS=$LIBS -+ LIBS="-lintl $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -21097,6 +21099,7 @@ - fi - rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -+ LIBS=$ac_check_lib_save_LIBS - fi - echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 - echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 -@@ -21104,6 +21107,7 @@ - cat >>confdefs.h <<_ACEOF - #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 - _ACEOF -+LIBS="-lintl $LIBS" - - fi - done diff --git a/sysutils/nautilus-cd-burner/files/patch-src_list_cddrives.c b/sysutils/nautilus-cd-burner/files/patch-src_list_cddrives.c deleted file mode 100644 index 71f43178c..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_list_cddrives.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/list_cddrives.c.orig 2008-01-21 11:14:45.000000000 -0500 -+++ src/list_cddrives.c 2008-01-21 19:48:49.000000000 -0500 -@@ -49,6 +49,7 @@ list_drive_info (NautilusBurnDrive *driv - g_print ("Drive:\n"); - g_print (" name:\t\t\t%s\n", display_name); - g_print (" device:\t\t%s\n", nautilus_burn_drive_get_device (drive)); -+ g_print (" cdrecord device:\t%s\n", nautilus_burn_drive_get_cdrecord_device (drive)); - g_print (" door:\t\t\t%s\n", door_is_open ? "open" : "closed"); - g_print (" type:\t\t\t%s\n", type_str); - g_print (" is mounted:\t\t%s\n", is_mounted ? "TRUE" : "FALSE"); diff --git a/sysutils/nautilus-cd-burner/files/patch-src_make-iso.c b/sysutils/nautilus-cd-burner/files/patch-src_make-iso.c deleted file mode 100644 index 18183a421..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_make-iso.c +++ /dev/null @@ -1,38 +0,0 @@ ---- src/make-iso.c.orig Sun Nov 19 13:34:29 2006 -+++ src/make-iso.c Sun Nov 19 13:36:03 2006 -@@ -1367,7 +1367,7 @@ get_disc_info (NautilusBurnIso *iso, - &has_data, - &_has_audio); - if (_has_audio) { -- device_arg = g_strdup_printf ("%s", nautilus_burn_drive_get_device (drive)); -+ device_arg = g_strdup_printf ("%s", nautilus_burn_drive_get_cdrecord_device (drive)); - - argv = g_ptr_array_new (); - g_ptr_array_add (argv, "cdrdao"); -@@ -1377,7 +1377,7 @@ get_disc_info (NautilusBurnIso *iso, - g_ptr_array_add (argv, NULL); - - } else { -- device_arg = g_strdup_printf ("-dev=%s", nautilus_burn_drive_get_device (drive)); -+ device_arg = g_strdup_printf ("-dev=%s", nautilus_burn_drive_get_cdrecord_device (drive)); - - argv = g_ptr_array_new (); - g_ptr_array_add (argv, "readcd"); -@@ -1547,7 +1547,7 @@ nautilus_burn_iso_make_from_drive (Nauti - g_ptr_array_add (argv, "--datafile"); - g_ptr_array_add (argv, (char *)filename); - g_ptr_array_add (argv, "--device"); -- g_ptr_array_add (argv, (char *)nautilus_burn_drive_get_device (drive)); -+ g_ptr_array_add (argv, (char *)nautilus_burn_drive_get_cdrecord_device (drive)); - g_ptr_array_add (argv, "-v"); - g_ptr_array_add (argv, "2"); - g_ptr_array_add (argv, (char *)toc_filename_arg); -@@ -1559,7 +1559,7 @@ nautilus_burn_iso_make_from_drive (Nauti - - filename_arg = g_strdup_printf ("f=%s", filename); - -- dev_arg = g_strdup_printf ("dev=%s", nautilus_burn_drive_get_device (drive)); -+ dev_arg = g_strdup_printf ("dev=%s", nautilus_burn_drive_get_cdrecord_device (drive)); - - argv = g_ptr_array_new (); - g_ptr_array_add (argv, "readcd"); diff --git a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive-monitor.c b/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive-monitor.c deleted file mode 100644 index 2d6288663..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive-monitor.c +++ /dev/null @@ -1,48 +0,0 @@ ---- src/nautilus-burn-drive-monitor.c.orig 2007-07-10 15:06:23.000000000 -0400 -+++ src/nautilus-burn-drive-monitor.c 2008-01-05 13:51:44.000000000 -0500 -@@ -618,7 +618,8 @@ nautilus_burn_drive_monitor_get_drive_fo - */ - if (drive->priv->device != NULL && - (strcmp (drive->priv->device, target) == 0 || -- strcmp (drive->priv->device, device) == 0)) { -+ strcmp (drive->priv->device, device) == 0 || -+ strcmp (drive->priv->cdrecord_device, device) == 0)) { - ret = nautilus_burn_drive_ref (drive); - break; - } -@@ -683,6 +684,8 @@ hal_drive_from_udi (LibHalContext *ctx, - NautilusBurnDrive *drive; - char **write_speeds = NULL; - char *raw_device = NULL; -+ char *cam_path = NULL; -+ char *cam_device = NULL; - - LIBHAL_CHECK_LIBHALCONTEXT (ctx, FALSE); - -@@ -711,6 +714,8 @@ hal_drive_from_udi (LibHalContext *ctx, - - LIBHAL_PROP_EXTRACT_STRING ("block.device", drive->priv->device); - LIBHAL_PROP_EXTRACT_STRING ("block.solaris.raw_device", raw_device); -+ LIBHAL_PROP_EXTRACT_STRING ("block.freebsd.atapi_cam_device", cam_device); -+ LIBHAL_PROP_EXTRACT_STRING ("block.freebsd.cam_path", cam_path); - LIBHAL_PROP_EXTRACT_STRING ("storage.model", drive->priv->display_name); - - LIBHAL_PROP_EXTRACT_INT ("storage.cdrom.read_speed", drive->priv->max_speed_read); -@@ -736,6 +741,17 @@ hal_drive_from_udi (LibHalContext *ctx, - drive->priv->device = raw_device; - } - -+ if (cam_device != NULL) { -+ g_free (drive->priv->device); -+ drive->priv->device = cam_device; -+ } -+ -+ if (cam_path != NULL) { -+ drive->priv->cdrecord_device = cam_path; -+ } else { -+ drive->priv->cdrecord_device = g_strdup (drive->priv->device); -+ } -+ - drive->priv->drive_udi = g_strdup (udi); - drive->priv->write_speeds = hal_parse_write_speeds (write_speeds); - /* we do not own write_speeds so do not free it. */ diff --git a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive-private.h b/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive-private.h deleted file mode 100644 index a4da309cb..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive-private.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/nautilus-burn-drive-private.h.orig Sun Nov 19 13:43:24 2006 -+++ src/nautilus-burn-drive-private.h Sun Nov 19 13:43:50 2006 -@@ -34,6 +34,7 @@ struct NautilusBurnDrivePrivate { - - int type; - char *device; -+ char *cdrecord_device; - char *display_name; - int max_speed_write; - int max_speed_read; diff --git a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive.c b/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive.c deleted file mode 100644 index 17a038446..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive.c +++ /dev/null @@ -1,44 +0,0 @@ ---- src/nautilus-burn-drive.c.orig Fri Sep 29 12:55:36 2006 -+++ src/nautilus-burn-drive.c Sun Nov 19 13:27:31 2006 -@@ -266,6 +266,25 @@ nautilus_burn_drive_get_device (Nautilus - } - - /** -+ * nautilus_burn_drive_get_cdrecord_device: -+ * @drive: #NautilusBurnDrive -+ * -+ * Get the name of the device associated with the drive suitable for -+ * user with cdrcord. -+ * -+ * Returns: device name. Must be not be freed. -+ * -+ * Since: 2.16 -+ **/ -+const char * -+nautilus_burn_drive_get_cdrecord_device (NautilusBurnDrive *drive) -+{ -+ g_return_val_if_fail (drive != NULL, NULL); -+ -+ return drive->priv->cdrecord_device; -+} -+ -+/** - * nautilus_burn_drive_get_drive_type: - * @drive: #NautilusBurnDrive - * -@@ -1021,6 +1044,7 @@ nautilus_burn_drive_finalize (GObject *o - g_free (drive->priv->write_speeds); - g_free (drive->priv->display_name); - g_free (drive->priv->device); -+ g_free (drive->priv->cdrecord_device); - - if (G_OBJECT_CLASS (nautilus_burn_drive_parent_class)->finalize != NULL) { - (* G_OBJECT_CLASS (nautilus_burn_drive_parent_class)->finalize) (object); -@@ -1038,6 +1062,7 @@ nautilus_burn_drive_init (NautilusBurnDr - drive->priv->max_speed_read = 0; - drive->priv->write_speeds = NULL; - drive->priv->device = NULL; -+ drive->priv->cdrecord_device = NULL; - } - - /** diff --git a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive.h b/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive.h deleted file mode 100644 index f033fa3ba..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-drive.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/nautilus-burn-drive.h.orig Sun Nov 19 13:37:32 2006 -+++ src/nautilus-burn-drive.h Sun Nov 19 13:37:55 2006 -@@ -127,6 +127,7 @@ gboolean nautilus_burn_driv - int nautilus_burn_drive_get_drive_type (NautilusBurnDrive *drive); - char * nautilus_burn_drive_get_name_for_display (NautilusBurnDrive *drive); - const char * nautilus_burn_drive_get_device (NautilusBurnDrive *drive); -+const char * nautilus_burn_drive_get_cdrecord_device (NautilusBurnDrive *drive); - - /* Capabilities */ - gboolean nautilus_burn_drive_can_write (NautilusBurnDrive *drive); diff --git a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-recorder.c b/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-recorder.c deleted file mode 100644 index 85f6416ab..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-burn-recorder.c +++ /dev/null @@ -1,29 +0,0 @@ ---- src/nautilus-burn-recorder.c.orig Fri Sep 29 14:18:37 2006 -+++ src/nautilus-burn-recorder.c Mon Nov 20 18:13:24 2006 -@@ -1343,7 +1343,7 @@ nautilus_burn_recorder_write_cdrecord (N - g_ptr_array_add (argv, "cdrdao"); - g_ptr_array_add (argv, "write"); - g_ptr_array_add (argv, "--device"); -- g_ptr_array_add (argv, (char *)nautilus_burn_drive_get_device (drive)); -+ g_ptr_array_add (argv, (char *)nautilus_burn_drive_get_cdrecord_device (drive)); - g_ptr_array_add (argv, "--speed"); - speed_str = g_strdup_printf ("%d", speed); - g_ptr_array_add (argv, speed_str); -@@ -1375,7 +1375,7 @@ nautilus_burn_recorder_write_cdrecord (N - if (speed != 0) { - g_ptr_array_add (argv, speed_str); - } -- dev_str = g_strdup_printf ("dev=%s", nautilus_burn_drive_get_device (drive)); -+ dev_str = g_strdup_printf ("dev=%s", nautilus_burn_drive_get_cdrecord_device (drive)); - g_ptr_array_add (argv, dev_str); - if (flags & NAUTILUS_BURN_RECORDER_WRITE_DUMMY_WRITE) { - g_ptr_array_add (argv, "-dummy"); -@@ -1486,7 +1486,7 @@ nautilus_burn_recorder_blank_disc_cdreco - argv = g_ptr_array_new (); - g_ptr_array_add (argv, "cdrecord"); - -- dev_str = g_strdup_printf ("dev=%s", nautilus_burn_drive_get_device (drive)); -+ dev_str = g_strdup_printf ("dev=%s", nautilus_burn_drive_get_cdrecord_device (drive)); - g_ptr_array_add (argv, dev_str); - g_ptr_array_add (argv, "-v"); - diff --git a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-cd-burner.c b/sysutils/nautilus-cd-burner/files/patch-src_nautilus-cd-burner.c deleted file mode 100644 index 13cfcc6be..000000000 --- a/sysutils/nautilus-cd-burner/files/patch-src_nautilus-cd-burner.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/nautilus-cd-burner.c.orig 2008-01-21 11:16:24.000000000 -0500 -+++ src/nautilus-cd-burner.c 2008-04-02 16:48:23.000000000 -0400 -@@ -27,6 +27,8 @@ - - #include "config.h" - -+#include <sys/types.h> -+#include <sys/stat.h> - #include <time.h> - #include <stdio.h> - #include <stdlib.h> diff --git a/sysutils/nautilus-cd-burner/pkg-descr b/sysutils/nautilus-cd-burner/pkg-descr deleted file mode 100644 index 0bdde4f1a..000000000 --- a/sysutils/nautilus-cd-burner/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -Nautilus-cd-burner allows CDs to be created and burned directly from -within Nautilus (using the burn:/// URI). diff --git a/sysutils/nautilus-cd-burner/pkg-message b/sysutils/nautilus-cd-burner/pkg-message deleted file mode 100644 index 3a47ff4fd..000000000 --- a/sysutils/nautilus-cd-burner/pkg-message +++ /dev/null @@ -1,21 +0,0 @@ -====================================================================== -In order to use nautilus-cd-burner, you must make sure your CD devices -have the correct permissions. You must also make sure you have: - -device atapicam - -Configured in your kernel if you are using an ATAPI CD/DVD writer. -To figure out which CD/DVD drive you will be using, run the following -command as root: - -camcontrol devlist - -Your output will look similar to the following: - -<CREATIVE CD5233E-N 0.20> at scbus1 target 0 lun 0 (cd0,pass0) - -The devices in parenthesis at the end are important. You must make sure -the /dev entries for those devices are writable by the users that will -be using nautilus-cd-burner. In addition to those devices, /dev/xpt* -must also be writable to your nautilus-cd-burner users. -====================================================================== diff --git a/sysutils/nautilus-cd-burner/pkg-plist b/sysutils/nautilus-cd-burner/pkg-plist deleted file mode 100644 index 867ac3603..000000000 --- a/sysutils/nautilus-cd-burner/pkg-plist +++ /dev/null @@ -1,148 +0,0 @@ -bin/nautilus-cd-burner -include/libnautilus-burn/nautilus-burn-drive-monitor.h -include/libnautilus-burn/nautilus-burn-drive-selection.h -include/libnautilus-burn/nautilus-burn-drive.h -include/libnautilus-burn/nautilus-burn-features.h -include/libnautilus-burn/nautilus-burn-init.h -include/libnautilus-burn/nautilus-burn-recorder.h -include/libnautilus-burn/nautilus-burn.h -lib/libnautilus-burn.a -lib/libnautilus-burn.la -lib/libnautilus-burn.so -lib/libnautilus-burn.so.4 -lib/nautilus/extensions-2.0/libnautilus-burn-extension.a -lib/nautilus/extensions-2.0/libnautilus-burn-extension.la -lib/nautilus/extensions-2.0/libnautilus-burn-extension.so -libdata/pkgconfig/libnautilus-burn.pc -share/applications/nautilus-cd-burner-open-iso.desktop -share/applications/nautilus-cd-burner.desktop -share/icons/hicolor/16x16/apps/nautilus-cd-burner.png -share/icons/hicolor/22x22/apps/nautilus-cd-burner.png -share/icons/hicolor/24x24/apps/nautilus-cd-burner.png -share/icons/hicolor/scalable/apps/nautilus-cd-burner.svg -share/locale/am/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ar/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/as/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/az/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/be/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/be@latin/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/bg/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/bn/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/bn_IN/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/bs/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ca/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/cs/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/cy/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/da/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/de/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/dz/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/el/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/en_CA/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/en_GB/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/es/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/et/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/eu/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/fa/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/fi/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/fr/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ga/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/gl/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/gu/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/he/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/hi/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/hr/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/hu/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/hy/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/id/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/is/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/it/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ja/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ka/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/kn/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ko/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ku/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/lt/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/lv/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/mg/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/mk/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ml/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/mn/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/mr/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ms/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/nb/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ne/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/nl/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/nn/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/oc/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/or/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/pa/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/pl/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/pt/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/pt_BR/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ro/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ru/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/rw/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/si/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/sk/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/sl/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/sq/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/sr/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/sr@latin/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/sv/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ta/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/te/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/th/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/tr/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/ug/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/uk/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/vi/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/xh/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/zh_CN/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/zh_HK/LC_MESSAGES/nautilus-cd-burner.mo -share/locale/zh_TW/LC_MESSAGES/nautilus-cd-burner.mo -%%DATADIR%%/cdspin1.png -%%DATADIR%%/cdspin2.png -%%DATADIR%%/cdspin3.png -%%DATADIR%%/cdspin4.png -%%DATADIR%%/cdspin5.png -%%DATADIR%%/cdspin6.png -%%DATADIR%%/cdspin7.png -%%DATADIR%%/cdspin8.png -%%DATADIR%%/nautilus-cd-burner.glade -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm include/libnautilus-burn -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/sysutils/pessulus/Makefile b/sysutils/pessulus/Makefile deleted file mode 100644 index 63bf886fb..000000000 --- a/sysutils/pessulus/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: pessulus -# Date created: 14 March 2006 -# Whom: FreeBSD GNOME Team -# -# $FreeBSD$ -# $MCom: ports/sysutils/pessulus/Makefile,v 1.20 2009/03/13 16:10:18 kwm Exp $ -# - -PORTNAME= pessulus -PORTVERSION= 2.26.0 -CATEGORIES= sysutils gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A lockdown editor for GNOME - -USE_GMAKE= yes -USE_BZIP2= yes -USE_GNOME= gnomehack gnomeprefix intlhack pygnome2 pygnomedesktop -WANT_GNOME= yes -USE_PYTHON= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -DOCS= AUTHORS COPYING ChangeLog HACKING \ - MAINTAINERS NEWS README TODO - -.ifndef (NOPORTDOCS) -post-install: - @${MKDIR} ${DOCSDIR} -.for i in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/sysutils/pessulus/distinfo b/sysutils/pessulus/distinfo deleted file mode 100644 index abf262cb9..000000000 --- a/sysutils/pessulus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/pessulus-2.26.0.tar.bz2) = c7614fec0aa77f1a928080e7633741a0 -SHA256 (gnome2/pessulus-2.26.0.tar.bz2) = 774df341c1898c0f9b58d43708e14016184fdbfc7947288ef62c137208b6a079 -SIZE (gnome2/pessulus-2.26.0.tar.bz2) = 165600 diff --git a/sysutils/pessulus/files/patch-data_Makefile.in b/sysutils/pessulus/files/patch-data_Makefile.in deleted file mode 100644 index e6233c448..000000000 --- a/sysutils/pessulus/files/patch-data_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- data/Makefile.in.orig 2008-09-22 12:27:32.000000000 +0200 -+++ data/Makefile.in 2008-09-22 12:27:59.000000000 +0200 -@@ -422,7 +422,7 @@ uninstall-am: uninstall-desktopDATA unin - @INTLTOOL_DESKTOP_RULE@ - - install-icons: -- for size in 16x16 22x22 24x24 32x32 48x48 scalable; do mkdir --parents $(DESTDIR)/$(datadir)/icons/hicolor/$$size/apps; done -+ for size in 16x16 22x22 24x24 32x32 48x48 scalable; do mkdir -p $(DESTDIR)/$(datadir)/icons/hicolor/$$size/apps; done - - install -m 644 $(srcdir)/pessulus-16.png $(DESTDIR)/$(datadir)/icons/hicolor/16x16/apps/pessulus.png - install -m 644 $(srcdir)/pessulus-22.png $(DESTDIR)/$(datadir)/icons/hicolor/22x22/apps/pessulus.png diff --git a/sysutils/pessulus/pkg-descr b/sysutils/pessulus/pkg-descr deleted file mode 100644 index f1105467e..000000000 --- a/sysutils/pessulus/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Pessulus is a lockdown editor for GNOME, written in python. It enables -administrators to set mandatory settings in GConf. The users can not change -these settings. Use of pessulus can be useful on computers that are open to -use by everyone, e.g. in an internet cafe. - -WWW: http://www.gnome.org/~vuntz/pessulus/ diff --git a/sysutils/pessulus/pkg-plist b/sysutils/pessulus/pkg-plist deleted file mode 100644 index 71afc8f83..000000000 --- a/sysutils/pessulus/pkg-plist +++ /dev/null @@ -1,156 +0,0 @@ -bin/pessulus -%%PYTHON_SITELIBDIR%%/Pessulus/__init__.py -%%PYTHON_SITELIBDIR%%/Pessulus/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/config.py -%%PYTHON_SITELIBDIR%%/Pessulus/config.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/config.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/disabledapplets.py -%%PYTHON_SITELIBDIR%%/Pessulus/disabledapplets.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/disabledapplets.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/globalvar.py -%%PYTHON_SITELIBDIR%%/Pessulus/globalvar.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/globalvar.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/icons.py -%%PYTHON_SITELIBDIR%%/Pessulus/icons.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/icons.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownapplier.py -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownapplier.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownapplier.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownappliergconf.py -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownappliergconf.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownappliergconf.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownbutton.py -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownbutton.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/lockdownbutton.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/lockdowncheckbutton.py -%%PYTHON_SITELIBDIR%%/Pessulus/lockdowncheckbutton.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/lockdowncheckbutton.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/main.py -%%PYTHON_SITELIBDIR%%/Pessulus/main.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/main.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/maindialog.py -%%PYTHON_SITELIBDIR%%/Pessulus/maindialog.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/maindialog.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/safeprotocols.py -%%PYTHON_SITELIBDIR%%/Pessulus/safeprotocols.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/safeprotocols.pyo -%%PYTHON_SITELIBDIR%%/Pessulus/simpleeditabletreeview.py -%%PYTHON_SITELIBDIR%%/Pessulus/simpleeditabletreeview.pyc -%%PYTHON_SITELIBDIR%%/Pessulus/simpleeditabletreeview.pyo -share/applications/pessulus.desktop -share/icons/hicolor/16x16/apps/pessulus.png -share/icons/hicolor/22x22/apps/pessulus.png -share/icons/hicolor/24x24/apps/pessulus.png -share/icons/hicolor/32x32/apps/pessulus.png -share/icons/hicolor/48x48/apps/pessulus.png -share/icons/hicolor/scalable/apps/pessulus.svg -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/HACKING -%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/TODO -share/locale/ar/LC_MESSAGES/pessulus.mo -share/locale/as/LC_MESSAGES/pessulus.mo -share/locale/bal/LC_MESSAGES/pessulus.mo -share/locale/be/LC_MESSAGES/pessulus.mo -share/locale/be@latin/LC_MESSAGES/pessulus.mo -share/locale/bg/LC_MESSAGES/pessulus.mo -share/locale/bn/LC_MESSAGES/pessulus.mo -share/locale/bn_IN/LC_MESSAGES/pessulus.mo -share/locale/ca/LC_MESSAGES/pessulus.mo -share/locale/crh/LC_MESSAGES/pessulus.mo -share/locale/cs/LC_MESSAGES/pessulus.mo -share/locale/cy/LC_MESSAGES/pessulus.mo -share/locale/da/LC_MESSAGES/pessulus.mo -share/locale/de/LC_MESSAGES/pessulus.mo -share/locale/dz/LC_MESSAGES/pessulus.mo -share/locale/el/LC_MESSAGES/pessulus.mo -share/locale/en_CA/LC_MESSAGES/pessulus.mo -share/locale/en_GB/LC_MESSAGES/pessulus.mo -share/locale/es/LC_MESSAGES/pessulus.mo -share/locale/et/LC_MESSAGES/pessulus.mo -share/locale/eu/LC_MESSAGES/pessulus.mo -share/locale/fi/LC_MESSAGES/pessulus.mo -share/locale/fr/LC_MESSAGES/pessulus.mo -share/locale/gl/LC_MESSAGES/pessulus.mo -share/locale/gu/LC_MESSAGES/pessulus.mo -share/locale/he/LC_MESSAGES/pessulus.mo -share/locale/hi/LC_MESSAGES/pessulus.mo -share/locale/hu/LC_MESSAGES/pessulus.mo -share/locale/id/LC_MESSAGES/pessulus.mo -share/locale/it/LC_MESSAGES/pessulus.mo -share/locale/ja/LC_MESSAGES/pessulus.mo -share/locale/ka/LC_MESSAGES/pessulus.mo -share/locale/ko/LC_MESSAGES/pessulus.mo -share/locale/kn/LC_MESSAGES/pessulus.mo -share/locale/ku/LC_MESSAGES/pessulus.mo -share/locale/lt/LC_MESSAGES/pessulus.mo -share/locale/lv/LC_MESSAGES/pessulus.mo -share/locale/mk/LC_MESSAGES/pessulus.mo -share/locale/ml/LC_MESSAGES/pessulus.mo -share/locale/mn/LC_MESSAGES/pessulus.mo -share/locale/mr/LC_MESSAGES/pessulus.mo -share/locale/nb/LC_MESSAGES/pessulus.mo -share/locale/ne/LC_MESSAGES/pessulus.mo -share/locale/nl/LC_MESSAGES/pessulus.mo -share/locale/nn/LC_MESSAGES/pessulus.mo -share/locale/oc/LC_MESSAGES/pessulus.mo -share/locale/or/LC_MESSAGES/pessulus.mo -share/locale/pa/LC_MESSAGES/pessulus.mo -share/locale/pl/LC_MESSAGES/pessulus.mo -share/locale/ps/LC_MESSAGES/pessulus.mo -share/locale/pt/LC_MESSAGES/pessulus.mo -share/locale/pt_BR/LC_MESSAGES/pessulus.mo -share/locale/ro/LC_MESSAGES/pessulus.mo -share/locale/ru/LC_MESSAGES/pessulus.mo -share/locale/sk/LC_MESSAGES/pessulus.mo -share/locale/sl/LC_MESSAGES/pessulus.mo -share/locale/sq/LC_MESSAGES/pessulus.mo -share/locale/sr/LC_MESSAGES/pessulus.mo -share/locale/sr@latin/LC_MESSAGES/pessulus.mo -share/locale/sv/LC_MESSAGES/pessulus.mo -share/locale/ta/LC_MESSAGES/pessulus.mo -share/locale/te/LC_MESSAGES/pessulus.mo -share/locale/th/LC_MESSAGES/pessulus.mo -share/locale/tr/LC_MESSAGES/pessulus.mo -share/locale/uk/LC_MESSAGES/pessulus.mo -share/locale/vi/LC_MESSAGES/pessulus.mo -share/locale/zh_CN/LC_MESSAGES/pessulus.mo -share/locale/zh_HK/LC_MESSAGES/pessulus.mo -share/locale/zh_TW/LC_MESSAGES/pessulus.mo -%%DATADIR%%/glade/pessulus.glade -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/Pessulus -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/bal/LC_MESSAGES -@dirrmtry share/locale/bal -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/sysutils/tracker-client/Makefile b/sysutils/tracker-client/Makefile deleted file mode 100644 index 04768326b..000000000 --- a/sysutils/tracker-client/Makefile +++ /dev/null @@ -1,111 +0,0 @@ -# New ports collection makefile for: tracker -# Date created: 2006-12-09 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports-stable/sysutils/tracker-client/Makefile,v 1.7 2008/06/16 22:18:40 mezz Exp $ -# - -PORTNAME= tracker -PORTVERSION= 0.6.6 -PORTREVISION= 9 -CATEGORIES= sysutils gnome -MASTER_SITES= http://www.gnome.org/~jamiemcc/tracker/ -PKGNAMESUFFIX?= -client - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Object database, tag/metadata database, search tool and indexer - -LIB_DEPENDS= sqlite3.8:${PORTSDIR}/databases/sqlite3 \ - dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - poppler-glib.4:${PORTSDIR}/graphics/poppler-gtk \ - exif.12:${PORTSDIR}/graphics/libexif \ - wv-1.2.4:${PORTSDIR}/textproc/wv \ - gmime-2.0.4:${PORTSDIR}/mail/gmime2 \ - qdbm.14:${PORTSDIR}/databases/qdbm \ - exempi.3:${PORTSDIR}/textproc/exempi -RUN_DEPENDS= xdg-desktop-icon:${PORTSDIR}/devel/xdg-utils \ - o3totxt:${PORTSDIR}/converters/o3read \ - pdftotext:${PORTSDIR}/graphics/poppler-utils \ - w3m:${PORTSDIR}/www/w3m - -USE_BZIP2= yes -USE_FAM= yes -WANT_FAM_SYSTEM=gamin -INSTALLS_ICONS= yes -USE_GNOME= gnomehack gnomeprefix ltasneededhack intltool -USE_GMAKE= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_GSTREAMER= core -INSTALLS_ICONS= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" -CONFIGURE_ARGS= --enable-video-extractor=gstreamer \ - --enable-file-monitoring=fam \ - --with-session-bus-services-dir=${LOCALBASE}/share/dbus-1/services \ - --enable-external-qdbm - -.include <bsd.port.pre.mk> - -.if defined(TRACKER_SLAVE) -LIB_DEPENDS+= trackerclient:${PORTSDIR}/sysutils/tracker-client -. if ${TRACKER_SLAVE}=="gnome" -PKGNAMESUFFIX= -gnome -LIB_DEPENDS+= tracker-gtk:${PORTSDIR}/sysutils/tracker-libtrackergtk -BUILD_WRKSRC= ${WRKSRC}/src/tracker-applet -INSTALL_WRKSRC= ${WRKSRC}/src/tracker-applet -EXTRA_WRKSRC= src/tracker-preferences src/tracker-search-tool -RUN_DEPENDS+= ${LOCALBASE}/lib/deskbar-applet/deskbar-applet:${PORTSDIR}/deskutils/deskbar-applet -USE_GNOME+= gnomedesktop libgsf -MAN1+= tracker-applet.1 tracker-search-tool.1 tracker-preferences.1 -CONFIGURE_ARGS+=--enable-deskbar-applet \ - --with-deskbar-applet-handler-dir=${LOCALBASE}/lib/deskbar-applet/handlers -. endif -. if defined(TRACKER_SLAVE) && ${TRACKER_SLAVE}=="libtrackergtk" -PKGNAMESUFFIX= -libtrackergtk -USE_GNOME+= libgsf -BUILD_WRKSRC= ${WRKSRC}/src/libtracker-gtk -INSTALL_WRKSRC= ${BUILD_WRKSRC} -. endif -.else -MAN1+= tracker-extract.1 tracker-files.1 \ - tracker-meta-folder.1 tracker-query.1 \ - tracker-search.1 tracker-stats.1 \ - tracker-status.1 tracker-tag.1 tracker-thumbnailer.1 trackerd.1 -MAN5+= tracker.cfg.5 -MAN7+= tracker-services.7 -CONFIGURE_ARGS+= --disable-libtrackergtk --disable-gui \ - --disable-trackerapplet --disable-gsf \ - --disable-preferences -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|libpng|libpng12|' ${WRKSRC}/configure - -post-build: -.if defined(TRACKER_SLAVE) && ${TRACKER_SLAVE}=="libtrackergtk" - @(cd ${WRKSRC}/src/tracker-extract && ${MAKE} libextract-msoffice.la) -.elif defined(TRACKER_SLAVE) && ${TRACKER_SLAVE}=="gnome" -. for dir in ${EXTRA_WRKSRC} - @(cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) -. endfor -.endif - -post-install: -.if defined(TRACKER_SLAVE) && ${TRACKER_SLAVE}=="libtrackergtk" - ${MKDIR} ${PREFIX}/lib/tracker/extract-modules - @(cd ${WRKSRC}/src/tracker-extract && for f in .a .la .so ; \ - do ${INSTALL_DATA} .libs/libextract-msoffice$${f} \ - ${PREFIX}/lib/tracker/extract-modules ; done) -.elif defined(TRACKER_SLAVE) && ${TRACKER_SLAVE}=="gnome" -. for dir in ${EXTRA_WRKSRC} - @(cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) -. endfor -. for man in ${MAN1} - @(cd ${WRKSRC} && ${INSTALL_DATA} docs/${man} ${PREFIX}/man/man1/${man}) -. endfor -.endif - -.include <bsd.port.post.mk> diff --git a/sysutils/tracker-client/distinfo b/sysutils/tracker-client/distinfo deleted file mode 100644 index 435cb9e83..000000000 --- a/sysutils/tracker-client/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (tracker-0.6.6.tar.bz2) = 0845998f8f0d715b3f1b306d59fdae4d -SHA256 (tracker-0.6.6.tar.bz2) = ffa374989db365f388edf0a52f901ae3becfa7a25a7e1b2dd76832eff9606a97 -SIZE (tracker-0.6.6.tar.bz2) = 901549 diff --git a/sysutils/tracker-client/files/patch-src_libtracker-gtk_Makefile.in b/sysutils/tracker-client/files/patch-src_libtracker-gtk_Makefile.in deleted file mode 100644 index df2beaaac..000000000 --- a/sysutils/tracker-client/files/patch-src_libtracker-gtk_Makefile.in +++ /dev/null @@ -1,19 +0,0 @@ ---- src/libtracker-gtk/Makefile.in.orig 2008-03-30 15:48:54.539689924 -0400 -+++ src/libtracker-gtk/Makefile.in 2008-03-30 15:50:09.289800343 -0400 -@@ -56,7 +56,6 @@ - LTLIBRARIES = $(lib_LTLIBRARIES) - am__DEPENDENCIES_1 = - libtracker_gtk_la_DEPENDENCIES = \ -- $(top_builddir)/src/libtracker/libtrackerclient.la \ - $(am__DEPENDENCIES_1) - am_libtracker_gtk_la_OBJECTS = tracker-utils.lo tracker-ui.lo \ - tracker-metadata-tile.lo tracker-tag-bar.lo \ -@@ -316,7 +315,7 @@ - tracker-keyword-store.c - - libtracker_gtk_la_LIBADD = \ -- $(top_builddir)/src/libtracker/libtrackerclient.la \ -+ -ltrackerclient \ - $(LIBTRACKERGTK_LIBS) - - libtracker_gtk_la_LDFLAGS = -version-info 0:0:0 diff --git a/sysutils/tracker-client/files/patch-src_libtracker-gtk_tracker-tag-bar.h b/sysutils/tracker-client/files/patch-src_libtracker-gtk_tracker-tag-bar.h deleted file mode 100644 index 950306602..000000000 --- a/sysutils/tracker-client/files/patch-src_libtracker-gtk_tracker-tag-bar.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/libtracker-gtk/tracker-tag-bar.h.orig 2007-07-17 04:35:33.000000000 +0400 -+++ src/libtracker-gtk/tracker-tag-bar.h 2007-08-25 00:53:14.000000000 +0400 -@@ -59,6 +59,8 @@ - const gchar *uri - ); - -+GType tracker_tag_bar_get_type(void); -+ - G_END_DECLS - - #endif /* TRACKER_TAG_BAR_H */ diff --git a/sysutils/tracker-client/files/patch-src_text-filters__Makefile.in b/sysutils/tracker-client/files/patch-src_text-filters__Makefile.in deleted file mode 100644 index ee9e1903a..000000000 --- a/sysutils/tracker-client/files/patch-src_text-filters__Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/text-filters/Makefile.in.orig 2008-03-03 13:14:00.000000000 +0900 -+++ ./src/text-filters/Makefile.in 2008-08-22 21:40:00.000000000 +0900 -@@ -266,7 +266,7 @@ - target_alias = @target_alias@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --SUBDIRS = ooo_converter -+#SUBDIRS = ooo_converter - all: all-recursive - - .SUFFIXES: diff --git a/sysutils/tracker-client/files/patch-src_tracker-applet_Makefile.in b/sysutils/tracker-client/files/patch-src_tracker-applet_Makefile.in deleted file mode 100644 index f964d78ce..000000000 --- a/sysutils/tracker-client/files/patch-src_tracker-applet_Makefile.in +++ /dev/null @@ -1,19 +0,0 @@ ---- src/tracker-applet/Makefile.in.orig 2008-03-30 16:20:32.345933535 -0400 -+++ src/tracker-applet/Makefile.in 2008-03-30 16:20:52.759690870 -0400 -@@ -55,7 +55,6 @@ - tracker_applet_OBJECTS = $(am_tracker_applet_OBJECTS) - am__DEPENDENCIES_1 = - tracker_applet_DEPENDENCIES = \ -- $(top_builddir)/src/libtracker/libtrackerclient.la \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) - DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ - depcomp = $(SHELL) $(top_srcdir)/depcomp -@@ -312,7 +311,7 @@ - tracker-applet-marshallers.h - - tracker_applet_LDADD = \ -- $(top_builddir)/src/libtracker/libtrackerclient.la \ -+ -ltrackerclient \ - $(LIBGLADE_LIBS) \ - $(TRACKERAPPLET_LIBS) - diff --git a/sysutils/tracker-client/files/patch-src_tracker-preferences_Makefile.in b/sysutils/tracker-client/files/patch-src_tracker-preferences_Makefile.in deleted file mode 100644 index acbe9556b..000000000 --- a/sysutils/tracker-client/files/patch-src_tracker-preferences_Makefile.in +++ /dev/null @@ -1,21 +0,0 @@ ---- src/tracker-preferences/Makefile.in.orig 2008-03-30 16:28:05.657537943 -0400 -+++ src/tracker-preferences/Makefile.in 2008-03-30 16:29:01.927868390 -0400 -@@ -59,8 +59,7 @@ - tracker_preferences_OBJECTS = $(am_tracker_preferences_OBJECTS) - am__DEPENDENCIES_1 = - tracker_preferences_DEPENDENCIES = $(am__DEPENDENCIES_1) \ -- $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ -- $(top_builddir)/src/libtracker/libtrackerclient.la -+ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) - DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ - depcomp = $(SHELL) $(top_srcdir)/depcomp - am__depfiles_maybe = depfiles -@@ -329,7 +328,7 @@ - $(GTK2_LIBS) \ - $(LIBGLADE_LIBS) \ - $(DBUS_LIBS) \ -- $(top_builddir)/src/libtracker/libtrackerclient.la \ -+ -ltrackerclient \ - $(NULL) - - EXTRA_DIST = $(pkgdata_DATA) diff --git a/sysutils/tracker-client/files/patch-src_tracker-search-tool_Makefile.in b/sysutils/tracker-client/files/patch-src_tracker-search-tool_Makefile.in deleted file mode 100644 index 67de120b0..000000000 --- a/sysutils/tracker-client/files/patch-src_tracker-search-tool_Makefile.in +++ /dev/null @@ -1,23 +0,0 @@ ---- src/tracker-search-tool/Makefile.in.orig 2008-03-30 16:33:18.729811374 -0400 -+++ src/tracker-search-tool/Makefile.in 2008-03-30 16:33:36.248603008 -0400 -@@ -57,9 +57,7 @@ - am__DEPENDENCIES_1 = - tracker_search_tool_DEPENDENCIES = $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ -- $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ -- $(top_builddir)/src/libtracker-gtk/libtracker-gtk.la \ -- $(top_builddir)/src/libtracker/libtrackerclient.la -+ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) - DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ - depcomp = $(SHELL) $(top_srcdir)/depcomp - am__depfiles_maybe = depfiles -@@ -327,8 +325,7 @@ - $(GNOMEVFS_LIBS) \ - $(GNOMEDESKTOP_LIBS) \ - $(DBUS_LIBS) \ -- $(top_builddir)/src/libtracker-gtk/libtracker-gtk.la \ -- $(top_builddir)/src/libtracker/libtrackerclient.la -+ -ltracker-gtk -ltrackerclient - - desktop_in_files = tracker-search-tool.desktop.in - desktop_files = $(desktop_in_files:.desktop.in=.desktop) diff --git a/sysutils/tracker-client/files/patch-src_tracker-search-tool_tracker-search-tool-support.h b/sysutils/tracker-client/files/patch-src_tracker-search-tool_tracker-search-tool-support.h deleted file mode 100644 index 609f18068..000000000 --- a/sysutils/tracker-client/files/patch-src_tracker-search-tool_tracker-search-tool-support.h +++ /dev/null @@ -1,18 +0,0 @@ ---- src/tracker-search-tool/tracker-search-tool-support.h.orig 2007-07-21 20:55:20.000000000 +0400 -+++ src/tracker-search-tool/tracker-search-tool-support.h 2007-08-24 22:31:05.000000000 +0400 -@@ -143,6 +143,15 @@ - tracker_search_get_stored_window_geometry (gint * width, - gint * height); - -+void -+tracker_set_stored_separator_position (int pos); -+ -+char * -+tracker_string_replace (const char *haystack, char *needle, char *replacement); -+ -+int -+tracker_get_stored_separator_position (); -+ - #ifdef __cplusplus - } - #endif diff --git a/sysutils/tracker-client/files/patch-src_trackerd_tracker-utils.c b/sysutils/tracker-client/files/patch-src_trackerd_tracker-utils.c deleted file mode 100644 index 132346af4..000000000 --- a/sysutils/tracker-client/files/patch-src_trackerd_tracker-utils.c +++ /dev/null @@ -1,14 +0,0 @@ ---- src/trackerd/tracker-utils.c.orig 2007-08-05 01:53:12.000000000 +0400 -+++ src/trackerd/tracker-utils.c 2007-08-24 22:31:05.000000000 +0400 -@@ -727,10 +727,7 @@ - tm.tm_sec = strtoul (timestamp, (char **)×tamp, 10); - } - -- tt = mktime (&tm); -- /* mktime() always assumes that "tm" is in locale time but -- we want to keep control on time, so we go to UTC */ -- tt -= timezone; -+ tt = timegm (&tm); - - if (*timestamp == '+' || *timestamp == '-') { - int sign; diff --git a/sysutils/tracker-client/pkg-descr b/sysutils/tracker-client/pkg-descr deleted file mode 100644 index fbabf7af0..000000000 --- a/sysutils/tracker-client/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Tracker is a powerful desktop-neutral first class object database, tag/metadata -database, search tool and indexer. - -Tracker is also extremely fast and super efficient with your systems memory when -compared with some other competing frameworks and is by far the fastest and most -memory efficient Nautilus search and Deskbar backends currently availble. - -It consists of a common object database that allows entities to have an almost -infinte number of properties, metadata (both embedded/harvested as well as user -definable), a comprehensive database of keywords/tags and links to other -entities. - -WWW: http://www.tracker-project.org/ diff --git a/sysutils/tracker-client/pkg-plist b/sysutils/tracker-client/pkg-plist deleted file mode 100644 index 3daea5a6c..000000000 --- a/sysutils/tracker-client/pkg-plist +++ /dev/null @@ -1,179 +0,0 @@ -bin/tracker-extract -bin/tracker-files -bin/tracker-meta-folder -bin/tracker-query -bin/tracker-search -bin/tracker-stats -bin/tracker-status -bin/tracker-tag -bin/tracker-thumbnailer -bin/trackerd -etc/xdg/autostart/trackerd.desktop -include/tracker-client.h -include/tracker.h -lib/libtrackerclient.a -lib/libtrackerclient.la -lib/libtrackerclient.so -lib/libtrackerclient.so.0 -lib/tracker/extract-modules/libextract-abw.a -lib/tracker/extract-modules/libextract-abw.la -lib/tracker/extract-modules/libextract-abw.so -lib/tracker/extract-modules/libextract-exif.a -lib/tracker/extract-modules/libextract-exif.la -lib/tracker/extract-modules/libextract-exif.so -lib/tracker/extract-modules/libextract-gstreamer.a -lib/tracker/extract-modules/libextract-gstreamer.la -lib/tracker/extract-modules/libextract-gstreamer.so -lib/tracker/extract-modules/libextract-html.a -lib/tracker/extract-modules/libextract-html.la -lib/tracker/extract-modules/libextract-html.so -lib/tracker/extract-modules/libextract-imagemagick.a -lib/tracker/extract-modules/libextract-imagemagick.la -lib/tracker/extract-modules/libextract-imagemagick.so -lib/tracker/extract-modules/libextract-mp3.a -lib/tracker/extract-modules/libextract-mp3.la -lib/tracker/extract-modules/libextract-mp3.so -lib/tracker/extract-modules/libextract-mplayer.a -lib/tracker/extract-modules/libextract-mplayer.la -lib/tracker/extract-modules/libextract-mplayer.so -lib/tracker/extract-modules/libextract-oasis.a -lib/tracker/extract-modules/libextract-oasis.la -lib/tracker/extract-modules/libextract-oasis.so -lib/tracker/extract-modules/libextract-pdf.a -lib/tracker/extract-modules/libextract-pdf.la -lib/tracker/extract-modules/libextract-pdf.so -lib/tracker/extract-modules/libextract-png.a -lib/tracker/extract-modules/libextract-png.la -lib/tracker/extract-modules/libextract-png.so -lib/tracker/extract-modules/libextract-ps.a -lib/tracker/extract-modules/libextract-ps.la -lib/tracker/extract-modules/libextract-ps.so -lib/tracker/extract-modules/libextract-totem.a -lib/tracker/extract-modules/libextract-totem.la -lib/tracker/extract-modules/libextract-totem.so -lib/tracker/extract-modules/libextract-xmp.a -lib/tracker/extract-modules/libextract-xmp.la -lib/tracker/extract-modules/libextract-xmp.so -lib/tracker/filters/application/csv_filter -lib/tracker/filters/application/msword_filter -lib/tracker/filters/application/pdf_filter -lib/tracker/filters/application/tab-separated-values_filter -lib/tracker/filters/application/vnd.ms-excel_filter -lib/tracker/filters/application/vnd.oasis.opendocument.presentation-template_filter -lib/tracker/filters/application/vnd.oasis.opendocument.presentation_filter -lib/tracker/filters/application/vnd.oasis.opendocument.spreadsheet-template_filter -lib/tracker/filters/application/vnd.oasis.opendocument.spreadsheet_filter -lib/tracker/filters/application/vnd.oasis.opendocument.text-template_filter -lib/tracker/filters/application/vnd.oasis.opendocument.text_filter -lib/tracker/filters/application/vnd.stardivision.writer_filter -lib/tracker/filters/application/vnd.sun.xml.calc.template_filter -lib/tracker/filters/application/vnd.sun.xml.calc_filter -lib/tracker/filters/application/vnd.sun.xml.draw_filter -lib/tracker/filters/application/vnd.sun.xml.impress.template_filter -lib/tracker/filters/application/vnd.sun.xml.impress_filter -lib/tracker/filters/application/vnd.sun.xml.writer.template_filter -lib/tracker/filters/application/vnd.sun.xml.writer_filter -lib/tracker/filters/application/x-abiword_filter -lib/tracker/filters/application/x-gnumeric_filter -lib/tracker/filters/text/csv_filter -lib/tracker/filters/text/djvu_filter -lib/tracker/filters/text/html_filter -lib/tracker/filters/text/spreadsheet_filter -lib/tracker/filters/text/tab-separated-values_filter -lib/tracker/filters/text/x-comma-separated-values_filter -lib/tracker/filters/text/x-tex_filter -lib/tracker/filters/text/xml_filter -lib/tracker/thumbnailers/application/pdf_thumbnailer -lib/tracker/thumbnailers/application/vnd.oasis.opendocument.graphics_thumbnailer -lib/tracker/thumbnailers/application/vnd.oasis.opendocument.presentation_thumbnailer -lib/tracker/thumbnailers/application/vnd.oasis.opendocument.spreadsheet_thumbnailer -lib/tracker/thumbnailers/application/vnd.oasis.opendocument.text_thumbnailer -lib/tracker/thumbnailers/image/gif_thumbnailer -lib/tracker/thumbnailers/image/jpeg_thumbnailer -lib/tracker/thumbnailers/image/png_thumbnailer -lib/tracker/thumbnailers/image/tiff_thumbnailer -libdata/pkgconfig/tracker.pc -share/dbus-1/services/tracker.service -share/icons/hicolor/16x16/apps/tracker.png -share/icons/hicolor/22x22/apps/tracker.png -share/icons/hicolor/24x24/apps/tracker.png -share/icons/hicolor/32x32/apps/tracker.png -share/icons/hicolor/48x48/apps/tracker.png -share/icons/hicolor/scalable/apps/tracker.svg -share/locale/ar/LC_MESSAGES/tracker.mo -share/locale/be@latin/LC_MESSAGES/tracker.mo -share/locale/ca/LC_MESSAGES/tracker.mo -share/locale/de/LC_MESSAGES/tracker.mo -share/locale/dz/LC_MESSAGES/tracker.mo -share/locale/en_GB/LC_MESSAGES/tracker.mo -share/locale/es/LC_MESSAGES/tracker.mo -share/locale/et/LC_MESSAGES/tracker.mo -share/locale/fi/LC_MESSAGES/tracker.mo -share/locale/fr/LC_MESSAGES/tracker.mo -share/locale/gl/LC_MESSAGES/tracker.mo -share/locale/hu/LC_MESSAGES/tracker.mo -share/locale/it/LC_MESSAGES/tracker.mo -share/locale/ko/LC_MESSAGES/tracker.mo -share/locale/lt/LC_MESSAGES/tracker.mo -share/locale/mk/LC_MESSAGES/tracker.mo -share/locale/nb/LC_MESSAGES/tracker.mo -share/locale/nl/LC_MESSAGES/tracker.mo -share/locale/oc/LC_MESSAGES/tracker.mo -share/locale/pl/LC_MESSAGES/tracker.mo -share/locale/pt/LC_MESSAGES/tracker.mo -share/locale/pt_BR/LC_MESSAGES/tracker.mo -share/locale/ru/LC_MESSAGES/tracker.mo -share/locale/sk/LC_MESSAGES/tracker.mo -share/locale/sl/LC_MESSAGES/tracker.mo -share/locale/sv/LC_MESSAGES/tracker.mo -share/locale/zh_CN/LC_MESSAGES/tracker.mo -%%DATADIR%%/languages/stopwords.da -%%DATADIR%%/languages/stopwords.de -%%DATADIR%%/languages/stopwords.en -%%DATADIR%%/languages/stopwords.es -%%DATADIR%%/languages/stopwords.fi -%%DATADIR%%/languages/stopwords.fr -%%DATADIR%%/languages/stopwords.it -%%DATADIR%%/languages/stopwords.nb -%%DATADIR%%/languages/stopwords.nl -%%DATADIR%%/languages/stopwords.pt -%%DATADIR%%/languages/stopwords.ru -%%DATADIR%%/languages/stopwords.sv -%%DATADIR%%/services/application.metadata -%%DATADIR%%/services/audio.metadata -%%DATADIR%%/services/default.metadata -%%DATADIR%%/services/default.service -%%DATADIR%%/services/document.metadata -%%DATADIR%%/services/email.metadata -%%DATADIR%%/services/file.metadata -%%DATADIR%%/services/image.metadata -%%DATADIR%%/services/video.metadata -%%DATADIR%%/sqlite-cache.sql -%%DATADIR%%/sqlite-email.sql -%%DATADIR%%/sqlite-metadata.sql -%%DATADIR%%/sqlite-service-stored-procs.sql -%%DATADIR%%/sqlite-service-triggers.sql -%%DATADIR%%/sqlite-service-types.sql -%%DATADIR%%/sqlite-service.sql -%%DATADIR%%/sqlite-stored-procs.sql -%%DATADIR%%/sqlite-tracker-triggers.sql -%%DATADIR%%/sqlite-tracker.sql -%%DATADIR%%/sqlite-user-data.sql -%%DATADIR%%/tracker-introspect.xml -@dirrm %%DATADIR%%/services -@dirrm %%DATADIR%%/languages -@dirrm %%DATADIR%% -@dirrm lib/tracker/thumbnailers/image -@dirrm lib/tracker/thumbnailers/application -@dirrm lib/tracker/thumbnailers -@dirrm lib/tracker/filters/text -@dirrm lib/tracker/filters/application -@dirrm lib/tracker/filters -@dirrm lib/tracker/extract-modules -@dirrm lib/tracker -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/sysutils/tracker-gnome/Makefile b/sysutils/tracker-gnome/Makefile deleted file mode 100644 index 57cd8ce18..000000000 --- a/sysutils/tracker-gnome/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -# New ports collection makefile for: tracker-gnome -# Date created: 2008-03-30 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/sysutils/tracker-gnome/Makefile,v 1.1 2009/03/11 22:44:13 mezz Exp $ - -PORTREVISION= 2 - -COMMENT= Tracker GNOME applet, search tool, and preference programs - -TRACKER_SLAVE= gnome -PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../../sysutils/tracker-client - -.include "${MASTERDIR}/Makefile" diff --git a/sysutils/tracker-gnome/pkg-plist b/sysutils/tracker-gnome/pkg-plist deleted file mode 100644 index a6d62ab27..000000000 --- a/sysutils/tracker-gnome/pkg-plist +++ /dev/null @@ -1,16 +0,0 @@ -bin/tracker-applet -bin/tracker-preferences -bin/tracker-search-tool -etc/xdg/autostart/tracker-applet.desktop -share/applications/tracker-preferences.desktop -share/applications/tracker-search-tool.desktop -%%DATADIR%%/icons/thumbnail_frame.png -%%DATADIR%%/icons/tracker-applet-default.png -%%DATADIR%%/icons/tracker-applet-indexing1.png -%%DATADIR%%/icons/tracker-applet-indexing2.png -%%DATADIR%%/icons/tracker-applet-paused.png -%%DATADIR%%/tracker-applet-prefs.glade -%%DATADIR%%/tracker-preferences.glade -@dirrmtry %%DATADIR%%/icons -@dirrmtry %%DATADIR%% -@dirrmtry share/applications diff --git a/textproc/gnome-doc-utils/Makefile b/textproc/gnome-doc-utils/Makefile deleted file mode 100644 index 951c0978d..000000000 --- a/textproc/gnome-doc-utils/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: gnome-doc-utils -# Date created: 11 November 2004 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/textproc/gnome-doc-utils/Makefile,v 1.63 2009/03/04 23:13:49 mezz Exp $ -# - -PORTNAME= gnome-doc-utils -PORTVERSION= 0.16.0 -CATEGORIES= textproc gnome -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME doc utils - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian \ - gawk:${PORTSDIR}/lang/gawk -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian \ - ${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2 \ - ${LOCALBASE}/share/xml/docbook/4.3/catalog.xml:${PORTSDIR}/textproc/docbook-xml-430 \ - ${LOCALBASE}/share/xml/docbook/4.4/catalog.xml:${PORTSDIR}/textproc/docbook-xml-440 - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETTEXT= yes -USE_GNOME= gnomehier gnomehack libxslt intlhack -USE_PYTHON= yes -INSTALLS_OMF= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-omf-dir=${PREFIX}/share/omf -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= xml2po.1 - -post-install: - @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -l ${PREFIX}/share/xml2po - -.include <bsd.port.mk> diff --git a/textproc/gnome-doc-utils/distinfo b/textproc/gnome-doc-utils/distinfo deleted file mode 100644 index be728e4f9..000000000 --- a/textproc/gnome-doc-utils/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome-doc-utils-0.16.0.tar.bz2) = 45971197fd48147ee928462d5b74f234 -SHA256 (gnome-doc-utils-0.16.0.tar.bz2) = 87d2178a7192165f8d3a125f4baf114329c82cf33f3a0317cecf4c3f9e05829e -SIZE (gnome-doc-utils-0.16.0.tar.bz2) = 625895 diff --git a/textproc/gnome-doc-utils/files/patch-configure b/textproc/gnome-doc-utils/files/patch-configure deleted file mode 100644 index 33df31f40..000000000 --- a/textproc/gnome-doc-utils/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Sat Mar 11 13:14:03 2006 -+++ configure Sat Mar 11 13:14:17 2006 -@@ -7249,6 +7249,7 @@ echo "${ECHO_T}found xgettext program is - echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 - echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 - NEW_LINGUAS= -+ unset LINGUAS - for presentlang in $ALL_LINGUAS; do - useit=no - if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then diff --git a/textproc/gnome-doc-utils/pkg-descr b/textproc/gnome-doc-utils/pkg-descr deleted file mode 100644 index f8e90484e..000000000 --- a/textproc/gnome-doc-utils/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -The GNOME Doc Utils is a collection of documentation utilities for the GNOME -project. Notably, it contains utilities for building documentation and all -auxiliary files in the source tree, and it contains the DocBook XSLT -stylesheets that were once distributed with Yelp. Starting with GNOME 2.8, Yelp -require GNOME Doc Utils for the XSLT. diff --git a/textproc/gnome-doc-utils/pkg-plist b/textproc/gnome-doc-utils/pkg-plist deleted file mode 100644 index 786631717..000000000 --- a/textproc/gnome-doc-utils/pkg-plist +++ /dev/null @@ -1,239 +0,0 @@ -bin/gnome-doc-prepare -bin/gnome-doc-tool -bin/xml2po -libdata/pkgconfig/gnome-doc-utils.pc -libdata/pkgconfig/xml2po.pc -share/aclocal/gnome-doc-utils.m4 -%%DATADIR%%/gnome-doc-utils.make -%%DATADIR%%/icons/hicolor/48x48/admon-bug.png -%%DATADIR%%/icons/hicolor/48x48/admon-caution.png -%%DATADIR%%/icons/hicolor/48x48/admon-important.png -%%DATADIR%%/icons/hicolor/48x48/admon-note.png -%%DATADIR%%/icons/hicolor/48x48/admon-tip.png -%%DATADIR%%/icons/hicolor/48x48/admon-warning.png -%%DATADIR%%/icons/hicolor/scalable/admon-bug.svg -%%DATADIR%%/icons/hicolor/scalable/admon-caution.svg -%%DATADIR%%/icons/hicolor/scalable/admon-important.svg -%%DATADIR%%/icons/hicolor/scalable/admon-note.svg -%%DATADIR%%/icons/hicolor/scalable/admon-tip.svg -%%DATADIR%%/icons/hicolor/scalable/admon-warning.svg -%%DATADIR%%/template-document.xml -%%DATADIR%%/template.make -%%DATADIR%%/template.omf.in -%%DATADIR%%/templates/gnome-app-template.xml -%%DATADIR%%/templates/gnome-applet-template.xml -%%DATADIR%%/templates/legal.xml -%%DATADIR%%/watermarks/watermark-blockquote-00AB.png -%%DATADIR%%/watermarks/watermark-blockquote-00BB.png -%%DATADIR%%/watermarks/watermark-blockquote-201C.png -%%DATADIR%%/watermarks/watermark-blockquote-201D.png -%%DATADIR%%/watermarks/watermark-blockquote-201E.png -%%DATADIR%%/watermarks/watermark-code-python.png -%%DATADIR%%/watermarks/watermark-code.png -share/gnome/help/gnome-doc-make/C/gnome-doc-make.xml -share/gnome/help/gnome-doc-make/C/legal.xml -share/gnome/help/gnome-doc-make/C/make-ref.xml -share/gnome/help/gnome-doc-xslt/C/db-chunk.xml -share/gnome/help/gnome-doc-xslt/C/db-common.xml -share/gnome/help/gnome-doc-xslt/C/db-label.xml -share/gnome/help/gnome-doc-xslt/C/db-title.xml -share/gnome/help/gnome-doc-xslt/C/db-xref.xml -share/gnome/help/gnome-doc-xslt/C/db2html-autotoc.xml -share/gnome/help/gnome-doc-xslt/C/db2html-bibliography.xml -share/gnome/help/gnome-doc-xslt/C/db2html-block.xml -share/gnome/help/gnome-doc-xslt/C/db2html-callout.xml -share/gnome/help/gnome-doc-xslt/C/db2html-classsynopsis.xml -share/gnome/help/gnome-doc-xslt/C/db2html-cmdsynopsis.xml -share/gnome/help/gnome-doc-xslt/C/db2html-css.xml -share/gnome/help/gnome-doc-xslt/C/db2html-division.xml -share/gnome/help/gnome-doc-xslt/C/db2html-ebnf.xml -share/gnome/help/gnome-doc-xslt/C/db2html-footnote.xml -share/gnome/help/gnome-doc-xslt/C/db2html-funcsynopsis.xml -share/gnome/help/gnome-doc-xslt/C/db2html-index.xml -share/gnome/help/gnome-doc-xslt/C/db2html-info.xml -share/gnome/help/gnome-doc-xslt/C/db2html-inline.xml -share/gnome/help/gnome-doc-xslt/C/db2html-l10n.xml -share/gnome/help/gnome-doc-xslt/C/db2html-list.xml -share/gnome/help/gnome-doc-xslt/C/db2html-media.xml -share/gnome/help/gnome-doc-xslt/C/db2html-qanda.xml -share/gnome/help/gnome-doc-xslt/C/db2html-refentry.xml -share/gnome/help/gnome-doc-xslt/C/db2html-table.xml -share/gnome/help/gnome-doc-xslt/C/db2html-title.xml -share/gnome/help/gnome-doc-xslt/C/db2html-xref.xml -share/gnome/help/gnome-doc-xslt/C/db2html.xml -share/gnome/help/gnome-doc-xslt/C/db2omf.xml -share/gnome/help/gnome-doc-xslt/C/db2xhtml.xml -share/gnome/help/gnome-doc-xslt/C/gettext.xml -share/gnome/help/gnome-doc-xslt/C/gnome-doc-xslt.xml -share/gnome/help/gnome-doc-xslt/C/l10n-numbers.xml -share/gnome/help/gnome-doc-xslt/C/legal.xml -share/gnome/help/gnome-doc-xslt/C/theme.xml -share/gnome/help/gnome-doc-xslt/C/translating.xml -share/locale/ar/LC_MESSAGES/gnome-doc-utils.mo -share/locale/as/LC_MESSAGES/gnome-doc-utils.mo -share/locale/be@latin/LC_MESSAGES/gnome-doc-utils.mo -share/locale/bg/LC_MESSAGES/gnome-doc-utils.mo -share/locale/bn/LC_MESSAGES/gnome-doc-utils.mo -share/locale/bn_IN/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ca/LC_MESSAGES/gnome-doc-utils.mo -share/locale/cs/LC_MESSAGES/gnome-doc-utils.mo -share/locale/cy/LC_MESSAGES/gnome-doc-utils.mo -share/locale/da/LC_MESSAGES/gnome-doc-utils.mo -share/locale/de/LC_MESSAGES/gnome-doc-utils.mo -share/locale/dz/LC_MESSAGES/gnome-doc-utils.mo -share/locale/el/LC_MESSAGES/gnome-doc-utils.mo -share/locale/en_CA/LC_MESSAGES/gnome-doc-utils.mo -share/locale/en_GB/LC_MESSAGES/gnome-doc-utils.mo -share/locale/es/LC_MESSAGES/gnome-doc-utils.mo -share/locale/et/LC_MESSAGES/gnome-doc-utils.mo -share/locale/eu/LC_MESSAGES/gnome-doc-utils.mo -share/locale/fa/LC_MESSAGES/gnome-doc-utils.mo -share/locale/fi/LC_MESSAGES/gnome-doc-utils.mo -share/locale/fr/LC_MESSAGES/gnome-doc-utils.mo -share/locale/gl/LC_MESSAGES/gnome-doc-utils.mo -share/locale/gu/LC_MESSAGES/gnome-doc-utils.mo -share/locale/he/LC_MESSAGES/gnome-doc-utils.mo -share/locale/hi/LC_MESSAGES/gnome-doc-utils.mo -share/locale/hu/LC_MESSAGES/gnome-doc-utils.mo -share/locale/id/LC_MESSAGES/gnome-doc-utils.mo -share/locale/it/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ja/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ka/LC_MESSAGES/gnome-doc-utils.mo -share/locale/kn/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ko/LC_MESSAGES/gnome-doc-utils.mo -share/locale/lt/LC_MESSAGES/gnome-doc-utils.mo -share/locale/lv/LC_MESSAGES/gnome-doc-utils.mo -share/locale/mg/LC_MESSAGES/gnome-doc-utils.mo -share/locale/mk/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ml/LC_MESSAGES/gnome-doc-utils.mo -share/locale/mn/LC_MESSAGES/gnome-doc-utils.mo -share/locale/mr/LC_MESSAGES/gnome-doc-utils.mo -share/locale/nb/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ne/LC_MESSAGES/gnome-doc-utils.mo -share/locale/nl/LC_MESSAGES/gnome-doc-utils.mo -share/locale/nn/LC_MESSAGES/gnome-doc-utils.mo -share/locale/oc/LC_MESSAGES/gnome-doc-utils.mo -share/locale/or/LC_MESSAGES/gnome-doc-utils.mo -share/locale/pa/LC_MESSAGES/gnome-doc-utils.mo -share/locale/pl/LC_MESSAGES/gnome-doc-utils.mo -share/locale/pt/LC_MESSAGES/gnome-doc-utils.mo -share/locale/pt_BR/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ro/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ru/LC_MESSAGES/gnome-doc-utils.mo -share/locale/rw/LC_MESSAGES/gnome-doc-utils.mo -share/locale/sk/LC_MESSAGES/gnome-doc-utils.mo -share/locale/sl/LC_MESSAGES/gnome-doc-utils.mo -share/locale/sq/LC_MESSAGES/gnome-doc-utils.mo -share/locale/sr/LC_MESSAGES/gnome-doc-utils.mo -share/locale/sr@latin/LC_MESSAGES/gnome-doc-utils.mo -share/locale/sv/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ta/LC_MESSAGES/gnome-doc-utils.mo -share/locale/te/LC_MESSAGES/gnome-doc-utils.mo -share/locale/th/LC_MESSAGES/gnome-doc-utils.mo -share/locale/tr/LC_MESSAGES/gnome-doc-utils.mo -share/locale/ug/LC_MESSAGES/gnome-doc-utils.mo -share/locale/uk/LC_MESSAGES/gnome-doc-utils.mo -share/locale/vi/LC_MESSAGES/gnome-doc-utils.mo -share/locale/wa/LC_MESSAGES/gnome-doc-utils.mo -share/locale/zh_CN/LC_MESSAGES/gnome-doc-utils.mo -share/locale/zh_HK/LC_MESSAGES/gnome-doc-utils.mo -share/locale/zh_TW/LC_MESSAGES/gnome-doc-utils.mo -share/omf/gnome-doc-make/gnome-doc-make-C.omf -share/omf/gnome-doc-xslt/gnome-doc-xslt-C.omf -share/xml/gnome/xslt/common/theme.xsl -share/xml/gnome/xslt/docbook/common/db-chunk.xsl -share/xml/gnome/xslt/docbook/common/db-common.xsl -share/xml/gnome/xslt/docbook/common/db-label.xsl -share/xml/gnome/xslt/docbook/common/db-title.xsl -share/xml/gnome/xslt/docbook/common/db-xref.xsl -share/xml/gnome/xslt/docbook/html/db2html-autotoc.xsl -share/xml/gnome/xslt/docbook/html/db2html-bibliography.xsl -share/xml/gnome/xslt/docbook/html/db2html-block.xsl -share/xml/gnome/xslt/docbook/html/db2html-callout.xsl -share/xml/gnome/xslt/docbook/html/db2html-classsynopsis.xsl -share/xml/gnome/xslt/docbook/html/db2html-cmdsynopsis.xsl -share/xml/gnome/xslt/docbook/html/db2html-css.xsl -share/xml/gnome/xslt/docbook/html/db2html-division.xsl -share/xml/gnome/xslt/docbook/html/db2html-ebnf.xsl -share/xml/gnome/xslt/docbook/html/db2html-footnote.xsl -share/xml/gnome/xslt/docbook/html/db2html-funcsynopsis.xsl -share/xml/gnome/xslt/docbook/html/db2html-index.xsl -share/xml/gnome/xslt/docbook/html/db2html-info.xsl -share/xml/gnome/xslt/docbook/html/db2html-inline.xsl -share/xml/gnome/xslt/docbook/html/db2html-l10n.xsl -share/xml/gnome/xslt/docbook/html/db2html-list.xsl -share/xml/gnome/xslt/docbook/html/db2html-media.xsl -share/xml/gnome/xslt/docbook/html/db2html-qanda.xsl -share/xml/gnome/xslt/docbook/html/db2html-refentry.xsl -share/xml/gnome/xslt/docbook/html/db2html-suppressed.xsl -share/xml/gnome/xslt/docbook/html/db2html-table.xsl -share/xml/gnome/xslt/docbook/html/db2html-title.xsl -share/xml/gnome/xslt/docbook/html/db2html-xref.xsl -share/xml/gnome/xslt/docbook/html/db2html.xsl -share/xml/gnome/xslt/docbook/html/db2xhtml.xsl -share/xml/gnome/xslt/docbook/omf/db2omf.xsl -share/xml/gnome/xslt/docbook/utils/chunks.xsl -share/xml/gnome/xslt/docbook/utils/credits.xsl -share/xml/gnome/xslt/docbook/utils/figures.xsl -share/xml/gnome/xslt/docbook/utils/graphics.xsl -share/xml/gnome/xslt/docbook/utils/ids.xsl -share/xml/gnome/xslt/gettext/gettext.xsl -share/xml/gnome/xslt/gettext/l10n-numbers.xsl -share/xml/gnome/xslt/gettext/l10n.xml -share/xml2po/docbook.py -share/xml2po/docbook.pyc -share/xml2po/empty.py -share/xml2po/empty.pyc -share/xml2po/gs.py -share/xml2po/gs.pyc -share/xml2po/ubuntu.py -share/xml2po/ubuntu.pyc -share/xml2po/xhtml.py -share/xml2po/xhtml.pyc -@dirrm share/xml2po -@dirrm share/xml/gnome/xslt/gettext -@dirrm share/xml/gnome/xslt/docbook/utils -@dirrm share/xml/gnome/xslt/docbook/omf -@dirrm share/xml/gnome/xslt/docbook/html -@dirrm share/xml/gnome/xslt/docbook/common -@dirrm share/xml/gnome/xslt/docbook -@dirrm share/xml/gnome/xslt/common -@dirrm share/xml/gnome/xslt -@dirrm share/xml/gnome -@dirrm share/omf/gnome-doc-xslt -@dirrm share/omf/gnome-doc-make -@dirrm share/gnome/help/gnome-doc-xslt/C -@dirrm share/gnome/help/gnome-doc-xslt -@dirrm share/gnome/help/gnome-doc-make/C -@dirrm share/gnome/help/gnome-doc-make -@dirrm %%DATADIR%%/watermarks -@dirrm %%DATADIR%%/templates -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/48x48 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/textproc/ibus/Makefile b/textproc/ibus/Makefile deleted file mode 100644 index 384aa8499..000000000 --- a/textproc/ibus/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: ibus -# Date created: 21 October 2008 -# Whom: Henry Hu <henry.hu.sh@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= ibus -PORTVERSION= 1.1.0.20090311 -PORTREVISION= 1 -CATEGORIES= textproc -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} - -MAINTAINER= henry.hu.sh@gmail.com -COMMENT= Intelligent Input Bus for Linux / Unix OS - -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.83.0:${PORTSDIR}/devel/py-dbus -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.83.0:${PORTSDIR}/devel/py-dbus - -USE_PYTHON= yes -USE_GNOME= pygtk2 gconf2 -USE_QT_VER= 4 - -USE_LDCONFIG= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -GCONF_SCHEMAS= ibus.schemas - -OPTIONS= ISOCODES "Use isocodecs" on -# QTIMMODULE "Enable building of Qt4 immodule" off \ -# PYGCONF "Use internal python gconf binding" on \ - -.include <bsd.port.pre.mk> - -# With 1.1.0.20090311, QT4 IM Module is broken and would not be built -# .if defined(WITH_QTIMMODULE) -# QT_COMPONENTS= dbus xml gui corelib qmake_build -# # if no QMAKE is set, the configure script would fail to find qmake-qt4 -# # however, it worked as expected when being executed in the shell... -# CONFIGURE_ENV+= QMAKE=${LOCALBASE}/bin/qmake-qt4 -# PLIST_SUB+= WITH_QTIMMODULE="" -# CONFIGURE_ARGS+= --enable-qt4-immodule -# .else -# CONFIGURE_ARGS+= --disable-qt4-immodule -# PLIST_SUB+= WITH_QTIMMODULE="@comment " -# .endif - -# This option does not exist now -# .if defined(WITH_PYGCONF) -# CONFIGURE_ARGS+= --enable-pygconf -# PLIST_SUB+= WITH_PYGCONF="" -# .else -# CONFIGURE_ARGS+= --disable-pygconf -# PLIST_SUB+= WITH_PYGCONF="@comment " -# depends on gnome-python ( py-gnome2 ) -# USE_GNOME+= pygnome2 -# .endif - -.if defined(WITH_ISOCODES) -BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes -RUN_DEPENDS+= ${LOCALBASE}/share/xml/iso-codes/iso_639.xml:${PORTSDIR}/misc/iso-codes -.else -CONFIGURE_ARGS+= --disable-iso-codes-check -.endif - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CPPFLAGS= -I${LOCALBASE}/include -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e 's|/usr/share/xml/iso-codes/|${LOCALBASE}/share/xml/iso-codes/|g' ${WRKSRC}/ibus/lang.py - @${REINPLACE_CMD} -e 's|locale.bind_textdomain_codeset|gettext.bind_textdomain_codeset|g' ${WRKSRC}/setup/main.py - @${REINPLACE_CMD} -e 's|locale.bind_textdomain_codeset|gettext.bind_textdomain_codeset|g' ${WRKSRC}/ui/gtk/main.py - @${REINPLACE_CMD} -e 's|import locale|import gettext|g' ${WRKSRC}/ui/gtk/main.py - @${REINPLACE_CMD} -e 's|setpgrp ()|setpgrp (0,0)|g' ${WRKSRC}/bus/main.c - -post-install: - @gtk-query-immodules-2.0 > ${LOCALBASE}/etc/gtk-2.0/gtk.immodules - @${CAT} ${PKGMESSAGE} - @${ECHO} To display this message again, type ${PKG_INFO} -D ${PKGNAME} - -post-deinstall: - @gtk-query-immodules-2.0 > ${LOCALBASE}/etc/gtk-2.0/gtk.immodules - -.include <bsd.port.post.mk> diff --git a/textproc/ibus/distinfo b/textproc/ibus/distinfo deleted file mode 100644 index d756807f0..000000000 --- a/textproc/ibus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ibus-1.1.0.20090311.tar.gz) = 0a5dca579d10bdcc7eba4f475b5a0c2b -SHA256 (ibus-1.1.0.20090311.tar.gz) = ce6043acad88ad690a814eb35a2e21dba6f14ba6a24afbb71d8f73722d35af97 -SIZE (ibus-1.1.0.20090311.tar.gz) = 1108376 diff --git a/textproc/ibus/pkg-descr b/textproc/ibus/pkg-descr deleted file mode 100644 index ce6f47bae..000000000 --- a/textproc/ibus/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Intelligent Input Bus for Linux / Unix OS, iBus, is the next generation input -framework, developed by the developer of scim-python, includes all its -function, and much more. - -This is the base port, you need input methods such as pinyin to input text. - -WWW: http://code.google.com/p/ibus diff --git a/textproc/ibus/pkg-message b/textproc/ibus/pkg-message deleted file mode 100644 index df7477ae3..000000000 --- a/textproc/ibus/pkg-message +++ /dev/null @@ -1,35 +0,0 @@ -------------------------------------------------------------------- -ibus installation finished. To use ibus, please do the following: - -If you are using bash, please add following lines to your $HOME/.bashrc: - -export XIM=ibus -export GTK_IM_MODULE=ibus -export QT_IM_MODULE=xim -export XMODIFIERS=@im=ibus -export XIM_PROGRAM="ibus-daemon" -export XIM_ARGS="--daemonize --xim" - -If you are using tcsh, please add following lines to your $HOME/.cshrc: - -setenv XIM ibus -setenv GTK_IM_MODULE ibus -setenv QT_IM_MODULE xim -setenv XMODIFIERS @im=ibus -setenv XIM_PROGRAM ibus-daemon -setenv XIM_ARGS "--daemonize --xim" - -If you are using KDE4, you may create a shell script in $HOME/.kde4/env, and add following lines: - -#!/bin/sh -export XIM=ibus -export GTK_IM_MODULE=ibus -export QT_IM_MODULE=xim -export XMODIFIERS=@im=ibus -export XIM_PROGRAM="ibus-daemon" -export XIM_ARGS="--daemonize --xim" - -Following input methods are available in ports: - -chinese/ibus-pinyin The PinYin input method -------------------------------------------------------------------- diff --git a/textproc/ibus/pkg-plist b/textproc/ibus/pkg-plist deleted file mode 100644 index 2d6a8c905..000000000 --- a/textproc/ibus/pkg-plist +++ /dev/null @@ -1,265 +0,0 @@ -bin/ibus-daemon -bin/ibus-setup -etc/xdg/autostart/ibus.desktop -include/ibus-1.0/ibus.h -include/ibus-1.0/ibusattribute.h -include/ibus-1.0/ibusbus.h -include/ibus-1.0/ibuscomponent.h -include/ibus-1.0/ibusconfig.h -include/ibus-1.0/ibusconfigservice.h -include/ibus-1.0/ibusconnection.h -include/ibus-1.0/ibusdebug.h -include/ibus-1.0/ibusengine.h -include/ibus-1.0/ibusenginedesc.h -include/ibus-1.0/ibusenumtypes.h -include/ibus-1.0/ibuserror.h -include/ibus-1.0/ibusfactory.h -include/ibus-1.0/ibushotkey.h -include/ibus-1.0/ibusinputcontext.h -include/ibus-1.0/ibuskeysyms.h -include/ibus-1.0/ibuslookuptable.h -include/ibus-1.0/ibusmarshalers.h -include/ibus-1.0/ibusmessage.h -include/ibus-1.0/ibusobject.h -include/ibus-1.0/ibusobservedpath.h -include/ibus-1.0/ibuspendingcall.h -include/ibus-1.0/ibusproperty.h -include/ibus-1.0/ibusproxy.h -include/ibus-1.0/ibusserializable.h -include/ibus-1.0/ibusserver.h -include/ibus-1.0/ibusservice.h -include/ibus-1.0/ibusshare.h -include/ibus-1.0/ibustext.h -include/ibus-1.0/ibustypes.h -include/ibus-1.0/ibusxml.h -lib/gtk-2.0/2.10.0/immodules/im-ibus.la -lib/gtk-2.0/2.10.0/immodules/im-ibus.so -lib/libibus.la -lib/libibus.so -lib/libibus.so.0 -%%PYTHON_SITELIBDIR%%/ibus/__init__.py -%%PYTHON_SITELIBDIR%%/ibus/__init__.pyc -%%PYTHON_SITELIBDIR%%/ibus/__init__.pyo -%%PYTHON_SITELIBDIR%%/ibus/_config.py -%%PYTHON_SITELIBDIR%%/ibus/_config.pyc -%%PYTHON_SITELIBDIR%%/ibus/_config.pyo -%%PYTHON_SITELIBDIR%%/ibus/_gtk.py -%%PYTHON_SITELIBDIR%%/ibus/_gtk.pyc -%%PYTHON_SITELIBDIR%%/ibus/_gtk.pyo -%%PYTHON_SITELIBDIR%%/ibus/application.py -%%PYTHON_SITELIBDIR%%/ibus/application.pyc -%%PYTHON_SITELIBDIR%%/ibus/application.pyo -%%PYTHON_SITELIBDIR%%/ibus/ascii.py -%%PYTHON_SITELIBDIR%%/ibus/ascii.pyc -%%PYTHON_SITELIBDIR%%/ibus/ascii.pyo -%%PYTHON_SITELIBDIR%%/ibus/attribute.py -%%PYTHON_SITELIBDIR%%/ibus/attribute.pyc -%%PYTHON_SITELIBDIR%%/ibus/attribute.pyo -%%PYTHON_SITELIBDIR%%/ibus/bus.py -%%PYTHON_SITELIBDIR%%/ibus/bus.pyc -%%PYTHON_SITELIBDIR%%/ibus/bus.pyo -%%PYTHON_SITELIBDIR%%/ibus/common.py -%%PYTHON_SITELIBDIR%%/ibus/common.pyc -%%PYTHON_SITELIBDIR%%/ibus/common.pyo -%%PYTHON_SITELIBDIR%%/ibus/component.py -%%PYTHON_SITELIBDIR%%/ibus/component.pyc -%%PYTHON_SITELIBDIR%%/ibus/component.pyo -%%PYTHON_SITELIBDIR%%/ibus/config.py -%%PYTHON_SITELIBDIR%%/ibus/config.pyc -%%PYTHON_SITELIBDIR%%/ibus/config.pyo -%%PYTHON_SITELIBDIR%%/ibus/engine.py -%%PYTHON_SITELIBDIR%%/ibus/engine.pyc -%%PYTHON_SITELIBDIR%%/ibus/engine.pyo -%%PYTHON_SITELIBDIR%%/ibus/enginedesc.py -%%PYTHON_SITELIBDIR%%/ibus/enginedesc.pyc -%%PYTHON_SITELIBDIR%%/ibus/enginedesc.pyo -%%PYTHON_SITELIBDIR%%/ibus/exception.py -%%PYTHON_SITELIBDIR%%/ibus/exception.pyc -%%PYTHON_SITELIBDIR%%/ibus/exception.pyo -%%PYTHON_SITELIBDIR%%/ibus/factory.py -%%PYTHON_SITELIBDIR%%/ibus/factory.pyc -%%PYTHON_SITELIBDIR%%/ibus/factory.pyo -%%PYTHON_SITELIBDIR%%/ibus/inputcontext.py -%%PYTHON_SITELIBDIR%%/ibus/inputcontext.pyc -%%PYTHON_SITELIBDIR%%/ibus/inputcontext.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/__init__.py -%%PYTHON_SITELIBDIR%%/ibus/interface/__init__.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/__init__.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/iconfig.py -%%PYTHON_SITELIBDIR%%/ibus/interface/iconfig.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/iconfig.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/iengine.py -%%PYTHON_SITELIBDIR%%/ibus/interface/iengine.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/iengine.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/ienginefactory.py -%%PYTHON_SITELIBDIR%%/ibus/interface/ienginefactory.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/ienginefactory.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/iibus.py -%%PYTHON_SITELIBDIR%%/ibus/interface/iibus.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/iibus.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/iinputcontext.py -%%PYTHON_SITELIBDIR%%/ibus/interface/iinputcontext.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/iinputcontext.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/inotifications.py -%%PYTHON_SITELIBDIR%%/ibus/interface/inotifications.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/inotifications.pyo -%%PYTHON_SITELIBDIR%%/ibus/interface/ipanel.py -%%PYTHON_SITELIBDIR%%/ibus/interface/ipanel.pyc -%%PYTHON_SITELIBDIR%%/ibus/interface/ipanel.pyo -%%PYTHON_SITELIBDIR%%/ibus/keysyms.py -%%PYTHON_SITELIBDIR%%/ibus/keysyms.pyc -%%PYTHON_SITELIBDIR%%/ibus/keysyms.pyo -%%PYTHON_SITELIBDIR%%/ibus/lang.py -%%PYTHON_SITELIBDIR%%/ibus/lang.pyc -%%PYTHON_SITELIBDIR%%/ibus/lang.pyo -%%PYTHON_SITELIBDIR%%/ibus/lookuptable.py -%%PYTHON_SITELIBDIR%%/ibus/lookuptable.pyc -%%PYTHON_SITELIBDIR%%/ibus/lookuptable.pyo -%%PYTHON_SITELIBDIR%%/ibus/modifier.py -%%PYTHON_SITELIBDIR%%/ibus/modifier.pyc -%%PYTHON_SITELIBDIR%%/ibus/modifier.pyo -%%PYTHON_SITELIBDIR%%/ibus/notifications.py -%%PYTHON_SITELIBDIR%%/ibus/notifications.pyc -%%PYTHON_SITELIBDIR%%/ibus/notifications.pyo -%%PYTHON_SITELIBDIR%%/ibus/object.py -%%PYTHON_SITELIBDIR%%/ibus/object.pyc -%%PYTHON_SITELIBDIR%%/ibus/object.pyo -%%PYTHON_SITELIBDIR%%/ibus/observedpath.py -%%PYTHON_SITELIBDIR%%/ibus/observedpath.pyc -%%PYTHON_SITELIBDIR%%/ibus/observedpath.pyo -%%PYTHON_SITELIBDIR%%/ibus/panel.py -%%PYTHON_SITELIBDIR%%/ibus/panel.pyc -%%PYTHON_SITELIBDIR%%/ibus/panel.pyo -%%PYTHON_SITELIBDIR%%/ibus/property.py -%%PYTHON_SITELIBDIR%%/ibus/property.pyc -%%PYTHON_SITELIBDIR%%/ibus/property.pyo -%%PYTHON_SITELIBDIR%%/ibus/serializable.py -%%PYTHON_SITELIBDIR%%/ibus/serializable.pyc -%%PYTHON_SITELIBDIR%%/ibus/serializable.pyo -%%PYTHON_SITELIBDIR%%/ibus/text.py -%%PYTHON_SITELIBDIR%%/ibus/text.pyc -%%PYTHON_SITELIBDIR%%/ibus/text.pyo -%%PYTHON_SITELIBDIR%%/ibus/utility.py -%%PYTHON_SITELIBDIR%%/ibus/utility.pyc -%%PYTHON_SITELIBDIR%%/ibus/utility.pyo -libdata/pkgconfig/ibus-1.0.pc -libexec/ibus-gconf -libexec/ibus-ui-gtk -libexec/ibus-x11 -share/applications/ibus-setup.desktop -share/applications/ibus.desktop -share/gtk-doc/html/ibus/IBusAttrList.html -share/gtk-doc/html/ibus/IBusBus.html -share/gtk-doc/html/ibus/IBusComponent.html -share/gtk-doc/html/ibus/IBusConfig.html -share/gtk-doc/html/ibus/IBusConnection.html -share/gtk-doc/html/ibus/IBusEngine.html -share/gtk-doc/html/ibus/IBusEngineDesc.html -share/gtk-doc/html/ibus/IBusFactoryInfo.html -share/gtk-doc/html/ibus/IBusHotkeyProfile.html -share/gtk-doc/html/ibus/IBusInputContext.html -share/gtk-doc/html/ibus/IBusLookupTable.html -share/gtk-doc/html/ibus/IBusObject.html -share/gtk-doc/html/ibus/IBusObservedPath.html -share/gtk-doc/html/ibus/IBusPropList.html -share/gtk-doc/html/ibus/IBusProxy.html -share/gtk-doc/html/ibus/IBusSerializable.html -share/gtk-doc/html/ibus/IBusServer.html -share/gtk-doc/html/ibus/IBusService.html -share/gtk-doc/html/ibus/IBusText.html -share/gtk-doc/html/ibus/ch01.html -share/gtk-doc/html/ibus/home.png -share/gtk-doc/html/ibus/ibus-ibusdebug.html -share/gtk-doc/html/ibus/ibus-ibusenumtypes.html -share/gtk-doc/html/ibus/ibus-ibuserror.html -share/gtk-doc/html/ibus/ibus-ibusinternal.html -share/gtk-doc/html/ibus/ibus-ibuskeysyms.html -share/gtk-doc/html/ibus/ibus-ibusmarshalers.html -share/gtk-doc/html/ibus/ibus-ibusmessage.html -share/gtk-doc/html/ibus/ibus-ibuspendingcall.html -share/gtk-doc/html/ibus/ibus-ibusshare.html -share/gtk-doc/html/ibus/ibus-ibustypes.html -share/gtk-doc/html/ibus/ibus-ibusxml.html -share/gtk-doc/html/ibus/ibus-keyname-table.html -share/gtk-doc/html/ibus/ibus.devhelp -share/gtk-doc/html/ibus/ibus.devhelp2 -share/gtk-doc/html/ibus/index.html -share/gtk-doc/html/ibus/index.sgml -share/gtk-doc/html/ibus/left.png -share/gtk-doc/html/ibus/right.png -share/gtk-doc/html/ibus/style.css -share/gtk-doc/html/ibus/up.png -%%DATADIR%%/component/gconf.xml -%%DATADIR%%/component/gtkpanel.xml -%%DATADIR%%/icons/engine-default.svg -%%DATADIR%%/icons/ibus-help.png -%%DATADIR%%/icons/ibus-keyboard.svg -%%DATADIR%%/icons/ibus-locale.svg -%%DATADIR%%/icons/ibus-zh.svg -%%DATADIR%%/icons/ibus.svg -%%DATADIR%%/setup/enginecombobox.py -%%DATADIR%%/setup/enginecombobox.pyc -%%DATADIR%%/setup/enginecombobox.pyo -%%DATADIR%%/setup/enginetreeview.py -%%DATADIR%%/setup/enginetreeview.pyc -%%DATADIR%%/setup/enginetreeview.pyo -%%DATADIR%%/setup/icon.py -%%DATADIR%%/setup/icon.pyc -%%DATADIR%%/setup/icon.pyo -%%DATADIR%%/setup/keyboardshortcut.py -%%DATADIR%%/setup/keyboardshortcut.pyc -%%DATADIR%%/setup/keyboardshortcut.pyo -%%DATADIR%%/setup/main.py -%%DATADIR%%/setup/main.pyc -%%DATADIR%%/setup/main.pyo -%%DATADIR%%/setup/setup.glade -%%DATADIR%%/ui/gtk/candidatepanel.py -%%DATADIR%%/ui/gtk/candidatepanel.pyc -%%DATADIR%%/ui/gtk/candidatepanel.pyo -%%DATADIR%%/ui/gtk/handle.py -%%DATADIR%%/ui/gtk/handle.pyc -%%DATADIR%%/ui/gtk/handle.pyo -%%DATADIR%%/ui/gtk/icon.py -%%DATADIR%%/ui/gtk/icon.pyc -%%DATADIR%%/ui/gtk/icon.pyo -%%DATADIR%%/ui/gtk/languagebar.py -%%DATADIR%%/ui/gtk/languagebar.pyc -%%DATADIR%%/ui/gtk/languagebar.pyo -%%DATADIR%%/ui/gtk/main.py -%%DATADIR%%/ui/gtk/main.pyc -%%DATADIR%%/ui/gtk/main.pyo -%%DATADIR%%/ui/gtk/menu.py -%%DATADIR%%/ui/gtk/menu.pyc -%%DATADIR%%/ui/gtk/menu.pyo -%%DATADIR%%/ui/gtk/notifications.py -%%DATADIR%%/ui/gtk/notifications.pyc -%%DATADIR%%/ui/gtk/notifications.pyo -%%DATADIR%%/ui/gtk/panel.py -%%DATADIR%%/ui/gtk/panel.pyc -%%DATADIR%%/ui/gtk/panel.pyo -%%DATADIR%%/ui/gtk/propitem.py -%%DATADIR%%/ui/gtk/propitem.pyc -%%DATADIR%%/ui/gtk/propitem.pyo -%%DATADIR%%/ui/gtk/toolitem.py -%%DATADIR%%/ui/gtk/toolitem.pyc -%%DATADIR%%/ui/gtk/toolitem.pyo -%%NLS%%share/locale/fr/LC_MESSAGES/ibus.mo -%%NLS%%share/locale/ja/LC_MESSAGES/ibus.mo -%%NLS%%share/locale/pa/LC_MESSAGES/ibus.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/ibus.mo -share/pixmaps/ibus-setup.svg -share/pixmaps/ibus.svg -@dirrm %%DATADIR%%/ui/gtk -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%%/engine -@dirrm %%DATADIR%%/component -@dirrm %%DATADIR%%/setup -@dirrm %%DATADIR%% -@dirrm share/gtk-doc/html/ibus -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -@dirrmtry share/applications -@dirrm %%PYTHON_SITELIBDIR%%/ibus/interface -@dirrm %%PYTHON_SITELIBDIR%%/ibus -@dirrm include/ibus-1.0 diff --git a/textproc/libxml++26/Makefile b/textproc/libxml++26/Makefile deleted file mode 100644 index 4261a73f0..000000000 --- a/textproc/libxml++26/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# ex:ts=8 -# New ports collection makefile for: libxml++ -# Date created: Feb 26, 2001 -# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= libxml++ -PORTVERSION= 2.26.0 -CATEGORIES= textproc -MASTER_SITES= GNOME - -MAINTAINER= bland@FreeBSD.org -COMMENT= XML API for C++ - -LIB_DEPENDS= glibmm-2.4.1:${PORTSDIR}/devel/glibmm -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -LATEST_LINK= libxml++26 - -USE_GMAKE= yes -USE_BZIP2= yes -USE_GNOME= gnomehack libxml2 pkgconfig -GNU_CONFIGURE= yes -USE_LDCONFIG= yes - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" DOC_VERSION=${PORTVERSION:R} - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples//' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e '/^gentoo_ltmain_version=/s/`.*`/$$gentoo_lt_version/' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e '/^library_configdir =/s/libdir/includedir/' \ - ${WRKSRC}/libxml++/Makefile.in - @${REINPLACE_CMD} -e '/^Cflags:/s/libdir/includedir/' \ - ${WRKSRC}/libxml++-2.6.pc.in -.if defined(NOPORTDOCS) - @${REINPLACE_CMD} -E '/^SUBDIRS = /s/(docs|examples)//g' ${WRKSRC}/Makefile.in -.endif - -.include <bsd.port.mk> diff --git a/textproc/libxml++26/distinfo b/textproc/libxml++26/distinfo deleted file mode 100644 index f0192b4bf..000000000 --- a/textproc/libxml++26/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libxml++-2.26.0.tar.bz2) = a52fc7e6e44bb5cc187672930b843f72 -SHA256 (libxml++-2.26.0.tar.bz2) = 3287545d7e40bb24451f1afac6c77d545433d7efaf01ca8a60bcf9f6eacaf80a -SIZE (libxml++-2.26.0.tar.bz2) = 616345 diff --git a/textproc/libxml++26/pkg-descr b/textproc/libxml++26/pkg-descr deleted file mode 100644 index 94d8feaff..000000000 --- a/textproc/libxml++26/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -libxml++ is a C++ interface for working with XML files, using libxml -(gnome-xml) to parse and write the actual XML files. It has a simple -but complete API. - -WWW: http://libxmlplusplus.sourceforge.net/ diff --git a/textproc/libxml++26/pkg-plist b/textproc/libxml++26/pkg-plist deleted file mode 100644 index f2c59684e..000000000 --- a/textproc/libxml++26/pkg-plist +++ /dev/null @@ -1,354 +0,0 @@ -include/libxml++-%%API_VERSION%%/include/libxml++config.h -include/libxml++-%%API_VERSION%%/libxml++/attribute.h -include/libxml++-%%API_VERSION%%/libxml++/document.h -include/libxml++-%%API_VERSION%%/libxml++/dtd.h -include/libxml++-%%API_VERSION%%/libxml++/exceptions/exception.h -include/libxml++-%%API_VERSION%%/libxml++/exceptions/internal_error.h -include/libxml++-%%API_VERSION%%/libxml++/exceptions/parse_error.h -include/libxml++-%%API_VERSION%%/libxml++/exceptions/validity_error.h -include/libxml++-%%API_VERSION%%/libxml++/io/istreamparserinputbuffer.h -include/libxml++-%%API_VERSION%%/libxml++/io/ostreamoutputbuffer.h -include/libxml++-%%API_VERSION%%/libxml++/io/outputbuffer.h -include/libxml++-%%API_VERSION%%/libxml++/io/parserinputbuffer.h -include/libxml++-%%API_VERSION%%/libxml++/keepblanks.h -include/libxml++-%%API_VERSION%%/libxml++/libxml++.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/cdatanode.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/commentnode.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/contentnode.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/element.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/entityreference.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/node.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/processinginstructionnode.h -include/libxml++-%%API_VERSION%%/libxml++/nodes/textnode.h -include/libxml++-%%API_VERSION%%/libxml++/noncopyable.h -include/libxml++-%%API_VERSION%%/libxml++/parsers/domparser.h -include/libxml++-%%API_VERSION%%/libxml++/parsers/parser.h -include/libxml++-%%API_VERSION%%/libxml++/parsers/saxparser.h -include/libxml++-%%API_VERSION%%/libxml++/parsers/textreader.h -include/libxml++-%%API_VERSION%%/libxml++/schema.h -include/libxml++-%%API_VERSION%%/libxml++/validators/dtdvalidator.h -include/libxml++-%%API_VERSION%%/libxml++/validators/schemavalidator.h -include/libxml++-%%API_VERSION%%/libxml++/validators/validator.h -lib/libxml++-%%VERSION%%.a -lib/libxml++-%%VERSION%%.la -lib/libxml++-%%VERSION%%.so -lib/libxml++-%%VERSION%%.so.2 -libdata/pkgconfig/libxml++-%%API_VERSION%%.pc -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/manual/html/ar01s02.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/manual/html/index.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/annotated.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/attribute_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/cdatanode_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/class__Ios__Openmode.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/class____basic__file_3_01char_01_4.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/class____gthread__mutex__t.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classbool.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classes.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classptrdiff__t.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Attribute-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Attribute.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Attribute__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Attribute__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Attribute__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CdataNode-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CdataNode.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CdataNode__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CdataNode__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CdataNode__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CommentNode-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CommentNode.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CommentNode__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CommentNode__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1CommentNode__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ContentNode-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ContentNode.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ContentNode__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ContentNode__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ContentNode__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Document-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Document.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Document__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Document__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Document__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DomParser-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DomParser.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DomParser__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DomParser__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DomParser__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Dtd-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Dtd.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DtdValidator-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DtdValidator.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DtdValidator__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DtdValidator__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1DtdValidator__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Element-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Element.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Element__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Element__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Element__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1EntityReference-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1EntityReference.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1EntityReference__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1EntityReference__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1EntityReference__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1IStreamParserInputBuffer-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1IStreamParserInputBuffer.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1IStreamParserInputBuffer__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1IStreamParserInputBuffer__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1IStreamParserInputBuffer__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1KeepBlanks-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1KeepBlanks.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Node-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Node.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Node__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Node__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Node__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1NonCopyable-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1NonCopyable.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1NonCopyable__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1NonCopyable__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1NonCopyable__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OStreamOutputBuffer-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OStreamOutputBuffer.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OStreamOutputBuffer__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OStreamOutputBuffer__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OStreamOutputBuffer__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OutputBuffer-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OutputBuffer.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OutputBuffer__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OutputBuffer__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1OutputBuffer__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Parser-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Parser.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ParserInputBuffer-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ParserInputBuffer.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ParserInputBuffer__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ParserInputBuffer__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ParserInputBuffer__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Parser__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Parser__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Parser__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ProcessingInstructionNode-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ProcessingInstructionNode.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ProcessingInstructionNode__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ProcessingInstructionNode__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1ProcessingInstructionNode__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SaxParser-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SaxParser.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SaxParser__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SaxParser__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SaxParser__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Schema-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Schema.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SchemaValidator-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SchemaValidator.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SchemaValidator__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SchemaValidator__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1SchemaValidator__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Schema__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Schema__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Schema__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextNode-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextNode.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextNode__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextNode__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextNode__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextReader-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextReader.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextReader__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextReader__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1TextReader__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Validator-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Validator.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Validator__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Validator__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1Validator__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1exception-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1exception.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1exception__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1exception__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1exception__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1internal__error-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1internal__error.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1internal__error__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1internal__error__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1internal__error__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1parse__error-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1parse__error.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1parse__error__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1parse__error__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1parse__error__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1validity__error-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1validity__error.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1validity__error__inherit__graph.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1validity__error__inherit__graph.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/classxmlpp_1_1validity__error__inherit__graph.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/commentnode_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/contentnode_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_32008f4d917c53e6cfd05a5ea51dedc7.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_32008f4d917c53e6cfd05a5ea51dedc7_dep.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_32008f4d917c53e6cfd05a5ea51dedc7_dep.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_65e551a142d652aded9ca2dceeff3a63.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_65e551a142d652aded9ca2dceeff3a63_dep.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_65e551a142d652aded9ca2dceeff3a63_dep.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_6838e863111a3eb2223eace1205f0754.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_6838e863111a3eb2223eace1205f0754_dep.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_6838e863111a3eb2223eace1205f0754_dep.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_7146fab70a01c720ccb41a8cc1039409.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_7146fab70a01c720ccb41a8cc1039409_dep.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_7146fab70a01c720ccb41a8cc1039409_dep.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_90b4fb38958b63647b10dd7f2c14b828.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_90b4fb38958b63647b10dd7f2c14b828_dep.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_90b4fb38958b63647b10dd7f2c14b828_dep.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_d3a0f78a890734e21280a988361c8980.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_d3a0f78a890734e21280a988361c8980_dep.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dir_d3a0f78a890734e21280a988361c8980_dep.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dirs.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/document_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/domparser_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/doxygen.css -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/doxygen.png -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dtd_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/dtdvalidator_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/element_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/entityreference_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/exception_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/files.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x63.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x64.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x65.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x66.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x67.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x68.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x69.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x6b.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x6c.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x6d.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x6e.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x6f.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x70.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x72.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x73.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x74.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x76.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x77.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x78.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_0x7e.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_enum.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_eval.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x63.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x64.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x65.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x66.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x67.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x68.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x69.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x6b.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x6c.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x6d.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x6e.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x6f.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x70.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x72.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x73.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x74.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x76.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x77.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_func_0x7e.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_rela.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_type.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/functions_vars.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/globals.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/globals_defs.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/graph_legend.dot -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/graph_legend.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/graph_legend.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/hierarchy.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/index.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__0.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__0.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__0.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__1.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__1.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__1.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__10.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__10.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__10.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__2.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__2.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__2.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__3.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__3.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__3.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__4.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__4.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__4.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__5.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__5.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__5.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__6.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__6.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__6.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__7.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__7.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__7.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__8.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__8.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__8.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__9.jpg -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__9.map -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherit__graph__9.md5 -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/inherits.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/internal__error_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/istreamparserinputbuffer_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/keepblanks_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/libxml_09_09_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/libxml_09_09config_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespacemembers.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespacemembers_enum.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespacemembers_eval.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespacemembers_type.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespaces.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespacesigc.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespacestatic_01const_01std.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/namespacexmlpp.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/newin2p20s.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/newin2p24s.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/node_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/noncopyable_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/ostreamoutputbuffer_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/outputbuffer_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/pages.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/parse__error_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/parser_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/parserinputbuffer_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/processinginstructionnode_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/saxparser_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/schema_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/schemavalidator_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/structxmlpp_1_1SaxParser_1_1Attribute-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/structxmlpp_1_1SaxParser_1_1Attribute.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/structxmlpp_1_1SaxParser_1_1AttributeHasName-members.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/structxmlpp_1_1SaxParser_1_1AttributeHasName.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/tabs.css -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/textnode_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/textreader_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/validator_8h.html -%%PORTDOCS%%share/doc/libxml++-%%API_VERSION%%/docs/reference/html/validity__error_8h.html -%%PORTDOCS%%@dirrm share/doc/libxml++-%%API_VERSION%%/docs/reference/html -%%PORTDOCS%%@dirrm share/doc/libxml++-%%API_VERSION%%/docs/reference -%%PORTDOCS%%@dirrm share/doc/libxml++-%%API_VERSION%%/docs/manual/html -%%PORTDOCS%%@dirrm share/doc/libxml++-%%API_VERSION%%/docs/manual -%%PORTDOCS%%@dirrm share/doc/libxml++-%%API_VERSION%%/docs -%%PORTDOCS%%@dirrm share/doc/libxml++-%%API_VERSION%% -@dirrm include/libxml++-%%API_VERSION%%/libxml++/validators -@dirrm include/libxml++-%%API_VERSION%%/libxml++/parsers -@dirrm include/libxml++-%%API_VERSION%%/libxml++/nodes -@dirrm include/libxml++-%%API_VERSION%%/libxml++/io -@dirrm include/libxml++-%%API_VERSION%%/libxml++/exceptions -@dirrm include/libxml++-%%API_VERSION%%/libxml++ -@dirrm include/libxml++-%%API_VERSION%%/include -@dirrm include/libxml++-%%API_VERSION%% diff --git a/textproc/uim-gnome/Makefile b/textproc/uim-gnome/Makefile deleted file mode 100644 index 84a5da489..000000000 --- a/textproc/uim-gnome/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: uim-gnome -# Date created: 31 August 2003 -# Whom: MANTANI Nobutaka <nobutaka@FreeBSD.org> -# -# $FreeBSD$ -# - -PKGNAMESUFFIX= -gnome - -COMMENT= GNOME applets of uim input method - -USE_GNOME= gtk20 gnomepanel -LIB_DEPENDS= uim.6:${PORTSDIR}/textproc/uim -RUN_DEPENDS= uim-pref-gtk:${PORTSDIR}/textproc/uim-gtk - -MASTERDIR= ${.CURDIR}/../../textproc/uim -PKGDIR= ${.CURDIR} -CONFIGURE_ENV= CPPFLAGS="`pkg-config --cflags libgnomeui-2.0`" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" -CONFIGURE_ARGS= --with-gtk2 --enable-gnome-applet - -UIM_SLAVE= yes - -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-helper_Makefile.in - -.if defined(WITHOUT_X11) -IGNORE= requires X11 -.endif - -do-build: - (cd ${WRKSRC}/helper && ${GMAKE}) - -do-install: - (cd ${WRKSRC}/helper && \ - ${GMAKE} am__EXEEXT_3="" install-serverDATA install-libexecPROGRAMS) - -.include "${MASTERDIR}/Makefile" diff --git a/textproc/uim-gnome/pkg-descr b/textproc/uim-gnome/pkg-descr deleted file mode 100644 index ce50b062d..000000000 --- a/textproc/uim-gnome/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -GNOME applets of uim input method. - -WWW: http://code.google.com/p/uim/ diff --git a/textproc/uim-gnome/pkg-plist b/textproc/uim-gnome/pkg-plist deleted file mode 100644 index 2cb036d37..000000000 --- a/textproc/uim-gnome/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -libdata/bonobo/servers/GNOME_UimApplet.server -libexec/uim-toolbar-applet diff --git a/x11-fm/nautilus/Makefile b/x11-fm/nautilus/Makefile deleted file mode 100644 index 516999ca5..000000000 --- a/x11-fm/nautilus/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: nautilus2 -# Date created: 28th August 2000 -# Whom: ade, archie -# -# $FreeBSD$ -# $MCom: ports/x11-fm/nautilus/Makefile,v 1.176 2009/03/17 13:51:27 kwm Exp $ -# - -PORTNAME= nautilus -PORTVERSION= 2.26.1 -CATEGORIES= x11-fm gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT?= File manager for the GNOME desktop - -LIB_DEPENDS= exif.12:${PORTSDIR}/graphics/libexif \ - unique-1.0.2:${PORTSDIR}/x11-toolkits/unique \ - exempi.3:${PORTSDIR}/textproc/exempi - -INSTALLS_ICONS= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomedesktop \ - librsvg2 desktopfileutils ltverhack gvfs ltasneededhack -GNOME_DESKTOP_VERSION=2 -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="${PTHREAD_LIBS} -L${LOCALBASE}/lib -liconv" \ - LIBPNG="-L${LOCALBASE}/lib -lpng -lz" -CONFIGURE_ARGS= --with-freetype2-lib-place=${LOCALBASE}/lib \ - --with-freetype2-include-place=${LOCALBASE}/include/freetype2 \ - --enable-static -MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias" - -OPTIONS= TRACKER "Enable Tracker Search (sysutils/tracker)" Off - -GCONF_SCHEMAS= apps_nautilus_preferences.schemas - -MAN1= nautilus-connect-server.1 nautilus-file-management-properties.1 \ - nautilus.1 - -.include <bsd.port.pre.mk> - -.if defined(WITH_TRACKER) -#RUN_DEPENDS+= tracker-applet:${PORTSDIR}/sysutils/tracker-gnome -LIB_DEPENDS+= trackerclient.0:${PORTSDIR}/sysutils/tracker-client \ - tracker-gtk.0:${PORTSDIR}/sysutils/tracker-libtrackergtk -.else -CONFIGURE_ARGS+=--disable-tracker -.endif - -post-install: - @${MKDIR} ${PREFIX}/lib/nautilus/extensions-2.0 - @-update-desktop-database - -.include <bsd.port.post.mk> diff --git a/x11-fm/nautilus/distinfo b/x11-fm/nautilus/distinfo deleted file mode 100644 index 63e552518..000000000 --- a/x11-fm/nautilus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/nautilus-2.26.1.tar.bz2) = 5d75f5de2806e9003e36a4613866b8d1 -SHA256 (gnome2/nautilus-2.26.1.tar.bz2) = 86c8839ad5c8a1c5674eb3617bbe15e9c9bb2358a7435a0e2d22cd25ab7718ff -SIZE (gnome2/nautilus-2.26.1.tar.bz2) = 5925125 diff --git a/x11-fm/nautilus/files/patch-Makefile.in b/x11-fm/nautilus/files/patch-Makefile.in deleted file mode 100644 index a4f79ca6b..000000000 --- a/x11-fm/nautilus/files/patch-Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile.in.orig Wed Nov 24 13:14:21 2004 -+++ Makefile.in Wed Nov 24 13:14:47 2004 -@@ -183,7 +183,6 @@ - libbackground \ - libnautilus-private \ - src \ -- test \ - po \ - data \ - icons \ diff --git a/x11-fm/nautilus/files/patch-configure b/x11-fm/nautilus/files/patch-configure deleted file mode 100644 index 4a9390ced..000000000 --- a/x11-fm/nautilus/files/patch-configure +++ /dev/null @@ -1,22 +0,0 @@ ---- configure.orig Mon May 14 20:47:58 2007 -+++ configure Mon May 14 20:52:42 2007 -@@ -23611,9 +23611,7 @@ cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - #include <unistd.h> -- #ifdef HAVE_SYS_PARAM_H - #include <sys/param.h> -- #endif - #ifdef HAVE_SYS_VFS_H - #include <sys/vfs.h> - #endif -@@ -23674,9 +23672,7 @@ cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - #include <unistd.h> -- #ifdef HAVE_SYS_PARAM_H - #include <sys/param.h> -- #endif - #ifdef HAVE_SYS_VFS_H - #include <sys/vfs.h> - #endif diff --git a/x11-fm/nautilus/files/patch-src_file-manager_fm-properties-window.c b/x11-fm/nautilus/files/patch-src_file-manager_fm-properties-window.c deleted file mode 100644 index d709dec1e..000000000 --- a/x11-fm/nautilus/files/patch-src_file-manager_fm-properties-window.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/file-manager/fm-properties-window.c.orig Mon May 14 20:58:01 2007 -+++ src/file-manager/fm-properties-window.c Mon May 14 20:58:42 2007 -@@ -89,9 +89,7 @@ - #if HAVE_SYS_VFS_H - #include <sys/vfs.h> - #elif HAVE_SYS_MOUNT_H --#if HAVE_SYS_PARAM_H - #include <sys/param.h> --#endif - #include <sys/mount.h> - #endif - diff --git a/x11-fm/nautilus/pkg-descr b/x11-fm/nautilus/pkg-descr deleted file mode 100644 index b4f3fd678..000000000 --- a/x11-fm/nautilus/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Nautilus is a file manager tightly integrated into the GNOME destkop. -It is also responsible for desktop and icon management, and provides -an intuitive interface for accessing files and webpages. - -WWW: http://www.gnome.org/projects/nautilus/ diff --git a/x11-fm/nautilus/pkg-plist b/x11-fm/nautilus/pkg-plist deleted file mode 100644 index 513932c95..000000000 --- a/x11-fm/nautilus/pkg-plist +++ /dev/null @@ -1,300 +0,0 @@ -bin/nautilus -bin/nautilus-autorun-software -bin/nautilus-connect-server -bin/nautilus-file-management-properties -include/nautilus/libnautilus-extension/nautilus-column-provider.h -include/nautilus/libnautilus-extension/nautilus-column.h -include/nautilus/libnautilus-extension/nautilus-extension-types.h -include/nautilus/libnautilus-extension/nautilus-file-info.h -include/nautilus/libnautilus-extension/nautilus-info-provider.h -include/nautilus/libnautilus-extension/nautilus-location-widget-provider.h -include/nautilus/libnautilus-extension/nautilus-menu-item.h -include/nautilus/libnautilus-extension/nautilus-menu-provider.h -include/nautilus/libnautilus-extension/nautilus-menu.h -include/nautilus/libnautilus-extension/nautilus-property-page-provider.h -include/nautilus/libnautilus-extension/nautilus-property-page.h -lib/libnautilus-extension.a -lib/libnautilus-extension.la -lib/libnautilus-extension.so -lib/libnautilus-extension.so.1 -libdata/pkgconfig/libnautilus-extension.pc -share/applications/nautilus-autorun-software.desktop -share/applications/nautilus-browser.desktop -share/applications/nautilus-computer.desktop -share/applications/nautilus-file-management-properties.desktop -share/applications/nautilus-folder-handler.desktop -share/applications/nautilus-home.desktop -share/applications/nautilus.desktop -share/applications/network-scheme.desktop -share/doc/libnautilus-extension/NautilusColumn.html -share/doc/libnautilus-extension/NautilusMenuItem.html -share/doc/libnautilus-extension/NautilusPropertyPage.html -share/doc/libnautilus-extension/ch01.html -share/doc/libnautilus-extension/home.png -share/doc/libnautilus-extension/index.html -share/doc/libnautilus-extension/index.sgml -share/doc/libnautilus-extension/ix01.html -share/doc/libnautilus-extension/left.png -share/doc/libnautilus-extension/libnautilus-extension.devhelp -share/doc/libnautilus-extension/libnautilus-extension.devhelp2 -share/doc/libnautilus-extension/libnautilus-extension-nautilus-column-provider.html -share/doc/libnautilus-extension/libnautilus-extension-nautilus-extension-types.html -share/doc/libnautilus-extension/libnautilus-extension-nautilus-file-info.html -share/doc/libnautilus-extension/libnautilus-extension-nautilus-info-provider.html -share/doc/libnautilus-extension/libnautilus-extension-nautilus-location-widget-provider.html -share/doc/libnautilus-extension/libnautilus-extension-nautilus-menu-provider.html -share/doc/libnautilus-extension/libnautilus-extension-nautilus-property-page-provider.html -share/doc/libnautilus-extension/pt01.html -share/doc/libnautilus-extension/right.png -share/doc/libnautilus-extension/style.css -share/doc/libnautilus-extension/up.png -share/icons/hicolor/16x16/apps/nautilus.png -share/icons/hicolor/22x22/apps/nautilus.png -share/icons/hicolor/24x24/apps/nautilus.png -share/icons/hicolor/32x32/apps/nautilus.png -share/icons/hicolor/scalable/apps/nautilus.svg -share/locale/af/LC_MESSAGES/nautilus.mo -share/locale/am/LC_MESSAGES/nautilus.mo -share/locale/ar/LC_MESSAGES/nautilus.mo -share/locale/as/LC_MESSAGES/nautilus.mo -share/locale/ast/LC_MESSAGES/nautilus.mo -share/locale/az/LC_MESSAGES/nautilus.mo -share/locale/be/LC_MESSAGES/nautilus.mo -share/locale/be@latin/LC_MESSAGES/nautilus.mo -share/locale/bg/LC_MESSAGES/nautilus.mo -share/locale/bn/LC_MESSAGES/nautilus.mo -share/locale/bn_IN/LC_MESSAGES/nautilus.mo -share/locale/br/LC_MESSAGES/nautilus.mo -share/locale/bs/LC_MESSAGES/nautilus.mo -share/locale/ca/LC_MESSAGES/nautilus.mo -share/locale/ca@valencia/LC_MESSAGES/nautilus.mo -share/locale/crh/LC_MESSAGES/nautilus.mo -share/locale/cs/LC_MESSAGES/nautilus.mo -share/locale/cy/LC_MESSAGES/nautilus.mo -share/locale/da/LC_MESSAGES/nautilus.mo -share/locale/de/LC_MESSAGES/nautilus.mo -share/locale/dz/LC_MESSAGES/nautilus.mo -share/locale/el/LC_MESSAGES/nautilus.mo -share/locale/en_CA/LC_MESSAGES/nautilus.mo -share/locale/en_GB/LC_MESSAGES/nautilus.mo -share/locale/eo/LC_MESSAGES/nautilus.mo -share/locale/es/LC_MESSAGES/nautilus.mo -share/locale/et/LC_MESSAGES/nautilus.mo -share/locale/eu/LC_MESSAGES/nautilus.mo -share/locale/fa/LC_MESSAGES/nautilus.mo -share/locale/fi/LC_MESSAGES/nautilus.mo -share/locale/fr/LC_MESSAGES/nautilus.mo -share/locale/fur/LC_MESSAGES/nautilus.mo -share/locale/ga/LC_MESSAGES/nautilus.mo -share/locale/gl/LC_MESSAGES/nautilus.mo -share/locale/gu/LC_MESSAGES/nautilus.mo -share/locale/ha/LC_MESSAGES/nautilus.mo -share/locale/he/LC_MESSAGES/nautilus.mo -share/locale/hi/LC_MESSAGES/nautilus.mo -share/locale/hr/LC_MESSAGES/nautilus.mo -share/locale/hu/LC_MESSAGES/nautilus.mo -share/locale/hy/LC_MESSAGES/nautilus.mo -share/locale/id/LC_MESSAGES/nautilus.mo -share/locale/ig/LC_MESSAGES/nautilus.mo -share/locale/io/LC_MESSAGES/nautilus.mo -share/locale/is/LC_MESSAGES/nautilus.mo -share/locale/it/LC_MESSAGES/nautilus.mo -share/locale/ja/LC_MESSAGES/nautilus.mo -share/locale/ka/LC_MESSAGES/nautilus.mo -share/locale/km/LC_MESSAGES/nautilus.mo -share/locale/kn/LC_MESSAGES/nautilus.mo -share/locale/ko/LC_MESSAGES/nautilus.mo -share/locale/ku/LC_MESSAGES/nautilus.mo -share/locale/li/LC_MESSAGES/nautilus.mo -share/locale/lt/LC_MESSAGES/nautilus.mo -share/locale/lv/LC_MESSAGES/nautilus.mo -share/locale/mai/LC_MESSAGES/nautilus.mo -share/locale/mg/LC_MESSAGES/nautilus.mo -share/locale/mi/LC_MESSAGES/nautilus.mo -share/locale/mk/LC_MESSAGES/nautilus.mo -share/locale/ml/LC_MESSAGES/nautilus.mo -share/locale/mn/LC_MESSAGES/nautilus.mo -share/locale/mr/LC_MESSAGES/nautilus.mo -share/locale/ms/LC_MESSAGES/nautilus.mo -share/locale/nb/LC_MESSAGES/nautilus.mo -share/locale/ne/LC_MESSAGES/nautilus.mo -share/locale/nl/LC_MESSAGES/nautilus.mo -share/locale/nn/LC_MESSAGES/nautilus.mo -share/locale/nso/LC_MESSAGES/nautilus.mo -share/locale/oc/LC_MESSAGES/nautilus.mo -share/locale/or/LC_MESSAGES/nautilus.mo -share/locale/pa/LC_MESSAGES/nautilus.mo -share/locale/pl/LC_MESSAGES/nautilus.mo -share/locale/ps/LC_MESSAGES/nautilus.mo -share/locale/pt/LC_MESSAGES/nautilus.mo -share/locale/pt_BR/LC_MESSAGES/nautilus.mo -share/locale/ro/LC_MESSAGES/nautilus.mo -share/locale/ru/LC_MESSAGES/nautilus.mo -share/locale/rw/LC_MESSAGES/nautilus.mo -share/locale/si/LC_MESSAGES/nautilus.mo -share/locale/sk/LC_MESSAGES/nautilus.mo -share/locale/sl/LC_MESSAGES/nautilus.mo -share/locale/sq/LC_MESSAGES/nautilus.mo -share/locale/sr/LC_MESSAGES/nautilus.mo -share/locale/sr@latin/LC_MESSAGES/nautilus.mo -share/locale/sr@ije/LC_MESSAGES/nautilus.mo -share/locale/sv/LC_MESSAGES/nautilus.mo -share/locale/ta/LC_MESSAGES/nautilus.mo -share/locale/te/LC_MESSAGES/nautilus.mo -share/locale/th/LC_MESSAGES/nautilus.mo -share/locale/tk/LC_MESSAGES/nautilus.mo -share/locale/tr/LC_MESSAGES/nautilus.mo -share/locale/uk/LC_MESSAGES/nautilus.mo -share/locale/uz/LC_MESSAGES/nautilus.mo -share/locale/uz@cyrillic/LC_MESSAGES/nautilus.mo -share/locale/vi/LC_MESSAGES/nautilus.mo -share/locale/wa/LC_MESSAGES/nautilus.mo -share/locale/xh/LC_MESSAGES/nautilus.mo -share/locale/yi/LC_MESSAGES/nautilus.mo -share/locale/yo/LC_MESSAGES/nautilus.mo -share/locale/zh_CN/LC_MESSAGES/nautilus.mo -share/locale/zh_HK/LC_MESSAGES/nautilus.mo -share/locale/zh_TW/LC_MESSAGES/nautilus.mo -share/locale/zu/LC_MESSAGES/nautilus.mo -share/mime/packages/nautilus.xml -%%DATADIR%%/browser.xml -%%DATADIR%%/icons/hicolor/16x16/emblems/emblem-note.png -%%DATADIR%%/icons/hicolor/24x24/emblems/emblem-note.png -%%DATADIR%%/icons/hicolor/48x48/emblems/emblem-note.png -%%DATADIR%%/nautilus-extras.placeholder -%%DATADIR%%/nautilus-suggested.placeholder -%%DATADIR%%/patterns/blue_gray_rough.png -%%DATADIR%%/patterns/blue_ridge.png -%%DATADIR%%/patterns/blue_type.png -%%DATADIR%%/patterns/brushed_metal.png -%%DATADIR%%/patterns/burlap.jpg -%%DATADIR%%/patterns/camouflage.png -%%DATADIR%%/patterns/chalk.jpg -%%DATADIR%%/patterns/cork.png -%%DATADIR%%/patterns/countertop.png -%%DATADIR%%/patterns/dark-gnome.jpg -%%DATADIR%%/patterns/dots.png -%%DATADIR%%/patterns/fibers.png -%%DATADIR%%/patterns/fleur_de_lis.png -%%DATADIR%%/patterns/floral.png -%%DATADIR%%/patterns/fossil.png -%%DATADIR%%/patterns/gnome.jpg -%%DATADIR%%/patterns/green_weave.png -%%DATADIR%%/patterns/ice.png -%%DATADIR%%/patterns/manila_paper.png -%%DATADIR%%/patterns/moss_ridge.png -%%DATADIR%%/patterns/numbers.png -%%DATADIR%%/patterns/ocean_stripes.png -%%DATADIR%%/patterns/purple_marble.png -%%DATADIR%%/patterns/reset.png -%%DATADIR%%/patterns/ridged_paper.png -%%DATADIR%%/patterns/rough_paper.png -%%DATADIR%%/patterns/sky_ridge.png -%%DATADIR%%/patterns/snow_ridge.png -%%DATADIR%%/patterns/stucco.jpg -%%DATADIR%%/patterns/terracotta.png -%%DATADIR%%/patterns/wavy_white.png -%%DATADIR%%/ui/nautilus-bookmarks-window.ui -%%DATADIR%%/ui/nautilus-file-management-properties.ui -%%DATADIR%%/ui/nautilus-desktop-icon-view-ui.xml -%%DATADIR%%/ui/nautilus-directory-view-ui.xml -%%DATADIR%%/ui/nautilus-icon-view-ui.xml -%%DATADIR%%/ui/nautilus-list-view-ui.xml -%%DATADIR%%/ui/nautilus-navigation-window-ui.xml -%%DATADIR%%/ui/nautilus-shell-ui.xml -%%DATADIR%%/ui/nautilus-spatial-window-ui.xml -share/pixmaps/nautilus/audio.svg -share/pixmaps/nautilus/backgrounds.png -share/pixmaps/nautilus/chit_frame.png -share/pixmaps/nautilus/colors.png -share/pixmaps/nautilus/emblems.png -share/pixmaps/nautilus/erase.png -share/pixmaps/nautilus/knob.png -share/pixmaps/nautilus/thumbnail_frame.png -@dirrm share/pixmaps/nautilus -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/patterns -@dirrmtry %%DATADIR%%/icons/hicolor/48x48/emblems -@dirrmtry %%DATADIR%%/icons/hicolor/48x48 -@dirrmtry %%DATADIR%%/icons/hicolor/24x24/emblems -@dirrmtry %%DATADIR%%/icons/hicolor/24x24 -@dirrmtry %%DATADIR%%/icons/hicolor/16x16/emblems -@dirrmtry %%DATADIR%%/icons/hicolor/16x16 -@dirrmtry %%DATADIR%%/icons/hicolor -@dirrmtry %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/applications -@exec /bin/mkdir -p %D/lib/nautilus/extensions-2.0 -@dirrmtry lib/nautilus/extensions-2.0 -@dirrmtry lib/nautilus -@dirrm include/nautilus/libnautilus-extension -@dirrm include/nautilus -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrm share/doc/libnautilus-extension -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yo/LC_MESSAGES -@dirrmtry share/locale/yo -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/io/LC_MESSAGES -@dirrmtry share/locale/io -@dirrmtry share/locale/ig/LC_MESSAGES -@dirrmtry share/locale/ig -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/ha/LC_MESSAGES -@dirrmtry share/locale/ha -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11-fm/py-nautilus/Makefile b/x11-fm/py-nautilus/Makefile deleted file mode 100644 index 345aadfff..000000000 --- a/x11-fm/py-nautilus/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: py-nautilus -# Date created: 31 May, 2005 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-fm/py-nautilus/Makefile,v 1.9 2009/01/10 01:59:22 mezz Exp $ -# - -PORTNAME= nautilus -PORTVERSION= 0.5.1 -CATEGORIES= x11-fm gnome python -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/nautilus-python/${PORTVERSION:R} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= nautilus-python-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Python nautilus bindings - -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_PYTHON= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack pygnome2 eel2 nautilus2 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" - -DOCSDIR= ${PREFIX}/share/doc/nautilus-python - -post-patch: - @${REINPLACE_CMD} -e 's|[(]datadir[)]/doc/|(prefix)/share/doc/|g' \ - ${WRKSRC}/examples/Makefile.in - -.include <bsd.port.mk> diff --git a/x11-fm/py-nautilus/distinfo b/x11-fm/py-nautilus/distinfo deleted file mode 100644 index 5b9b922a7..000000000 --- a/x11-fm/py-nautilus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (nautilus-python-0.5.1.tar.bz2) = 83136937cdb790a2ee5823e96de20acf -SHA256 (nautilus-python-0.5.1.tar.bz2) = 34e79046b9bd420bc980befeabeac9c229a6a12e21e04c7648849cd540593d89 -SIZE (nautilus-python-0.5.1.tar.bz2) = 230999 diff --git a/x11-fm/py-nautilus/files/patch-configure b/x11-fm/py-nautilus/files/patch-configure deleted file mode 100644 index d9196af60..000000000 --- a/x11-fm/py-nautilus/files/patch-configure +++ /dev/null @@ -1,15 +0,0 @@ ---- configure.orig 2008-01-13 14:41:48.000000000 -0500 -+++ configure 2008-01-13 14:42:01.000000000 -0500 -@@ -19597,10 +19597,10 @@ CPPFLAGS="$save_CPPFLAGS" - { echo "$as_me:$LINENO: checking for libraries required to embed python" >&5 - echo $ECHO_N "checking for libraries required to embed python... $ECHO_C" >&6; } - py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` --if test "x$PYTHON_LIBS" == x; then -+if test "x$PYTHON_LIBS" = x; then - PYTHON_LIBS="-L${py_prefix}/lib -lpython${PYTHON_VERSION}" - fi --if test "x$PYTHON_LIB_LOC" == x; then -+if test "x$PYTHON_LIB_LOC" = x; then - PYTHON_LIB_LOC="${py_prefix}/lib" - fi - diff --git a/x11-fm/py-nautilus/pkg-descr b/x11-fm/py-nautilus/pkg-descr deleted file mode 100644 index 1d3571cec..000000000 --- a/x11-fm/py-nautilus/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Python nautilus bindings. diff --git a/x11-fm/py-nautilus/pkg-plist b/x11-fm/py-nautilus/pkg-plist deleted file mode 100644 index f4109e434..000000000 --- a/x11-fm/py-nautilus/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -lib/nautilus-python/nautilus.la -lib/nautilus-python/nautilus.so -lib/nautilus/extensions-2.0/libnautilus-python.la -lib/nautilus/extensions-2.0/libnautilus-python.so -libdata/pkgconfig/nautilus-python.pc -%%DOCSDIR%%/README -%%DOCSDIR%%/documentation.py -%%DOCSDIR%%/examples/background-image.py -%%DOCSDIR%%/examples/block-size-column.py -%%DOCSDIR%%/examples/md5sum-property-page.py -%%DOCSDIR%%/examples/open-terminal.py -%%DOCSDIR%%/examples/submenu.py -@dirrm %%DOCSDIR%%/examples -@dirrm %%DOCSDIR%% -@dirrm lib/nautilus-python diff --git a/x11-fm/velocity/Makefile b/x11-fm/velocity/Makefile deleted file mode 100644 index e5fcd2e5b..000000000 --- a/x11-fm/velocity/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: velocity -# Date created: 19 November 2003 -# Whom: Ryan -# -# $FreeBSD$ -# - -PORTNAME= velocity -PORTVERSION= 0.1.0b -PORTREVISION= 11 -CATEGORIES= x11-fm -MASTER_SITES= http://www.jarrodkoehler.com/velocity/ -DISTNAME= velocity-0.1.0beta - -MAINTAINER= ryan.moe@fastfreedom.net -COMMENT= GNOME file and desktop manager - -WRKSRC= ${WRKDIR}/velocity-0.1.0 -USE_AUTOTOOLS= libtool:15 -USE_BZIP2= yes -USE_GNOME= libgnomeui gnomedesktop librsvg2 -CONFIGURE_ENV= CPPFLAGS="`pkg-config --cflags libgnomeui-2.0`" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 700042 -BROKEN= Does not compile -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-D.*_DISABLE_DEPRECATED||g' \ - ${WRKSRC}/configure - -.include <bsd.port.post.mk> diff --git a/x11-fm/velocity/distinfo b/x11-fm/velocity/distinfo deleted file mode 100644 index e3e0c9ac0..000000000 --- a/x11-fm/velocity/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (velocity-0.1.0beta.tar.bz2) = 8873aff1c3b1759cbfd21944360ac087 -SHA256 (velocity-0.1.0beta.tar.bz2) = f5d2b18cbc2e59c875cae70e0e1f8c486e84b90579304c67979dde6474360dc2 -SIZE (velocity-0.1.0beta.tar.bz2) = 346094 diff --git a/x11-fm/velocity/files/patch-Makefile.in b/x11-fm/velocity/files/patch-Makefile.in deleted file mode 100644 index 9ca22c6af..000000000 --- a/x11-fm/velocity/files/patch-Makefile.in +++ /dev/null @@ -1,29 +0,0 @@ ---- Makefile.in.orig Tue Aug 26 03:15:13 2003 -+++ Makefile.in Wed Dec 10 20:58:53 2003 -@@ -189,7 +189,7 @@ - CONFIG_HEADER = config.h - CONFIG_CLEAN_FILES = velocity.spec velocity.desktop - DIST_SOURCES = --DATA = $(gnomemenu_DATA) $(velocitydoc_DATA) -+DATA = $(gnomemenu_DATA) - - - RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ -@@ -533,7 +533,7 @@ - all-am: Makefile $(DATA) config.h - installdirs: installdirs-recursive - installdirs-am: -- $(mkinstalldirs) $(DESTDIR)$(gnomemenudir) $(DESTDIR)$(velocitydocdir) -+ $(mkinstalldirs) $(DESTDIR)$(gnomemenudir) - - install: install-recursive - install-exec: install-exec-recursive -@@ -575,7 +575,7 @@ - - info-am: - --install-data-am: install-gnomemenuDATA install-velocitydocDATA -+install-data-am: install-gnomemenuDATA - - install-exec-am: - diff --git a/x11-fm/velocity/files/patch-aa-callbacks b/x11-fm/velocity/files/patch-aa-callbacks deleted file mode 100644 index 63feaf72a..000000000 --- a/x11-fm/velocity/files/patch-aa-callbacks +++ /dev/null @@ -1,11 +0,0 @@ ---- src/callbacks.h Tue Nov 18 20:35:08 2003 -+++ src/callbacks.orig Tue Nov 18 20:36:27 2003 -@@ -27,7 +27,7 @@ - #include <gnome.h> - #include <sys/types.h> - #include <signal.h> --#include <wait.h> -+#include <sys/wait.h> - #include <gnome.h> - #include <libgnomevfs/gnome-vfs.h> - #include <gtk/gtkdnd.h> diff --git a/x11-fm/velocity/files/patch-src-velocity-factories.c b/x11-fm/velocity/files/patch-src-velocity-factories.c deleted file mode 100644 index 5ea174a69..000000000 --- a/x11-fm/velocity/files/patch-src-velocity-factories.c +++ /dev/null @@ -1,21 +0,0 @@ ---- src/velocity-factories.c.orig Thu Jul 24 16:44:17 2003 -+++ src/velocity-factories.c Wed Dec 10 20:22:05 2003 -@@ -30,14 +30,14 @@ - velocity_view*vview=(velocity_view*)g_object_get_data(G_OBJECT(mi),"velocity_view"); /*Always set by the factories for convenience*/ - GtkWidget*sm=gtk_menu_item_get_submenu(mi); - gboolean empty; -- if(!sm){ -- sm=gtk_menu_new(); -- gtk_menu_item_set_submenu(mi,sm); -- } - void*fs[]={VELOCITY_MENU_FACTORY_DIRECTORY,(gpointer)uri,(gpointer)filter, - (gpointer)show_self,(gpointer)depth,NULL,(gpointer)enabled, - callback,callback_data, - NULL}; -+ if(!sm){ -+ sm=gtk_menu_new(); -+ gtk_menu_item_set_submenu(mi,sm); -+ } - velocity_menu_factory_append(vview,sm,fs); - empty=(gboolean)g_object_get_data(G_OBJECT(sm),"velocity_menu_factory_dir_empty"); - if(empty){ diff --git a/x11-fm/velocity/files/patch-src-velocity-vfs.c b/x11-fm/velocity/files/patch-src-velocity-vfs.c deleted file mode 100644 index 7e315d5af..000000000 --- a/x11-fm/velocity/files/patch-src-velocity-vfs.c +++ /dev/null @@ -1,30 +0,0 @@ ---- src/velocity-vfs.c.orig Tue Aug 26 04:23:50 2003 -+++ src/velocity-vfs.c Mon Mar 1 19:23:34 2004 -@@ -31,6 +31,7 @@ - #include <config.h> - #include <unistd.h> - #include <sys/types.h> -+#include <sys/param.h> /* for NGROUPS */ - #include <glib.h> - #include <libgnome/gnome-desktop-item.h> - #include "velocity-vfs.h" -@@ -240,7 +241,18 @@ - return((vfsobj->info->uid==getuid())); - } - gboolean velocity_vfs_is_in_group(velocity_vfs_obj*vfsobj){ -- return((vfsobj->info->gid==getgid())); -+ /* 24 feb 2004 : Henri Michelon hmichelon at e-cml dot org -+ A patch to use the full list of groups on *BSD */ -+ int cnt, ngroups; -+ gid_t groups[NGROUPS]; -+ if ((ngroups = getgroups(NGROUPS, groups))) { -+ for (cnt = 0; cnt < ngroups; cnt++) { -+ if (vfsobj->info->gid==groups[cnt]) { -+ return(TRUE); -+ } -+ } -+ } -+ return(FALSE); - } - gboolean velocity_vfs_is_local(velocity_vfs_obj*vfsobj){ - return(GNOME_VFS_FILE_INFO_LOCAL(vfsobj->info)); diff --git a/x11-fm/velocity/pkg-descr b/x11-fm/velocity/pkg-descr deleted file mode 100644 index c7def7f44..000000000 --- a/x11-fm/velocity/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -This is a port of velocity. A file and desktop manager for GNOME designed to -replace Nautilus. It is designed to be fast, efficient, and very powerful. -It supports advanced features such as: - - * View Profiles - Allowing you to customize the way you view files. - * Context menu image preview - allowing you a clearer view of thumbnailed - files. - * Add-ons - Scripts to help do odd or complex tasks and Templates to make - creating new documents simpler. - -WWW: http://homepages.ius.edu/kydavis/ - -- Ryan -ryan@transaeris.com diff --git a/x11-fm/velocity/pkg-plist b/x11-fm/velocity/pkg-plist deleted file mode 100644 index 39b9e8b8f..000000000 --- a/x11-fm/velocity/pkg-plist +++ /dev/null @@ -1,46 +0,0 @@ -bin/velocity -share/applications/velocity.desktop -share/pixmaps/velocity/advanced.png -share/pixmaps/velocity/behavior.png -share/pixmaps/velocity/bin.png -share/pixmaps/velocity/desktop.png -share/pixmaps/velocity/druid-left.png -share/pixmaps/velocity/druid-top.png -share/pixmaps/velocity/puzzle-piece.png -share/pixmaps/velocity/puzzle.png -share/pixmaps/velocity/themes.png -share/pixmaps/velocity/velocity.png -share/velocity/plugins/audio.so -share/velocity/plugins/burn.so -share/velocity/scripts/audio-to-mp3 -share/velocity/scripts/audio-to-ogg -share/velocity/scripts/create-tarball -share/velocity/scripts/line-word-count -share/velocity/scripts/pdf-to-postscript -share/velocity/scripts/postscript-to-pdf -share/velocity/scripts/terminal-here -share/velocity/scripts/uncompress -share/velocity/templates/abiword-document -share/velocity/templates/data/abiword-document -share/velocity/templates/data/dia-document -share/velocity/templates/data/gimp-image -share/velocity/templates/data/gnumeric-document -share/velocity/templates/data/html-document -share/velocity/templates/data/shell-script -share/velocity/templates/data/velocity-script -share/velocity/templates/data/word-document -share/velocity/templates/dia-document -share/velocity/templates/gimp-image -share/velocity/templates/gnumeric-document -share/velocity/templates/html-document -share/velocity/templates/plain-text -share/velocity/templates/shell-script -share/velocity/templates/velocity-script -share/velocity/templates/word-document -@dirrm share/velocity/templates/data -@dirrm share/velocity/templates -@dirrm share/velocity/scripts -@dirrm share/velocity/plugins -@dirrm share/velocity -@dirrm share/pixmaps/velocity -@dirrmtry share/applications diff --git a/x11-themes/gnome-themes/Makefile b/x11-themes/gnome-themes/Makefile deleted file mode 100644 index cc9071810..000000000 --- a/x11-themes/gnome-themes/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: gnome-themes -# Date Created: 05 October 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-themes/gnome-themes/Makefile,v 1.156 2009/03/12 22:26:34 mezz Exp $ -# - -PORTNAME= gnome-themes -PORTVERSION= 2.26.0 -CATEGORIES= x11-themes gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A collection of themes and icons for GNOME2 - -BUILD_DEPENDS= gtk-engines2>=2.9.0:${PORTSDIR}/x11-themes/gtk-engines2 \ - icon-naming-utils>=0.8.0:${PORTSDIR}/x11-themes/icon-naming-utils -RUN_DEPENDS= gtk-engines2>=2.9.0:${PORTSDIR}/x11-themes/gtk-engines2 - -CONFLICTS= clearlooks-metacity-0.* - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_AUTOTOOLS= libtool:15 -INSTALLS_ICONS= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnomeprefix intlhack metacity libgnomeui -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> diff --git a/x11-themes/gnome-themes/distinfo b/x11-themes/gnome-themes/distinfo deleted file mode 100644 index 5a44fa7dd..000000000 --- a/x11-themes/gnome-themes/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-themes-2.26.0.tar.bz2) = 3f841154544867585504153d57df1fda -SHA256 (gnome2/gnome-themes-2.26.0.tar.bz2) = 434052b3236d07da0b3b9fec7591917484dbf8fe61dd7113aeaaf58e724b54aa -SIZE (gnome2/gnome-themes-2.26.0.tar.bz2) = 1431670 diff --git a/x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh b/x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh deleted file mode 100644 index bc7e26a01..000000000 --- a/x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh +++ /dev/null @@ -1,11 +0,0 @@ ---- common/mkiconlinks.sh.orig 2008-09-04 17:15:42.000000000 -0500 -+++ common/mkiconlinks.sh 2008-09-04 17:16:31.000000000 -0500 -@@ -16,7 +16,7 @@ - while [ ! -z "$NEXTLINE" ] ; do - - # Skip lines beginning with '#' -- if [ ! "${NEXTLINE:0:1}" == '#' ]; then -+ if ! echo ${NEXTLINE} | grep -q "^#" ; then - #Extract first field, minus its trailing colon - ORIG_FILE=`echo $NEXTLINE | awk '/:/{print $1}' | sed -e 's/://'` - diff --git a/x11-themes/gnome-themes/pkg-descr b/x11-themes/gnome-themes/pkg-descr deleted file mode 100644 index 333388e78..000000000 --- a/x11-themes/gnome-themes/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -A collection of themes for metacity and Gtk, and some basic icon -sets. diff --git a/x11-themes/gnome-themes/pkg-plist b/x11-themes/gnome-themes/pkg-plist deleted file mode 100644 index a3cbb80f6..000000000 --- a/x11-themes/gnome-themes/pkg-plist +++ /dev/null @@ -1,2880 +0,0 @@ -share/icons/Crux/16x16/actions/back.png -share/icons/Crux/16x16/actions/bottom.png -share/icons/Crux/16x16/actions/document-open.png -share/icons/Crux/16x16/actions/down.png -share/icons/Crux/16x16/actions/fileopen.png -share/icons/Crux/16x16/actions/finish.png -share/icons/Crux/16x16/actions/forward.png -share/icons/Crux/16x16/actions/go-bottom.png -share/icons/Crux/16x16/actions/go-down.png -share/icons/Crux/16x16/actions/go-first.png -share/icons/Crux/16x16/actions/go-home.png -share/icons/Crux/16x16/actions/go-last.png -share/icons/Crux/16x16/actions/go-next.png -share/icons/Crux/16x16/actions/go-previous.png -share/icons/Crux/16x16/actions/go-top.png -share/icons/Crux/16x16/actions/go-up.png -share/icons/Crux/16x16/actions/gohome.png -share/icons/Crux/16x16/actions/gtk-go-back-ltr.png -share/icons/Crux/16x16/actions/gtk-go-back-rtl.png -share/icons/Crux/16x16/actions/gtk-go-down.png -share/icons/Crux/16x16/actions/gtk-go-forward-ltr.png -share/icons/Crux/16x16/actions/gtk-go-forward-rtl.png -share/icons/Crux/16x16/actions/gtk-go-up.png -share/icons/Crux/16x16/actions/gtk-goto-bottom.png -share/icons/Crux/16x16/actions/gtk-goto-first-ltr.png -share/icons/Crux/16x16/actions/gtk-goto-first-rtl.png -share/icons/Crux/16x16/actions/gtk-goto-last-ltr.png -share/icons/Crux/16x16/actions/gtk-goto-last-rtl.png -share/icons/Crux/16x16/actions/gtk-goto-top.png -share/icons/Crux/16x16/actions/gtk-home.png -share/icons/Crux/16x16/actions/gtk-open.png -share/icons/Crux/16x16/actions/gtk-refresh.png -share/icons/Crux/16x16/actions/kfm_home.png -share/icons/Crux/16x16/actions/next.png -share/icons/Crux/16x16/actions/previous.png -share/icons/Crux/16x16/actions/redhat-home.png -share/icons/Crux/16x16/actions/reload.png -share/icons/Crux/16x16/actions/reload3.png -share/icons/Crux/16x16/actions/reload_all_tabs.png -share/icons/Crux/16x16/actions/reload_page.png -share/icons/Crux/16x16/actions/start.png -share/icons/Crux/16x16/actions/stock_bottom.png -share/icons/Crux/16x16/actions/stock_down.png -share/icons/Crux/16x16/actions/stock_first.png -share/icons/Crux/16x16/actions/stock_home.png -share/icons/Crux/16x16/actions/stock_last.png -share/icons/Crux/16x16/actions/stock_left.png -share/icons/Crux/16x16/actions/stock_refresh.png -share/icons/Crux/16x16/actions/stock_right.png -share/icons/Crux/16x16/actions/stock_top.png -share/icons/Crux/16x16/actions/stock_up.png -share/icons/Crux/16x16/actions/top.png -share/icons/Crux/16x16/actions/up.png -share/icons/Crux/16x16/actions/view-refresh.png -share/icons/Crux/16x16/places/application-x-gnome-saved-search.png -share/icons/Crux/16x16/places/folder-remote.png -share/icons/Crux/16x16/places/folder-saved-search.png -share/icons/Crux/16x16/places/folder.png -share/icons/Crux/16x16/places/folder_home.png -share/icons/Crux/16x16/places/gnome-fs-directory.png -share/icons/Crux/16x16/places/gnome-fs-ftp.png -share/icons/Crux/16x16/places/gnome-fs-home.png -share/icons/Crux/16x16/places/gnome-fs-nfs.png -share/icons/Crux/16x16/places/gnome-fs-share.png -share/icons/Crux/16x16/places/gnome-fs-smb.png -share/icons/Crux/16x16/places/gnome-fs-ssh.png -share/icons/Crux/16x16/places/gnome-mime-x-directory-smb-share.png -share/icons/Crux/16x16/places/gtk-directory.png -share/icons/Crux/16x16/places/inode-directory.png -share/icons/Crux/16x16/places/network.png -share/icons/Crux/16x16/places/stock_folder.png -share/icons/Crux/16x16/places/user-home.png -share/icons/Crux/16x16/status/folder-drag-accept.png -share/icons/Crux/16x16/status/folder-open.png -share/icons/Crux/16x16/status/folder-visiting.png -share/icons/Crux/16x16/status/folder_open.png -share/icons/Crux/16x16/status/gnome-fs-directory-accept.png -share/icons/Crux/16x16/status/gnome-fs-directory-visiting.png -share/icons/Crux/16x16/status/stock_open.png -share/icons/Crux/22x22/actions/back.png -share/icons/Crux/22x22/actions/bottom.png -share/icons/Crux/22x22/actions/document-open.png -share/icons/Crux/22x22/actions/down.png -share/icons/Crux/22x22/actions/fileopen.png -share/icons/Crux/22x22/actions/finish.png -share/icons/Crux/22x22/actions/forward.png -share/icons/Crux/22x22/actions/go-bottom.png -share/icons/Crux/22x22/actions/go-down.png -share/icons/Crux/22x22/actions/go-first.png -share/icons/Crux/22x22/actions/go-home.png -share/icons/Crux/22x22/actions/go-last.png -share/icons/Crux/22x22/actions/go-next.png -share/icons/Crux/22x22/actions/go-previous.png -share/icons/Crux/22x22/actions/go-top.png -share/icons/Crux/22x22/actions/go-up.png -share/icons/Crux/22x22/actions/gohome.png -share/icons/Crux/22x22/actions/gtk-go-back-ltr.png -share/icons/Crux/22x22/actions/gtk-go-back-rtl.png -share/icons/Crux/22x22/actions/gtk-go-down.png -share/icons/Crux/22x22/actions/gtk-go-forward-ltr.png -share/icons/Crux/22x22/actions/gtk-go-forward-rtl.png -share/icons/Crux/22x22/actions/gtk-go-up.png -share/icons/Crux/22x22/actions/gtk-goto-bottom.png -share/icons/Crux/22x22/actions/gtk-goto-first-ltr.png -share/icons/Crux/22x22/actions/gtk-goto-first-rtl.png -share/icons/Crux/22x22/actions/gtk-goto-last-ltr.png -share/icons/Crux/22x22/actions/gtk-goto-last-rtl.png -share/icons/Crux/22x22/actions/gtk-goto-top.png -share/icons/Crux/22x22/actions/gtk-home.png -share/icons/Crux/22x22/actions/gtk-open.png -share/icons/Crux/22x22/actions/gtk-refresh.png -share/icons/Crux/22x22/actions/kfm_home.png -share/icons/Crux/22x22/actions/next.png -share/icons/Crux/22x22/actions/previous.png -share/icons/Crux/22x22/actions/redhat-home.png -share/icons/Crux/22x22/actions/reload.png -share/icons/Crux/22x22/actions/reload3.png -share/icons/Crux/22x22/actions/reload_all_tabs.png -share/icons/Crux/22x22/actions/reload_page.png -share/icons/Crux/22x22/actions/start.png -share/icons/Crux/22x22/actions/stock_bottom.png -share/icons/Crux/22x22/actions/stock_down.png -share/icons/Crux/22x22/actions/stock_first.png -share/icons/Crux/22x22/actions/stock_home.png -share/icons/Crux/22x22/actions/stock_last.png -share/icons/Crux/22x22/actions/stock_left.png -share/icons/Crux/22x22/actions/stock_refresh.png -share/icons/Crux/22x22/actions/stock_right.png -share/icons/Crux/22x22/actions/stock_top.png -share/icons/Crux/22x22/actions/stock_up.png -share/icons/Crux/22x22/actions/top.png -share/icons/Crux/22x22/actions/up.png -share/icons/Crux/22x22/actions/view-refresh.png -share/icons/Crux/22x22/places/application-x-gnome-saved-search.png -share/icons/Crux/22x22/places/folder-remote.png -share/icons/Crux/22x22/places/folder-saved-search.png -share/icons/Crux/22x22/places/folder.png -share/icons/Crux/22x22/places/folder_home.png -share/icons/Crux/22x22/places/gnome-fs-directory.png -share/icons/Crux/22x22/places/gnome-fs-ftp.png -share/icons/Crux/22x22/places/gnome-fs-home.png -share/icons/Crux/22x22/places/gnome-fs-nfs.png -share/icons/Crux/22x22/places/gnome-fs-share.png -share/icons/Crux/22x22/places/gnome-fs-smb.png -share/icons/Crux/22x22/places/gnome-fs-ssh.png -share/icons/Crux/22x22/places/gnome-mime-x-directory-smb-share.png -share/icons/Crux/22x22/places/gtk-directory.png -share/icons/Crux/22x22/places/inode-directory.png -share/icons/Crux/22x22/places/network.png -share/icons/Crux/22x22/places/stock_folder.png -share/icons/Crux/22x22/places/user-home.png -share/icons/Crux/22x22/status/folder-drag-accept.png -share/icons/Crux/22x22/status/folder-open.png -share/icons/Crux/22x22/status/folder-visiting.png -share/icons/Crux/22x22/status/folder_open.png -share/icons/Crux/22x22/status/gnome-fs-directory-accept.png -share/icons/Crux/22x22/status/gnome-fs-directory-visiting.png -share/icons/Crux/22x22/status/stock_open.png -share/icons/Crux/24x24/actions/back.png -share/icons/Crux/24x24/actions/bottom.png -share/icons/Crux/24x24/actions/document-open.png -share/icons/Crux/24x24/actions/down.png -share/icons/Crux/24x24/actions/fileopen.png -share/icons/Crux/24x24/actions/finish.png -share/icons/Crux/24x24/actions/forward.png -share/icons/Crux/24x24/actions/go-bottom.png -share/icons/Crux/24x24/actions/go-down.png -share/icons/Crux/24x24/actions/go-first.png -share/icons/Crux/24x24/actions/go-home.png -share/icons/Crux/24x24/actions/go-last.png -share/icons/Crux/24x24/actions/go-next.png -share/icons/Crux/24x24/actions/go-previous.png -share/icons/Crux/24x24/actions/go-top.png -share/icons/Crux/24x24/actions/go-up.png -share/icons/Crux/24x24/actions/gohome.png -share/icons/Crux/24x24/actions/gtk-go-back-ltr.png -share/icons/Crux/24x24/actions/gtk-go-back-rtl.png -share/icons/Crux/24x24/actions/gtk-go-down.png -share/icons/Crux/24x24/actions/gtk-go-forward-ltr.png -share/icons/Crux/24x24/actions/gtk-go-forward-rtl.png -share/icons/Crux/24x24/actions/gtk-go-up.png -share/icons/Crux/24x24/actions/gtk-goto-bottom.png -share/icons/Crux/24x24/actions/gtk-goto-first-ltr.png -share/icons/Crux/24x24/actions/gtk-goto-first-rtl.png -share/icons/Crux/24x24/actions/gtk-goto-last-ltr.png -share/icons/Crux/24x24/actions/gtk-goto-last-rtl.png -share/icons/Crux/24x24/actions/gtk-goto-top.png -share/icons/Crux/24x24/actions/gtk-home.png -share/icons/Crux/24x24/actions/gtk-open.png -share/icons/Crux/24x24/actions/gtk-refresh.png -share/icons/Crux/24x24/actions/kfm_home.png -share/icons/Crux/24x24/actions/next.png -share/icons/Crux/24x24/actions/previous.png -share/icons/Crux/24x24/actions/redhat-home.png -share/icons/Crux/24x24/actions/reload.png -share/icons/Crux/24x24/actions/reload3.png -share/icons/Crux/24x24/actions/reload_all_tabs.png -share/icons/Crux/24x24/actions/reload_page.png -share/icons/Crux/24x24/actions/start.png -share/icons/Crux/24x24/actions/stock_bottom.png -share/icons/Crux/24x24/actions/stock_down.png -share/icons/Crux/24x24/actions/stock_first.png -share/icons/Crux/24x24/actions/stock_home.png -share/icons/Crux/24x24/actions/stock_last.png -share/icons/Crux/24x24/actions/stock_left.png -share/icons/Crux/24x24/actions/stock_refresh.png -share/icons/Crux/24x24/actions/stock_right.png -share/icons/Crux/24x24/actions/stock_top.png -share/icons/Crux/24x24/actions/stock_up.png -share/icons/Crux/24x24/actions/top.png -share/icons/Crux/24x24/actions/up.png -share/icons/Crux/24x24/actions/view-refresh.png -share/icons/Crux/24x24/places/application-x-gnome-saved-search.png -share/icons/Crux/24x24/places/folder-remote.png -share/icons/Crux/24x24/places/folder-saved-search.png -share/icons/Crux/24x24/places/folder.png -share/icons/Crux/24x24/places/folder_home.png -share/icons/Crux/24x24/places/gnome-fs-directory.png -share/icons/Crux/24x24/places/gnome-fs-ftp.png -share/icons/Crux/24x24/places/gnome-fs-home.png -share/icons/Crux/24x24/places/gnome-fs-nfs.png -share/icons/Crux/24x24/places/gnome-fs-share.png -share/icons/Crux/24x24/places/gnome-fs-smb.png -share/icons/Crux/24x24/places/gnome-fs-ssh.png -share/icons/Crux/24x24/places/gnome-mime-x-directory-smb-share.png -share/icons/Crux/24x24/places/gtk-directory.png -share/icons/Crux/24x24/places/inode-directory.png -share/icons/Crux/24x24/places/network.png -share/icons/Crux/24x24/places/stock_folder.png -share/icons/Crux/24x24/places/user-home.png -share/icons/Crux/24x24/status/folder-drag-accept.png -share/icons/Crux/24x24/status/folder-open.png -share/icons/Crux/24x24/status/folder-visiting.png -share/icons/Crux/24x24/status/folder_open.png -share/icons/Crux/24x24/status/gnome-fs-directory-accept.png -share/icons/Crux/24x24/status/gnome-fs-directory-visiting.png -share/icons/Crux/24x24/status/stock_open.png -share/icons/Crux/32x32/actions/document-open.png -share/icons/Crux/32x32/actions/fileopen.png -share/icons/Crux/32x32/actions/gtk-open.png -share/icons/Crux/32x32/places/application-x-gnome-saved-search.png -share/icons/Crux/32x32/places/folder-remote.png -share/icons/Crux/32x32/places/folder-saved-search.png -share/icons/Crux/32x32/places/folder.png -share/icons/Crux/32x32/places/folder_home.png -share/icons/Crux/32x32/places/gnome-fs-directory.png -share/icons/Crux/32x32/places/gnome-fs-ftp.png -share/icons/Crux/32x32/places/gnome-fs-home.png -share/icons/Crux/32x32/places/gnome-fs-nfs.png -share/icons/Crux/32x32/places/gnome-fs-share.png -share/icons/Crux/32x32/places/gnome-fs-smb.png -share/icons/Crux/32x32/places/gnome-fs-ssh.png -share/icons/Crux/32x32/places/gnome-mime-x-directory-smb-share.png -share/icons/Crux/32x32/places/gtk-directory.png -share/icons/Crux/32x32/places/inode-directory.png -share/icons/Crux/32x32/places/network.png -share/icons/Crux/32x32/places/stock_folder.png -share/icons/Crux/32x32/places/user-home.png -share/icons/Crux/32x32/status/folder-drag-accept.png -share/icons/Crux/32x32/status/folder-open.png -share/icons/Crux/32x32/status/folder-visiting.png -share/icons/Crux/32x32/status/folder_open.png -share/icons/Crux/32x32/status/gnome-fs-directory-accept.png -share/icons/Crux/32x32/status/gnome-fs-directory-visiting.png -share/icons/Crux/32x32/status/stock_open.png -share/icons/Crux/index.theme -share/icons/Crux/scalable/actions/back.svg -share/icons/Crux/scalable/actions/bottom.svg -share/icons/Crux/scalable/actions/document-open.svg -share/icons/Crux/scalable/actions/down.svg -share/icons/Crux/scalable/actions/fileopen.svg -share/icons/Crux/scalable/actions/finish.svg -share/icons/Crux/scalable/actions/forward.svg -share/icons/Crux/scalable/actions/go-bottom.svg -share/icons/Crux/scalable/actions/go-down.svg -share/icons/Crux/scalable/actions/go-first.svg -share/icons/Crux/scalable/actions/go-home.svg -share/icons/Crux/scalable/actions/go-last.svg -share/icons/Crux/scalable/actions/go-next.svg -share/icons/Crux/scalable/actions/go-previous.svg -share/icons/Crux/scalable/actions/go-top.svg -share/icons/Crux/scalable/actions/go-up.svg -share/icons/Crux/scalable/actions/gohome.svg -share/icons/Crux/scalable/actions/gtk-go-back-ltr.svg -share/icons/Crux/scalable/actions/gtk-go-back-rtl.svg -share/icons/Crux/scalable/actions/gtk-go-down.svg -share/icons/Crux/scalable/actions/gtk-go-forward-ltr.svg -share/icons/Crux/scalable/actions/gtk-go-forward-rtl.svg -share/icons/Crux/scalable/actions/gtk-go-up.svg -share/icons/Crux/scalable/actions/gtk-goto-bottom.svg -share/icons/Crux/scalable/actions/gtk-goto-first-ltr.svg -share/icons/Crux/scalable/actions/gtk-goto-first-rtl.svg -share/icons/Crux/scalable/actions/gtk-goto-last-ltr.svg -share/icons/Crux/scalable/actions/gtk-goto-last-rtl.svg -share/icons/Crux/scalable/actions/gtk-goto-top.svg -share/icons/Crux/scalable/actions/gtk-home.svg -share/icons/Crux/scalable/actions/gtk-open.svg -share/icons/Crux/scalable/actions/gtk-refresh.svg -share/icons/Crux/scalable/actions/kfm_home.svg -share/icons/Crux/scalable/actions/next.svg -share/icons/Crux/scalable/actions/previous.svg -share/icons/Crux/scalable/actions/redhat-home.svg -share/icons/Crux/scalable/actions/reload.svg -share/icons/Crux/scalable/actions/reload3.svg -share/icons/Crux/scalable/actions/reload_all_tabs.svg -share/icons/Crux/scalable/actions/reload_page.svg -share/icons/Crux/scalable/actions/start.svg -share/icons/Crux/scalable/actions/stock_bottom.svg -share/icons/Crux/scalable/actions/stock_down.svg -share/icons/Crux/scalable/actions/stock_first.svg -share/icons/Crux/scalable/actions/stock_home.svg -share/icons/Crux/scalable/actions/stock_last.svg -share/icons/Crux/scalable/actions/stock_left.svg -share/icons/Crux/scalable/actions/stock_refresh.svg -share/icons/Crux/scalable/actions/stock_right.svg -share/icons/Crux/scalable/actions/stock_top.svg -share/icons/Crux/scalable/actions/stock_up.svg -share/icons/Crux/scalable/actions/top.svg -share/icons/Crux/scalable/actions/up.svg -share/icons/Crux/scalable/actions/view-refresh.svg -share/icons/Crux/scalable/places/application-x-gnome-saved-search.svg -share/icons/Crux/scalable/places/folder-remote.svg -share/icons/Crux/scalable/places/folder-saved-search.svg -share/icons/Crux/scalable/places/folder.svg -share/icons/Crux/scalable/places/folder_home.svg -share/icons/Crux/scalable/places/gnome-fs-directory.svg -share/icons/Crux/scalable/places/gnome-fs-ftp.svg -share/icons/Crux/scalable/places/gnome-fs-home.svg -share/icons/Crux/scalable/places/gnome-fs-nfs.svg -share/icons/Crux/scalable/places/gnome-fs-share.svg -share/icons/Crux/scalable/places/gnome-fs-smb.svg -share/icons/Crux/scalable/places/gnome-fs-ssh.svg -share/icons/Crux/scalable/places/gnome-mime-x-directory-smb-share.svg -share/icons/Crux/scalable/places/gtk-directory.svg -share/icons/Crux/scalable/places/inode-directory.svg -share/icons/Crux/scalable/places/network.svg -share/icons/Crux/scalable/places/stock_folder.svg -share/icons/Crux/scalable/places/user-home.svg -share/icons/Crux/scalable/status/folder-drag-accept.svg -share/icons/Crux/scalable/status/folder-open.svg -share/icons/Crux/scalable/status/folder-visiting.svg -share/icons/Crux/scalable/status/folder_open.svg -share/icons/Crux/scalable/status/gnome-fs-directory-accept.svg -share/icons/Crux/scalable/status/gnome-fs-directory-visiting.svg -share/icons/Crux/scalable/status/stock_open.svg -share/icons/HighContrast-SVG/48x48/animations/gnome-spinner-rest.png -share/icons/HighContrast-SVG/48x48/animations/gnome-spinner.png -share/icons/HighContrast-SVG/48x48/animations/process-idle.png -share/icons/HighContrast-SVG/48x48/animations/process-working.png -share/icons/HighContrast-SVG/index.theme -share/icons/HighContrast-SVG/scalable/actions/add.svg -share/icons/HighContrast-SVG/scalable/actions/application-exit.svg -share/icons/HighContrast-SVG/scalable/actions/back.svg -share/icons/HighContrast-SVG/scalable/actions/bookmark-view.svg -share/icons/HighContrast-SVG/scalable/actions/bottom.svg -share/icons/HighContrast-SVG/scalable/actions/button_cancel.svg -share/icons/HighContrast-SVG/scalable/actions/cancel.svg -share/icons/HighContrast-SVG/scalable/actions/centrejust.svg -share/icons/HighContrast-SVG/scalable/actions/contact-new.svg -share/icons/HighContrast-SVG/scalable/actions/dialog-cancel.svg -share/icons/HighContrast-SVG/scalable/actions/dialog-close.svg -share/icons/HighContrast-SVG/scalable/actions/dialog-ok.svg -share/icons/HighContrast-SVG/scalable/actions/document-new.svg -share/icons/HighContrast-SVG/scalable/actions/document-open-recent.svg -share/icons/HighContrast-SVG/scalable/actions/document-open.svg -share/icons/HighContrast-SVG/scalable/actions/document-print-preview.svg -share/icons/HighContrast-SVG/scalable/actions/document-print.svg -share/icons/HighContrast-SVG/scalable/actions/document-properties.svg -share/icons/HighContrast-SVG/scalable/actions/document-revert.svg -share/icons/HighContrast-SVG/scalable/actions/document-save-as.svg -share/icons/HighContrast-SVG/scalable/actions/document-save.svg -share/icons/HighContrast-SVG/scalable/actions/down.svg -share/icons/HighContrast-SVG/scalable/actions/edit-clear.svg -share/icons/HighContrast-SVG/scalable/actions/edit-copy.svg -share/icons/HighContrast-SVG/scalable/actions/edit-cut.svg -share/icons/HighContrast-SVG/scalable/actions/edit-delete.svg -share/icons/HighContrast-SVG/scalable/actions/edit-find-replace.svg -share/icons/HighContrast-SVG/scalable/actions/edit-find.svg -share/icons/HighContrast-SVG/scalable/actions/edit-paste.svg -share/icons/HighContrast-SVG/scalable/actions/edit-redo.svg -share/icons/HighContrast-SVG/scalable/actions/edit-undo.svg -share/icons/HighContrast-SVG/scalable/actions/editclear.svg -share/icons/HighContrast-SVG/scalable/actions/editcopy.svg -share/icons/HighContrast-SVG/scalable/actions/editcut.svg -share/icons/HighContrast-SVG/scalable/actions/editdelete.svg -share/icons/HighContrast-SVG/scalable/actions/editpaste.svg -share/icons/HighContrast-SVG/scalable/actions/exit.svg -share/icons/HighContrast-SVG/scalable/actions/filefind.svg -share/icons/HighContrast-SVG/scalable/actions/filenew.svg -share/icons/HighContrast-SVG/scalable/actions/fileopen.svg -share/icons/HighContrast-SVG/scalable/actions/fileprint.svg -share/icons/HighContrast-SVG/scalable/actions/filequickprint.svg -share/icons/HighContrast-SVG/scalable/actions/filesave.svg -share/icons/HighContrast-SVG/scalable/actions/filesaveas.svg -share/icons/HighContrast-SVG/scalable/actions/find.svg -share/icons/HighContrast-SVG/scalable/actions/finish.svg -share/icons/HighContrast-SVG/scalable/actions/folder-new.svg -share/icons/HighContrast-SVG/scalable/actions/folder_new.svg -share/icons/HighContrast-SVG/scalable/actions/format-indent-less.svg -share/icons/HighContrast-SVG/scalable/actions/format-indent-more.svg -share/icons/HighContrast-SVG/scalable/actions/format-justify-center.svg -share/icons/HighContrast-SVG/scalable/actions/format-justify-fill.svg -share/icons/HighContrast-SVG/scalable/actions/format-justify-left.svg -share/icons/HighContrast-SVG/scalable/actions/format-justify-right.svg -share/icons/HighContrast-SVG/scalable/actions/format-text-bold.svg -share/icons/HighContrast-SVG/scalable/actions/format-text-italic.svg -share/icons/HighContrast-SVG/scalable/actions/format-text-strikethrough.svg -share/icons/HighContrast-SVG/scalable/actions/format-text-underline.svg -share/icons/HighContrast-SVG/scalable/actions/forward.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-lockscreen.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-logout.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-run.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-searchtool.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-shutdown.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-stock-mail-fwd.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-stock-mail-new.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-stock-mail-rpl.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-stock-text-indent.svg -share/icons/HighContrast-SVG/scalable/actions/gnome-stock-text-unindent.svg -share/icons/HighContrast-SVG/scalable/actions/go-bottom.svg -share/icons/HighContrast-SVG/scalable/actions/go-down.svg -share/icons/HighContrast-SVG/scalable/actions/go-first.svg -share/icons/HighContrast-SVG/scalable/actions/go-home.svg -share/icons/HighContrast-SVG/scalable/actions/go-jump.svg -share/icons/HighContrast-SVG/scalable/actions/go-last.svg -share/icons/HighContrast-SVG/scalable/actions/go-next.svg -share/icons/HighContrast-SVG/scalable/actions/go-previous.svg -share/icons/HighContrast-SVG/scalable/actions/go-top.svg -share/icons/HighContrast-SVG/scalable/actions/go-up.svg -share/icons/HighContrast-SVG/scalable/actions/gohome.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-about.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-add.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-bold.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-cancel.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-clear.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-close.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-copy.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-cut.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-delete.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-execute.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-find-and-replace.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-find.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-fullscreen.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-go-back-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-go-back-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-go-down.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-go-forward-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-go-forward-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-go-up.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-goto-bottom.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-goto-first-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-goto-first-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-goto-last-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-goto-last-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-goto-top.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-home.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-indent-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-indent-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-italic.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-jump-to-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-jump-to-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-justify-center.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-justify-fill.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-justify-left.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-justify-right.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-leave-fullscreen.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-forward-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-forward-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-next-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-next-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-pause.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-play-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-previous-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-previous-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-record.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-rewind-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-rewind-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-media-stop.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-new.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-open.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-paste.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-print-preview.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-print.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-properties.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-quit.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-redo-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-refresh.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-remove.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-revert-to-saved-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-revert-to-saved-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-save-as.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-save.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-sort-ascending.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-sort-descending.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-spell-check.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-stop.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-strikethrough.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-underline.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-undo-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-unindent-ltr.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-unindent-rtl.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-zoom-100.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-zoom-fit.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-zoom-in.svg -share/icons/HighContrast-SVG/scalable/actions/gtk-zoom-out.svg -share/icons/HighContrast-SVG/scalable/actions/help-about.svg -share/icons/HighContrast-SVG/scalable/actions/help-contents.svg -share/icons/HighContrast-SVG/scalable/actions/help-faq.svg -share/icons/HighContrast-SVG/scalable/actions/history-view.svg -share/icons/HighContrast-SVG/scalable/actions/insert-image.svg -share/icons/HighContrast-SVG/scalable/actions/insert-object.svg -share/icons/HighContrast-SVG/scalable/actions/insert-text.svg -share/icons/HighContrast-SVG/scalable/actions/kfind.svg -share/icons/HighContrast-SVG/scalable/actions/kfm_home.svg -share/icons/HighContrast-SVG/scalable/actions/leftjust.svg -share/icons/HighContrast-SVG/scalable/actions/list-add.svg -share/icons/HighContrast-SVG/scalable/actions/list-remove.svg -share/icons/HighContrast-SVG/scalable/actions/lock.svg -share/icons/HighContrast-SVG/scalable/actions/mail-forward.svg -share/icons/HighContrast-SVG/scalable/actions/mail-mark-important.svg -share/icons/HighContrast-SVG/scalable/actions/mail-mark-read.svg -share/icons/HighContrast-SVG/scalable/actions/mail-mark-unread.svg -share/icons/HighContrast-SVG/scalable/actions/mail-message-new.svg -share/icons/HighContrast-SVG/scalable/actions/mail-reply-all.svg -share/icons/HighContrast-SVG/scalable/actions/mail-reply-sender.svg -share/icons/HighContrast-SVG/scalable/actions/mail-send-receive.svg -share/icons/HighContrast-SVG/scalable/actions/mail_forward.svg -share/icons/HighContrast-SVG/scalable/actions/mail_new.svg -share/icons/HighContrast-SVG/scalable/actions/mail_reply.svg -share/icons/HighContrast-SVG/scalable/actions/mail_replyall.svg -share/icons/HighContrast-SVG/scalable/actions/media-eject.svg -share/icons/HighContrast-SVG/scalable/actions/media-playback-pause.svg -share/icons/HighContrast-SVG/scalable/actions/media-playback-start.svg -share/icons/HighContrast-SVG/scalable/actions/media-playback-stop.svg -share/icons/HighContrast-SVG/scalable/actions/media-record.svg -share/icons/HighContrast-SVG/scalable/actions/media-seek-backward.svg -share/icons/HighContrast-SVG/scalable/actions/media-seek-forward.svg -share/icons/HighContrast-SVG/scalable/actions/media-skip-backward.svg -share/icons/HighContrast-SVG/scalable/actions/media-skip-forward.svg -share/icons/HighContrast-SVG/scalable/actions/next.svg -share/icons/HighContrast-SVG/scalable/actions/object-flip-horizontal.svg -share/icons/HighContrast-SVG/scalable/actions/object-flip-vertical.svg -share/icons/HighContrast-SVG/scalable/actions/object-rotate-left.svg -share/icons/HighContrast-SVG/scalable/actions/object-rotate-right.svg -share/icons/HighContrast-SVG/scalable/actions/player_eject.svg -share/icons/HighContrast-SVG/scalable/actions/player_end.svg -share/icons/HighContrast-SVG/scalable/actions/player_fwd.svg -share/icons/HighContrast-SVG/scalable/actions/player_pause.svg -share/icons/HighContrast-SVG/scalable/actions/player_play.svg -share/icons/HighContrast-SVG/scalable/actions/player_record.svg -share/icons/HighContrast-SVG/scalable/actions/player_rew.svg -share/icons/HighContrast-SVG/scalable/actions/player_start.svg -share/icons/HighContrast-SVG/scalable/actions/player_stop.svg -share/icons/HighContrast-SVG/scalable/actions/previous.svg -share/icons/HighContrast-SVG/scalable/actions/process-stop.svg -share/icons/HighContrast-SVG/scalable/actions/redhat-home.svg -share/icons/HighContrast-SVG/scalable/actions/redo.svg -share/icons/HighContrast-SVG/scalable/actions/reload.svg -share/icons/HighContrast-SVG/scalable/actions/reload3.svg -share/icons/HighContrast-SVG/scalable/actions/reload_all_tabs.svg -share/icons/HighContrast-SVG/scalable/actions/reload_page.svg -share/icons/HighContrast-SVG/scalable/actions/remove.svg -share/icons/HighContrast-SVG/scalable/actions/revert.svg -share/icons/HighContrast-SVG/scalable/actions/rightjust.svg -share/icons/HighContrast-SVG/scalable/actions/search.svg -share/icons/HighContrast-SVG/scalable/actions/start.svg -share/icons/HighContrast-SVG/scalable/actions/stock_about.svg -share/icons/HighContrast-SVG/scalable/actions/stock_bottom.svg -share/icons/HighContrast-SVG/scalable/actions/stock_close.svg -share/icons/HighContrast-SVG/scalable/actions/stock_copy.svg -share/icons/HighContrast-SVG/scalable/actions/stock_cut.svg -share/icons/HighContrast-SVG/scalable/actions/stock_delete.svg -share/icons/HighContrast-SVG/scalable/actions/stock_down.svg -share/icons/HighContrast-SVG/scalable/actions/stock_file-properites.svg -share/icons/HighContrast-SVG/scalable/actions/stock_first.svg -share/icons/HighContrast-SVG/scalable/actions/stock_fullscreen.svg -share/icons/HighContrast-SVG/scalable/actions/stock_home.svg -share/icons/HighContrast-SVG/scalable/actions/stock_last.svg -share/icons/HighContrast-SVG/scalable/actions/stock_leave-fullscreen.svg -share/icons/HighContrast-SVG/scalable/actions/stock_left.svg -share/icons/HighContrast-SVG/scalable/actions/stock_mail-compose.svg -share/icons/HighContrast-SVG/scalable/actions/stock_mail-forward.svg -share/icons/HighContrast-SVG/scalable/actions/stock_mail-reply-to-all.svg -share/icons/HighContrast-SVG/scalable/actions/stock_mail-reply.svg -share/icons/HighContrast-SVG/scalable/actions/stock_mail-send-receive.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-fwd.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-next.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-pause.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-play.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-prev.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-rec.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-rew.svg -share/icons/HighContrast-SVG/scalable/actions/stock_media-stop.svg -share/icons/HighContrast-SVG/scalable/actions/stock_new-bcard.svg -share/icons/HighContrast-SVG/scalable/actions/stock_new-dir.svg -share/icons/HighContrast-SVG/scalable/actions/stock_new-text.svg -share/icons/HighContrast-SVG/scalable/actions/stock_new-window.svg -share/icons/HighContrast-SVG/scalable/actions/stock_paste.svg -share/icons/HighContrast-SVG/scalable/actions/stock_print-preview.svg -share/icons/HighContrast-SVG/scalable/actions/stock_print.svg -share/icons/HighContrast-SVG/scalable/actions/stock_properties.svg -share/icons/HighContrast-SVG/scalable/actions/stock_redo.svg -share/icons/HighContrast-SVG/scalable/actions/stock_refresh.svg -share/icons/HighContrast-SVG/scalable/actions/stock_right.svg -share/icons/HighContrast-SVG/scalable/actions/stock_save-as.svg -share/icons/HighContrast-SVG/scalable/actions/stock_save.svg -share/icons/HighContrast-SVG/scalable/actions/stock_search-and-replace.svg -share/icons/HighContrast-SVG/scalable/actions/stock_search.svg -share/icons/HighContrast-SVG/scalable/actions/stock_spellcheck.svg -share/icons/HighContrast-SVG/scalable/actions/stock_stop.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text-strikethrough.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_bold.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_center.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_indent.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_italic.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_justify.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_left.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_right.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_underlined.svg -share/icons/HighContrast-SVG/scalable/actions/stock_text_unindent.svg -share/icons/HighContrast-SVG/scalable/actions/stock_top.svg -share/icons/HighContrast-SVG/scalable/actions/stock_undo.svg -share/icons/HighContrast-SVG/scalable/actions/stock_up.svg -share/icons/HighContrast-SVG/scalable/actions/stock_zoom-1.svg -share/icons/HighContrast-SVG/scalable/actions/stock_zoom-in.svg -share/icons/HighContrast-SVG/scalable/actions/stock_zoom-out.svg -share/icons/HighContrast-SVG/scalable/actions/stock_zoom-page.svg -share/icons/HighContrast-SVG/scalable/actions/stop.svg -share/icons/HighContrast-SVG/scalable/actions/system-lock-screen.svg -share/icons/HighContrast-SVG/scalable/actions/system-log-out.svg -share/icons/HighContrast-SVG/scalable/actions/system-run.svg -share/icons/HighContrast-SVG/scalable/actions/system-search.svg -share/icons/HighContrast-SVG/scalable/actions/system-shutdown.svg -share/icons/HighContrast-SVG/scalable/actions/text_bold.svg -share/icons/HighContrast-SVG/scalable/actions/text_italic.svg -share/icons/HighContrast-SVG/scalable/actions/text_strike.svg -share/icons/HighContrast-SVG/scalable/actions/text_under.svg -share/icons/HighContrast-SVG/scalable/actions/tool-check-spelling.svg -share/icons/HighContrast-SVG/scalable/actions/tools-check-spelling.svg -share/icons/HighContrast-SVG/scalable/actions/top.svg -share/icons/HighContrast-SVG/scalable/actions/undo.svg -share/icons/HighContrast-SVG/scalable/actions/up.svg -share/icons/HighContrast-SVG/scalable/actions/view-fullscreen.svg -share/icons/HighContrast-SVG/scalable/actions/view-refresh.svg -share/icons/HighContrast-SVG/scalable/actions/view-restore.svg -share/icons/HighContrast-SVG/scalable/actions/view-sort-ascending.svg -share/icons/HighContrast-SVG/scalable/actions/view-sort-descending.svg -share/icons/HighContrast-SVG/scalable/actions/viewmag+.svg -share/icons/HighContrast-SVG/scalable/actions/viewmag-.svg -share/icons/HighContrast-SVG/scalable/actions/viewmag1.svg -share/icons/HighContrast-SVG/scalable/actions/viewmagfit.svg -share/icons/HighContrast-SVG/scalable/actions/window-close.svg -share/icons/HighContrast-SVG/scalable/actions/window-new.svg -share/icons/HighContrast-SVG/scalable/actions/window_fullscreen.svg -share/icons/HighContrast-SVG/scalable/actions/window_new.svg -share/icons/HighContrast-SVG/scalable/actions/window_nofullscreen.svg -share/icons/HighContrast-SVG/scalable/actions/xfce-system-exit.svg -share/icons/HighContrast-SVG/scalable/actions/xfce-system-lock.svg -share/icons/HighContrast-SVG/scalable/actions/zoom-best-fit.svg -share/icons/HighContrast-SVG/scalable/actions/zoom-fit-best.svg -share/icons/HighContrast-SVG/scalable/actions/zoom-in.svg -share/icons/HighContrast-SVG/scalable/actions/zoom-original.svg -share/icons/HighContrast-SVG/scalable/actions/zoom-out.svg -share/icons/HighContrast-SVG/scalable/apps/access.svg -share/icons/HighContrast-SVG/scalable/apps/accessibility-directory.svg -share/icons/HighContrast-SVG/scalable/apps/accessories-calculator.svg -share/icons/HighContrast-SVG/scalable/apps/accessories-character-map.svg -share/icons/HighContrast-SVG/scalable/apps/accessories-text-editor.svg -share/icons/HighContrast-SVG/scalable/apps/arts.svg -share/icons/HighContrast-SVG/scalable/apps/bug-buddy.svg -share/icons/HighContrast-SVG/scalable/apps/calc.svg -share/icons/HighContrast-SVG/scalable/apps/config-language.svg -share/icons/HighContrast-SVG/scalable/apps/file-manager.svg -share/icons/HighContrast-SVG/scalable/apps/fonts.svg -share/icons/HighContrast-SVG/scalable/apps/glchess.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-calculator.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-character-map.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-help.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-mixer.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-monitor.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-settings-accessibility-technologies.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-settings-font.svg -share/icons/HighContrast-SVG/scalable/apps/gnome-terminal.svg -share/icons/HighContrast-SVG/scalable/apps/gtk-help.svg -share/icons/HighContrast-SVG/scalable/apps/gucharmap.svg -share/icons/HighContrast-SVG/scalable/apps/help-browser.svg -share/icons/HighContrast-SVG/scalable/apps/help.svg -share/icons/HighContrast-SVG/scalable/apps/internet-group-chat.svg -share/icons/HighContrast-SVG/scalable/apps/internet-mail.svg -share/icons/HighContrast-SVG/scalable/apps/internet-news-reader.svg -share/icons/HighContrast-SVG/scalable/apps/internet-web-browser.svg -share/icons/HighContrast-SVG/scalable/apps/kcalc.svg -share/icons/HighContrast-SVG/scalable/apps/kcharselect.svg -share/icons/HighContrast-SVG/scalable/apps/kcmsound.svg -share/icons/HighContrast-SVG/scalable/apps/kedit.svg -share/icons/HighContrast-SVG/scalable/apps/kfm.svg -share/icons/HighContrast-SVG/scalable/apps/khelpcenter.svg -share/icons/HighContrast-SVG/scalable/apps/konsole.svg -share/icons/HighContrast-SVG/scalable/apps/kscreensaver.svg -share/icons/HighContrast-SVG/scalable/apps/ksysguard.svg -share/icons/HighContrast-SVG/scalable/apps/locale.svg -share/icons/HighContrast-SVG/scalable/apps/multimedia-volume-control.svg -share/icons/HighContrast-SVG/scalable/apps/multimedia.svg -share/icons/HighContrast-SVG/scalable/apps/openterm.svg -share/icons/HighContrast-SVG/scalable/apps/orca.svg -share/icons/HighContrast-SVG/scalable/apps/preferences-desktop-accessibility.svg -share/icons/HighContrast-SVG/scalable/apps/preferences-desktop-font.svg -share/icons/HighContrast-SVG/scalable/apps/preferences-desktop-locale.svg -share/icons/HighContrast-SVG/scalable/apps/preferences-desktop-screensaver.svg -share/icons/HighContrast-SVG/scalable/apps/preferences-system-network-proxy.svg -share/icons/HighContrast-SVG/scalable/apps/preferences-system-session.svg -share/icons/HighContrast-SVG/scalable/apps/preferences-system-windows.svg -share/icons/HighContrast-SVG/scalable/apps/redhat-filemanager.svg -share/icons/HighContrast-SVG/scalable/apps/screensaver.svg -share/icons/HighContrast-SVG/scalable/apps/stock_help.svg -share/icons/HighContrast-SVG/scalable/apps/susehelpcenter.svg -share/icons/HighContrast-SVG/scalable/apps/system-file-manager.svg -share/icons/HighContrast-SVG/scalable/apps/terminal.svg -share/icons/HighContrast-SVG/scalable/apps/text-editor.svg -share/icons/HighContrast-SVG/scalable/apps/tomboy.svg -share/icons/HighContrast-SVG/scalable/apps/utilities-system-monitor.svg -share/icons/HighContrast-SVG/scalable/apps/utilities-terminal.svg -share/icons/HighContrast-SVG/scalable/apps/volume-knob.svg -share/icons/HighContrast-SVG/scalable/apps/xfce-filemanager.svg -share/icons/HighContrast-SVG/scalable/apps/xfce-terminal.svg -share/icons/HighContrast-SVG/scalable/apps/xfce4-mixer.svg -share/icons/HighContrast-SVG/scalable/apps/xscreensaver.svg -share/icons/HighContrast-SVG/scalable/categories/applications-accessories.svg -share/icons/HighContrast-SVG/scalable/categories/applications-development.svg -share/icons/HighContrast-SVG/scalable/categories/applications-games.svg -share/icons/HighContrast-SVG/scalable/categories/applications-graphics.svg -share/icons/HighContrast-SVG/scalable/categories/applications-internet.svg -share/icons/HighContrast-SVG/scalable/categories/applications-multimedia.svg -share/icons/HighContrast-SVG/scalable/categories/applications-system.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-control-center.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-devel.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-globe.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-graphics.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-joystick.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-multimedia.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-settings.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-system.svg -share/icons/HighContrast-SVG/scalable/categories/gnome-util.svg -share/icons/HighContrast-SVG/scalable/categories/gtk-preferences.svg -share/icons/HighContrast-SVG/scalable/categories/input_devices_settings.svg -share/icons/HighContrast-SVG/scalable/categories/kcontrol.svg -share/icons/HighContrast-SVG/scalable/categories/package_development.svg -share/icons/HighContrast-SVG/scalable/categories/package_games.svg -share/icons/HighContrast-SVG/scalable/categories/package_graphics.svg -share/icons/HighContrast-SVG/scalable/categories/package_multimedia.svg -share/icons/HighContrast-SVG/scalable/categories/package_network.svg -share/icons/HighContrast-SVG/scalable/categories/package_settings.svg -share/icons/HighContrast-SVG/scalable/categories/package_system.svg -share/icons/HighContrast-SVG/scalable/categories/package_utilities.svg -share/icons/HighContrast-SVG/scalable/categories/preferences-desktop-peripherals.svg -share/icons/HighContrast-SVG/scalable/categories/preferences-desktop.svg -share/icons/HighContrast-SVG/scalable/categories/preferences-system.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-accessories.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-games.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-graphics.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-internet.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-preferences.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-programming.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-sound_video.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-system_settings.svg -share/icons/HighContrast-SVG/scalable/categories/redhat-system_tools.svg -share/icons/HighContrast-SVG/scalable/categories/stock_internet.svg -share/icons/HighContrast-SVG/scalable/categories/xfce-games.svg -share/icons/HighContrast-SVG/scalable/categories/xfce-graphics.svg -share/icons/HighContrast-SVG/scalable/categories/xfce-internet.svg -share/icons/HighContrast-SVG/scalable/categories/xfce-multimedia.svg -share/icons/HighContrast-SVG/scalable/categories/xfce-system-settings.svg -share/icons/HighContrast-SVG/scalable/categories/xfce-utils.svg -share/icons/HighContrast-SVG/scalable/categories/xfce4-settings.svg -share/icons/HighContrast-SVG/scalable/devices/3floppy_unmount.svg -share/icons/HighContrast-SVG/scalable/devices/audio-input-microphone.svg -share/icons/HighContrast-SVG/scalable/devices/battery.svg -share/icons/HighContrast-SVG/scalable/devices/camera-photo.svg -share/icons/HighContrast-SVG/scalable/devices/camera-video.svg -share/icons/HighContrast-SVG/scalable/devices/camera-web.svg -share/icons/HighContrast-SVG/scalable/devices/camera.svg -share/icons/HighContrast-SVG/scalable/devices/camera_unmount.svg -share/icons/HighContrast-SVG/scalable/devices/cdrom_unmount.svg -share/icons/HighContrast-SVG/scalable/devices/cdwriter_unmount.svg -share/icons/HighContrast-SVG/scalable/devices/chardevice.svg -share/icons/HighContrast-SVG/scalable/devices/computer.svg -share/icons/HighContrast-SVG/scalable/devices/display.svg -share/icons/HighContrast-SVG/scalable/devices/drive-cdrom.svg -share/icons/HighContrast-SVG/scalable/devices/drive-harddisk.svg -share/icons/HighContrast-SVG/scalable/devices/drive-optical.svg -share/icons/HighContrast-SVG/scalable/devices/drive-removable-media.svg -share/icons/HighContrast-SVG/scalable/devices/dvd_unmount.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-battery.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-cdrom-audio.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-cdrom.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-computer.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-disc-cdr.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-disc-cdrw.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-disc-dvdr-plus.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-disc-dvdr.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-disc-dvdram.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-disc-dvdrom.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-disc-dvdrw.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-dvd.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-ethernet.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-floppy.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-harddisk-1394.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-harddisk-usb.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-harddisk.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-ipod.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-keyboard.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-media-cf.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-media-ms.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-media-sdmmc.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-media-sm.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-mouse-ball.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-mouse-optical.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-printer.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-removable-1394.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-removable-usb.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-removable.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-dev-wavelan.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-fs-client.svg -share/icons/HighContrast-SVG/scalable/devices/gnome-stock-mic.svg -share/icons/HighContrast-SVG/scalable/devices/gtk-cdrom.svg -share/icons/HighContrast-SVG/scalable/devices/gtk-floppy.svg -share/icons/HighContrast-SVG/scalable/devices/gtk-harddisk.svg -share/icons/HighContrast-SVG/scalable/devices/harddrive.svg -share/icons/HighContrast-SVG/scalable/devices/hdd_unmount.svg -share/icons/HighContrast-SVG/scalable/devices/input-keyboard.svg -share/icons/HighContrast-SVG/scalable/devices/input-mouse.svg -share/icons/HighContrast-SVG/scalable/devices/input-tablet.svg -share/icons/HighContrast-SVG/scalable/devices/ipod_mount.svg -share/icons/HighContrast-SVG/scalable/devices/keyboard.svg -share/icons/HighContrast-SVG/scalable/devices/kjobviewer.svg -share/icons/HighContrast-SVG/scalable/devices/kxkb.svg -share/icons/HighContrast-SVG/scalable/devices/media-cdrom.svg -share/icons/HighContrast-SVG/scalable/devices/media-flash.svg -share/icons/HighContrast-SVG/scalable/devices/media-floppy.svg -share/icons/HighContrast-SVG/scalable/devices/media-optical.svg -share/icons/HighContrast-SVG/scalable/devices/media-tape.svg -share/icons/HighContrast-SVG/scalable/devices/mouse.svg -share/icons/HighContrast-SVG/scalable/devices/multimedia-player.svg -share/icons/HighContrast-SVG/scalable/devices/network-wired.svg -share/icons/HighContrast-SVG/scalable/devices/network-wireless.svg -share/icons/HighContrast-SVG/scalable/devices/pda.svg -share/icons/HighContrast-SVG/scalable/devices/phone.svg -share/icons/HighContrast-SVG/scalable/devices/printer-remote.svg -share/icons/HighContrast-SVG/scalable/devices/printer.svg -share/icons/HighContrast-SVG/scalable/devices/printer1.svg -share/icons/HighContrast-SVG/scalable/devices/printmgr.svg -share/icons/HighContrast-SVG/scalable/devices/scanner.svg -share/icons/HighContrast-SVG/scalable/devices/stock_cell-phone.svg -share/icons/HighContrast-SVG/scalable/devices/stock_mic.svg -share/icons/HighContrast-SVG/scalable/devices/stock_printers.svg -share/icons/HighContrast-SVG/scalable/devices/system-floppy.svg -share/icons/HighContrast-SVG/scalable/devices/system.svg -share/icons/HighContrast-SVG/scalable/devices/usbpendrive_unmount.svg -share/icons/HighContrast-SVG/scalable/devices/video-display.svg -share/icons/HighContrast-SVG/scalable/devices/xfce-printer.svg -share/icons/HighContrast-SVG/scalable/devices/xfce4-display.svg -share/icons/HighContrast-SVG/scalable/devices/xfce4-keyboard.svg -share/icons/HighContrast-SVG/scalable/devices/xfce4-mouse.svg -share/icons/HighContrast-SVG/scalable/devices/yast_HD.svg -share/icons/HighContrast-SVG/scalable/devices/yast_idetude.svg -share/icons/HighContrast-SVG/scalable/devices/yast_mouse.svg -share/icons/HighContrast-SVG/scalable/devices/yast_printer.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-default.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-documents.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-downloads.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-favorite.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-important.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-mail.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-noread.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-nowrite.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-photos.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-readonly.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-symbolic-link.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-system.svg -share/icons/HighContrast-SVG/scalable/emblems/emblem-unreadable.svg -share/icons/HighContrast-SVG/scalable/emblems/stock_mail-priority-high.svg -share/icons/HighContrast-SVG/scalable/emotes/face-cool.svg -share/icons/HighContrast-SVG/scalable/emotes/face-plain.svg -share/icons/HighContrast-SVG/scalable/emotes/face-sad.svg -share/icons/HighContrast-SVG/scalable/emotes/face-smile-big.svg -share/icons/HighContrast-SVG/scalable/emotes/face-smile.svg -share/icons/HighContrast-SVG/scalable/emotes/face-surprise.svg -share/icons/HighContrast-SVG/scalable/emotes/face-wink.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-1.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-15.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-2.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-3.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-4.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-5.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-6.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-7.svg -share/icons/HighContrast-SVG/scalable/emotes/stock_smiley-8.svg -share/icons/HighContrast-SVG/scalable/mimetypes/application-x-executable.svg -share/icons/HighContrast-SVG/scalable/mimetypes/ascii.svg -share/icons/HighContrast-SVG/scalable/mimetypes/audio-x-generic.svg -share/icons/HighContrast-SVG/scalable/mimetypes/binary.svg -share/icons/HighContrast-SVG/scalable/mimetypes/contents2.svg -share/icons/HighContrast-SVG/scalable/mimetypes/document.svg -share/icons/HighContrast-SVG/scalable/mimetypes/empty.svg -share/icons/HighContrast-SVG/scalable/mimetypes/exec.svg -share/icons/HighContrast-SVG/scalable/mimetypes/font-x-generic.svg -share/icons/HighContrast-SVG/scalable/mimetypes/font.svg -share/icons/HighContrast-SVG/scalable/mimetypes/font_bitmap.svg -share/icons/HighContrast-SVG/scalable/mimetypes/font_truetype.svg -share/icons/HighContrast-SVG/scalable/mimetypes/font_type1.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-fs-executable.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-fs-regular.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-magicpoint.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-msword.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-ogg.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-pdf.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-postscript.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-rtf.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.ms-excel.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.ms-powerpoint.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.rn-realmedia.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.stardivision.calc.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.stardivision.impress.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.stardivision.writer.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.calc.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.impress.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-vnd.sun.xml.writer.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-wordperfect.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-abiword.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-applix-spreadsheet.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-applix-word.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-dvi.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-executable.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-font-afm.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-font-bdf.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-font-linux-psf.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-font-pcf.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-font-sunos-news.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-font-ttf.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-gnumeric.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-gzpostscript.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-killustrator.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-kpresenter.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-kspread.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-kword.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-ms-dos-executable.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-perl.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-php.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-python-bytecode.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-scribus.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-shellscript.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-shockwave-flash.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-x-tex.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-application-xhtml+xml.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-audio.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-image.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-html.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-vnd.wap.wml.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-x-csh.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-x-python.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-x-sh.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-x-vcalendar.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-x-vcard.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text-x-zsh.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-text.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-video.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gnome-mime-x-font-afm.svg -share/icons/HighContrast-SVG/scalable/mimetypes/gtk-file.svg -share/icons/HighContrast-SVG/scalable/mimetypes/html.svg -share/icons/HighContrast-SVG/scalable/mimetypes/image-x-generic.svg -share/icons/HighContrast-SVG/scalable/mimetypes/image.svg -share/icons/HighContrast-SVG/scalable/mimetypes/kpresenter_kpr.svg -share/icons/HighContrast-SVG/scalable/mimetypes/mime_ascii.svg -share/icons/HighContrast-SVG/scalable/mimetypes/misc.svg -share/icons/HighContrast-SVG/scalable/mimetypes/package_editors.svg -share/icons/HighContrast-SVG/scalable/mimetypes/package_wordprocessing.svg -share/icons/HighContrast-SVG/scalable/mimetypes/plan.svg -share/icons/HighContrast-SVG/scalable/mimetypes/shellscript.svg -share/icons/HighContrast-SVG/scalable/mimetypes/sound.svg -share/icons/HighContrast-SVG/scalable/mimetypes/spreadsheet.svg -share/icons/HighContrast-SVG/scalable/mimetypes/stock_addressbook.svg -share/icons/HighContrast-SVG/scalable/mimetypes/stock_calendar.svg -share/icons/HighContrast-SVG/scalable/mimetypes/stock_script.svg -share/icons/HighContrast-SVG/scalable/mimetypes/template_source.svg -share/icons/HighContrast-SVG/scalable/mimetypes/text-html.svg -share/icons/HighContrast-SVG/scalable/mimetypes/text-x-generic-template.svg -share/icons/HighContrast-SVG/scalable/mimetypes/text-x-generic.svg -share/icons/HighContrast-SVG/scalable/mimetypes/text-x-preview.svg -share/icons/HighContrast-SVG/scalable/mimetypes/text-x-script.svg -share/icons/HighContrast-SVG/scalable/mimetypes/txt.svg -share/icons/HighContrast-SVG/scalable/mimetypes/txt2.svg -share/icons/HighContrast-SVG/scalable/mimetypes/unknown.svg -share/icons/HighContrast-SVG/scalable/mimetypes/vcalendar.svg -share/icons/HighContrast-SVG/scalable/mimetypes/vcard.svg -share/icons/HighContrast-SVG/scalable/mimetypes/video-x-generic.svg -share/icons/HighContrast-SVG/scalable/mimetypes/video.svg -share/icons/HighContrast-SVG/scalable/mimetypes/wordprocessing.svg -share/icons/HighContrast-SVG/scalable/mimetypes/www.svg -share/icons/HighContrast-SVG/scalable/mimetypes/x-office-address-book.svg -share/icons/HighContrast-SVG/scalable/mimetypes/x-office-calendar.svg -share/icons/HighContrast-SVG/scalable/mimetypes/x-office-document.svg -share/icons/HighContrast-SVG/scalable/mimetypes/x-office-presentation.svg -share/icons/HighContrast-SVG/scalable/mimetypes/x-office-spreadsheet.svg -share/icons/HighContrast-SVG/scalable/places/desktop.svg -share/icons/HighContrast-SVG/scalable/places/distributor-logo.svg -share/icons/HighContrast-SVG/scalable/places/emptytrash.svg -share/icons/HighContrast-SVG/scalable/places/folder-remote.svg -share/icons/HighContrast-SVG/scalable/places/folder.svg -share/icons/HighContrast-SVG/scalable/places/folder_home.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-desktop.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-directory.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-ftp.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-home.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-network.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-nfs.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-server.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-share.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-smb.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-ssh.svg -share/icons/HighContrast-SVG/scalable/places/gnome-fs-trash-empty.svg -share/icons/HighContrast-SVG/scalable/places/gnome-main-menu.svg -share/icons/HighContrast-SVG/scalable/places/gnome-mime-x-directory-nfs-server.svg -share/icons/HighContrast-SVG/scalable/places/gnome-mime-x-directory-smb-server.svg -share/icons/HighContrast-SVG/scalable/places/gnome-mime-x-directory-smb-share.svg -share/icons/HighContrast-SVG/scalable/places/gnome-mime-x-directory-smb-workgroup.svg -share/icons/HighContrast-SVG/scalable/places/gnome-stock-trash.svg -share/icons/HighContrast-SVG/scalable/places/gtk-directory.svg -share/icons/HighContrast-SVG/scalable/places/gtk-network.svg -share/icons/HighContrast-SVG/scalable/places/inode-directory.svg -share/icons/HighContrast-SVG/scalable/places/library-internet-radio.svg -share/icons/HighContrast-SVG/scalable/places/library-podcast.svg -share/icons/HighContrast-SVG/scalable/places/network-server.svg -share/icons/HighContrast-SVG/scalable/places/network-workgroup.svg -share/icons/HighContrast-SVG/scalable/places/network.svg -share/icons/HighContrast-SVG/scalable/places/network_local.svg -share/icons/HighContrast-SVG/scalable/places/novell-button.svg -share/icons/HighContrast-SVG/scalable/places/playlist-automatic.svg -share/icons/HighContrast-SVG/scalable/places/playlist.svg -share/icons/HighContrast-SVG/scalable/places/redhat-network-server.svg -share/icons/HighContrast-SVG/scalable/places/server.svg -share/icons/HighContrast-SVG/scalable/places/start-here.svg -share/icons/HighContrast-SVG/scalable/places/stock_folder.svg -share/icons/HighContrast-SVG/scalable/places/trashcan_empty.svg -share/icons/HighContrast-SVG/scalable/places/user-bookmarks.svg -share/icons/HighContrast-SVG/scalable/places/user-desktop.svg -share/icons/HighContrast-SVG/scalable/places/user-home.svg -share/icons/HighContrast-SVG/scalable/places/user-trash.svg -share/icons/HighContrast-SVG/scalable/places/xfce-trash_empty.svg -share/icons/HighContrast-SVG/scalable/status/audio-volume-high.svg -share/icons/HighContrast-SVG/scalable/status/audio-volume-low.svg -share/icons/HighContrast-SVG/scalable/status/audio-volume-medium.svg -share/icons/HighContrast-SVG/scalable/status/audio-volume-muted.svg -share/icons/HighContrast-SVG/scalable/status/battery-caution.svg -share/icons/HighContrast-SVG/scalable/status/battery-low.svg -share/icons/HighContrast-SVG/scalable/status/connect_no.svg -share/icons/HighContrast-SVG/scalable/status/dialog-error.svg -share/icons/HighContrast-SVG/scalable/status/dialog-information.svg -share/icons/HighContrast-SVG/scalable/status/dialog-password.svg -share/icons/HighContrast-SVG/scalable/status/dialog-question.svg -share/icons/HighContrast-SVG/scalable/status/dialog-warning.svg -share/icons/HighContrast-SVG/scalable/status/edittrash.svg -share/icons/HighContrast-SVG/scalable/status/error.svg -share/icons/HighContrast-SVG/scalable/status/folder-drag-accept.svg -share/icons/HighContrast-SVG/scalable/status/folder-open.svg -share/icons/HighContrast-SVG/scalable/status/folder-visiting.svg -share/icons/HighContrast-SVG/scalable/status/folder_open.svg -share/icons/HighContrast-SVG/scalable/status/gnome-fs-directory-accept.svg -share/icons/HighContrast-SVG/scalable/status/gnome-fs-directory-visiting.svg -share/icons/HighContrast-SVG/scalable/status/gnome-fs-trash-full.svg -share/icons/HighContrast-SVG/scalable/status/gnome-netstatus-disconn.svg -share/icons/HighContrast-SVG/scalable/status/gnome-stock-trash-full.svg -share/icons/HighContrast-SVG/scalable/status/gtk-dialog-authentication.svg -share/icons/HighContrast-SVG/scalable/status/gtk-dialog-error.svg -share/icons/HighContrast-SVG/scalable/status/gtk-dialog-info.svg -share/icons/HighContrast-SVG/scalable/status/gtk-dialog-question.svg -share/icons/HighContrast-SVG/scalable/status/gtk-dialog-warning.svg -share/icons/HighContrast-SVG/scalable/status/gtk-missing-image.svg -share/icons/HighContrast-SVG/scalable/status/image-missing.svg -share/icons/HighContrast-SVG/scalable/status/important.svg -share/icons/HighContrast-SVG/scalable/status/info.svg -share/icons/HighContrast-SVG/scalable/status/mail-attachment.svg -share/icons/HighContrast-SVG/scalable/status/media-playlist-repeat.svg -share/icons/HighContrast-SVG/scalable/status/media-playlist-shuffle.svg -share/icons/HighContrast-SVG/scalable/status/messagebox_critical.svg -share/icons/HighContrast-SVG/scalable/status/messagebox_info.svg -share/icons/HighContrast-SVG/scalable/status/messagebox_warning.svg -share/icons/HighContrast-SVG/scalable/status/network-offline.svg -share/icons/HighContrast-SVG/scalable/status/network-online.svg -share/icons/HighContrast-SVG/scalable/status/nm-no-connection.svg -share/icons/HighContrast-SVG/scalable/status/printer-printing.svg -share/icons/HighContrast-SVG/scalable/status/software-update-available.svg -share/icons/HighContrast-SVG/scalable/status/software-update-urgent.svg -share/icons/HighContrast-SVG/scalable/status/stock_attach.svg -share/icons/HighContrast-SVG/scalable/status/stock_dialog-error.svg -share/icons/HighContrast-SVG/scalable/status/stock_dialog-info.svg -share/icons/HighContrast-SVG/scalable/status/stock_dialog-question.svg -share/icons/HighContrast-SVG/scalable/status/stock_dialog-warning.svg -share/icons/HighContrast-SVG/scalable/status/stock_open.svg -share/icons/HighContrast-SVG/scalable/status/stock_repeat.svg -share/icons/HighContrast-SVG/scalable/status/stock_shuffle.svg -share/icons/HighContrast-SVG/scalable/status/stock_trash_full.svg -share/icons/HighContrast-SVG/scalable/status/stock_volume-0.svg -share/icons/HighContrast-SVG/scalable/status/stock_volume-max.svg -share/icons/HighContrast-SVG/scalable/status/stock_volume-med.svg -share/icons/HighContrast-SVG/scalable/status/stock_volume-min.svg -share/icons/HighContrast-SVG/scalable/status/stock_volume-mute.svg -share/icons/HighContrast-SVG/scalable/status/stock_volume.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-cloudy.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-few-clouds.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-fog.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-night-clear.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-night-few-clouds.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-showers.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-snow.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-storm.svg -share/icons/HighContrast-SVG/scalable/status/stock_weather-sunny.svg -share/icons/HighContrast-SVG/scalable/status/sunny.svg -share/icons/HighContrast-SVG/scalable/status/trashcan_full.svg -share/icons/HighContrast-SVG/scalable/status/user-trash-full.svg -share/icons/HighContrast-SVG/scalable/status/weather-clear-night.svg -share/icons/HighContrast-SVG/scalable/status/weather-clear.svg -share/icons/HighContrast-SVG/scalable/status/weather-few-clouds-night.svg -share/icons/HighContrast-SVG/scalable/status/weather-few-clouds.svg -share/icons/HighContrast-SVG/scalable/status/weather-fog.svg -share/icons/HighContrast-SVG/scalable/status/weather-overcast.svg -share/icons/HighContrast-SVG/scalable/status/weather-showers-scattered.svg -share/icons/HighContrast-SVG/scalable/status/weather-showers.svg -share/icons/HighContrast-SVG/scalable/status/weather-snow.svg -share/icons/HighContrast-SVG/scalable/status/weather-storm.svg -share/icons/HighContrast-SVG/scalable/status/xfce-trash_full.svg -share/icons/HighContrast/index.theme -share/icons/HighContrastInverse/index.theme -share/icons/HighContrastLargePrint/36x36/animations/gnome-spinner-rest.png -share/icons/HighContrastLargePrint/36x36/animations/gnome-spinner.png -share/icons/HighContrastLargePrint/36x36/animations/process-idle.png -share/icons/HighContrastLargePrint/36x36/animations/process-working.png -share/icons/HighContrastLargePrint/48x48/actions/exit.png -share/icons/HighContrastLargePrint/48x48/actions/gnome-logout.png -share/icons/HighContrastLargePrint/48x48/actions/gnome-run.png -share/icons/HighContrastLargePrint/48x48/actions/gnome-searchtool.png -share/icons/HighContrastLargePrint/48x48/actions/gnome-shutdown.png -share/icons/HighContrastLargePrint/48x48/actions/go-home.png -share/icons/HighContrastLargePrint/48x48/actions/gohome.png -share/icons/HighContrastLargePrint/48x48/actions/gtk-execute.png -share/icons/HighContrastLargePrint/48x48/actions/gtk-home.png -share/icons/HighContrastLargePrint/48x48/actions/gtk-media-pause.png -share/icons/HighContrastLargePrint/48x48/actions/gtk-refresh.png -share/icons/HighContrastLargePrint/48x48/actions/kfind.png -share/icons/HighContrastLargePrint/48x48/actions/kfm_home.png -share/icons/HighContrastLargePrint/48x48/actions/media-playback-pause.png -share/icons/HighContrastLargePrint/48x48/actions/player_pause.png -share/icons/HighContrastLargePrint/48x48/actions/redhat-home.png -share/icons/HighContrastLargePrint/48x48/actions/reload.png -share/icons/HighContrastLargePrint/48x48/actions/reload3.png -share/icons/HighContrastLargePrint/48x48/actions/reload_all_tabs.png -share/icons/HighContrastLargePrint/48x48/actions/reload_page.png -share/icons/HighContrastLargePrint/48x48/actions/search.png -share/icons/HighContrastLargePrint/48x48/actions/stock_home.png -share/icons/HighContrastLargePrint/48x48/actions/stock_media-pause.png -share/icons/HighContrastLargePrint/48x48/actions/stock_new-tab.png -share/icons/HighContrastLargePrint/48x48/actions/stock_refresh.png -share/icons/HighContrastLargePrint/48x48/actions/system-log-out.png -share/icons/HighContrastLargePrint/48x48/actions/system-run.png -share/icons/HighContrastLargePrint/48x48/actions/system-search.png -share/icons/HighContrastLargePrint/48x48/actions/system-shutdown.png -share/icons/HighContrastLargePrint/48x48/actions/view-refresh.png -share/icons/HighContrastLargePrint/48x48/apps/access.png -share/icons/HighContrastLargePrint/48x48/apps/accessibility-directory.png -share/icons/HighContrastLargePrint/48x48/apps/accessories-calculator.png -share/icons/HighContrastLargePrint/48x48/apps/accessories-character-map.png -share/icons/HighContrastLargePrint/48x48/apps/accessories-text-editor.png -share/icons/HighContrastLargePrint/48x48/apps/advanced-directory.png -share/icons/HighContrastLargePrint/48x48/apps/applets-screenshooter.png -share/icons/HighContrastLargePrint/48x48/apps/arts.png -share/icons/HighContrastLargePrint/48x48/apps/ax-applet.png -share/icons/HighContrastLargePrint/48x48/apps/background.png -share/icons/HighContrastLargePrint/48x48/apps/calc.png -share/icons/HighContrastLargePrint/48x48/apps/charpick.png -share/icons/HighContrastLargePrint/48x48/apps/clock.png -share/icons/HighContrastLargePrint/48x48/apps/config-language.png -share/icons/HighContrastLargePrint/48x48/apps/display-capplet.png -share/icons/HighContrastLargePrint/48x48/apps/eog.png -share/icons/HighContrastLargePrint/48x48/apps/evince.png -share/icons/HighContrastLargePrint/48x48/apps/evolution.png -share/icons/HighContrastLargePrint/48x48/apps/file-manager.png -share/icons/HighContrastLargePrint/48x48/apps/file-roller.png -share/icons/HighContrastLargePrint/48x48/apps/fonts.png -share/icons/HighContrastLargePrint/48x48/apps/gdict.png -share/icons/HighContrastLargePrint/48x48/apps/ghex.png -share/icons/HighContrastLargePrint/48x48/apps/gimp.png -share/icons/HighContrastLargePrint/48x48/apps/gkb.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-application-generic.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-audio2.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-calc3.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-calculator.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-ccmime.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-ccscreensaver.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-cd.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-character-map.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-folder-generic.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-grecord.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-help.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-home.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-info.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-log.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-logo-icon-transparent.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-mailcheck.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-mini-commander.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-mixer-applet.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-mixer.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-panel.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-searchtool-animation-rest.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-searchtool-animation.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-session.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-accessibility-keyboard.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-accessibility-technologies.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-background.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-default-applications.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-font.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-keybindings.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-sound.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-theme.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-settings-ui-behavior.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-starthere.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-terminal.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-window-manager.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-windows.png -share/icons/HighContrastLargePrint/48x48/apps/gnome-workspace.png -share/icons/HighContrastLargePrint/48x48/apps/gok.png -share/icons/HighContrastLargePrint/48x48/apps/gtk-help.png -share/icons/HighContrastLargePrint/48x48/apps/gucharmap.png -share/icons/HighContrastLargePrint/48x48/apps/help-browser.png -share/icons/HighContrastLargePrint/48x48/apps/help.png -share/icons/HighContrastLargePrint/48x48/apps/kcalc.png -share/icons/HighContrastLargePrint/48x48/apps/kcharselect.png -share/icons/HighContrastLargePrint/48x48/apps/kcmkwm.png -share/icons/HighContrastLargePrint/48x48/apps/kcmsound.png -share/icons/HighContrastLargePrint/48x48/apps/kedit.png -share/icons/HighContrastLargePrint/48x48/apps/key_bindings.png -share/icons/HighContrastLargePrint/48x48/apps/kfm.png -share/icons/HighContrastLargePrint/48x48/apps/khelpcenter.png -share/icons/HighContrastLargePrint/48x48/apps/knotify.png -share/icons/HighContrastLargePrint/48x48/apps/konsole.png -share/icons/HighContrastLargePrint/48x48/apps/kwin.png -share/icons/HighContrastLargePrint/48x48/apps/launcher-program.png -share/icons/HighContrastLargePrint/48x48/apps/locale.png -share/icons/HighContrastLargePrint/48x48/apps/mozilla-icon.png -share/icons/HighContrastLargePrint/48x48/apps/multimedia-volume-control.png -share/icons/HighContrastLargePrint/48x48/apps/multimedia.png -share/icons/HighContrastLargePrint/48x48/apps/openterm.png -share/icons/HighContrastLargePrint/48x48/apps/orca.png -share/icons/HighContrastLargePrint/48x48/apps/panel-drawer.png -share/icons/HighContrastLargePrint/48x48/apps/panel-force-quit.png -share/icons/HighContrastLargePrint/48x48/apps/perfmeter.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-accessibility.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-font.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-keyboard-shortcuts.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-keyboard.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-locale.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-sound.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-theme.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-desktop-wallpaper.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-system-session.png -share/icons/HighContrastLargePrint/48x48/apps/preferences-system-windows.png -share/icons/HighContrastLargePrint/48x48/apps/redhat-filemanager.png -share/icons/HighContrastLargePrint/48x48/apps/session-properties.png -share/icons/HighContrastLargePrint/48x48/apps/smc.png -share/icons/HighContrastLargePrint/48x48/apps/sound-juicer.png -share/icons/HighContrastLargePrint/48x48/apps/star.png -share/icons/HighContrastLargePrint/48x48/apps/stock_help.png -share/icons/HighContrastLargePrint/48x48/apps/style.png -share/icons/HighContrastLargePrint/48x48/apps/susehelpcenter.png -share/icons/HighContrastLargePrint/48x48/apps/system-file-manager.png -share/icons/HighContrastLargePrint/48x48/apps/terminal.png -share/icons/HighContrastLargePrint/48x48/apps/text-editor.png -share/icons/HighContrastLargePrint/48x48/apps/utilities-terminal.png -share/icons/HighContrastLargePrint/48x48/apps/volume-knob.png -share/icons/HighContrastLargePrint/48x48/apps/wallpaper.png -share/icons/HighContrastLargePrint/48x48/apps/window-capplet.png -share/icons/HighContrastLargePrint/48x48/apps/xfce-filemanager.png -share/icons/HighContrastLargePrint/48x48/apps/xfce-terminal.png -share/icons/HighContrastLargePrint/48x48/apps/xfce4-backdrop.png -share/icons/HighContrastLargePrint/48x48/apps/xfce4-mixer.png -share/icons/HighContrastLargePrint/48x48/apps/xfce4-session.png -share/icons/HighContrastLargePrint/48x48/apps/xfce4-sound.png -share/icons/HighContrastLargePrint/48x48/apps/xfwm4.png -share/icons/HighContrastLargePrint/48x48/categories/applications-accessories.png -share/icons/HighContrastLargePrint/48x48/categories/applications-development.png -share/icons/HighContrastLargePrint/48x48/categories/applications-engineering.png -share/icons/HighContrastLargePrint/48x48/categories/applications-games.png -share/icons/HighContrastLargePrint/48x48/categories/applications-graphics.png -share/icons/HighContrastLargePrint/48x48/categories/applications-internet.png -share/icons/HighContrastLargePrint/48x48/categories/applications-multimedia.png -share/icons/HighContrastLargePrint/48x48/categories/applications-office.png -share/icons/HighContrastLargePrint/48x48/categories/applications-other.png -share/icons/HighContrastLargePrint/48x48/categories/applications-science.png -share/icons/HighContrastLargePrint/48x48/categories/applications-system.png -share/icons/HighContrastLargePrint/48x48/categories/applications-utilities.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-applications.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-control-center.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-devel.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-globe.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-graphics.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-joystick.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-multimedia.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-other.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-settings.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-system.png -share/icons/HighContrastLargePrint/48x48/categories/gnome-util.png -share/icons/HighContrastLargePrint/48x48/categories/gtk-preferences.png -share/icons/HighContrastLargePrint/48x48/categories/input_devices_settings.png -share/icons/HighContrastLargePrint/48x48/categories/kcontrol.png -share/icons/HighContrastLargePrint/48x48/categories/package_development.png -share/icons/HighContrastLargePrint/48x48/categories/package_games.png -share/icons/HighContrastLargePrint/48x48/categories/package_graphics.png -share/icons/HighContrastLargePrint/48x48/categories/package_multimedia.png -share/icons/HighContrastLargePrint/48x48/categories/package_network.png -share/icons/HighContrastLargePrint/48x48/categories/package_office.png -share/icons/HighContrastLargePrint/48x48/categories/package_settings.png -share/icons/HighContrastLargePrint/48x48/categories/package_system.png -share/icons/HighContrastLargePrint/48x48/categories/package_utilities.png -share/icons/HighContrastLargePrint/48x48/categories/preferences-desktop-peripherals.png -share/icons/HighContrastLargePrint/48x48/categories/preferences-desktop-personal.png -share/icons/HighContrastLargePrint/48x48/categories/preferences-desktop.png -share/icons/HighContrastLargePrint/48x48/categories/preferences-other.png -share/icons/HighContrastLargePrint/48x48/categories/preferences-system-network.png -share/icons/HighContrastLargePrint/48x48/categories/preferences-system.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-accessories.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-games.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-graphics.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-internet.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-office.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-preferences.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-programming.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-sound_video.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-system_settings.png -share/icons/HighContrastLargePrint/48x48/categories/redhat-system_tools.png -share/icons/HighContrastLargePrint/48x48/categories/stock_internet.png -share/icons/HighContrastLargePrint/48x48/categories/xfce-games.png -share/icons/HighContrastLargePrint/48x48/categories/xfce-graphics.png -share/icons/HighContrastLargePrint/48x48/categories/xfce-internet.png -share/icons/HighContrastLargePrint/48x48/categories/xfce-multimedia.png -share/icons/HighContrastLargePrint/48x48/categories/xfce-office.png -share/icons/HighContrastLargePrint/48x48/categories/xfce-system-settings.png -share/icons/HighContrastLargePrint/48x48/categories/xfce-utils.png -share/icons/HighContrastLargePrint/48x48/categories/xfce4-settings.png -share/icons/HighContrastLargePrint/48x48/devices/3floppy_unmount.png -share/icons/HighContrastLargePrint/48x48/devices/cdrom_unmount.png -share/icons/HighContrastLargePrint/48x48/devices/cdwriter_unmount.png -share/icons/HighContrastLargePrint/48x48/devices/computer.png -share/icons/HighContrastLargePrint/48x48/devices/drive-cdrom.png -share/icons/HighContrastLargePrint/48x48/devices/drive-harddisk.png -share/icons/HighContrastLargePrint/48x48/devices/drive-optical.png -share/icons/HighContrastLargePrint/48x48/devices/drive-removable-media.png -share/icons/HighContrastLargePrint/48x48/devices/dvd_unmount.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-cdrom-audio.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-cdrom.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-computer.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-disc-cdr.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-disc-cdrw.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-disc-dvdr-plus.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-disc-dvdr.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-disc-dvdram.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-disc-dvdrom.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-disc-dvdrw.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-dvd.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-floppy.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-harddisk-1394.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-harddisk-usb.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-harddisk.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-keyboard.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-mouse-ball.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-mouse-optical.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-printer-network.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-printer-new.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-printer.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-removable-1394.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-removable-usb.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-dev-removable.png -share/icons/HighContrastLargePrint/48x48/devices/gnome-fs-client.png -share/icons/HighContrastLargePrint/48x48/devices/gtk-cdrom.png -share/icons/HighContrastLargePrint/48x48/devices/gtk-floppy.png -share/icons/HighContrastLargePrint/48x48/devices/gtk-harddisk.png -share/icons/HighContrastLargePrint/48x48/devices/harddrive.png -share/icons/HighContrastLargePrint/48x48/devices/hdd_unmount.png -share/icons/HighContrastLargePrint/48x48/devices/input-keyboard.png -share/icons/HighContrastLargePrint/48x48/devices/input-mouse.png -share/icons/HighContrastLargePrint/48x48/devices/keyboard.png -share/icons/HighContrastLargePrint/48x48/devices/kjobviewer.png -share/icons/HighContrastLargePrint/48x48/devices/kxkb.png -share/icons/HighContrastLargePrint/48x48/devices/media-cdrom.png -share/icons/HighContrastLargePrint/48x48/devices/media-floppy.png -share/icons/HighContrastLargePrint/48x48/devices/media-optical.png -share/icons/HighContrastLargePrint/48x48/devices/mouse.png -share/icons/HighContrastLargePrint/48x48/devices/printer-remote.png -share/icons/HighContrastLargePrint/48x48/devices/printer.png -share/icons/HighContrastLargePrint/48x48/devices/printer1.png -share/icons/HighContrastLargePrint/48x48/devices/printmgr.png -share/icons/HighContrastLargePrint/48x48/devices/stock_printers.png -share/icons/HighContrastLargePrint/48x48/devices/system-floppy.png -share/icons/HighContrastLargePrint/48x48/devices/system.png -share/icons/HighContrastLargePrint/48x48/devices/usbpendrive_unmount.png -share/icons/HighContrastLargePrint/48x48/devices/xfce-printer.png -share/icons/HighContrastLargePrint/48x48/devices/xfce4-keyboard.png -share/icons/HighContrastLargePrint/48x48/devices/xfce4-mouse.png -share/icons/HighContrastLargePrint/48x48/devices/yast_HD.png -share/icons/HighContrastLargePrint/48x48/devices/yast_idetude.png -share/icons/HighContrastLargePrint/48x48/devices/yast_mouse.png -share/icons/HighContrastLargePrint/48x48/devices/yast_printer.png -share/icons/HighContrastLargePrint/48x48/emblems/emblem-default.png -share/icons/HighContrastLargePrint/48x48/emblems/emblem-desktop.png -share/icons/HighContrastLargePrint/48x48/emblems/emblem-important.png -share/icons/HighContrastLargePrint/48x48/emblems/emblem-noread.png -share/icons/HighContrastLargePrint/48x48/emblems/emblem-personal.png -share/icons/HighContrastLargePrint/48x48/emblems/emblem-special.png -share/icons/HighContrastLargePrint/48x48/emblems/emblem-unreadable.png -share/icons/HighContrastLargePrint/48x48/emblems/stock_mail-priority-high.png -share/icons/HighContrastLargePrint/48x48/mimetypes/application-x-executable.png -share/icons/HighContrastLargePrint/48x48/mimetypes/ascii.png -share/icons/HighContrastLargePrint/48x48/mimetypes/audio-x-generic.png -share/icons/HighContrastLargePrint/48x48/mimetypes/binary.png -share/icons/HighContrastLargePrint/48x48/mimetypes/contents2.png -share/icons/HighContrastLargePrint/48x48/mimetypes/deb.png -share/icons/HighContrastLargePrint/48x48/mimetypes/empty.png -share/icons/HighContrastLargePrint/48x48/mimetypes/exec.png -share/icons/HighContrastLargePrint/48x48/mimetypes/folder_tar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/font-x-generic.png -share/icons/HighContrastLargePrint/48x48/mimetypes/font.png -share/icons/HighContrastLargePrint/48x48/mimetypes/font_bitmap.png -share/icons/HighContrastLargePrint/48x48/mimetypes/font_truetype.png -share/icons/HighContrastLargePrint/48x48/mimetypes/font_type1.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-fs-executable.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-fs-regular.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-ogg.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-7z-compressed.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-archive.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-arj.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-bzip.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-compress.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-compressed-tar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-core-file.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-cpio.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-deb.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-executable.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-font-afm.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-font-bdf.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-font-linux-psf.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-font-pcf.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-font-sunos-news.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-font-ttf.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-gzip.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-jar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-killustrator.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-lha.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-lhz.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-lzma.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-ms-dos-executable.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-rar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-rpm.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-stuffit.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-tar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-x-tarz.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-application-zip.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-audio.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-image.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-text-x-vcard.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-text.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-video.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-mime-x-font-afm.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gnome-package.png -share/icons/HighContrastLargePrint/48x48/mimetypes/gtk-file.png -share/icons/HighContrastLargePrint/48x48/mimetypes/image-x-generic.png -share/icons/HighContrastLargePrint/48x48/mimetypes/image.png -share/icons/HighContrastLargePrint/48x48/mimetypes/mime_ascii.png -share/icons/HighContrastLargePrint/48x48/mimetypes/misc.png -share/icons/HighContrastLargePrint/48x48/mimetypes/package-x-generic.png -share/icons/HighContrastLargePrint/48x48/mimetypes/package.png -share/icons/HighContrastLargePrint/48x48/mimetypes/package_editors.png -share/icons/HighContrastLargePrint/48x48/mimetypes/rpm.png -share/icons/HighContrastLargePrint/48x48/mimetypes/sound.png -share/icons/HighContrastLargePrint/48x48/mimetypes/stock_addressbook.png -share/icons/HighContrastLargePrint/48x48/mimetypes/tar.png -share/icons/HighContrastLargePrint/48x48/mimetypes/text-x-generic.png -share/icons/HighContrastLargePrint/48x48/mimetypes/text-x-preview.png -share/icons/HighContrastLargePrint/48x48/mimetypes/tgz.png -share/icons/HighContrastLargePrint/48x48/mimetypes/txt.png -share/icons/HighContrastLargePrint/48x48/mimetypes/txt2.png -share/icons/HighContrastLargePrint/48x48/mimetypes/unknown.png -share/icons/HighContrastLargePrint/48x48/mimetypes/vcard.png -share/icons/HighContrastLargePrint/48x48/mimetypes/video-x-generic.png -share/icons/HighContrastLargePrint/48x48/mimetypes/video.png -share/icons/HighContrastLargePrint/48x48/mimetypes/x-office-address-book.png -share/icons/HighContrastLargePrint/48x48/mimetypes/zip.png -share/icons/HighContrastLargePrint/48x48/places/desktop.png -share/icons/HighContrastLargePrint/48x48/places/distributor-logo.png -share/icons/HighContrastLargePrint/48x48/places/emptytrash.png -share/icons/HighContrastLargePrint/48x48/places/folder-remote.png -share/icons/HighContrastLargePrint/48x48/places/folder.icon -share/icons/HighContrastLargePrint/48x48/places/folder.png -share/icons/HighContrastLargePrint/48x48/places/folder_home.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-desktop.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-directory.icon -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-directory.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-ftp.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-home.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-network.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-nfs.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-server.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-share.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-smb.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-ssh.png -share/icons/HighContrastLargePrint/48x48/places/gnome-fs-trash-empty.png -share/icons/HighContrastLargePrint/48x48/places/gnome-main-menu.png -share/icons/HighContrastLargePrint/48x48/places/gnome-mime-x-directory-nfs-server.png -share/icons/HighContrastLargePrint/48x48/places/gnome-mime-x-directory-smb-server.png -share/icons/HighContrastLargePrint/48x48/places/gnome-mime-x-directory-smb-share.png -share/icons/HighContrastLargePrint/48x48/places/gnome-mime-x-directory-smb-workgroup.png -share/icons/HighContrastLargePrint/48x48/places/gnome-stock-trash.png -share/icons/HighContrastLargePrint/48x48/places/gtk-directory.icon -share/icons/HighContrastLargePrint/48x48/places/gtk-directory.png -share/icons/HighContrastLargePrint/48x48/places/gtk-network.png -share/icons/HighContrastLargePrint/48x48/places/inode-directory.icon -share/icons/HighContrastLargePrint/48x48/places/inode-directory.png -share/icons/HighContrastLargePrint/48x48/places/network-server.png -share/icons/HighContrastLargePrint/48x48/places/network-workgroup.png -share/icons/HighContrastLargePrint/48x48/places/network.png -share/icons/HighContrastLargePrint/48x48/places/network_local.png -share/icons/HighContrastLargePrint/48x48/places/novell-button.png -share/icons/HighContrastLargePrint/48x48/places/redhat-network-server.png -share/icons/HighContrastLargePrint/48x48/places/server.png -share/icons/HighContrastLargePrint/48x48/places/start-here.png -share/icons/HighContrastLargePrint/48x48/places/stock_folder.icon -share/icons/HighContrastLargePrint/48x48/places/stock_folder.png -share/icons/HighContrastLargePrint/48x48/places/trashcan_empty.png -share/icons/HighContrastLargePrint/48x48/places/user-desktop.png -share/icons/HighContrastLargePrint/48x48/places/user-home.png -share/icons/HighContrastLargePrint/48x48/places/user-trash.png -share/icons/HighContrastLargePrint/48x48/places/xfce-trash_empty.png -share/icons/HighContrastLargePrint/48x48/status/audio-volume-high.png -share/icons/HighContrastLargePrint/48x48/status/audio-volume-low.png -share/icons/HighContrastLargePrint/48x48/status/audio-volume-medium.png -share/icons/HighContrastLargePrint/48x48/status/audio-volume-muted.png -share/icons/HighContrastLargePrint/48x48/status/edittrash.png -share/icons/HighContrastLargePrint/48x48/status/folder-drag-accept.icon -share/icons/HighContrastLargePrint/48x48/status/folder-drag-accept.png -share/icons/HighContrastLargePrint/48x48/status/gnome-fs-directory-accept.icon -share/icons/HighContrastLargePrint/48x48/status/gnome-fs-directory-accept.png -share/icons/HighContrastLargePrint/48x48/status/gnome-fs-trash-full.png -share/icons/HighContrastLargePrint/48x48/status/gnome-stock-trash-full.png -share/icons/HighContrastLargePrint/48x48/status/stock_trash_full.png -share/icons/HighContrastLargePrint/48x48/status/stock_volume-0.png -share/icons/HighContrastLargePrint/48x48/status/stock_volume-max.png -share/icons/HighContrastLargePrint/48x48/status/stock_volume-med.png -share/icons/HighContrastLargePrint/48x48/status/stock_volume-min.png -share/icons/HighContrastLargePrint/48x48/status/stock_volume-mute.png -share/icons/HighContrastLargePrint/48x48/status/stock_volume.png -share/icons/HighContrastLargePrint/48x48/status/trashcan_full.png -share/icons/HighContrastLargePrint/48x48/status/user-trash-full.png -share/icons/HighContrastLargePrint/48x48/status/xfce-trash_full.png -share/icons/HighContrastLargePrint/index.theme -share/icons/HighContrastLargePrintInverse/36x36/animations/gnome-spinner-rest.png -share/icons/HighContrastLargePrintInverse/36x36/animations/gnome-spinner.png -share/icons/HighContrastLargePrintInverse/36x36/animations/process-idle.png -share/icons/HighContrastLargePrintInverse/36x36/animations/process-working.png -share/icons/HighContrastLargePrintInverse/48x48/actions/exit.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-logout.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-run.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-searchtool.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-shutdown.png -share/icons/HighContrastLargePrintInverse/48x48/actions/go-home.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gohome.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-execute.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-home.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-media-pause.png -share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-refresh.png -share/icons/HighContrastLargePrintInverse/48x48/actions/insert-image.png -share/icons/HighContrastLargePrintInverse/48x48/actions/insert-text.png -share/icons/HighContrastLargePrintInverse/48x48/actions/kfind.png -share/icons/HighContrastLargePrintInverse/48x48/actions/kfm_home.png -share/icons/HighContrastLargePrintInverse/48x48/actions/mail-send-receive.png -share/icons/HighContrastLargePrintInverse/48x48/actions/media-playback-pause.png -share/icons/HighContrastLargePrintInverse/48x48/actions/player_pause.png -share/icons/HighContrastLargePrintInverse/48x48/actions/redhat-home.png -share/icons/HighContrastLargePrintInverse/48x48/actions/reload.png -share/icons/HighContrastLargePrintInverse/48x48/actions/reload3.png -share/icons/HighContrastLargePrintInverse/48x48/actions/reload_all_tabs.png -share/icons/HighContrastLargePrintInverse/48x48/actions/reload_page.png -share/icons/HighContrastLargePrintInverse/48x48/actions/search.png -share/icons/HighContrastLargePrintInverse/48x48/actions/stock_home.png -share/icons/HighContrastLargePrintInverse/48x48/actions/stock_mail-send-receive.png -share/icons/HighContrastLargePrintInverse/48x48/actions/stock_media-pause.png -share/icons/HighContrastLargePrintInverse/48x48/actions/stock_new-tab.png -share/icons/HighContrastLargePrintInverse/48x48/actions/stock_refresh.png -share/icons/HighContrastLargePrintInverse/48x48/actions/system-log-out.png -share/icons/HighContrastLargePrintInverse/48x48/actions/system-run.png -share/icons/HighContrastLargePrintInverse/48x48/actions/system-search.png -share/icons/HighContrastLargePrintInverse/48x48/actions/system-shutdown.png -share/icons/HighContrastLargePrintInverse/48x48/actions/view-refresh.png -share/icons/HighContrastLargePrintInverse/48x48/apps/access.png -share/icons/HighContrastLargePrintInverse/48x48/apps/accessibility-directory.png -share/icons/HighContrastLargePrintInverse/48x48/apps/accessories-calculator.png -share/icons/HighContrastLargePrintInverse/48x48/apps/accessories-character-map.png -share/icons/HighContrastLargePrintInverse/48x48/apps/accessories-text-editor.png -share/icons/HighContrastLargePrintInverse/48x48/apps/advanced-directory.png -share/icons/HighContrastLargePrintInverse/48x48/apps/applets-screenshooter.png -share/icons/HighContrastLargePrintInverse/48x48/apps/arts.png -share/icons/HighContrastLargePrintInverse/48x48/apps/ax-applet.png -share/icons/HighContrastLargePrintInverse/48x48/apps/background.png -share/icons/HighContrastLargePrintInverse/48x48/apps/calc.png -share/icons/HighContrastLargePrintInverse/48x48/apps/charpick.png -share/icons/HighContrastLargePrintInverse/48x48/apps/clock.png -share/icons/HighContrastLargePrintInverse/48x48/apps/config-language.png -share/icons/HighContrastLargePrintInverse/48x48/apps/display-capplet.png -share/icons/HighContrastLargePrintInverse/48x48/apps/eog.png -share/icons/HighContrastLargePrintInverse/48x48/apps/evince.png -share/icons/HighContrastLargePrintInverse/48x48/apps/evolution.png -share/icons/HighContrastLargePrintInverse/48x48/apps/file-manager.png -share/icons/HighContrastLargePrintInverse/48x48/apps/file-roller.png -share/icons/HighContrastLargePrintInverse/48x48/apps/fonts.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gdict.png -share/icons/HighContrastLargePrintInverse/48x48/apps/ghex.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gimp.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gkb.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-application-generic.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-audio2.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-calc3.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-calculator.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-ccmime.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-ccscreensaver.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-cd.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-character-map.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-folder-generic.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-grecord.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-help.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-home.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-info.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-log.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-logo-icon-transparent.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mailcheck.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mini-commander.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mixer-applet.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mixer.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-panel.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-searchtool-animation-rest.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-searchtool-animation.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-session.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-accessibility-keyboard.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-accessibility-technologies.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-background.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-default-applications.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-font.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-keybindings.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-sound.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-theme.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-ui-behavior.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-starthere.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-terminal.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-window-manager.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-windows.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-workspace.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gok.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gtk-help.png -share/icons/HighContrastLargePrintInverse/48x48/apps/gucharmap.png -share/icons/HighContrastLargePrintInverse/48x48/apps/help-browser.png -share/icons/HighContrastLargePrintInverse/48x48/apps/help.png -share/icons/HighContrastLargePrintInverse/48x48/apps/kcalc.png -share/icons/HighContrastLargePrintInverse/48x48/apps/kcharselect.png -share/icons/HighContrastLargePrintInverse/48x48/apps/kcmkwm.png -share/icons/HighContrastLargePrintInverse/48x48/apps/kcmsound.png -share/icons/HighContrastLargePrintInverse/48x48/apps/kedit.png -share/icons/HighContrastLargePrintInverse/48x48/apps/key_bindings.png -share/icons/HighContrastLargePrintInverse/48x48/apps/kfm.png -share/icons/HighContrastLargePrintInverse/48x48/apps/khelpcenter.png -share/icons/HighContrastLargePrintInverse/48x48/apps/knotify.png -share/icons/HighContrastLargePrintInverse/48x48/apps/konsole.png -share/icons/HighContrastLargePrintInverse/48x48/apps/kwin.png -share/icons/HighContrastLargePrintInverse/48x48/apps/launcher-program.png -share/icons/HighContrastLargePrintInverse/48x48/apps/locale.png -share/icons/HighContrastLargePrintInverse/48x48/apps/mozilla-icon.png -share/icons/HighContrastLargePrintInverse/48x48/apps/multimedia-volume-control.png -share/icons/HighContrastLargePrintInverse/48x48/apps/multimedia.png -share/icons/HighContrastLargePrintInverse/48x48/apps/openterm.png -share/icons/HighContrastLargePrintInverse/48x48/apps/orca.png -share/icons/HighContrastLargePrintInverse/48x48/apps/panel-drawer.png -share/icons/HighContrastLargePrintInverse/48x48/apps/panel-force-quit.png -share/icons/HighContrastLargePrintInverse/48x48/apps/perfmeter.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-accessibility.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-font.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-keyboard-shortcuts.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-keyboard.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-locale.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-sound.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-theme.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-wallpaper.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-system-session.png -share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-system-windows.png -share/icons/HighContrastLargePrintInverse/48x48/apps/redhat-filemanager.png -share/icons/HighContrastLargePrintInverse/48x48/apps/session-properties.png -share/icons/HighContrastLargePrintInverse/48x48/apps/smc.png -share/icons/HighContrastLargePrintInverse/48x48/apps/sound-juicer.png -share/icons/HighContrastLargePrintInverse/48x48/apps/star.png -share/icons/HighContrastLargePrintInverse/48x48/apps/stock_help.png -share/icons/HighContrastLargePrintInverse/48x48/apps/style.png -share/icons/HighContrastLargePrintInverse/48x48/apps/susehelpcenter.png -share/icons/HighContrastLargePrintInverse/48x48/apps/system-file-manager.png -share/icons/HighContrastLargePrintInverse/48x48/apps/terminal.png -share/icons/HighContrastLargePrintInverse/48x48/apps/text-editor.png -share/icons/HighContrastLargePrintInverse/48x48/apps/utilities-terminal.png -share/icons/HighContrastLargePrintInverse/48x48/apps/volume-knob.png -share/icons/HighContrastLargePrintInverse/48x48/apps/wallpaper.png -share/icons/HighContrastLargePrintInverse/48x48/apps/window-capplet.png -share/icons/HighContrastLargePrintInverse/48x48/apps/xfce-filemanager.png -share/icons/HighContrastLargePrintInverse/48x48/apps/xfce-terminal.png -share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-backdrop.png -share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-mixer.png -share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-session.png -share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-sound.png -share/icons/HighContrastLargePrintInverse/48x48/apps/xfwm4.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-accessories.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-development.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-engineering.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-games.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-graphics.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-internet.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-multimedia.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-office.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-other.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-science.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-system.png -share/icons/HighContrastLargePrintInverse/48x48/categories/applications-utilities.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-applications.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-control-center.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-devel.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-globe.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-graphics.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-joystick.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-multimedia.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-other.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-settings.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-system.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-util.png -share/icons/HighContrastLargePrintInverse/48x48/categories/gtk-preferences.png -share/icons/HighContrastLargePrintInverse/48x48/categories/input_devices_settings.png -share/icons/HighContrastLargePrintInverse/48x48/categories/kcontrol.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_development.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_games.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_graphics.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_multimedia.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_network.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_office.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_settings.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_system.png -share/icons/HighContrastLargePrintInverse/48x48/categories/package_utilities.png -share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-desktop-peripherals.png -share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-desktop-personal.png -share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-desktop.png -share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-other.png -share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-system-network.png -share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-system.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-accessories.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-games.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-graphics.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-internet.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-office.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-preferences.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-programming.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-sound_video.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-system_settings.png -share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-system_tools.png -share/icons/HighContrastLargePrintInverse/48x48/categories/stock_internet.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-games.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-graphics.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-internet.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-multimedia.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-office.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-system-settings.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-utils.png -share/icons/HighContrastLargePrintInverse/48x48/categories/xfce4-settings.png -share/icons/HighContrastLargePrintInverse/48x48/devices/3floppy_unmount.png -share/icons/HighContrastLargePrintInverse/48x48/devices/cdrom_unmount.png -share/icons/HighContrastLargePrintInverse/48x48/devices/cdwriter_unmount.png -share/icons/HighContrastLargePrintInverse/48x48/devices/computer.png -share/icons/HighContrastLargePrintInverse/48x48/devices/drive-cdrom.png -share/icons/HighContrastLargePrintInverse/48x48/devices/drive-harddisk.png -share/icons/HighContrastLargePrintInverse/48x48/devices/drive-optical.png -share/icons/HighContrastLargePrintInverse/48x48/devices/drive-removable-media.png -share/icons/HighContrastLargePrintInverse/48x48/devices/dvd_unmount.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-cdrom-audio.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-cdrom.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-computer.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-cdr.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-cdrw.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdr-plus.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdr.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdram.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdrom.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdrw.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-dvd.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-floppy.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-harddisk-1394.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-harddisk-usb.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-harddisk.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-keyboard.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-mouse-ball.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-mouse-optical.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-printer-network.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-printer-new.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-printer.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-removable-1394.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-removable-usb.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-removable.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-wavelan.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-fs-client.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gtk-cdrom.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gtk-floppy.png -share/icons/HighContrastLargePrintInverse/48x48/devices/gtk-harddisk.png -share/icons/HighContrastLargePrintInverse/48x48/devices/harddrive.png -share/icons/HighContrastLargePrintInverse/48x48/devices/hdd_unmount.png -share/icons/HighContrastLargePrintInverse/48x48/devices/input-keyboard.png -share/icons/HighContrastLargePrintInverse/48x48/devices/input-mouse.png -share/icons/HighContrastLargePrintInverse/48x48/devices/keyboard.png -share/icons/HighContrastLargePrintInverse/48x48/devices/kjobviewer.png -share/icons/HighContrastLargePrintInverse/48x48/devices/kxkb.png -share/icons/HighContrastLargePrintInverse/48x48/devices/media-cdrom.png -share/icons/HighContrastLargePrintInverse/48x48/devices/media-floppy.png -share/icons/HighContrastLargePrintInverse/48x48/devices/media-optical.png -share/icons/HighContrastLargePrintInverse/48x48/devices/mouse.png -share/icons/HighContrastLargePrintInverse/48x48/devices/network-wireless.png -share/icons/HighContrastLargePrintInverse/48x48/devices/printer-remote.png -share/icons/HighContrastLargePrintInverse/48x48/devices/printer.png -share/icons/HighContrastLargePrintInverse/48x48/devices/printer1.png -share/icons/HighContrastLargePrintInverse/48x48/devices/printmgr.png -share/icons/HighContrastLargePrintInverse/48x48/devices/stock_printers.png -share/icons/HighContrastLargePrintInverse/48x48/devices/system-floppy.png -share/icons/HighContrastLargePrintInverse/48x48/devices/system.png -share/icons/HighContrastLargePrintInverse/48x48/devices/usbpendrive_unmount.png -share/icons/HighContrastLargePrintInverse/48x48/devices/xfce-printer.png -share/icons/HighContrastLargePrintInverse/48x48/devices/xfce4-keyboard.png -share/icons/HighContrastLargePrintInverse/48x48/devices/xfce4-mouse.png -share/icons/HighContrastLargePrintInverse/48x48/devices/yast_HD.png -share/icons/HighContrastLargePrintInverse/48x48/devices/yast_idetude.png -share/icons/HighContrastLargePrintInverse/48x48/devices/yast_mouse.png -share/icons/HighContrastLargePrintInverse/48x48/devices/yast_printer.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-default.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-desktop.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-important.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-noread.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-personal.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-special.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-unreadable.png -share/icons/HighContrastLargePrintInverse/48x48/emblems/stock_mail-priority-high.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/application-x-executable.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/ascii.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/audio-x-generic.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/binary.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/contents2.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/deb.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/document.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/empty.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/exec.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/folder_tar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font-x-generic.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font_bitmap.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font_truetype.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font_type1.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-fs-executable.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-fs-regular.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-magicpoint.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-msword.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-ogg.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-pdf.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-postscript.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-rtf.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.stardivision.impress.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.stardivision.writer.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-wordperfect.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-7z-compressed.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-abiword.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-applix-word.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-archive.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-arj.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-bzip.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-compress.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-compressed-tar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-core-file.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-cpio.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-deb.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-dvi.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-executable.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-afm.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-bdf.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-linux-psf.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-pcf.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-sunos-news.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-ttf.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-gzip.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-gzpostscript.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-jar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-killustrator.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-kpresenter.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-kword.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lha.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lhz.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lzma.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-ms-dos-executable.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-rar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-rpm.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-scribus.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-stuffit.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-tar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-tarz.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-tex.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-zip.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-audio.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-image.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-text-x-vcalendar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-text-x-vcard.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-text.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-video.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-x-font-afm.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-package.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gtk-file.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/image-x-generic.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/image.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/kpresenter_kpr.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/mime_ascii.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/misc.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package-x-generic.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package_editors.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package_wordprocessing.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/plan.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/rpm.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/sound.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/stock_addressbook.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/stock_calendar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/tar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/template_source.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/text-x-generic-template.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/text-x-generic.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/text-x-preview.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/tgz.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/txt.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/txt2.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/unknown.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/vcalendar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/vcard.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/video-x-generic.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/video.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/wordprocessing.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-address-book.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-calendar.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-document.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-presentation.png -share/icons/HighContrastLargePrintInverse/48x48/mimetypes/zip.png -share/icons/HighContrastLargePrintInverse/48x48/places/desktop.png -share/icons/HighContrastLargePrintInverse/48x48/places/distributor-logo.png -share/icons/HighContrastLargePrintInverse/48x48/places/emptytrash.png -share/icons/HighContrastLargePrintInverse/48x48/places/folder-remote.png -share/icons/HighContrastLargePrintInverse/48x48/places/folder.icon -share/icons/HighContrastLargePrintInverse/48x48/places/folder.png -share/icons/HighContrastLargePrintInverse/48x48/places/folder_home.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-desktop.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-directory.icon -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-directory.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-ftp.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-home.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-network.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-nfs.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-server.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-share.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-smb.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-ssh.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-trash-empty.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-main-menu.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-nfs-server.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-smb-server.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-smb-share.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-smb-workgroup.png -share/icons/HighContrastLargePrintInverse/48x48/places/gnome-stock-trash.png -share/icons/HighContrastLargePrintInverse/48x48/places/gtk-directory.icon -share/icons/HighContrastLargePrintInverse/48x48/places/gtk-directory.png -share/icons/HighContrastLargePrintInverse/48x48/places/gtk-network.png -share/icons/HighContrastLargePrintInverse/48x48/places/inode-directory.icon -share/icons/HighContrastLargePrintInverse/48x48/places/inode-directory.png -share/icons/HighContrastLargePrintInverse/48x48/places/network-server.png -share/icons/HighContrastLargePrintInverse/48x48/places/network-workgroup.png -share/icons/HighContrastLargePrintInverse/48x48/places/network.png -share/icons/HighContrastLargePrintInverse/48x48/places/network_local.png -share/icons/HighContrastLargePrintInverse/48x48/places/novell-button.png -share/icons/HighContrastLargePrintInverse/48x48/places/redhat-network-server.png -share/icons/HighContrastLargePrintInverse/48x48/places/server.png -share/icons/HighContrastLargePrintInverse/48x48/places/start-here.png -share/icons/HighContrastLargePrintInverse/48x48/places/stock_folder.icon -share/icons/HighContrastLargePrintInverse/48x48/places/stock_folder.png -share/icons/HighContrastLargePrintInverse/48x48/places/trashcan_empty.png -share/icons/HighContrastLargePrintInverse/48x48/places/user-desktop.png -share/icons/HighContrastLargePrintInverse/48x48/places/user-home.png -share/icons/HighContrastLargePrintInverse/48x48/places/user-trash.png -share/icons/HighContrastLargePrintInverse/48x48/places/xfce-trash_empty.png -share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-high.png -share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-low.png -share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-medium.png -share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-muted.png -share/icons/HighContrastLargePrintInverse/48x48/status/battery-caution.png -share/icons/HighContrastLargePrintInverse/48x48/status/battery-low.png -share/icons/HighContrastLargePrintInverse/48x48/status/edittrash.png -share/icons/HighContrastLargePrintInverse/48x48/status/folder-drag-accept.icon -share/icons/HighContrastLargePrintInverse/48x48/status/folder-drag-accept.png -share/icons/HighContrastLargePrintInverse/48x48/status/gnome-fs-directory-accept.icon -share/icons/HighContrastLargePrintInverse/48x48/status/gnome-fs-directory-accept.png -share/icons/HighContrastLargePrintInverse/48x48/status/gnome-fs-trash-full.png -share/icons/HighContrastLargePrintInverse/48x48/status/gnome-stock-trash-full.png -share/icons/HighContrastLargePrintInverse/48x48/status/media-playlist-repeat.png -share/icons/HighContrastLargePrintInverse/48x48/status/media-playlist-shuffle.png -share/icons/HighContrastLargePrintInverse/48x48/status/printer-error.png -share/icons/HighContrastLargePrintInverse/48x48/status/printer-printing.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_repeat.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_shuffle.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_trash_full.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-0.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-max.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-med.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-min.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-mute.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-cloudy.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-few-clouds.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-fog.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-night-clear.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-night-few-clouds.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-showers.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-snow.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-storm.png -share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-sunny.png -share/icons/HighContrastLargePrintInverse/48x48/status/sunny.png -share/icons/HighContrastLargePrintInverse/48x48/status/trashcan_full.png -share/icons/HighContrastLargePrintInverse/48x48/status/user-trash-full.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-clear-night.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-clear.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-few-clouds-night.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-few-clouds.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-fog.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-overcast.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-showers-scattered.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-showers.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-snow.png -share/icons/HighContrastLargePrintInverse/48x48/status/weather-storm.png -share/icons/HighContrastLargePrintInverse/48x48/status/xfce-trash_full.png -share/icons/HighContrastLargePrintInverse/index.theme -share/icons/LargePrint/index.theme -share/icons/Mist/16x16/actions/document-open.png -share/icons/Mist/16x16/actions/fileopen.png -share/icons/Mist/16x16/actions/gtk-open.png -share/icons/Mist/16x16/places/application-x-gnome-saved-search.png -share/icons/Mist/16x16/places/folder-new.png -share/icons/Mist/16x16/places/folder-remote.png -share/icons/Mist/16x16/places/folder-saved-search.png -share/icons/Mist/16x16/places/folder.png -share/icons/Mist/16x16/places/folder_home.png -share/icons/Mist/16x16/places/gnome-fs-directory.png -share/icons/Mist/16x16/places/gnome-fs-ftp.png -share/icons/Mist/16x16/places/gnome-fs-home.png -share/icons/Mist/16x16/places/gnome-fs-nfs.png -share/icons/Mist/16x16/places/gnome-fs-share.png -share/icons/Mist/16x16/places/gnome-fs-smb.png -share/icons/Mist/16x16/places/gnome-fs-ssh.png -share/icons/Mist/16x16/places/gnome-mime-x-directory-smb-share.png -share/icons/Mist/16x16/places/gtk-directory.png -share/icons/Mist/16x16/places/inode-directory.png -share/icons/Mist/16x16/places/network.png -share/icons/Mist/16x16/places/stock_folder.png -share/icons/Mist/16x16/places/user-home.png -share/icons/Mist/16x16/status/folder-drag-accept.svg -share/icons/Mist/16x16/status/folder-open.svg -share/icons/Mist/16x16/status/folder-visiting.png -share/icons/Mist/16x16/status/folder_open.svg -share/icons/Mist/16x16/status/gnome-fs-directory-accept.svg -share/icons/Mist/16x16/status/gnome-fs-directory-visiting.png -share/icons/Mist/16x16/status/stock_open.svg -share/icons/Mist/22x22/actions/document-open.png -share/icons/Mist/22x22/actions/fileopen.png -share/icons/Mist/22x22/actions/gtk-open.png -share/icons/Mist/22x22/places/application-x-gnome-saved-search.png -share/icons/Mist/22x22/places/folder-new.png -share/icons/Mist/22x22/places/folder-remote.png -share/icons/Mist/22x22/places/folder-saved-search.png -share/icons/Mist/22x22/places/folder.png -share/icons/Mist/22x22/places/folder_home.svg -share/icons/Mist/22x22/places/gnome-fs-directory.png -share/icons/Mist/22x22/places/gnome-fs-ftp.png -share/icons/Mist/22x22/places/gnome-fs-home.svg -share/icons/Mist/22x22/places/gnome-fs-nfs.png -share/icons/Mist/22x22/places/gnome-fs-share.png -share/icons/Mist/22x22/places/gnome-fs-smb.png -share/icons/Mist/22x22/places/gnome-fs-ssh.png -share/icons/Mist/22x22/places/gnome-mime-x-directory-smb-share.png -share/icons/Mist/22x22/places/gtk-directory.png -share/icons/Mist/22x22/places/inode-directory.png -share/icons/Mist/22x22/places/network.png -share/icons/Mist/22x22/places/stock_folder.png -share/icons/Mist/22x22/places/user-home.svg -share/icons/Mist/22x22/status/folder-drag-accept.png -share/icons/Mist/22x22/status/folder-open.png -share/icons/Mist/22x22/status/folder-visiting.png -share/icons/Mist/22x22/status/folder_open.png -share/icons/Mist/22x22/status/gnome-fs-directory-accept.png -share/icons/Mist/22x22/status/gnome-fs-directory-visiting.png -share/icons/Mist/22x22/status/stock_open.png -share/icons/Mist/24x24/actions/document-open.png -share/icons/Mist/24x24/actions/fileopen.png -share/icons/Mist/24x24/actions/gtk-open.png -share/icons/Mist/24x24/places/application-x-gnome-saved-search.png -share/icons/Mist/24x24/places/folder-new.png -share/icons/Mist/24x24/places/folder-remote.png -share/icons/Mist/24x24/places/folder-saved-search.png -share/icons/Mist/24x24/places/folder.png -share/icons/Mist/24x24/places/folder_home.png -share/icons/Mist/24x24/places/gnome-fs-directory.png -share/icons/Mist/24x24/places/gnome-fs-ftp.png -share/icons/Mist/24x24/places/gnome-fs-home.png -share/icons/Mist/24x24/places/gnome-fs-nfs.png -share/icons/Mist/24x24/places/gnome-fs-share.png -share/icons/Mist/24x24/places/gnome-fs-smb.png -share/icons/Mist/24x24/places/gnome-fs-ssh.png -share/icons/Mist/24x24/places/gnome-mime-x-directory-smb-share.png -share/icons/Mist/24x24/places/gtk-directory.png -share/icons/Mist/24x24/places/inode-directory.png -share/icons/Mist/24x24/places/network.png -share/icons/Mist/24x24/places/stock_folder.png -share/icons/Mist/24x24/places/user-home.png -share/icons/Mist/24x24/status/folder-drag-accept.png -share/icons/Mist/24x24/status/folder-open.png -share/icons/Mist/24x24/status/folder-visiting.png -share/icons/Mist/24x24/status/folder_open.png -share/icons/Mist/24x24/status/gnome-fs-directory-accept.png -share/icons/Mist/24x24/status/gnome-fs-directory-visiting.png -share/icons/Mist/24x24/status/stock_open.png -share/icons/Mist/32x32/actions/document-open.svg -share/icons/Mist/32x32/actions/fileopen.svg -share/icons/Mist/32x32/actions/gtk-open.svg -share/icons/Mist/32x32/places/application-x-gnome-saved-search.svg -share/icons/Mist/32x32/places/folder-new.svg -share/icons/Mist/32x32/places/folder-remote.svg -share/icons/Mist/32x32/places/folder-saved-search.svg -share/icons/Mist/32x32/places/folder.svg -share/icons/Mist/32x32/places/folder_home.svg -share/icons/Mist/32x32/places/gnome-fs-directory.svg -share/icons/Mist/32x32/places/gnome-fs-ftp.svg -share/icons/Mist/32x32/places/gnome-fs-home.svg -share/icons/Mist/32x32/places/gnome-fs-nfs.svg -share/icons/Mist/32x32/places/gnome-fs-share.svg -share/icons/Mist/32x32/places/gnome-fs-smb.svg -share/icons/Mist/32x32/places/gnome-fs-ssh.svg -share/icons/Mist/32x32/places/gnome-mime-x-directory-smb-share.svg -share/icons/Mist/32x32/places/gtk-directory.svg -share/icons/Mist/32x32/places/inode-directory.svg -share/icons/Mist/32x32/places/network.svg -share/icons/Mist/32x32/places/stock_folder.svg -share/icons/Mist/32x32/places/user-home.svg -share/icons/Mist/32x32/status/folder-drag-accept.svg -share/icons/Mist/32x32/status/folder-open.svg -share/icons/Mist/32x32/status/folder-visiting.png -share/icons/Mist/32x32/status/folder_open.svg -share/icons/Mist/32x32/status/gnome-fs-directory-accept.svg -share/icons/Mist/32x32/status/gnome-fs-directory-visiting.png -share/icons/Mist/32x32/status/stock_open.svg -share/icons/Mist/index.theme -share/icons/Mist/scalable/actions/document-open.svg -share/icons/Mist/scalable/actions/fileopen.svg -share/icons/Mist/scalable/actions/gtk-open.svg -share/icons/Mist/scalable/places/application-x-gnome-saved-search.svg -share/icons/Mist/scalable/places/folder-new.svg -share/icons/Mist/scalable/places/folder-remote.svg -share/icons/Mist/scalable/places/folder-saved-search.svg -share/icons/Mist/scalable/places/folder.svg -share/icons/Mist/scalable/places/folder_home.svg -share/icons/Mist/scalable/places/gnome-fs-directory.svg -share/icons/Mist/scalable/places/gnome-fs-ftp.svg -share/icons/Mist/scalable/places/gnome-fs-home.svg -share/icons/Mist/scalable/places/gnome-fs-nfs.svg -share/icons/Mist/scalable/places/gnome-fs-share.svg -share/icons/Mist/scalable/places/gnome-fs-smb.svg -share/icons/Mist/scalable/places/gnome-fs-ssh.svg -share/icons/Mist/scalable/places/gnome-mime-x-directory-smb-share.svg -share/icons/Mist/scalable/places/gtk-directory.svg -share/icons/Mist/scalable/places/inode-directory.svg -share/icons/Mist/scalable/places/network.svg -share/icons/Mist/scalable/places/stock_folder.svg -share/icons/Mist/scalable/places/user-home.svg -share/icons/Mist/scalable/status/folder-drag-accept.svg -share/icons/Mist/scalable/status/folder-open.svg -share/icons/Mist/scalable/status/folder-visiting.svg -share/icons/Mist/scalable/status/folder_open.svg -share/icons/Mist/scalable/status/gnome-fs-directory-accept.svg -share/icons/Mist/scalable/status/gnome-fs-directory-visiting.svg -share/icons/Mist/scalable/status/stock_open.svg -share/locale/am/LC_MESSAGES/gnome-themes.mo -share/locale/ar/LC_MESSAGES/gnome-themes.mo -share/locale/as/LC_MESSAGES/gnome-themes.mo -share/locale/ast/LC_MESSAGES/gnome-themes.mo -share/locale/az/LC_MESSAGES/gnome-themes.mo -share/locale/be/LC_MESSAGES/gnome-themes.mo -share/locale/be@latin/LC_MESSAGES/gnome-themes.mo -share/locale/bg/LC_MESSAGES/gnome-themes.mo -share/locale/bn/LC_MESSAGES/gnome-themes.mo -share/locale/bn_IN/LC_MESSAGES/gnome-themes.mo -share/locale/bs/LC_MESSAGES/gnome-themes.mo -share/locale/ca/LC_MESSAGES/gnome-themes.mo -share/locale/crh/LC_MESSAGES/gnome-themes.mo -share/locale/cs/LC_MESSAGES/gnome-themes.mo -share/locale/cy/LC_MESSAGES/gnome-themes.mo -share/locale/da/LC_MESSAGES/gnome-themes.mo -share/locale/de/LC_MESSAGES/gnome-themes.mo -share/locale/dz/LC_MESSAGES/gnome-themes.mo -share/locale/el/LC_MESSAGES/gnome-themes.mo -share/locale/en_CA/LC_MESSAGES/gnome-themes.mo -share/locale/en_GB/LC_MESSAGES/gnome-themes.mo -share/locale/es/LC_MESSAGES/gnome-themes.mo -share/locale/et/LC_MESSAGES/gnome-themes.mo -share/locale/eu/LC_MESSAGES/gnome-themes.mo -share/locale/fa/LC_MESSAGES/gnome-themes.mo -share/locale/fi/LC_MESSAGES/gnome-themes.mo -share/locale/fr/LC_MESSAGES/gnome-themes.mo -share/locale/fur/LC_MESSAGES/gnome-themes.mo -share/locale/ga/LC_MESSAGES/gnome-themes.mo -share/locale/gl/LC_MESSAGES/gnome-themes.mo -share/locale/gu/LC_MESSAGES/gnome-themes.mo -share/locale/he/LC_MESSAGES/gnome-themes.mo -share/locale/hi/LC_MESSAGES/gnome-themes.mo -share/locale/hr/LC_MESSAGES/gnome-themes.mo -share/locale/hu/LC_MESSAGES/gnome-themes.mo -share/locale/id/LC_MESSAGES/gnome-themes.mo -share/locale/is/LC_MESSAGES/gnome-themes.mo -share/locale/it/LC_MESSAGES/gnome-themes.mo -share/locale/ja/LC_MESSAGES/gnome-themes.mo -share/locale/ka/LC_MESSAGES/gnome-themes.mo -share/locale/ko/LC_MESSAGES/gnome-themes.mo -share/locale/ku/LC_MESSAGES/gnome-themes.mo -share/locale/ky/LC_MESSAGES/gnome-themes.mo -share/locale/li/LC_MESSAGES/gnome-themes.mo -share/locale/lt/LC_MESSAGES/gnome-themes.mo -share/locale/lv/LC_MESSAGES/gnome-themes.mo -share/locale/mg/LC_MESSAGES/gnome-themes.mo -share/locale/mk/LC_MESSAGES/gnome-themes.mo -share/locale/ml/LC_MESSAGES/gnome-themes.mo -share/locale/mn/LC_MESSAGES/gnome-themes.mo -share/locale/mr/LC_MESSAGES/gnome-themes.mo -share/locale/ms/LC_MESSAGES/gnome-themes.mo -share/locale/nb/LC_MESSAGES/gnome-themes.mo -share/locale/ne/LC_MESSAGES/gnome-themes.mo -share/locale/nl/LC_MESSAGES/gnome-themes.mo -share/locale/nn/LC_MESSAGES/gnome-themes.mo -share/locale/oc/LC_MESSAGES/gnome-themes.mo -share/locale/or/LC_MESSAGES/gnome-themes.mo -share/locale/pa/LC_MESSAGES/gnome-themes.mo -share/locale/pl/LC_MESSAGES/gnome-themes.mo -share/locale/pt/LC_MESSAGES/gnome-themes.mo -share/locale/pt_BR/LC_MESSAGES/gnome-themes.mo -share/locale/ro/LC_MESSAGES/gnome-themes.mo -share/locale/ru/LC_MESSAGES/gnome-themes.mo -share/locale/rw/LC_MESSAGES/gnome-themes.mo -share/locale/si/LC_MESSAGES/gnome-themes.mo -share/locale/sk/LC_MESSAGES/gnome-themes.mo -share/locale/sl/LC_MESSAGES/gnome-themes.mo -share/locale/sq/LC_MESSAGES/gnome-themes.mo -share/locale/sr/LC_MESSAGES/gnome-themes.mo -share/locale/sr@latin/LC_MESSAGES/gnome-themes.mo -share/locale/sv/LC_MESSAGES/gnome-themes.mo -share/locale/ta/LC_MESSAGES/gnome-themes.mo -share/locale/te/LC_MESSAGES/gnome-themes.mo -share/locale/th/LC_MESSAGES/gnome-themes.mo -share/locale/tr/LC_MESSAGES/gnome-themes.mo -share/locale/ug/LC_MESSAGES/gnome-themes.mo -share/locale/uk/LC_MESSAGES/gnome-themes.mo -share/locale/vi/LC_MESSAGES/gnome-themes.mo -share/locale/wa/LC_MESSAGES/gnome-themes.mo -share/locale/xh/LC_MESSAGES/gnome-themes.mo -share/locale/zh_CN/LC_MESSAGES/gnome-themes.mo -share/locale/zh_HK/LC_MESSAGES/gnome-themes.mo -share/locale/zh_TW/LC_MESSAGES/gnome-themes.mo -share/themes/Clearlooks/index.theme -share/themes/Clearlooks/metacity-1/metacity-theme-1.xml -share/themes/ClearlooksClassic/gtk-2.0/gtkrc -share/themes/ClearlooksClassic/metacity-1/metacity-theme-1.xml -share/themes/Crux/index.theme -share/themes/Glider/gtk-2.0/gtkrc -share/themes/Glider/index.theme -share/themes/Glider/metacity-1/metacity-theme-1.xml -share/themes/Glossy/gtk-2.0/gtkrc -share/themes/Glossy/index.theme -share/themes/Glossy/metacity-1/metacity-theme-1.xml -share/themes/HighContrast/gtk-2.0/gtkrc -share/themes/HighContrast/index.theme -share/themes/HighContrastInverse/gtk-2.0/gtkrc -share/themes/HighContrastInverse/index.theme -share/themes/HighContrastLargePrint/gtk-2.0/gtkrc -share/themes/HighContrastLargePrint/index.theme.disabled -share/themes/HighContrastLargePrint/pixmaps/double-click-maybe.png -share/themes/HighContrastLargePrint/pixmaps/double-click-off.png -share/themes/HighContrastLargePrint/pixmaps/double-click-on.png -share/themes/HighContrastLargePrint/pixmaps/media-backward.png -share/themes/HighContrastLargePrint/pixmaps/media-eject.png -share/themes/HighContrastLargePrint/pixmaps/media-forward.png -share/themes/HighContrastLargePrint/pixmaps/media-next.png -share/themes/HighContrastLargePrint/pixmaps/media-pause.png -share/themes/HighContrastLargePrint/pixmaps/media-play.png -share/themes/HighContrastLargePrint/pixmaps/media-prev.png -share/themes/HighContrastLargePrint/pixmaps/media-record.png -share/themes/HighContrastLargePrint/pixmaps/media-stop.png -share/themes/HighContrastLargePrint/pixmaps/metacity-delete.png -share/themes/HighContrastLargePrint/pixmaps/metacity-maximize.png -share/themes/HighContrastLargePrint/pixmaps/metacity-minimize.png -share/themes/HighContrastLargePrint/pixmaps/printer-broken.png -share/themes/HighContrastLargePrint/pixmaps/printer-default.png -share/themes/HighContrastLargePrint/pixmaps/printer-inkjet.png -share/themes/HighContrastLargePrint/pixmaps/printer-personal-laser.png -share/themes/HighContrastLargePrint/pixmaps/printer-workgroup-laser.png -share/themes/HighContrastLargePrint/pixmaps/stock_about.png -share/themes/HighContrastLargePrint/pixmaps/stock_accessories.png -share/themes/HighContrastLargePrint/pixmaps/stock_add.png -share/themes/HighContrastLargePrint/pixmaps/stock_amusements.png -share/themes/HighContrastLargePrint/pixmaps/stock_apply.png -share/themes/HighContrastLargePrint/pixmaps/stock_attach.png -share/themes/HighContrastLargePrint/pixmaps/stock_bold.png -share/themes/HighContrastLargePrint/pixmaps/stock_book.png -share/themes/HighContrastLargePrint/pixmaps/stock_cancel.png -share/themes/HighContrastLargePrint/pixmaps/stock_cde-menu.png -share/themes/HighContrastLargePrint/pixmaps/stock_cdrom.png -share/themes/HighContrastLargePrint/pixmaps/stock_clear.png -share/themes/HighContrastLargePrint/pixmaps/stock_close.png -share/themes/HighContrastLargePrint/pixmaps/stock_commandline-browser.xpm -share/themes/HighContrastLargePrint/pixmaps/stock_commandline-history.xpm -share/themes/HighContrastLargePrint/pixmaps/stock_connect.png -share/themes/HighContrastLargePrint/pixmaps/stock_convert.png -share/themes/HighContrastLargePrint/pixmaps/stock_copy.png -share/themes/HighContrastLargePrint/pixmaps/stock_cut.png -share/themes/HighContrastLargePrint/pixmaps/stock_delete.png -share/themes/HighContrastLargePrint/pixmaps/stock_dialog_error.png -share/themes/HighContrastLargePrint/pixmaps/stock_dialog_info.png -share/themes/HighContrastLargePrint/pixmaps/stock_dialog_question.png -share/themes/HighContrastLargePrint/pixmaps/stock_dialog_warning.png -share/themes/HighContrastLargePrint/pixmaps/stock_disconnect.png -share/themes/HighContrastLargePrint/pixmaps/stock_dnd.png -share/themes/HighContrastLargePrint/pixmaps/stock_dnd_multiple.png -share/themes/HighContrastLargePrint/pixmaps/stock_drawer.png -share/themes/HighContrastLargePrint/pixmaps/stock_edit.png -share/themes/HighContrastLargePrint/pixmaps/stock_empty.png -share/themes/HighContrastLargePrint/pixmaps/stock_execute.png -share/themes/HighContrastLargePrint/pixmaps/stock_export.png -share/themes/HighContrastLargePrint/pixmaps/stock_find-and-replace.png -share/themes/HighContrastLargePrint/pixmaps/stock_find.png -share/themes/HighContrastLargePrint/pixmaps/stock_floppy.png -share/themes/HighContrastLargePrint/pixmaps/stock_gnome-logo.png -share/themes/HighContrastLargePrint/pixmaps/stock_gnome-util.png -share/themes/HighContrastLargePrint/pixmaps/stock_go-back.png -share/themes/HighContrastLargePrint/pixmaps/stock_go-down.png -share/themes/HighContrastLargePrint/pixmaps/stock_go-forward.png -share/themes/HighContrastLargePrint/pixmaps/stock_go-up.png -share/themes/HighContrastLargePrint/pixmaps/stock_goto-bottom.png -share/themes/HighContrastLargePrint/pixmaps/stock_goto-first.png -share/themes/HighContrastLargePrint/pixmaps/stock_goto-last.png -share/themes/HighContrastLargePrint/pixmaps/stock_goto-top.png -share/themes/HighContrastLargePrint/pixmaps/stock_harddisk.png -share/themes/HighContrastLargePrint/pixmaps/stock_help.png -share/themes/HighContrastLargePrint/pixmaps/stock_home.png -share/themes/HighContrastLargePrint/pixmaps/stock_import.png -share/themes/HighContrastLargePrint/pixmaps/stock_index.png -share/themes/HighContrastLargePrint/pixmaps/stock_info.png -share/themes/HighContrastLargePrint/pixmaps/stock_insert-image.png -share/themes/HighContrastLargePrint/pixmaps/stock_insert-object.png -share/themes/HighContrastLargePrint/pixmaps/stock_insert-table.png -share/themes/HighContrastLargePrint/pixmaps/stock_internet.png -share/themes/HighContrastLargePrint/pixmaps/stock_italic.png -share/themes/HighContrastLargePrint/pixmaps/stock_jump-to.png -share/themes/HighContrastLargePrint/pixmaps/stock_justify-center.png -share/themes/HighContrastLargePrint/pixmaps/stock_justify-fill.png -share/themes/HighContrastLargePrint/pixmaps/stock_justify-left.png -share/themes/HighContrastLargePrint/pixmaps/stock_justify-right.png -share/themes/HighContrastLargePrint/pixmaps/stock_launcher-program.png -share/themes/HighContrastLargePrint/pixmaps/stock_line-in.png -share/themes/HighContrastLargePrint/pixmaps/stock_lockscreen.png -share/themes/HighContrastLargePrint/pixmaps/stock_logout.png -share/themes/HighContrastLargePrint/pixmaps/stock_mic.png -share/themes/HighContrastLargePrint/pixmaps/stock_missing-image.png -share/themes/HighContrastLargePrint/pixmaps/stock_multimedia.png -share/themes/HighContrastLargePrint/pixmaps/stock_new.png -share/themes/HighContrastLargePrint/pixmaps/stock_no.png -share/themes/HighContrastLargePrint/pixmaps/stock_ok.png -share/themes/HighContrastLargePrint/pixmaps/stock_open.png -share/themes/HighContrastLargePrint/pixmaps/stock_paste.png -share/themes/HighContrastLargePrint/pixmaps/stock_preferences.png -share/themes/HighContrastLargePrint/pixmaps/stock_print-preview.png -share/themes/HighContrastLargePrint/pixmaps/stock_print.png -share/themes/HighContrastLargePrint/pixmaps/stock_properties.png -share/themes/HighContrastLargePrint/pixmaps/stock_quit.png -share/themes/HighContrastLargePrint/pixmaps/stock_redo.png -share/themes/HighContrastLargePrint/pixmaps/stock_refresh.png -share/themes/HighContrastLargePrint/pixmaps/stock_remove.png -share/themes/HighContrastLargePrint/pixmaps/stock_revert-to-saved.png -share/themes/HighContrastLargePrint/pixmaps/stock_run.png -share/themes/HighContrastLargePrint/pixmaps/stock_save-as.png -share/themes/HighContrastLargePrint/pixmaps/stock_save.png -share/themes/HighContrastLargePrint/pixmaps/stock_screenshot.png -share/themes/HighContrastLargePrint/pixmaps/stock_searchtool.png -share/themes/HighContrastLargePrint/pixmaps/stock_select-color.png -share/themes/HighContrastLargePrint/pixmaps/stock_select-font.png -share/themes/HighContrastLargePrint/pixmaps/stock_sort-ascending.png -share/themes/HighContrastLargePrint/pixmaps/stock_sort-descending.png -share/themes/HighContrastLargePrint/pixmaps/stock_spell-check.png -share/themes/HighContrastLargePrint/pixmaps/stock_stop.png -share/themes/HighContrastLargePrint/pixmaps/stock_strikethrough.png -share/themes/HighContrastLargePrint/pixmaps/stock_undelete.png -share/themes/HighContrastLargePrint/pixmaps/stock_underline.png -share/themes/HighContrastLargePrint/pixmaps/stock_undo.png -share/themes/HighContrastLargePrint/pixmaps/stock_volume.png -share/themes/HighContrastLargePrint/pixmaps/stock_yes.png -share/themes/HighContrastLargePrint/pixmaps/stock_zoom-100.png -share/themes/HighContrastLargePrint/pixmaps/stock_zoom-fit.png -share/themes/HighContrastLargePrint/pixmaps/stock_zoom-in.png -share/themes/HighContrastLargePrint/pixmaps/stock_zoom-out.png -share/themes/HighContrastLargePrint/pixmaps/volume-max.png -share/themes/HighContrastLargePrint/pixmaps/volume-medium.png -share/themes/HighContrastLargePrint/pixmaps/volume-min.png -share/themes/HighContrastLargePrint/pixmaps/volume-mute.png -share/themes/HighContrastLargePrint/pixmaps/volume-zero.png -share/themes/HighContrastLargePrintInverse/gtk-2.0/gtkrc -share/themes/HighContrastLargePrintInverse/index.theme.disabled -share/themes/HighContrastLargePrintInverse/pixmaps/double-click-maybe.png -share/themes/HighContrastLargePrintInverse/pixmaps/double-click-off.png -share/themes/HighContrastLargePrintInverse/pixmaps/double-click-on.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-backward.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-eject.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-forward.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-next.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-pause.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-play.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-prev.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-record.png -share/themes/HighContrastLargePrintInverse/pixmaps/media-stop.png -share/themes/HighContrastLargePrintInverse/pixmaps/metacity-delete.png -share/themes/HighContrastLargePrintInverse/pixmaps/metacity-maximize.png -share/themes/HighContrastLargePrintInverse/pixmaps/metacity-minimize.png -share/themes/HighContrastLargePrintInverse/pixmaps/printer-broken.png -share/themes/HighContrastLargePrintInverse/pixmaps/printer-default.png -share/themes/HighContrastLargePrintInverse/pixmaps/printer-inkjet.png -share/themes/HighContrastLargePrintInverse/pixmaps/printer-personal-laser.png -share/themes/HighContrastLargePrintInverse/pixmaps/printer-workgroup-laser.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_about.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_accessories.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_add.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_amusements.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_apply.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_attach.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_bold.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_book.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_cancel.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_cde-menu.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_cdrom.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_clear.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_close.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_commandline-browser.xpm -share/themes/HighContrastLargePrintInverse/pixmaps/stock_commandline-history.xpm -share/themes/HighContrastLargePrintInverse/pixmaps/stock_connect.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_convert.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_copy.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_cut.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_delete.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_dialog_error.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_dialog_info.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_dialog_question.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_dialog_warning.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_disconnect.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_dnd.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_dnd_multiple.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_drawer.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_edit.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_empty.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_execute.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_export.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_find-and-replace.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_find.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_floppy.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_gnome-logo.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_gnome-util.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_go-back.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_go-down.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_go-forward.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_go-up.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_goto-bottom.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_goto-first.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_goto-last.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_goto-top.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_harddisk.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_help.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_home.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_import.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_index.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_info.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_insert-image.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_insert-object.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_insert-table.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_internet.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_italic.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_jump-to.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_justify-center.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_justify-fill.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_justify-left.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_justify-right.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_launcher-program.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_line-in.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_lockscreen.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_logout.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_mic.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_missing-image.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_multimedia.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_new.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_no.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_ok.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_open.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_paste.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_preferences.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_print-preview.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_print.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_properties.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_quit.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_redo.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_refresh.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_remove.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_revert-to-saved.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_run.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_save-as.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_save.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_screenshot.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_searchtool.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_select-color.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_select-font.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_sort-ascending.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_sort-descending.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_spell-check.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_stop.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_strikethrough.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_undelete.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_underline.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_undo.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_volume.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_yes.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_zoom-100.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_zoom-fit.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_zoom-in.png -share/themes/HighContrastLargePrintInverse/pixmaps/stock_zoom-out.png -share/themes/HighContrastLargePrintInverse/pixmaps/volume-max.png -share/themes/HighContrastLargePrintInverse/pixmaps/volume-medium.png -share/themes/HighContrastLargePrintInverse/pixmaps/volume-min.png -share/themes/HighContrastLargePrintInverse/pixmaps/volume-mute.png -share/themes/HighContrastLargePrintInverse/pixmaps/volume-zero.png -share/themes/Inverted/gtk-2.0/gtkrc -share/themes/Inverted/metacity-1/metacity-theme-1.xml -share/themes/LargePrint/gtk-2.0/gtkrc -share/themes/LargePrint/index.theme.disabled -share/themes/LowContrast/gtk-2.0/gtkrc -share/themes/LowContrast/index.theme.disabled -share/themes/LowContrastLargePrint/gtk-2.0/gtkrc -share/themes/LowContrastLargePrint/index.theme.disabled -share/themes/LowContrastLargePrint/pixmaps/double-click-maybe.png -share/themes/LowContrastLargePrint/pixmaps/double-click-off.png -share/themes/LowContrastLargePrint/pixmaps/double-click-on.png -share/themes/LowContrastLargePrint/pixmaps/media-backward.png -share/themes/LowContrastLargePrint/pixmaps/media-eject.png -share/themes/LowContrastLargePrint/pixmaps/media-forward.png -share/themes/LowContrastLargePrint/pixmaps/media-next.png -share/themes/LowContrastLargePrint/pixmaps/media-pause.png -share/themes/LowContrastLargePrint/pixmaps/media-play.png -share/themes/LowContrastLargePrint/pixmaps/media-prev.png -share/themes/LowContrastLargePrint/pixmaps/media-record.png -share/themes/LowContrastLargePrint/pixmaps/media-stop.png -share/themes/LowContrastLargePrint/pixmaps/metacity-delete.png -share/themes/LowContrastLargePrint/pixmaps/metacity-maximize.png -share/themes/LowContrastLargePrint/pixmaps/metacity-minimize.png -share/themes/LowContrastLargePrint/pixmaps/printer-broken.png -share/themes/LowContrastLargePrint/pixmaps/printer-default.png -share/themes/LowContrastLargePrint/pixmaps/printer-inkjet.png -share/themes/LowContrastLargePrint/pixmaps/printer-personal-laser.png -share/themes/LowContrastLargePrint/pixmaps/printer-workgroup-laser.png -share/themes/LowContrastLargePrint/pixmaps/stock_about.png -share/themes/LowContrastLargePrint/pixmaps/stock_accessories.png -share/themes/LowContrastLargePrint/pixmaps/stock_add.png -share/themes/LowContrastLargePrint/pixmaps/stock_amusements.png -share/themes/LowContrastLargePrint/pixmaps/stock_apply.png -share/themes/LowContrastLargePrint/pixmaps/stock_attach.png -share/themes/LowContrastLargePrint/pixmaps/stock_bold.png -share/themes/LowContrastLargePrint/pixmaps/stock_book.png -share/themes/LowContrastLargePrint/pixmaps/stock_cancel.png -share/themes/LowContrastLargePrint/pixmaps/stock_cde-menu.png -share/themes/LowContrastLargePrint/pixmaps/stock_cdrom.png -share/themes/LowContrastLargePrint/pixmaps/stock_clear.png -share/themes/LowContrastLargePrint/pixmaps/stock_close.png -share/themes/LowContrastLargePrint/pixmaps/stock_commandline-browser.xpm -share/themes/LowContrastLargePrint/pixmaps/stock_commandline-history.xpm -share/themes/LowContrastLargePrint/pixmaps/stock_connect.png -share/themes/LowContrastLargePrint/pixmaps/stock_convert.png -share/themes/LowContrastLargePrint/pixmaps/stock_copy.png -share/themes/LowContrastLargePrint/pixmaps/stock_cut.png -share/themes/LowContrastLargePrint/pixmaps/stock_delete.png -share/themes/LowContrastLargePrint/pixmaps/stock_dialog_error.png -share/themes/LowContrastLargePrint/pixmaps/stock_dialog_info.png -share/themes/LowContrastLargePrint/pixmaps/stock_dialog_question.png -share/themes/LowContrastLargePrint/pixmaps/stock_dialog_warning.png -share/themes/LowContrastLargePrint/pixmaps/stock_disconnect.png -share/themes/LowContrastLargePrint/pixmaps/stock_dnd.png -share/themes/LowContrastLargePrint/pixmaps/stock_dnd_multiple.png -share/themes/LowContrastLargePrint/pixmaps/stock_drawer.png -share/themes/LowContrastLargePrint/pixmaps/stock_edit.png -share/themes/LowContrastLargePrint/pixmaps/stock_empty.png -share/themes/LowContrastLargePrint/pixmaps/stock_execute.png -share/themes/LowContrastLargePrint/pixmaps/stock_export.png -share/themes/LowContrastLargePrint/pixmaps/stock_find-and-replace.png -share/themes/LowContrastLargePrint/pixmaps/stock_find.png -share/themes/LowContrastLargePrint/pixmaps/stock_floppy.png -share/themes/LowContrastLargePrint/pixmaps/stock_gnome-logo.png -share/themes/LowContrastLargePrint/pixmaps/stock_gnome-util.png -share/themes/LowContrastLargePrint/pixmaps/stock_go-back.png -share/themes/LowContrastLargePrint/pixmaps/stock_go-down.png -share/themes/LowContrastLargePrint/pixmaps/stock_go-forward.png -share/themes/LowContrastLargePrint/pixmaps/stock_go-up.png -share/themes/LowContrastLargePrint/pixmaps/stock_goto-bottom.png -share/themes/LowContrastLargePrint/pixmaps/stock_goto-first.png -share/themes/LowContrastLargePrint/pixmaps/stock_goto-last.png -share/themes/LowContrastLargePrint/pixmaps/stock_goto-top.png -share/themes/LowContrastLargePrint/pixmaps/stock_harddisk.png -share/themes/LowContrastLargePrint/pixmaps/stock_help.png -share/themes/LowContrastLargePrint/pixmaps/stock_home.png -share/themes/LowContrastLargePrint/pixmaps/stock_import.png -share/themes/LowContrastLargePrint/pixmaps/stock_index.png -share/themes/LowContrastLargePrint/pixmaps/stock_info.png -share/themes/LowContrastLargePrint/pixmaps/stock_insert-image.png -share/themes/LowContrastLargePrint/pixmaps/stock_insert-object.png -share/themes/LowContrastLargePrint/pixmaps/stock_insert-table.png -share/themes/LowContrastLargePrint/pixmaps/stock_internet.png -share/themes/LowContrastLargePrint/pixmaps/stock_italic.png -share/themes/LowContrastLargePrint/pixmaps/stock_jump-to.png -share/themes/LowContrastLargePrint/pixmaps/stock_justify-center.png -share/themes/LowContrastLargePrint/pixmaps/stock_justify-fill.png -share/themes/LowContrastLargePrint/pixmaps/stock_justify-left.png -share/themes/LowContrastLargePrint/pixmaps/stock_justify-right.png -share/themes/LowContrastLargePrint/pixmaps/stock_launcher-program.png -share/themes/LowContrastLargePrint/pixmaps/stock_line-in.png -share/themes/LowContrastLargePrint/pixmaps/stock_lockscreen.png -share/themes/LowContrastLargePrint/pixmaps/stock_logout.png -share/themes/LowContrastLargePrint/pixmaps/stock_mic.png -share/themes/LowContrastLargePrint/pixmaps/stock_missing-image.png -share/themes/LowContrastLargePrint/pixmaps/stock_multimedia.png -share/themes/LowContrastLargePrint/pixmaps/stock_new.png -share/themes/LowContrastLargePrint/pixmaps/stock_no.png -share/themes/LowContrastLargePrint/pixmaps/stock_ok.png -share/themes/LowContrastLargePrint/pixmaps/stock_open.png -share/themes/LowContrastLargePrint/pixmaps/stock_paste.png -share/themes/LowContrastLargePrint/pixmaps/stock_preferences.png -share/themes/LowContrastLargePrint/pixmaps/stock_print-preview.png -share/themes/LowContrastLargePrint/pixmaps/stock_print.png -share/themes/LowContrastLargePrint/pixmaps/stock_properties.png -share/themes/LowContrastLargePrint/pixmaps/stock_quit.png -share/themes/LowContrastLargePrint/pixmaps/stock_redo.png -share/themes/LowContrastLargePrint/pixmaps/stock_refresh.png -share/themes/LowContrastLargePrint/pixmaps/stock_remove.png -share/themes/LowContrastLargePrint/pixmaps/stock_revert-to-saved.png -share/themes/LowContrastLargePrint/pixmaps/stock_run.png -share/themes/LowContrastLargePrint/pixmaps/stock_save-as.png -share/themes/LowContrastLargePrint/pixmaps/stock_save.png -share/themes/LowContrastLargePrint/pixmaps/stock_screenshot.png -share/themes/LowContrastLargePrint/pixmaps/stock_searchtool.png -share/themes/LowContrastLargePrint/pixmaps/stock_select-color.png -share/themes/LowContrastLargePrint/pixmaps/stock_select-font.png -share/themes/LowContrastLargePrint/pixmaps/stock_sort-ascending.png -share/themes/LowContrastLargePrint/pixmaps/stock_sort-descending.png -share/themes/LowContrastLargePrint/pixmaps/stock_spell-check.png -share/themes/LowContrastLargePrint/pixmaps/stock_stop.png -share/themes/LowContrastLargePrint/pixmaps/stock_strikethrough.png -share/themes/LowContrastLargePrint/pixmaps/stock_undelete.png -share/themes/LowContrastLargePrint/pixmaps/stock_underline.png -share/themes/LowContrastLargePrint/pixmaps/stock_undo.png -share/themes/LowContrastLargePrint/pixmaps/stock_volume.png -share/themes/LowContrastLargePrint/pixmaps/stock_yes.png -share/themes/LowContrastLargePrint/pixmaps/stock_zoom-100.png -share/themes/LowContrastLargePrint/pixmaps/stock_zoom-fit.png -share/themes/LowContrastLargePrint/pixmaps/stock_zoom-in.png -share/themes/LowContrastLargePrint/pixmaps/stock_zoom-out.png -share/themes/LowContrastLargePrint/pixmaps/volume-max.png -share/themes/LowContrastLargePrint/pixmaps/volume-medium.png -share/themes/LowContrastLargePrint/pixmaps/volume-min.png -share/themes/LowContrastLargePrint/pixmaps/volume-mute.png -share/themes/LowContrastLargePrint/pixmaps/volume-zero.png -share/themes/Mist/index.theme -share/themes/Mist/metacity-1/metacity-theme-1.xml -share/themes/Simple/gtk-2.0/gtkrc -@dirrm share/themes/Simple/gtk-2.0 -@dirrm share/themes/Simple -@dirrm share/themes/Mist/metacity-1 -@dirrm share/themes/Mist -@dirrm share/themes/LowContrastLargePrint/pixmaps -@dirrm share/themes/LowContrastLargePrint/gtk-2.0 -@dirrm share/themes/LowContrastLargePrint -@dirrm share/themes/LowContrast/gtk-2.0 -@dirrm share/themes/LowContrast -@dirrm share/themes/LargePrint/gtk-2.0 -@dirrm share/themes/LargePrint -@dirrm share/themes/Inverted/metacity-1 -@dirrm share/themes/Inverted/gtk-2.0 -@dirrm share/themes/Inverted -@dirrm share/themes/HighContrastLargePrintInverse/pixmaps -@dirrm share/themes/HighContrastLargePrintInverse/gtk-2.0 -@dirrm share/themes/HighContrastLargePrintInverse -@dirrm share/themes/HighContrastLargePrint/pixmaps -@dirrm share/themes/HighContrastLargePrint/gtk-2.0 -@dirrm share/themes/HighContrastLargePrint -@dirrm share/themes/HighContrastInverse/gtk-2.0 -@dirrm share/themes/HighContrastInverse -@dirrm share/themes/HighContrast/gtk-2.0 -@dirrm share/themes/HighContrast -@dirrm share/themes/Glossy/metacity-1 -@dirrm share/themes/Glossy/gtk-2.0 -@dirrm share/themes/Glossy -@dirrm share/themes/Glider/metacity-1 -@dirrm share/themes/Glider/gtk-2.0 -@dirrm share/themes/Glider -@dirrm share/themes/Crux -@dirrm share/themes/ClearlooksClassic/metacity-1 -@dirrm share/themes/ClearlooksClassic/gtk-2.0 -@dirrm share/themes/ClearlooksClassic -@dirrm share/themes/Clearlooks/metacity-1 -@dirrm share/themes/Clearlooks -@dirrmtry share/themes -@dirrm share/icons/Mist/scalable/status -@dirrm share/icons/Mist/scalable/places -@dirrm share/icons/Mist/scalable/actions -@dirrm share/icons/Mist/scalable -@dirrm share/icons/Mist/32x32/status -@dirrm share/icons/Mist/32x32/places -@dirrm share/icons/Mist/32x32/actions -@dirrm share/icons/Mist/32x32 -@dirrm share/icons/Mist/24x24/status -@dirrm share/icons/Mist/24x24/places -@dirrm share/icons/Mist/24x24/actions -@dirrm share/icons/Mist/24x24 -@dirrm share/icons/Mist/22x22/status -@dirrm share/icons/Mist/22x22/places -@dirrm share/icons/Mist/22x22/actions -@dirrm share/icons/Mist/22x22 -@dirrm share/icons/Mist/16x16/status -@dirrm share/icons/Mist/16x16/places -@dirrm share/icons/Mist/16x16/actions -@dirrm share/icons/Mist/16x16 -@dirrm share/icons/Mist -@dirrm share/icons/LargePrint -@dirrm share/icons/HighContrastLargePrintInverse/48x48/status -@dirrm share/icons/HighContrastLargePrintInverse/48x48/places -@dirrm share/icons/HighContrastLargePrintInverse/48x48/mimetypes -@dirrm share/icons/HighContrastLargePrintInverse/48x48/emblems -@dirrm share/icons/HighContrastLargePrintInverse/48x48/devices -@dirrm share/icons/HighContrastLargePrintInverse/48x48/categories -@dirrm share/icons/HighContrastLargePrintInverse/48x48/apps -@dirrm share/icons/HighContrastLargePrintInverse/48x48/actions -@dirrm share/icons/HighContrastLargePrintInverse/48x48 -@dirrm share/icons/HighContrastLargePrintInverse/36x36/animations -@dirrm share/icons/HighContrastLargePrintInverse/36x36 -@dirrm share/icons/HighContrastLargePrintInverse -@dirrm share/icons/HighContrastLargePrint/48x48/status -@dirrm share/icons/HighContrastLargePrint/48x48/places -@dirrm share/icons/HighContrastLargePrint/48x48/mimetypes -@dirrm share/icons/HighContrastLargePrint/48x48/emblems -@dirrm share/icons/HighContrastLargePrint/48x48/devices -@dirrm share/icons/HighContrastLargePrint/48x48/categories -@dirrm share/icons/HighContrastLargePrint/48x48/apps -@dirrm share/icons/HighContrastLargePrint/48x48/actions -@dirrm share/icons/HighContrastLargePrint/48x48 -@dirrm share/icons/HighContrastLargePrint/36x36/animations -@dirrm share/icons/HighContrastLargePrint/36x36 -@dirrm share/icons/HighContrastLargePrint -@dirrm share/icons/HighContrastInverse -@dirrm share/icons/HighContrast-SVG/scalable/status -@dirrm share/icons/HighContrast-SVG/scalable/places -@dirrm share/icons/HighContrast-SVG/scalable/mimetypes -@dirrm share/icons/HighContrast-SVG/scalable/emotes -@dirrm share/icons/HighContrast-SVG/scalable/emblems -@dirrm share/icons/HighContrast-SVG/scalable/devices -@dirrm share/icons/HighContrast-SVG/scalable/categories -@dirrm share/icons/HighContrast-SVG/scalable/apps -@dirrm share/icons/HighContrast-SVG/scalable/actions -@dirrm share/icons/HighContrast-SVG/scalable -@dirrm share/icons/HighContrast-SVG/48x48/animations -@dirrm share/icons/HighContrast-SVG/48x48 -@dirrm share/icons/HighContrast-SVG -@dirrm share/icons/HighContrast -@dirrm share/icons/Crux/scalable/status -@dirrm share/icons/Crux/scalable/places -@dirrm share/icons/Crux/scalable/actions -@dirrm share/icons/Crux/scalable -@dirrm share/icons/Crux/32x32/status -@dirrm share/icons/Crux/32x32/places -@dirrm share/icons/Crux/32x32/actions -@dirrm share/icons/Crux/32x32 -@dirrm share/icons/Crux/24x24/status -@dirrm share/icons/Crux/24x24/places -@dirrm share/icons/Crux/24x24/actions -@dirrm share/icons/Crux/24x24 -@dirrm share/icons/Crux/22x22/status -@dirrm share/icons/Crux/22x22/places -@dirrm share/icons/Crux/22x22/actions -@dirrm share/icons/Crux/22x22 -@dirrm share/icons/Crux/16x16/status -@dirrm share/icons/Crux/16x16/places -@dirrm share/icons/Crux/16x16/actions -@dirrm share/icons/Crux/16x16 -@dirrm share/icons/Crux -@dirrmtry share/icons -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11-themes/gtk-engines2/Makefile b/x11-themes/gtk-engines2/Makefile deleted file mode 100644 index 435f4cc11..000000000 --- a/x11-themes/gtk-engines2/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: gtk-engines2 -# Date Created: 21 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-themes/gtk-engines2/Makefile,v 1.73 2009/03/17 18:14:05 kwm Exp $ -# - -PORTNAME= gtk-engines2 -PORTVERSION= 2.18.0 -CATEGORIES= x11-themes -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Theme engine for the GTK+-2.0 toolkit - -CONFLICTS= gtk-smooth-engine-[0-9]* clearlooks-[0-9]* - -USE_GMAKE= yes -USE_BZIP2= yes -USE_GNOME= gnomehack gtk20 intlhack ltasneededhack -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" - -OPTIONS= ANIMATION "Enable experimental animated progressbars" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_ANIMATION) -CONFIGURE_ARGS+= --enable-animation -.endif - -post-install: - @(cd ${WRKSRC}/po && ${GMAKE} install) - -.include <bsd.port.post.mk> diff --git a/x11-themes/gtk-engines2/distinfo b/x11-themes/gtk-engines2/distinfo deleted file mode 100644 index e0683a261..000000000 --- a/x11-themes/gtk-engines2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gtk-engines-2.18.0.tar.bz2) = 6a7ac01fc9f9429bfb126e068e74eb4f -SHA256 (gnome2/gtk-engines-2.18.0.tar.bz2) = a969c132c69c0d807316561cf08c8a5267fa18993d6f3617fe626586338c077f -SIZE (gnome2/gtk-engines-2.18.0.tar.bz2) = 604860 diff --git a/x11-themes/gtk-engines2/pkg-descr b/x11-themes/gtk-engines2/pkg-descr deleted file mode 100644 index e787f789b..000000000 --- a/x11-themes/gtk-engines2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Theme engine for the gtk+-2.0 toolkit. - -WWW: http://www.gtk.org/ diff --git a/x11-themes/gtk-engines2/pkg-plist b/x11-themes/gtk-engines2/pkg-plist deleted file mode 100644 index 3b10b4365..000000000 --- a/x11-themes/gtk-engines2/pkg-plist +++ /dev/null @@ -1,131 +0,0 @@ -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libclearlooks.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libclearlooks.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libclearlooks.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libcrux-engine.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libcrux-engine.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libcrux-engine.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libglide.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libglide.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libglide.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libhcengine.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libhcengine.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libhcengine.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libindustrial.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libindustrial.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libindustrial.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libmist.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libmist.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libmist.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libredmond95.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libredmond95.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libredmond95.so -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libthinice.a -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libthinice.la -lib/gtk-2.0/%%GTK2_VERSION%%/engines/libthinice.so -libdata/pkgconfig/gtk-engines-2.pc -share/gtk-engines/clearlooks.xml -share/gtk-engines/crux-engine.xml -share/gtk-engines/glide.xml -share/gtk-engines/hcengine.xml -share/gtk-engines/industrial.xml -share/gtk-engines/mist.xml -share/gtk-engines/redmond95.xml -share/gtk-engines/thinice.xml -share/locale/ar/LC_MESSAGES/gtk-engines.mo -share/locale/as/LC_MESSAGES/gtk-engines.mo -share/locale/be@latin/LC_MESSAGES/gtk-engines.mo -share/locale/bg/LC_MESSAGES/gtk-engines.mo -share/locale/bn_IN/LC_MESSAGES/gtk-engines.mo -share/locale/ca/LC_MESSAGES/gtk-engines.mo -share/locale/cs/LC_MESSAGES/gtk-engines.mo -share/locale/da/LC_MESSAGES/gtk-engines.mo -share/locale/de/LC_MESSAGES/gtk-engines.mo -share/locale/dz/LC_MESSAGES/gtk-engines.mo -share/locale/el/LC_MESSAGES/gtk-engines.mo -share/locale/en_GB/LC_MESSAGES/gtk-engines.mo -share/locale/es/LC_MESSAGES/gtk-engines.mo -share/locale/et/LC_MESSAGES/gtk-engines.mo -share/locale/eu/LC_MESSAGES/gtk-engines.mo -share/locale/fi/LC_MESSAGES/gtk-engines.mo -share/locale/fr/LC_MESSAGES/gtk-engines.mo -share/locale/fur/LC_MESSAGES/gtk-engines.mo -share/locale/gl/LC_MESSAGES/gtk-engines.mo -share/locale/gu/LC_MESSAGES/gtk-engines.mo -share/locale/he/LC_MESSAGES/gtk-engines.mo -share/locale/hi/LC_MESSAGES/gtk-engines.mo -share/locale/hu/LC_MESSAGES/gtk-engines.mo -share/locale/it/LC_MESSAGES/gtk-engines.mo -share/locale/ja/LC_MESSAGES/gtk-engines.mo -share/locale/ko/LC_MESSAGES/gtk-engines.mo -share/locale/lt/LC_MESSAGES/gtk-engines.mo -share/locale/mk/LC_MESSAGES/gtk-engines.mo -share/locale/ml/LC_MESSAGES/gtk-engines.mo -share/locale/mr/LC_MESSAGES/gtk-engines.mo -share/locale/nb/LC_MESSAGES/gtk-engines.mo -share/locale/nl/LC_MESSAGES/gtk-engines.mo -share/locale/nn/LC_MESSAGES/gtk-engines.mo -share/locale/oc/LC_MESSAGES/gtk-engines.mo -share/locale/or/LC_MESSAGES/gtk-engines.mo -share/locale/pa/LC_MESSAGES/gtk-engines.mo -share/locale/pl/LC_MESSAGES/gtk-engines.mo -share/locale/pt/LC_MESSAGES/gtk-engines.mo -share/locale/pt_BR/LC_MESSAGES/gtk-engines.mo -share/locale/ro/LC_MESSAGES/gtk-engines.mo -share/locale/ru/LC_MESSAGES/gtk-engines.mo -share/locale/si/LC_MESSAGES/gtk-engines.mo -share/locale/sl/LC_MESSAGES/gtk-engines.mo -share/locale/sq/LC_MESSAGES/gtk-engines.mo -share/locale/sr/LC_MESSAGES/gtk-engines.mo -share/locale/sr@latin/LC_MESSAGES/gtk-engines.mo -share/locale/sv/LC_MESSAGES/gtk-engines.mo -share/locale/ta/LC_MESSAGES/gtk-engines.mo -share/locale/te/LC_MESSAGES/gtk-engines.mo -share/locale/th/LC_MESSAGES/gtk-engines.mo -share/locale/tr/LC_MESSAGES/gtk-engines.mo -share/locale/uk/LC_MESSAGES/gtk-engines.mo -share/locale/vi/LC_MESSAGES/gtk-engines.mo -share/locale/zh_CN/LC_MESSAGES/gtk-engines.mo -share/locale/zh_HK/LC_MESSAGES/gtk-engines.mo -share/locale/zh_TW/LC_MESSAGES/gtk-engines.mo -share/themes/Clearlooks/gtk-2.0/gtkrc -share/themes/Crux/gtk-2.0/gtkrc -share/themes/Industrial/gtk-2.0/gtkrc -share/themes/Mist/gtk-2.0/gtkrc -share/themes/Redmond/gtk-2.0/gtkrc -share/themes/ThinIce/gtk-2.0/gtkrc -@dirrm share/themes/ThinIce/gtk-2.0 -@dirrmtry share/themes/ThinIce -@dirrm share/themes/Redmond/gtk-2.0 -@dirrmtry share/themes/Redmond -@dirrm share/themes/Mist/gtk-2.0 -@dirrmtry share/themes/Mist -@dirrm share/themes/Industrial/gtk-2.0 -@dirrmtry share/themes/Industrial -@dirrm share/themes/Crux/gtk-2.0 -@dirrmtry share/themes/Crux -@dirrm share/themes/Clearlooks/gtk-2.0 -@dirrmtry share/themes/Clearlooks -@dirrmtry share/themes -@dirrm share/gtk-engines -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11-toolkits/eel/Makefile b/x11-toolkits/eel/Makefile deleted file mode 100644 index 7de855a1a..000000000 --- a/x11-toolkits/eel/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: eel2 -# Date created: 8th May 2001 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/eel/Makefile,v 1.83 2009/02/28 21:15:27 marcus Exp $ -# - -PORTNAME= eel -PORTVERSION= 2.26.0 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Generally useful classes and extensions to GNOME - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_XORG= xrender -GNOME_DESKTOP_VERSION=2 -USE_GNOME= gnomeprefix gnomehack gnomedesktop ltverhack intlhack -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-shared --enable-static -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" - -.include <bsd.port.mk> diff --git a/x11-toolkits/eel/distinfo b/x11-toolkits/eel/distinfo deleted file mode 100644 index 524cb219e..000000000 --- a/x11-toolkits/eel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/eel-2.26.0.tar.bz2) = dfa105ccabd53efe4166dcfac75e2393 -SHA256 (gnome2/eel-2.26.0.tar.bz2) = 11ad07d8d371f9165fab6cc5462f59cd253f9cc835d77a54330fecafe9c0a555 -SIZE (gnome2/eel-2.26.0.tar.bz2) = 596217 diff --git a/x11-toolkits/eel/files/patch-Makefile.in b/x11-toolkits/eel/files/patch-Makefile.in deleted file mode 100644 index f58c574eb..000000000 --- a/x11-toolkits/eel/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Mon Jan 16 12:53:35 2006 -+++ Makefile.in Mon Jan 16 12:54:04 2006 -@@ -239,7 +239,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - NULL = --SUBDIRS = eel test po -+SUBDIRS = eel po - EXTRA_DIST = \ - COPYING.LIB \ - HACKING \ diff --git a/x11-toolkits/eel/files/patch-eel_eel-editable-label.c b/x11-toolkits/eel/files/patch-eel_eel-editable-label.c deleted file mode 100644 index 042628e4b..000000000 --- a/x11-toolkits/eel/files/patch-eel_eel-editable-label.c +++ /dev/null @@ -1,13 +0,0 @@ ---- eel/eel-editable-label.c.orig Mon Mar 21 06:20:09 2005 -+++ eel/eel-editable-label.c Mon Mar 21 06:20:12 2005 -@@ -3998,7 +3998,10 @@ - static gboolean - eel_editable_label_accessible_idle_notify_insert (gpointer data) - { -+ GDK_THREADS_ENTER (); - eel_editable_label_accessible_notify_insert (data); -+ GDK_THREADS_LEAVE (); -+ - return FALSE; - } - diff --git a/x11-toolkits/eel/files/patch-eel_eel-stock-dialogs.c b/x11-toolkits/eel/files/patch-eel_eel-stock-dialogs.c deleted file mode 100644 index 4a0ce9c74..000000000 --- a/x11-toolkits/eel/files/patch-eel_eel-stock-dialogs.c +++ /dev/null @@ -1,20 +0,0 @@ ---- eel/eel-stock-dialogs.c.orig 2008-10-07 11:34:27.000000000 +0200 -+++ eel/eel-stock-dialogs.c 2009-02-22 16:33:40.000000000 +0100 -@@ -96,6 +96,8 @@ timed_wait_delayed_close_timeout_callbac - { - guint handler_id; - -+ GDK_THREADS_ENTER (); -+ - handler_id = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (callback_data), - "eel-stock-dialogs/delayed_close_handler_timeout_id")); - -@@ -105,6 +107,8 @@ timed_wait_delayed_close_timeout_callbac - - gtk_object_destroy (GTK_OBJECT (callback_data)); - -+ GDK_THREADS_LEAVE (); -+ - return FALSE; - } - diff --git a/x11-toolkits/eel/pkg-descr b/x11-toolkits/eel/pkg-descr deleted file mode 100644 index 4b91eb9d0..000000000 --- a/x11-toolkits/eel/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -The eel library contains a number of useful classes and functions which -extend glib, gtk, gnome-libs, and other widely-used GNOME platform libraries. - -Almost all of the eel library was previously part of Nautilus, but is now -a separate package so it can be used by other applications. - -WWW: http://www.gnome.org/ diff --git a/x11-toolkits/eel/pkg-plist b/x11-toolkits/eel/pkg-plist deleted file mode 100644 index 0f0359203..000000000 --- a/x11-toolkits/eel/pkg-plist +++ /dev/null @@ -1,157 +0,0 @@ -include/eel-2/eel/eel-accessibility.h -include/eel-2/eel/eel-alert-dialog.h -include/eel-2/eel/eel-art-extensions.h -include/eel-2/eel/eel-art-gtk-extensions.h -include/eel-2/eel/eel-background-box.h -include/eel-2/eel/eel-background.h -include/eel-2/eel/eel-canvas-rect-ellipse.h -include/eel-2/eel/eel-canvas-util.h -include/eel-2/eel/eel-canvas.h -include/eel-2/eel/eel-debug-drawing.h -include/eel-2/eel/eel-debug.h -include/eel-2/eel/eel-editable-label.h -include/eel-2/eel/eel-enumeration.h -include/eel-2/eel/eel-features.h -include/eel-2/eel/eel-gconf-extensions.h -include/eel-2/eel/eel-gdk-extensions.h -include/eel-2/eel/eel-gdk-pixbuf-extensions.h -include/eel-2/eel/eel-glib-extensions.h -include/eel-2/eel/eel-gnome-extensions.h -include/eel-2/eel/eel-graphic-effects.h -include/eel-2/eel/eel-gtk-container.h -include/eel-2/eel/eel-gtk-extensions.h -include/eel-2/eel/eel-gtk-macros.h -include/eel-2/eel/eel-i18n.h -include/eel-2/eel/eel-image-table.h -include/eel-2/eel/eel-labeled-image.h -include/eel-2/eel/eel-marshal.h -include/eel-2/eel/eel-pango-extensions.h -include/eel-2/eel/eel-preferences.h -include/eel-2/eel/eel-self-checks.h -include/eel-2/eel/eel-stock-dialogs.h -include/eel-2/eel/eel-string.h -include/eel-2/eel/eel-type-builtins.h -include/eel-2/eel/eel-types.h -include/eel-2/eel/eel-vfs-extensions.h -include/eel-2/eel/eel-wrap-table.h -include/eel-2/eel/eel-xml-extensions.h -include/eel-2/eel/eel.h -lib/libeel-2.a -lib/libeel-2.la -lib/libeel-2.so -lib/libeel-2.so.2 -libdata/pkgconfig/eel-2.0.pc -share/locale/am/LC_MESSAGES/eel-2.0.mo -share/locale/ang/LC_MESSAGES/eel-2.0.mo -share/locale/ar/LC_MESSAGES/eel-2.0.mo -share/locale/as/LC_MESSAGES/eel-2.0.mo -share/locale/az/LC_MESSAGES/eel-2.0.mo -share/locale/be/LC_MESSAGES/eel-2.0.mo -share/locale/bg/LC_MESSAGES/eel-2.0.mo -share/locale/bn/LC_MESSAGES/eel-2.0.mo -share/locale/bn_IN/LC_MESSAGES/eel-2.0.mo -share/locale/br/LC_MESSAGES/eel-2.0.mo -share/locale/bs/LC_MESSAGES/eel-2.0.mo -share/locale/ca/LC_MESSAGES/eel-2.0.mo -share/locale/cs/LC_MESSAGES/eel-2.0.mo -share/locale/cy/LC_MESSAGES/eel-2.0.mo -share/locale/da/LC_MESSAGES/eel-2.0.mo -share/locale/de/LC_MESSAGES/eel-2.0.mo -share/locale/dz/LC_MESSAGES/eel-2.0.mo -share/locale/el/LC_MESSAGES/eel-2.0.mo -share/locale/en_CA/LC_MESSAGES/eel-2.0.mo -share/locale/en_GB/LC_MESSAGES/eel-2.0.mo -share/locale/es/LC_MESSAGES/eel-2.0.mo -share/locale/et/LC_MESSAGES/eel-2.0.mo -share/locale/eu/LC_MESSAGES/eel-2.0.mo -share/locale/fa/LC_MESSAGES/eel-2.0.mo -share/locale/fi/LC_MESSAGES/eel-2.0.mo -share/locale/fr/LC_MESSAGES/eel-2.0.mo -share/locale/ga/LC_MESSAGES/eel-2.0.mo -share/locale/gl/LC_MESSAGES/eel-2.0.mo -share/locale/gu/LC_MESSAGES/eel-2.0.mo -share/locale/he/LC_MESSAGES/eel-2.0.mo -share/locale/hi/LC_MESSAGES/eel-2.0.mo -share/locale/hr/LC_MESSAGES/eel-2.0.mo -share/locale/hu/LC_MESSAGES/eel-2.0.mo -share/locale/id/LC_MESSAGES/eel-2.0.mo -share/locale/is/LC_MESSAGES/eel-2.0.mo -share/locale/it/LC_MESSAGES/eel-2.0.mo -share/locale/ja/LC_MESSAGES/eel-2.0.mo -share/locale/ka/LC_MESSAGES/eel-2.0.mo -share/locale/kn/LC_MESSAGES/eel-2.0.mo -share/locale/ko/LC_MESSAGES/eel-2.0.mo -share/locale/ku/LC_MESSAGES/eel-2.0.mo -share/locale/ky/LC_MESSAGES/eel-2.0.mo -share/locale/li/LC_MESSAGES/eel-2.0.mo -share/locale/lt/LC_MESSAGES/eel-2.0.mo -share/locale/lv/LC_MESSAGES/eel-2.0.mo -share/locale/mk/LC_MESSAGES/eel-2.0.mo -share/locale/ml/LC_MESSAGES/eel-2.0.mo -share/locale/mn/LC_MESSAGES/eel-2.0.mo -share/locale/mr/LC_MESSAGES/eel-2.0.mo -share/locale/ms/LC_MESSAGES/eel-2.0.mo -share/locale/nb/LC_MESSAGES/eel-2.0.mo -share/locale/ne/LC_MESSAGES/eel-2.0.mo -share/locale/nl/LC_MESSAGES/eel-2.0.mo -share/locale/nn/LC_MESSAGES/eel-2.0.mo -share/locale/oc/LC_MESSAGES/eel-2.0.mo -share/locale/or/LC_MESSAGES/eel-2.0.mo -share/locale/pa/LC_MESSAGES/eel-2.0.mo -share/locale/pl/LC_MESSAGES/eel-2.0.mo -share/locale/ps/LC_MESSAGES/eel-2.0.mo -share/locale/pt/LC_MESSAGES/eel-2.0.mo -share/locale/pt_BR/LC_MESSAGES/eel-2.0.mo -share/locale/ro/LC_MESSAGES/eel-2.0.mo -share/locale/ru/LC_MESSAGES/eel-2.0.mo -share/locale/rw/LC_MESSAGES/eel-2.0.mo -share/locale/si/LC_MESSAGES/eel-2.0.mo -share/locale/sk/LC_MESSAGES/eel-2.0.mo -share/locale/sl/LC_MESSAGES/eel-2.0.mo -share/locale/sq/LC_MESSAGES/eel-2.0.mo -share/locale/sr/LC_MESSAGES/eel-2.0.mo -share/locale/sr@latin/LC_MESSAGES/eel-2.0.mo -share/locale/sv/LC_MESSAGES/eel-2.0.mo -share/locale/ta/LC_MESSAGES/eel-2.0.mo -share/locale/th/LC_MESSAGES/eel-2.0.mo -share/locale/tr/LC_MESSAGES/eel-2.0.mo -share/locale/ug/LC_MESSAGES/eel-2.0.mo -share/locale/uk/LC_MESSAGES/eel-2.0.mo -share/locale/vi/LC_MESSAGES/eel-2.0.mo -share/locale/wa/LC_MESSAGES/eel-2.0.mo -share/locale/xh/LC_MESSAGES/eel-2.0.mo -share/locale/zh_CN/LC_MESSAGES/eel-2.0.mo -share/locale/zh_HK/LC_MESSAGES/eel-2.0.mo -share/locale/zh_TW/LC_MESSAGES/eel-2.0.mo -@dirrm include/eel-2/eel -@dirrm include/eel-2 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang diff --git a/x11-toolkits/gai/Makefile b/x11-toolkits/gai/Makefile deleted file mode 100644 index 06c4e6f38..000000000 --- a/x11-toolkits/gai/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: gai -# Date created: Feb 16, 2004 -# Whom: ijliao -# -# $FreeBSD$ -# - -PORTNAME= gai -PORTVERSION= 0.5.10 -PORTREVISION= 7 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= SF - -MAINTAINER= lx@redundancy.redundancy.org -COMMENT= General Applet Interface Library - -LIB_DEPENDS= gtkglext-x11-1.0:${PORTSDIR}/x11-toolkits/gtkglext - -USE_BZIP2= yes -USE_GL= gl -USE_SDL= sdl -USE_GNOME= gnomepanel -GNU_CONFIGURE= yes -CONFIGURE_ENV= SDLCONF=${SDL_CONFIG} \ - CPPFLAGS="`pkg-config --cflags libgnomeui-2.0`" - -PLIST_FILES= include/gai/gai.h lib/libgai.so.${PORTVERSION} \ - lib/libgai.so.0 lib/libgai.so libdata/pkgconfig/gai.pc \ - share/locale/de/LC_MESSAGES/gai.mo -PLIST_DIRS= include/gai -PORTDOCS= * -USE_LDCONFIG= yes - -post-patch: - @${REINPLACE_CMD} -e "s|sdl-config --|${SDL_CONFIG} --|g; \ - s|/usr/X11R6|${LOCALBASE}|g" ${WRKSRC}/configure - -post-install: -.if !defined(NOPORTDOCS) - cd ${WRKSRC}/docs && \ - ${FIND} * -type d -exec ${MKDIR} "${DOCSDIR}/{}" \; && \ - ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DOCSDIR}/{}" \; -.endif -.for dir in docking examples templates - cd ${WRKSRC} && \ - ${FIND} ${dir} -type d -exec ${MKDIR} "${EXAMPLESDIR}/{}" \; && \ - ${FIND} ${dir} -type f -exec ${INSTALL_DATA} "{}" "${EXAMPLESDIR}/{}" \; -.endfor - @${FIND} ${EXAMPLESDIR} -type f | \ - ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} - @${FIND} ${EXAMPLESDIR} -type d | ${SORT} -r | \ - ${SED} "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/x11-toolkits/gai/distinfo b/x11-toolkits/gai/distinfo deleted file mode 100644 index 0b4a46930..000000000 --- a/x11-toolkits/gai/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gai-0.5.10.tar.bz2) = 1c9cf2fb24ae6c95412c60f256dc3513 -SHA256 (gai-0.5.10.tar.bz2) = ea40cc897637a2dd67e4fe263bd8a280818b21f45516e899359cb3a26283821a -SIZE (gai-0.5.10.tar.bz2) = 288291 diff --git a/x11-toolkits/gai/files/patch-gai_Makefile.in b/x11-toolkits/gai/files/patch-gai_Makefile.in deleted file mode 100644 index 047c61c98..000000000 --- a/x11-toolkits/gai/files/patch-gai_Makefile.in +++ /dev/null @@ -1,32 +0,0 @@ ---- gai/Makefile.in.orig Thu Oct 27 15:00:22 2005 -+++ gai/Makefile.in Thu Oct 27 15:02:47 2005 -@@ -1,9 +1,9 @@ - - # Makefile for the General Applet Interface Library - --CFLAGS += -Wall -O2 -I.. @GTK_CFLAGS@ @SDL_CFLAGS@ @GNOME_CFLAGS@ @GL_CFLAGS@ -+CFLAGS += -Wall -fPIC -I.. @GTK_CFLAGS@ @SDL_CFLAGS@ @GNOME_CFLAGS@ @GL_CFLAGS@ @CPPFLAGS@ - --LDFLAGS += -g -fPIC -L/usr/X11R6/lib -lX11 @SYSTEM_SPECIFIC_LIBS@ @GTK_LIBS@ @GTHREAD_CFLAGS@ @PANGO_CFLAGS@ -+LDFLAGS += -fPIC -L$(LOCALBASE)/lib -lX11 @SYSTEM_SPECIFIC_LIBS@ @GTK_LIBS@ @GTHREAD_CFLAGS@ @PANGO_CFLAGS@ - LDFLAGS += @GNOME_LIBS@ @GL_LIBS@ @SDL_LIBS@ @GTHREAD_LIBS@ @PANGO_LIBS@ - - CC = @CC@ -@@ -23,13 +23,13 @@ - - install: libgai@LIB_END@ - mkdir -p $(DESTDIR)$(PREFIX)/include/gai -- cp gai.h $(DESTDIR)$(PREFIX)/include/gai/ -+ $(BSD_INSTALL_DATA) gai.h $(DESTDIR)$(PREFIX)/include/gai/ - mkdir -p $(DESTDIR)$(LIBDIR) -- cp libgai@LIB_END@ $(DESTDIR)$(LIBDIR)/libgai@LIB_START@.@GAI_MAJOR@.@GAI_MINOR@.@GAI_MICRO@@LIB_DARWIN@ -+ $(BSD_INSTALL_PROGRAM) libgai@LIB_END@ $(DESTDIR)$(LIBDIR)/libgai@LIB_START@.@GAI_MAJOR@.@GAI_MINOR@.@GAI_MICRO@@LIB_DARWIN@ - ln -sf libgai@LIB_START@.@GAI_MAJOR@.@GAI_MINOR@.@GAI_MICRO@@LIB_DARWIN@ $(DESTDIR)$(LIBDIR)/libgai@LIB_START@.@GAI_MAJOR@@LIB_DARWIN@ - ln -sf libgai@LIB_START@.@GAI_MAJOR@@LIB_DARWIN@ $(DESTDIR)$(LIBDIR)/libgai@LIB_END@ -- mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig -- cp ../gai.pc $(DESTDIR)$(LIBDIR)/pkgconfig/ -+ mkdir -p $(DESTDIR)$(PREFIX)/libdata/pkgconfig -+ $(BSD_INSTALL_DATA) ../gai.pc $(DESTDIR)$(PREFIX)/libdata/pkgconfig/ - uninstall: - rm -f $(DESTDIR)$(PREFIX)/include/gai/gai.h - rmdir $(DESTDIR)$(PREFIX)/include/gai diff --git a/x11-toolkits/gai/files/patch-po_Makefile.in b/x11-toolkits/gai/files/patch-po_Makefile.in deleted file mode 100644 index afb7b9c46..000000000 --- a/x11-toolkits/gai/files/patch-po_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- po/Makefile.in.orig Thu Oct 27 15:35:03 2005 -+++ po/Makefile.in Thu Oct 27 15:35:11 2005 -@@ -20,7 +20,7 @@ - - install: - for LANG in $(LINGUAS); do $(MSGFMT) $$LANG.po --output-file=$$LANG.mo; done -- for LANG in $(LINGUAS); do mkdir -p $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES && cp $$LANG.mo $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES/$(GETTEXT_PACKAGE).mo;done -+ for LANG in $(LINGUAS); do mkdir -p $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES && $(BSD_INSTALL_DATA) $$LANG.mo $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES/$(GETTEXT_PACKAGE).mo;done - - uninstall: - for LANG in $(LINGUAS); do rm $(LOCALE_PREFIX)/$$LANG/LC_MESSAGES/$$LANG.mo; done diff --git a/x11-toolkits/gai/pkg-descr b/x11-toolkits/gai/pkg-descr deleted file mode 100644 index 1b2a81e4f..000000000 --- a/x11-toolkits/gai/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -This library is intended to simplify the development and use of Dockapps, ROX -panel applets and Gnome 2 Panel Applets. With this library the programmer can -focus on what the applet shall do, not on the interface. - -What this library provides: - - Dockapp support. - - Gnome 2 Panel support. - - ROX panel support. - - Handling of all sizes of the Gnome Panel. - - Handle Gnome Panel rotation. - - Simple image file handeling via gdk_pixbuf. - - Loading and storing of configuration values and strings. - - A simple structual way of making preferences window. - - Generates images from ascii text based upon fonts. - - Support for both Gnome 2 Panel Applets, ROX panel applets and - Dockaps/wmapplets. - - Support for OpenGL applets. - - Simple interface to connect events, like mouse button clicks, joystick - events and so on. - - Easy to add support for other panels. - - Nice configure and makefile scripts that generates the needed files - for ROX and Gnome. - -WWW: http://gai.sourceforge.net/ diff --git a/x11-toolkits/gdl/Makefile b/x11-toolkits/gdl/Makefile deleted file mode 100644 index 8742b22a6..000000000 --- a/x11-toolkits/gdl/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: gdl -# Date created: 24 July 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/gdl/Makefile,v 1.21 2009/03/03 08:12:00 marcus Exp $ -# - -PORTNAME= gdl -PORTVERSION= 2.26.0 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Components intended to be shared between GNOME development tools - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack libgnomeui -USE_GETTEXT= yes -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> diff --git a/x11-toolkits/gdl/distinfo b/x11-toolkits/gdl/distinfo deleted file mode 100644 index 3a73d7506..000000000 --- a/x11-toolkits/gdl/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gdl-2.26.0.tar.bz2) = 8915b8808d88e12c1bb53e84f50e6707 -SHA256 (gdl-2.26.0.tar.bz2) = ed69d46a1eb490b28812c2cc28769d74e8664ed7617c579806c6146ff9addb54 -SIZE (gdl-2.26.0.tar.bz2) = 541006 diff --git a/x11-toolkits/gdl/pkg-descr b/x11-toolkits/gdl/pkg-descr deleted file mode 100644 index 1aca67859..000000000 --- a/x11-toolkits/gdl/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -Gnome Devtool Libraries -======================= - -This package contains components and libraries that are intended to be -shared between Scaffold, the new GNOME 2 development system. - -The current pieces of GDL include: - - - A code-editing bonobo component based on GtkSourceView - - - An utility library that also contains the stubs and skels for - the above components (gdl). - -WWW: http://www.gnome.org/ diff --git a/x11-toolkits/gdl/pkg-plist b/x11-toolkits/gdl/pkg-plist deleted file mode 100644 index 62b613749..000000000 --- a/x11-toolkits/gdl/pkg-plist +++ /dev/null @@ -1,131 +0,0 @@ -include/libgdl-1.0/gdl/gdl-combo-button.h -include/libgdl-1.0/gdl/gdl-dock-bar.h -include/libgdl-1.0/gdl/gdl-dock-item.h -include/libgdl-1.0/gdl/gdl-dock-layout.h -include/libgdl-1.0/gdl/gdl-dock-master.h -include/libgdl-1.0/gdl/gdl-dock-notebook.h -include/libgdl-1.0/gdl/gdl-dock-object.h -include/libgdl-1.0/gdl/gdl-dock-paned.h -include/libgdl-1.0/gdl/gdl-dock-placeholder.h -include/libgdl-1.0/gdl/gdl-dock-tablabel.h -include/libgdl-1.0/gdl/gdl-dock.h -include/libgdl-1.0/gdl/gdl-stock-icons.h -include/libgdl-1.0/gdl/gdl-stock.h -include/libgdl-1.0/gdl/gdl-switcher.h -include/libgdl-1.0/gdl/gdl-tools.h -include/libgdl-1.0/gdl/gdl.h -include/libgdl-1.0/gdl/libgdltypebuiltins.h -lib/libgdl-1.la -lib/libgdl-1.so -lib/libgdl-1.so.0 -libdata/pkgconfig/gdl-1.0.pc -%%DOCSDIR%%/GdlComboButton.html -%%DOCSDIR%%/GdlDock.html -%%DOCSDIR%%/GdlDockBar.html -%%DOCSDIR%%/GdlDockItem.html -%%DOCSDIR%%/GdlDockLayout.html -%%DOCSDIR%%/GdlDockMaster.html -%%DOCSDIR%%/GdlDockNotebook.html -%%DOCSDIR%%/GdlDockObject.html -%%DOCSDIR%%/GdlDockPaned.html -%%DOCSDIR%%/GdlDockPlaceholder.html -%%DOCSDIR%%/GdlDockTablabel.html -%%DOCSDIR%%/GdlSwitcher.html -%%DOCSDIR%%/gdl-gdl-tools.html -%%DOCSDIR%%/gdl-main.html -%%DOCSDIR%%/gdl.devhelp -%%DOCSDIR%%/gdl.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/gdl/glade/layout.glade -share/locale/am/LC_MESSAGES/gdl-1.mo -share/locale/ar/LC_MESSAGES/gdl-1.mo -share/locale/ast/LC_MESSAGES/gdl-1.mo -share/locale/az/LC_MESSAGES/gdl-1.mo -share/locale/bg/LC_MESSAGES/gdl-1.mo -share/locale/ca/LC_MESSAGES/gdl-1.mo -share/locale/cs/LC_MESSAGES/gdl-1.mo -share/locale/da/LC_MESSAGES/gdl-1.mo -share/locale/de/LC_MESSAGES/gdl-1.mo -share/locale/dz/LC_MESSAGES/gdl-1.mo -share/locale/el/LC_MESSAGES/gdl-1.mo -share/locale/en_CA/LC_MESSAGES/gdl-1.mo -share/locale/en_GB/LC_MESSAGES/gdl-1.mo -share/locale/es/LC_MESSAGES/gdl-1.mo -share/locale/et/LC_MESSAGES/gdl-1.mo -share/locale/eu/LC_MESSAGES/gdl-1.mo -share/locale/fi/LC_MESSAGES/gdl-1.mo -share/locale/fr/LC_MESSAGES/gdl-1.mo -share/locale/ga/LC_MESSAGES/gdl-1.mo -share/locale/gl/LC_MESSAGES/gdl-1.mo -share/locale/gu/LC_MESSAGES/gdl-1.mo -share/locale/he/LC_MESSAGES/gdl-1.mo -share/locale/hi/LC_MESSAGES/gdl-1.mo -share/locale/hr/LC_MESSAGES/gdl-1.mo -share/locale/hu/LC_MESSAGES/gdl-1.mo -share/locale/it/LC_MESSAGES/gdl-1.mo -share/locale/ja/LC_MESSAGES/gdl-1.mo -share/locale/ko/LC_MESSAGES/gdl-1.mo -share/locale/lt/LC_MESSAGES/gdl-1.mo -share/locale/lv/LC_MESSAGES/gdl-1.mo -share/locale/mk/LC_MESSAGES/gdl-1.mo -share/locale/ml/LC_MESSAGES/gdl-1.mo -share/locale/mr/LC_MESSAGES/gdl-1.mo -share/locale/nb/LC_MESSAGES/gdl-1.mo -share/locale/ne/LC_MESSAGES/gdl-1.mo -share/locale/nl/LC_MESSAGES/gdl-1.mo -share/locale/oc/LC_MESSAGES/gdl-1.mo -share/locale/or/LC_MESSAGES/gdl-1.mo -share/locale/pa/LC_MESSAGES/gdl-1.mo -share/locale/pl/LC_MESSAGES/gdl-1.mo -share/locale/ps/LC_MESSAGES/gdl-1.mo -share/locale/pt/LC_MESSAGES/gdl-1.mo -share/locale/pt_BR/LC_MESSAGES/gdl-1.mo -share/locale/ro/LC_MESSAGES/gdl-1.mo -share/locale/ru/LC_MESSAGES/gdl-1.mo -share/locale/rw/LC_MESSAGES/gdl-1.mo -share/locale/si/LC_MESSAGES/gdl-1.mo -share/locale/sk/LC_MESSAGES/gdl-1.mo -share/locale/sl/LC_MESSAGES/gdl-1.mo -share/locale/sq/LC_MESSAGES/gdl-1.mo -share/locale/sr/LC_MESSAGES/gdl-1.mo -share/locale/sr@latin/LC_MESSAGES/gdl-1.mo -share/locale/sv/LC_MESSAGES/gdl-1.mo -share/locale/te/LC_MESSAGES/gdl-1.mo -share/locale/th/LC_MESSAGES/gdl-1.mo -share/locale/tr/LC_MESSAGES/gdl-1.mo -share/locale/uk/LC_MESSAGES/gdl-1.mo -share/locale/vi/LC_MESSAGES/gdl-1.mo -share/locale/zh_CN/LC_MESSAGES/gdl-1.mo -share/locale/zh_HK/LC_MESSAGES/gdl-1.mo -share/locale/zh_TW/LC_MESSAGES/gdl-1.mo -@dirrm share/gdl/glade -@dirrm share/gdl -@dirrm %%DOCSDIR%% -@dirrm include/libgdl-1.0/gdl -@dirrm include/libgdl-1.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile deleted file mode 100644 index 2f44ff3fb..000000000 --- a/x11-toolkits/gtk20/Makefile +++ /dev/null @@ -1,103 +0,0 @@ -# New ports collection makefile for: gtk13 -# Date Created: 28 Sep 1997 -# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/gtk20/Makefile,v 1.151 2009/03/03 21:30:09 marcus Exp $ -# - -PORTNAME= gtk -PORTVERSION= 2.16.0 -PORTREVISION?= 0 -CATEGORIES= x11-toolkits -MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/,} \ - ftp://ftp.gtk.org/pub/gtk/%SUBDIR%/ \ - ftp://ftp.gimp.org/pub/%SUBDIR%/ \ - ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \ - http://www.ameth.org/gimp/%SUBDIR%/ \ - ftp://ftp.mirror.ac.uk/sites/ftp.gimp.org/pub/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,} -MASTER_SITE_SUBDIR= gtk/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTNAME= gtk+-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Gimp Toolkit for X11 GUI (current stable version) - -USE_BZIP2= yes -LATEST_LINK= gtk20 - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png \ - tiff.4:${PORTSDIR}/graphics/tiff \ - jpeg.9:${PORTSDIR}/graphics/jpeg \ - jasper.4:${PORTSDIR}/graphics/jasper -RUN_DEPENDS+= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info \ - ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme - -USE_GMAKE= yes -USE_PERL5= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomehack atk pango ltverhack -USE_GETTEXT= yes -USE_XORG= xext xrender x11 xinerama xi xrandr xcursor xfixes xdamage \ - xcomposite -CONFIGURE_ARGS= --enable-static --with-xinput=yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype2 \ - -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -GTK_VERSION= 2.10.0 -PLIST_SUB= GTK_VERSION="${GTK_VERSION}" - -gdk_pixbuf_MAN= gdk-pixbuf-query-loaders.1 -gtk_MAN= gtk-query-immodules-2.0.1 gtk-update-icon-cache.1 - -MAN1= ${gdk_pixbuf_MAN} ${gtk_MAN} - -.if defined(WITH_DEBUG) -CONFIGURE_ARGS+= --enable-debug=yes -.endif - -.include <bsd.port.pre.mk> - -.if (defined(WITH_CUPS) || exists(${LOCALBASE}/lib/libcups.so)) && \ - !defined(WITHOUT_CUPS) -LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base -CONFIGURE_ARGS+=--enable-cups=auto -PLIST_SUB+= CUPS:="" -.else -CONFIGURE_ARGS+=--disable-cups -PLIST_SUB+= CUPS:="@comment " -.endif - -post-patch: - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${GREP} -l lgmodule | \ - ${XARGS} ${REINPLACE_CMD} -e 's|-lgmodule|@GMODULE_LIBS@|g' - @${REINPLACE_CMD} -e 's|[{]libdir[}]/locale|{datadir}/locale|g' \ - ${WRKSRC}/configure -# GnomeVFS needs pthread; gtk-demo may use GnomeVFS (via GtkFileChooser) - @${REINPLACE_CMD} -e 's|@CFLAGS@|& ${PTHREAD_CFLAGS}|; \ - s|@LDFLAGS@|& ${PTHREAD_LIBS}|' \ - ${WRKSRC}/demos/gtk-demo/Makefile.in - @${REINPLACE_CMD} -e 's|@LN_S@|${LN} -sf|' ${WRKSRC}/gtk/Makefile.in - @${REINPLACE_CMD} -e 's|file,cups|file,cups,lpr|' \ - ${WRKSRC}/gtk/Makefile.in - -pre-build: - @${RM} -rf ${WRKSRC}/docs/gtk.info* - -post-install: - -@${FIND} ${LOCALBASE}/share/icons -type d -depth 1 -exec \ - ${PREFIX}/bin/gtk-update-icon-cache -q -f {} \; 2>/dev/null - @${MKDIR} ${PREFIX}/lib/gtk-2.0/modules - @${MKDIR} ${PREFIX}/lib/gtk-2.0/${GTK_VERSION}/engines - ${INSTALL_MAN} ${gdk_pixbuf_MAN:S|^|${WRKSRC}/docs/reference/gdk-pixbuf/|} \ - ${PREFIX}/man/man1 - ${INSTALL_MAN} ${gtk_MAN:S|^|${WRKSRC}/docs/reference/gtk/|} \ - ${PREFIX}/man/man1 - -.include <bsd.port.post.mk> - -.endif diff --git a/x11-toolkits/gtk20/distinfo b/x11-toolkits/gtk20/distinfo deleted file mode 100644 index 837351c54..000000000 --- a/x11-toolkits/gtk20/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gtk+-2.16.0.tar.bz2) = 139528802794287427fd4d18875b5cf5 -SHA256 (gnome2/gtk+-2.16.0.tar.bz2) = ff25cbf43dd5c5f8cddc1b2094505c1d079a576b873a6d3d6b62d95da1bdd1d7 -SIZE (gnome2/gtk+-2.16.0.tar.bz2) = 17978429 diff --git a/x11-toolkits/gtk20/files/patch-Makefile.in b/x11-toolkits/gtk20/files/patch-Makefile.in deleted file mode 100644 index 307fd6fc2..000000000 --- a/x11-toolkits/gtk20/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Wed Aug 3 18:09:32 2005 -+++ Makefile.in Wed Aug 3 18:10:01 2005 -@@ -288,7 +288,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - --SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests perf contrib -+SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos perf contrib - SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros - - # require automake 1.4 diff --git a/x11-toolkits/gtk20/files/patch-ah b/x11-toolkits/gtk20/files/patch-ah deleted file mode 100644 index 88bfe209d..000000000 --- a/x11-toolkits/gtk20/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- docs/Makefile.in.orig Fri Oct 24 21:47:52 2003 -+++ docs/Makefile.in Fri Oct 24 23:35:09 2003 -@@ -179,7 +179,7 @@ - MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ --MAKEINFO = @MAKEINFO@ -+MAKEINFO = @MAKEINFO@ --no-split - MKINSTALLDIRS = @MKINSTALLDIRS@ - MSGFMT = @MSGFMT@ - MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ diff --git a/x11-toolkits/gtk20/files/patch-ai b/x11-toolkits/gtk20/files/patch-ai deleted file mode 100644 index a7c07057c..000000000 --- a/x11-toolkits/gtk20/files/patch-ai +++ /dev/null @@ -1,11 +0,0 @@ ---- docs/reference/Makefile.in.orig 2008-02-23 10:25:17.000000000 -0500 -+++ docs/reference/Makefile.in 2008-02-23 10:26:36.000000000 -0500 -@@ -372,7 +372,7 @@ - && DISPLAY=:$$XID && export DISPLAY - - --SUBDIRS = gdk-pixbuf gdk gtk libgail-util -+SUBDIRS = # gdk-pixbuf gdk gtk libgail-util - subdir = docs/reference - ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/x11-toolkits/gtk20/files/patch-ak b/x11-toolkits/gtk20/files/patch-ak deleted file mode 100644 index 7f8e0eb0c..000000000 --- a/x11-toolkits/gtk20/files/patch-ak +++ /dev/null @@ -1,11 +0,0 @@ ---- gdk/Makefile.in.orig Thu Feb 14 12:38:26 2002 -+++ gdk/Makefile.in Thu Feb 14 12:45:37 2002 -@@ -315,7 +315,7 @@ - # - # Rule to install gdkconfig.h header file - # --configexecincludedir = $(libdir)/gtk-2.0/include -+configexecincludedir = $(prefix)/include/gtk-2.0 - - #note: not gdkconfig.h - BUILT_SOURCES = stamp-gc-h @REBUILD@ gdkenumtypes.c gdkenumtypes.h diff --git a/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in b/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in deleted file mode 100644 index 1bedfdf55..000000000 --- a/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in +++ /dev/null @@ -1,15 +0,0 @@ ---- gdk-pixbuf/Makefile.in.orig Wed Mar 2 15:56:36 2005 -+++ gdk-pixbuf/Makefile.in Wed Mar 2 15:57:08 2005 -@@ -519,10 +519,10 @@ - - bin_PROGRAMS = gdk-pixbuf-csource gdk-pixbuf-query-loaders - gdk_pixbuf_csource_SOURCES = gdk-pixbuf-csource.c --gdk_pixbuf_csource_LDADD = $(LDADDS) -+gdk_pixbuf_csource_LDADD = $(LDADDS) $(GLIB_LIBS) - - gdk_pixbuf_query_loaders_DEPENDENCIES = $(DEPS) --gdk_pixbuf_query_loaders_LDADD = $(LDADDS) -+gdk_pixbuf_query_loaders_LDADD = $(LDADDS) $(GLIB_LIBS) - - gdk_pixbuf_query_loaders_SOURCES = queryloaders.c - diff --git a/x11-toolkits/gtk20/files/patch-gtk_Makefile.in b/x11-toolkits/gtk20/files/patch-gtk_Makefile.in deleted file mode 100644 index 610ece8f3..000000000 --- a/x11-toolkits/gtk20/files/patch-gtk_Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- gtk/Makefile.in.orig Sat May 6 04:47:11 2006 -+++ gtk/Makefile.in Sat May 6 04:48:06 2006 -@@ -1009,11 +1009,11 @@ LDADDS = \ - bin_PROGRAMS = gtk-query-immodules-2.0 gtk-update-icon-cache - - gtk_query_immodules_2_0_DEPENDENCIES = $(DEPS) --gtk_query_immodules_2_0_LDADD = $(LDADDS) -+gtk_query_immodules_2_0_LDADD = $(LDADDS) $(GLIB_LIBS) - - gtk_query_immodules_2_0_SOURCES = queryimmodules.c - --gtk_update_icon_cache_LDADD = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la -+gtk_update_icon_cache_LDADD = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la $(GLIB_LIBS) - - gtk_update_icon_cache_SOURCES = updateiconcache.c - diff --git a/x11-toolkits/gtk20/files/patch-gtk_gtkscalebutton.c b/x11-toolkits/gtk20/files/patch-gtk_gtkscalebutton.c deleted file mode 100644 index eb85ae278..000000000 --- a/x11-toolkits/gtk20/files/patch-gtk_gtkscalebutton.c +++ /dev/null @@ -1,133 +0,0 @@ ---- gtk/gtkscalebutton.c 2009/03/06 14:06:46 22478 -+++ gtk/gtkscalebutton.c 2009/03/18 21:19:07 22574 -@@ -119,6 +119,8 @@ - guint prop_id, - GValue *value, - GParamSpec *pspec); -+static void gtk_scale_button_set_orientation_private (GtkScaleButton *button, -+ GtkOrientation orientation); - static gboolean gtk_scale_button_scroll (GtkWidget *widget, - GdkEventScroll *event); - static void gtk_scale_button_screen_changed (GtkWidget *widget, -@@ -434,7 +436,7 @@ - switch (prop_id) - { - case PROP_ORIENTATION: -- gtk_scale_button_set_orientation (button, g_value_get_enum (value)); -+ gtk_scale_button_set_orientation_private (button, g_value_get_enum (value)); - break; - case PROP_VALUE: - gtk_scale_button_set_value (button, g_value_get_double (value)); -@@ -739,54 +741,9 @@ - gtk_scale_button_set_orientation (GtkScaleButton *button, - GtkOrientation orientation) - { -- GtkScaleButtonPrivate *priv; -- - g_return_if_fail (GTK_IS_SCALE_BUTTON (button)); - -- priv = button->priv; -- -- if (orientation != priv->orientation) -- { -- priv->orientation = orientation; -- -- gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->box), -- orientation); -- gtk_container_child_set (GTK_CONTAINER (priv->box), -- button->plus_button, -- "pack-type", -- orientation == GTK_ORIENTATION_VERTICAL ? -- GTK_PACK_START : GTK_PACK_END, -- NULL); -- gtk_container_child_set (GTK_CONTAINER (priv->box), -- button->minus_button, -- "pack-type", -- orientation == GTK_ORIENTATION_VERTICAL ? -- GTK_PACK_END : GTK_PACK_START, -- NULL); -- -- gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->scale), -- orientation); -- -- if (orientation == GTK_ORIENTATION_VERTICAL) -- { -- gtk_widget_set_size_request (GTK_WIDGET (priv->scale), -- -1, SCALE_SIZE); -- gtk_range_set_inverted (GTK_RANGE (priv->scale), TRUE); -- } -- else -- { -- gtk_widget_set_size_request (GTK_WIDGET (priv->scale), -- SCALE_SIZE, -1); -- gtk_range_set_inverted (GTK_RANGE (priv->scale), FALSE); -- } -- -- /* FIXME: without this, the popup window appears as a square -- * after changing the orientation -- */ -- gtk_window_resize (GTK_WINDOW (priv->dock), 1, 1); -- -- g_object_notify (G_OBJECT (button), "orientation"); -- } -+ gtk_scale_button_set_orientation_private (button, orientation); - } - - /** -@@ -843,6 +800,56 @@ - return button->priv->dock; - } - -+static void -+gtk_scale_button_set_orientation_private (GtkScaleButton *button, -+ GtkOrientation orientation) -+{ -+ GtkScaleButtonPrivate *priv = button->priv; -+ -+ if (orientation != priv->orientation) -+ { -+ priv->orientation = orientation; -+ -+ gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->box), -+ orientation); -+ gtk_container_child_set (GTK_CONTAINER (priv->box), -+ button->plus_button, -+ "pack-type", -+ orientation == GTK_ORIENTATION_VERTICAL ? -+ GTK_PACK_START : GTK_PACK_END, -+ NULL); -+ gtk_container_child_set (GTK_CONTAINER (priv->box), -+ button->minus_button, -+ "pack-type", -+ orientation == GTK_ORIENTATION_VERTICAL ? -+ GTK_PACK_END : GTK_PACK_START, -+ NULL); -+ -+ gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->scale), -+ orientation); -+ -+ if (orientation == GTK_ORIENTATION_VERTICAL) -+ { -+ gtk_widget_set_size_request (GTK_WIDGET (priv->scale), -+ -1, SCALE_SIZE); -+ gtk_range_set_inverted (GTK_RANGE (priv->scale), TRUE); -+ } -+ else -+ { -+ gtk_widget_set_size_request (GTK_WIDGET (priv->scale), -+ SCALE_SIZE, -1); -+ gtk_range_set_inverted (GTK_RANGE (priv->scale), FALSE); -+ } -+ -+ /* FIXME: without this, the popup window appears as a square -+ * after changing the orientation -+ */ -+ gtk_window_resize (GTK_WINDOW (priv->dock), 1, 1); -+ -+ g_object_notify (G_OBJECT (button), "orientation"); -+ } -+} -+ - /* - * button callbacks. - */ diff --git a/x11-toolkits/gtk20/files/patch-gtk_gtksignal.h b/x11-toolkits/gtk20/files/patch-gtk_gtksignal.h deleted file mode 100644 index c687dec40..000000000 --- a/x11-toolkits/gtk20/files/patch-gtk_gtksignal.h +++ /dev/null @@ -1,13 +0,0 @@ ---- gtk/gtksignal.h.orig 2008-06-12 01:40:59.000000000 -0400 -+++ gtk/gtksignal.h 2008-06-11 18:21:47.000000000 -0400 -@@ -29,7 +29,9 @@ - #ifndef __GTK_SIGNAL_H__ - #define __GTK_SIGNAL_H__ - --#include <gtk/gtk.h> -+#include <gtk/gtkenums.h> -+#include <gtk/gtktypeutils.h> -+#include <gtk/gtkobject.h> - #include <gtk/gtkmarshal.h> - - G_BEGIN_DECLS diff --git a/x11-toolkits/gtk20/files/patch-gtk_updateiconcache.c b/x11-toolkits/gtk20/files/patch-gtk_updateiconcache.c deleted file mode 100644 index 354837da5..000000000 --- a/x11-toolkits/gtk20/files/patch-gtk_updateiconcache.c +++ /dev/null @@ -1,11 +0,0 @@ ---- gtk/updateiconcache.c.orig 2008-02-16 11:33:25.000000000 -0500 -+++ gtk/updateiconcache.c 2008-02-16 11:33:33.000000000 -0500 -@@ -1477,7 +1477,7 @@ build_cache (const gchar *path) - if (!validate_file (tmp_cache_path)) - { - g_printerr (_("The generated cache was invalid.\n")); -- //g_unlink (tmp_cache_path); -+ g_unlink (tmp_cache_path); - exit (1); - } - diff --git a/x11-toolkits/gtk20/pkg-descr b/x11-toolkits/gtk20/pkg-descr deleted file mode 100644 index 8cee4afc7..000000000 --- a/x11-toolkits/gtk20/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -The GIMP ToolKit (GTK+) is a collection of GUI widgets. GTK+ -essentially provides the building blocks from which GUIs can be -built. It is highly themable, and its functionality is highly -extensible. - -GTK+-2 is a very stable release, similar only in design to GTK+-1. -GTK+-2 can coexist happily alongside GTK+-1, but applications are -written for one version or the other. - -WWW: http://www.gtk.org/ diff --git a/x11-toolkits/gtk20/pkg-plist b/x11-toolkits/gtk20/pkg-plist deleted file mode 100644 index 830f0e739..000000000 --- a/x11-toolkits/gtk20/pkg-plist +++ /dev/null @@ -1,745 +0,0 @@ -bin/gdk-pixbuf-csource -bin/gdk-pixbuf-query-loaders -bin/gtk-builder-convert -bin/gtk-demo -bin/gtk-query-immodules-2.0 -bin/gtk-update-icon-cache -etc/gtk-2.0/gdk-pixbuf.loaders -etc/gtk-2.0/gtk.immodules -etc/gtk-2.0/im-multipress.conf -include/gail-1.0/gail/gailwidget.h -include/gail-1.0/libgail-util/gail-util.h -include/gail-1.0/libgail-util/gailmisc.h -include/gail-1.0/libgail-util/gailtextutil.h -include/gtk-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlib.h -include/gtk-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-marshal.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h -include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h -include/gtk-2.0/gdk-pixbuf/gdk-pixdata.h -include/gtk-2.0/gdk/gdk.h -include/gtk-2.0/gdk/gdkapplaunchcontext.h -include/gtk-2.0/gdk/gdkcairo.h -include/gtk-2.0/gdk/gdkcolor.h -include/gtk-2.0/gdk/gdkcursor.h -include/gtk-2.0/gdk/gdkdisplay.h -include/gtk-2.0/gdk/gdkdisplaymanager.h -include/gtk-2.0/gdk/gdkdnd.h -include/gtk-2.0/gdk/gdkdrawable.h -include/gtk-2.0/gdk/gdkenumtypes.h -include/gtk-2.0/gdk/gdkevents.h -include/gtk-2.0/gdk/gdkfont.h -include/gtk-2.0/gdk/gdkgc.h -include/gtk-2.0/gdk/gdki18n.h -include/gtk-2.0/gdk/gdkimage.h -include/gtk-2.0/gdk/gdkinput.h -include/gtk-2.0/gdk/gdkkeys.h -include/gtk-2.0/gdk/gdkkeysyms.h -include/gtk-2.0/gdk/gdkpango.h -include/gtk-2.0/gdk/gdkpixbuf.h -include/gtk-2.0/gdk/gdkpixmap.h -include/gtk-2.0/gdk/gdkprivate.h -include/gtk-2.0/gdk/gdkproperty.h -include/gtk-2.0/gdk/gdkregion.h -include/gtk-2.0/gdk/gdkrgb.h -include/gtk-2.0/gdk/gdkscreen.h -include/gtk-2.0/gdk/gdkselection.h -include/gtk-2.0/gdk/gdkspawn.h -include/gtk-2.0/gdk/gdktestutils.h -include/gtk-2.0/gdk/gdktypes.h -include/gtk-2.0/gdk/gdkvisual.h -include/gtk-2.0/gdk/gdkwindow.h -include/gtk-2.0/gdk/gdkx.h -include/gtk-2.0/gdkconfig.h -include/gtk-2.0/gtk/gtk.h -include/gtk-2.0/gtk/gtkaboutdialog.h -include/gtk-2.0/gtk/gtkaccelgroup.h -include/gtk-2.0/gtk/gtkaccellabel.h -include/gtk-2.0/gtk/gtkaccelmap.h -include/gtk-2.0/gtk/gtkaccessible.h -include/gtk-2.0/gtk/gtkaction.h -include/gtk-2.0/gtk/gtkactiongroup.h -include/gtk-2.0/gtk/gtkactivatable.h -include/gtk-2.0/gtk/gtkadjustment.h -include/gtk-2.0/gtk/gtkalignment.h -include/gtk-2.0/gtk/gtkarrow.h -include/gtk-2.0/gtk/gtkaspectframe.h -include/gtk-2.0/gtk/gtkassistant.h -include/gtk-2.0/gtk/gtkbbox.h -include/gtk-2.0/gtk/gtkbin.h -include/gtk-2.0/gtk/gtkbindings.h -include/gtk-2.0/gtk/gtkbox.h -include/gtk-2.0/gtk/gtkbuildable.h -include/gtk-2.0/gtk/gtkbuilder.h -include/gtk-2.0/gtk/gtkbutton.h -include/gtk-2.0/gtk/gtkcalendar.h -include/gtk-2.0/gtk/gtkcelleditable.h -include/gtk-2.0/gtk/gtkcelllayout.h -include/gtk-2.0/gtk/gtkcellrenderer.h -include/gtk-2.0/gtk/gtkcellrendereraccel.h -include/gtk-2.0/gtk/gtkcellrenderercombo.h -include/gtk-2.0/gtk/gtkcellrendererpixbuf.h -include/gtk-2.0/gtk/gtkcellrendererprogress.h -include/gtk-2.0/gtk/gtkcellrendererspin.h -include/gtk-2.0/gtk/gtkcellrenderertext.h -include/gtk-2.0/gtk/gtkcellrenderertoggle.h -include/gtk-2.0/gtk/gtkcellview.h -include/gtk-2.0/gtk/gtkcheckbutton.h -include/gtk-2.0/gtk/gtkcheckmenuitem.h -include/gtk-2.0/gtk/gtkclipboard.h -include/gtk-2.0/gtk/gtkclist.h -include/gtk-2.0/gtk/gtkcolorbutton.h -include/gtk-2.0/gtk/gtkcolorsel.h -include/gtk-2.0/gtk/gtkcolorseldialog.h -include/gtk-2.0/gtk/gtkcombo.h -include/gtk-2.0/gtk/gtkcombobox.h -include/gtk-2.0/gtk/gtkcomboboxentry.h -include/gtk-2.0/gtk/gtkcontainer.h -include/gtk-2.0/gtk/gtkctree.h -include/gtk-2.0/gtk/gtkcurve.h -include/gtk-2.0/gtk/gtkdebug.h -include/gtk-2.0/gtk/gtkdialog.h -include/gtk-2.0/gtk/gtkdnd.h -include/gtk-2.0/gtk/gtkdrawingarea.h -include/gtk-2.0/gtk/gtkeditable.h -include/gtk-2.0/gtk/gtkentry.h -include/gtk-2.0/gtk/gtkentrycompletion.h -include/gtk-2.0/gtk/gtkenums.h -include/gtk-2.0/gtk/gtkeventbox.h -include/gtk-2.0/gtk/gtkexpander.h -include/gtk-2.0/gtk/gtkfilechooser.h -include/gtk-2.0/gtk/gtkfilechooserbutton.h -include/gtk-2.0/gtk/gtkfilechooserdialog.h -include/gtk-2.0/gtk/gtkfilechooserwidget.h -include/gtk-2.0/gtk/gtkfilefilter.h -include/gtk-2.0/gtk/gtkfilesel.h -include/gtk-2.0/gtk/gtkfixed.h -include/gtk-2.0/gtk/gtkfontbutton.h -include/gtk-2.0/gtk/gtkfontsel.h -include/gtk-2.0/gtk/gtkframe.h -include/gtk-2.0/gtk/gtkgamma.h -include/gtk-2.0/gtk/gtkgc.h -include/gtk-2.0/gtk/gtkhandlebox.h -include/gtk-2.0/gtk/gtkhbbox.h -include/gtk-2.0/gtk/gtkhbox.h -include/gtk-2.0/gtk/gtkhpaned.h -include/gtk-2.0/gtk/gtkhruler.h -include/gtk-2.0/gtk/gtkhscale.h -include/gtk-2.0/gtk/gtkhscrollbar.h -include/gtk-2.0/gtk/gtkhseparator.h -include/gtk-2.0/gtk/gtkhsv.h -include/gtk-2.0/gtk/gtkiconfactory.h -include/gtk-2.0/gtk/gtkicontheme.h -include/gtk-2.0/gtk/gtkiconview.h -include/gtk-2.0/gtk/gtkimage.h -include/gtk-2.0/gtk/gtkimagemenuitem.h -include/gtk-2.0/gtk/gtkimcontext.h -include/gtk-2.0/gtk/gtkimcontextsimple.h -include/gtk-2.0/gtk/gtkimmodule.h -include/gtk-2.0/gtk/gtkimmulticontext.h -include/gtk-2.0/gtk/gtkinputdialog.h -include/gtk-2.0/gtk/gtkinvisible.h -include/gtk-2.0/gtk/gtkitem.h -include/gtk-2.0/gtk/gtkitemfactory.h -include/gtk-2.0/gtk/gtklabel.h -include/gtk-2.0/gtk/gtklayout.h -include/gtk-2.0/gtk/gtklinkbutton.h -include/gtk-2.0/gtk/gtklist.h -include/gtk-2.0/gtk/gtklistitem.h -include/gtk-2.0/gtk/gtkliststore.h -include/gtk-2.0/gtk/gtkmain.h -include/gtk-2.0/gtk/gtkmarshal.h -include/gtk-2.0/gtk/gtkmenu.h -include/gtk-2.0/gtk/gtkmenubar.h -include/gtk-2.0/gtk/gtkmenuitem.h -include/gtk-2.0/gtk/gtkmenushell.h -include/gtk-2.0/gtk/gtkmenutoolbutton.h -include/gtk-2.0/gtk/gtkmessagedialog.h -include/gtk-2.0/gtk/gtkmisc.h -include/gtk-2.0/gtk/gtkmodules.h -include/gtk-2.0/gtk/gtkmountoperation.h -include/gtk-2.0/gtk/gtknotebook.h -include/gtk-2.0/gtk/gtkobject.h -include/gtk-2.0/gtk/gtkoldeditable.h -include/gtk-2.0/gtk/gtkoptionmenu.h -include/gtk-2.0/gtk/gtkorientable.h -include/gtk-2.0/gtk/gtkpagesetup.h -include/gtk-2.0/gtk/gtkpaned.h -include/gtk-2.0/gtk/gtkpapersize.h -include/gtk-2.0/gtk/gtkpixmap.h -include/gtk-2.0/gtk/gtkplug.h -include/gtk-2.0/gtk/gtkpreview.h -include/gtk-2.0/gtk/gtkprintcontext.h -include/gtk-2.0/gtk/gtkprintoperation.h -include/gtk-2.0/gtk/gtkprintoperationpreview.h -include/gtk-2.0/gtk/gtkprintsettings.h -include/gtk-2.0/gtk/gtkprivate.h -include/gtk-2.0/gtk/gtkprogress.h -include/gtk-2.0/gtk/gtkprogressbar.h -include/gtk-2.0/gtk/gtkradioaction.h -include/gtk-2.0/gtk/gtkradiobutton.h -include/gtk-2.0/gtk/gtkradiomenuitem.h -include/gtk-2.0/gtk/gtkradiotoolbutton.h -include/gtk-2.0/gtk/gtkrange.h -include/gtk-2.0/gtk/gtkrc.h -include/gtk-2.0/gtk/gtkrecentaction.h -include/gtk-2.0/gtk/gtkrecentchooser.h -include/gtk-2.0/gtk/gtkrecentchooserdialog.h -include/gtk-2.0/gtk/gtkrecentchoosermenu.h -include/gtk-2.0/gtk/gtkrecentchooserwidget.h -include/gtk-2.0/gtk/gtkrecentfilter.h -include/gtk-2.0/gtk/gtkrecentmanager.h -include/gtk-2.0/gtk/gtkruler.h -include/gtk-2.0/gtk/gtkscale.h -include/gtk-2.0/gtk/gtkscalebutton.h -include/gtk-2.0/gtk/gtkscrollbar.h -include/gtk-2.0/gtk/gtkscrolledwindow.h -include/gtk-2.0/gtk/gtkselection.h -include/gtk-2.0/gtk/gtkseparator.h -include/gtk-2.0/gtk/gtkseparatormenuitem.h -include/gtk-2.0/gtk/gtkseparatortoolitem.h -include/gtk-2.0/gtk/gtksettings.h -include/gtk-2.0/gtk/gtkshow.h -include/gtk-2.0/gtk/gtksignal.h -include/gtk-2.0/gtk/gtksizegroup.h -include/gtk-2.0/gtk/gtksocket.h -include/gtk-2.0/gtk/gtkspinbutton.h -include/gtk-2.0/gtk/gtkstatusbar.h -include/gtk-2.0/gtk/gtkstatusicon.h -include/gtk-2.0/gtk/gtkstock.h -include/gtk-2.0/gtk/gtkstyle.h -include/gtk-2.0/gtk/gtktable.h -include/gtk-2.0/gtk/gtktearoffmenuitem.h -include/gtk-2.0/gtk/gtktestutils.h -include/gtk-2.0/gtk/gtktext.h -include/gtk-2.0/gtk/gtktextbuffer.h -include/gtk-2.0/gtk/gtktextbufferrichtext.h -include/gtk-2.0/gtk/gtktextchild.h -include/gtk-2.0/gtk/gtktextdisplay.h -include/gtk-2.0/gtk/gtktextiter.h -include/gtk-2.0/gtk/gtktextlayout.h -include/gtk-2.0/gtk/gtktextmark.h -include/gtk-2.0/gtk/gtktexttag.h -include/gtk-2.0/gtk/gtktexttagtable.h -include/gtk-2.0/gtk/gtktextview.h -include/gtk-2.0/gtk/gtktipsquery.h -include/gtk-2.0/gtk/gtktoggleaction.h -include/gtk-2.0/gtk/gtktogglebutton.h -include/gtk-2.0/gtk/gtktoggletoolbutton.h -include/gtk-2.0/gtk/gtktoolbar.h -include/gtk-2.0/gtk/gtktoolbutton.h -include/gtk-2.0/gtk/gtktoolitem.h -include/gtk-2.0/gtk/gtktoolshell.h -include/gtk-2.0/gtk/gtktooltip.h -include/gtk-2.0/gtk/gtktooltips.h -include/gtk-2.0/gtk/gtktree.h -include/gtk-2.0/gtk/gtktreednd.h -include/gtk-2.0/gtk/gtktreeitem.h -include/gtk-2.0/gtk/gtktreemodel.h -include/gtk-2.0/gtk/gtktreemodelfilter.h -include/gtk-2.0/gtk/gtktreemodelsort.h -include/gtk-2.0/gtk/gtktreeselection.h -include/gtk-2.0/gtk/gtktreesortable.h -include/gtk-2.0/gtk/gtktreestore.h -include/gtk-2.0/gtk/gtktreeview.h -include/gtk-2.0/gtk/gtktreeviewcolumn.h -include/gtk-2.0/gtk/gtktypebuiltins.h -include/gtk-2.0/gtk/gtktypeutils.h -include/gtk-2.0/gtk/gtkuimanager.h -include/gtk-2.0/gtk/gtkvbbox.h -include/gtk-2.0/gtk/gtkvbox.h -include/gtk-2.0/gtk/gtkversion.h -include/gtk-2.0/gtk/gtkviewport.h -include/gtk-2.0/gtk/gtkvolumebutton.h -include/gtk-2.0/gtk/gtkvpaned.h -include/gtk-2.0/gtk/gtkvruler.h -include/gtk-2.0/gtk/gtkvscale.h -include/gtk-2.0/gtk/gtkvscrollbar.h -include/gtk-2.0/gtk/gtkvseparator.h -include/gtk-2.0/gtk/gtkwidget.h -include/gtk-2.0/gtk/gtkwindow.h -include/gtk-unix-print-2.0/gtk/gtkpagesetupunixdialog.h -include/gtk-unix-print-2.0/gtk/gtkprinter.h -include/gtk-unix-print-2.0/gtk/gtkprintjob.h -include/gtk-unix-print-2.0/gtk/gtkprintunixdialog.h -include/gtk-unix-print-2.0/gtk/gtkunixprint.h -lib/gtk-2.0/%%GTK_VERSION%%/engines/libpixmap.a -lib/gtk-2.0/%%GTK_VERSION%%/engines/libpixmap.la -lib/gtk-2.0/%%GTK_VERSION%%/engines/libpixmap.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-am-et.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-am-et.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-am-et.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cedilla.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cedilla.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cedilla.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cyrillic-translit.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cyrillic-translit.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cyrillic-translit.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-inuktitut.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-inuktitut.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-inuktitut.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ipa.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ipa.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ipa.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-multipress.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-multipress.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-multipress.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-thai.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-thai.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-thai.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-er.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-er.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-er.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-et.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-et.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-et.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-viqr.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-viqr.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-viqr.so -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-xim.a -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-xim.la -lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-xim.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ani.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ani.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ani.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-bmp.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-bmp.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-bmp.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-gif.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-gif.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-gif.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-icns.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-icns.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-icns.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ico.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ico.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ico.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-jasper.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-jasper.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-jasper.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-jpeg.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-jpeg.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-jpeg.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pcx.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pcx.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pcx.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-png.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-png.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-png.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pnm.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pnm.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pnm.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ras.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ras.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ras.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tga.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tga.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tga.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tiff.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tiff.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tiff.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-wbmp.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-wbmp.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-wbmp.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xbm.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xbm.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xbm.so -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xpm.a -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xpm.la -lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xpm.so -%%CUPS:%%lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-cups.a -%%CUPS:%%lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-cups.la -%%CUPS:%%lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-cups.so -lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-file.a -lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-file.la -lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-file.so -lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-lpr.a -lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-lpr.la -lib/gtk-2.0/%%GTK_VERSION%%/printbackends/libprintbackend-lpr.so -lib/gtk-2.0/modules/libferret.a -lib/gtk-2.0/modules/libferret.la -lib/gtk-2.0/modules/libferret.so -lib/gtk-2.0/modules/libgail.a -lib/gtk-2.0/modules/libgail.la -lib/gtk-2.0/modules/libgail.so -lib/libgailutil.a -lib/libgailutil.la -lib/libgailutil.so -lib/libgailutil.so.18 -lib/libgdk-x11-2.0.a -lib/libgdk-x11-2.0.la -lib/libgdk-x11-2.0.so -lib/libgdk-x11-2.0.so.0 -lib/libgdk_pixbuf-2.0.a -lib/libgdk_pixbuf-2.0.la -lib/libgdk_pixbuf-2.0.so -lib/libgdk_pixbuf-2.0.so.0 -lib/libgdk_pixbuf_xlib-2.0.a -lib/libgdk_pixbuf_xlib-2.0.la -lib/libgdk_pixbuf_xlib-2.0.so -lib/libgdk_pixbuf_xlib-2.0.so.0 -lib/libgtk-x11-2.0.a -lib/libgtk-x11-2.0.la -lib/libgtk-x11-2.0.so -lib/libgtk-x11-2.0.so.0 -libdata/pkgconfig/gail.pc -libdata/pkgconfig/gdk-2.0.pc -libdata/pkgconfig/gdk-pixbuf-2.0.pc -libdata/pkgconfig/gdk-pixbuf-xlib-2.0.pc -libdata/pkgconfig/gdk-x11-2.0.pc -libdata/pkgconfig/gtk+-2.0.pc -libdata/pkgconfig/gtk+-unix-print-2.0.pc -libdata/pkgconfig/gtk+-x11-2.0.pc -share/aclocal/gtk-2.0.m4 -share/gtk-2.0/demo/alphatest.png -share/gtk-2.0/demo/apple-red.png -share/gtk-2.0/demo/appwindow.c -share/gtk-2.0/demo/assistant.c -share/gtk-2.0/demo/background.jpg -share/gtk-2.0/demo/builder.c -share/gtk-2.0/demo/button_box.c -share/gtk-2.0/demo/changedisplay.c -share/gtk-2.0/demo/clipboard.c -share/gtk-2.0/demo/colorsel.c -share/gtk-2.0/demo/combobox.c -share/gtk-2.0/demo/demo.ui -share/gtk-2.0/demo/dialog.c -share/gtk-2.0/demo/drawingarea.c -share/gtk-2.0/demo/editable_cells.c -share/gtk-2.0/demo/entry_completion.c -share/gtk-2.0/demo/expander.c -share/gtk-2.0/demo/floppybuddy.gif -share/gtk-2.0/demo/gnome-applets.png -share/gtk-2.0/demo/gnome-calendar.png -share/gtk-2.0/demo/gnome-foot.png -share/gtk-2.0/demo/gnome-fs-directory.png -share/gtk-2.0/demo/gnome-fs-regular.png -share/gtk-2.0/demo/gnome-gimp.png -share/gtk-2.0/demo/gnome-gmush.png -share/gtk-2.0/demo/gnome-gsame.png -share/gtk-2.0/demo/gnu-keys.png -share/gtk-2.0/demo/gtk-logo-rgb.gif -share/gtk-2.0/demo/hypertext.c -share/gtk-2.0/demo/iconview.c -share/gtk-2.0/demo/iconview_edit.c -share/gtk-2.0/demo/images.c -share/gtk-2.0/demo/list_store.c -share/gtk-2.0/demo/menus.c -share/gtk-2.0/demo/panes.c -share/gtk-2.0/demo/pickers.c -share/gtk-2.0/demo/pixbufs.c -share/gtk-2.0/demo/printing.c -share/gtk-2.0/demo/rotated_text.c -share/gtk-2.0/demo/search_entry.c -share/gtk-2.0/demo/sizegroup.c -share/gtk-2.0/demo/stock_browser.c -share/gtk-2.0/demo/textscroll.c -share/gtk-2.0/demo/textview.c -share/gtk-2.0/demo/tree_store.c -share/gtk-2.0/demo/ui_manager.c -share/locale/af/LC_MESSAGES/gtk20-properties.mo -share/locale/af/LC_MESSAGES/gtk20.mo -share/locale/am/LC_MESSAGES/gtk20-properties.mo -share/locale/am/LC_MESSAGES/gtk20.mo -share/locale/ang/LC_MESSAGES/gtk20-properties.mo -share/locale/ang/LC_MESSAGES/gtk20.mo -share/locale/ar/LC_MESSAGES/gtk20-properties.mo -share/locale/ar/LC_MESSAGES/gtk20.mo -share/locale/as/LC_MESSAGES/gtk20-properties.mo -share/locale/as/LC_MESSAGES/gtk20.mo -share/locale/ast/LC_MESSAGES/gtk20-properties.mo -share/locale/ast/LC_MESSAGES/gtk20.mo -share/locale/az/LC_MESSAGES/gtk20-properties.mo -share/locale/az/LC_MESSAGES/gtk20.mo -share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo -share/locale/az_IR/LC_MESSAGES/gtk20.mo -share/locale/be/LC_MESSAGES/gtk20-properties.mo -share/locale/be/LC_MESSAGES/gtk20.mo -share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo -share/locale/be@latin/LC_MESSAGES/gtk20.mo -share/locale/bg/LC_MESSAGES/gtk20-properties.mo -share/locale/bg/LC_MESSAGES/gtk20.mo -share/locale/bn/LC_MESSAGES/gtk20-properties.mo -share/locale/bn/LC_MESSAGES/gtk20.mo -share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo -share/locale/bn_IN/LC_MESSAGES/gtk20.mo -share/locale/br/LC_MESSAGES/gtk20-properties.mo -share/locale/br/LC_MESSAGES/gtk20.mo -share/locale/bs/LC_MESSAGES/gtk20-properties.mo -share/locale/bs/LC_MESSAGES/gtk20.mo -share/locale/ca/LC_MESSAGES/gtk20-properties.mo -share/locale/ca/LC_MESSAGES/gtk20.mo -share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo -share/locale/ca@valencia/LC_MESSAGES/gtk20.mo -share/locale/crh/LC_MESSAGES/gtk20-properties.mo -share/locale/crh/LC_MESSAGES/gtk20.mo -share/locale/cs/LC_MESSAGES/gtk20-properties.mo -share/locale/cs/LC_MESSAGES/gtk20.mo -share/locale/cy/LC_MESSAGES/gtk20-properties.mo -share/locale/cy/LC_MESSAGES/gtk20.mo -share/locale/da/LC_MESSAGES/gtk20-properties.mo -share/locale/da/LC_MESSAGES/gtk20.mo -share/locale/de/LC_MESSAGES/gtk20-properties.mo -share/locale/de/LC_MESSAGES/gtk20.mo -share/locale/dz/LC_MESSAGES/gtk20-properties.mo -share/locale/dz/LC_MESSAGES/gtk20.mo -share/locale/el/LC_MESSAGES/gtk20-properties.mo -share/locale/el/LC_MESSAGES/gtk20.mo -share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo -share/locale/en_CA/LC_MESSAGES/gtk20.mo -share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo -share/locale/en_GB/LC_MESSAGES/gtk20.mo -share/locale/eo/LC_MESSAGES/gtk20-properties.mo -share/locale/eo/LC_MESSAGES/gtk20.mo -share/locale/es/LC_MESSAGES/gtk20-properties.mo -share/locale/es/LC_MESSAGES/gtk20.mo -share/locale/et/LC_MESSAGES/gtk20-properties.mo -share/locale/et/LC_MESSAGES/gtk20.mo -share/locale/eu/LC_MESSAGES/gtk20-properties.mo -share/locale/eu/LC_MESSAGES/gtk20.mo -share/locale/fa/LC_MESSAGES/gtk20-properties.mo -share/locale/fa/LC_MESSAGES/gtk20.mo -share/locale/fi/LC_MESSAGES/gtk20-properties.mo -share/locale/fi/LC_MESSAGES/gtk20.mo -share/locale/fr/LC_MESSAGES/gtk20-properties.mo -share/locale/fr/LC_MESSAGES/gtk20.mo -share/locale/ga/LC_MESSAGES/gtk20-properties.mo -share/locale/ga/LC_MESSAGES/gtk20.mo -share/locale/gl/LC_MESSAGES/gtk20-properties.mo -share/locale/gl/LC_MESSAGES/gtk20.mo -share/locale/gu/LC_MESSAGES/gtk20-properties.mo -share/locale/gu/LC_MESSAGES/gtk20.mo -share/locale/he/LC_MESSAGES/gtk20-properties.mo -share/locale/he/LC_MESSAGES/gtk20.mo -share/locale/hi/LC_MESSAGES/gtk20-properties.mo -share/locale/hi/LC_MESSAGES/gtk20.mo -share/locale/hr/LC_MESSAGES/gtk20-properties.mo -share/locale/hr/LC_MESSAGES/gtk20.mo -share/locale/hu/LC_MESSAGES/gtk20-properties.mo -share/locale/hu/LC_MESSAGES/gtk20.mo -share/locale/hy/LC_MESSAGES/gtk20-properties.mo -share/locale/hy/LC_MESSAGES/gtk20.mo -share/locale/ia/LC_MESSAGES/gtk20-properties.mo -share/locale/ia/LC_MESSAGES/gtk20.mo -share/locale/id/LC_MESSAGES/gtk20-properties.mo -share/locale/id/LC_MESSAGES/gtk20.mo -share/locale/io/LC_MESSAGES/gtk20-properties.mo -share/locale/io/LC_MESSAGES/gtk20.mo -share/locale/is/LC_MESSAGES/gtk20-properties.mo -share/locale/is/LC_MESSAGES/gtk20.mo -share/locale/it/LC_MESSAGES/gtk20-properties.mo -share/locale/it/LC_MESSAGES/gtk20.mo -share/locale/ja/LC_MESSAGES/gtk20-properties.mo -share/locale/ja/LC_MESSAGES/gtk20.mo -share/locale/ka/LC_MESSAGES/gtk20-properties.mo -share/locale/ka/LC_MESSAGES/gtk20.mo -share/locale/kn/LC_MESSAGES/gtk20-properties.mo -share/locale/kn/LC_MESSAGES/gtk20.mo -share/locale/ko/LC_MESSAGES/gtk20-properties.mo -share/locale/ko/LC_MESSAGES/gtk20.mo -share/locale/ku/LC_MESSAGES/gtk20-properties.mo -share/locale/ku/LC_MESSAGES/gtk20.mo -share/locale/li/LC_MESSAGES/gtk20-properties.mo -share/locale/li/LC_MESSAGES/gtk20.mo -share/locale/lt/LC_MESSAGES/gtk20-properties.mo -share/locale/lt/LC_MESSAGES/gtk20.mo -share/locale/lv/LC_MESSAGES/gtk20-properties.mo -share/locale/lv/LC_MESSAGES/gtk20.mo -share/locale/mai/LC_MESSAGES/gtk20-properties.mo -share/locale/mai/LC_MESSAGES/gtk20.mo -share/locale/mi/LC_MESSAGES/gtk20-properties.mo -share/locale/mi/LC_MESSAGES/gtk20.mo -share/locale/mk/LC_MESSAGES/gtk20-properties.mo -share/locale/mk/LC_MESSAGES/gtk20.mo -share/locale/ml/LC_MESSAGES/gtk20-properties.mo -share/locale/ml/LC_MESSAGES/gtk20.mo -share/locale/mn/LC_MESSAGES/gtk20-properties.mo -share/locale/mn/LC_MESSAGES/gtk20.mo -share/locale/mr/LC_MESSAGES/gtk20-properties.mo -share/locale/mr/LC_MESSAGES/gtk20.mo -share/locale/ms/LC_MESSAGES/gtk20-properties.mo -share/locale/ms/LC_MESSAGES/gtk20.mo -share/locale/nb/LC_MESSAGES/gtk20-properties.mo -share/locale/nb/LC_MESSAGES/gtk20.mo -share/locale/ne/LC_MESSAGES/gtk20-properties.mo -share/locale/ne/LC_MESSAGES/gtk20.mo -share/locale/nl/LC_MESSAGES/gtk20-properties.mo -share/locale/nl/LC_MESSAGES/gtk20.mo -share/locale/nn/LC_MESSAGES/gtk20-properties.mo -share/locale/nn/LC_MESSAGES/gtk20.mo -share/locale/nso/LC_MESSAGES/gtk20-properties.mo -share/locale/nso/LC_MESSAGES/gtk20.mo -share/locale/oc/LC_MESSAGES/gtk20-properties.mo -share/locale/oc/LC_MESSAGES/gtk20.mo -share/locale/or/LC_MESSAGES/gtk20-properties.mo -share/locale/or/LC_MESSAGES/gtk20.mo -share/locale/pa/LC_MESSAGES/gtk20-properties.mo -share/locale/pa/LC_MESSAGES/gtk20.mo -share/locale/pl/LC_MESSAGES/gtk20-properties.mo -share/locale/pl/LC_MESSAGES/gtk20.mo -share/locale/ps/LC_MESSAGES/gtk20-properties.mo -share/locale/ps/LC_MESSAGES/gtk20.mo -share/locale/pt/LC_MESSAGES/gtk20-properties.mo -share/locale/pt/LC_MESSAGES/gtk20.mo -share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo -share/locale/pt_BR/LC_MESSAGES/gtk20.mo -share/locale/ro/LC_MESSAGES/gtk20-properties.mo -share/locale/ro/LC_MESSAGES/gtk20.mo -share/locale/ru/LC_MESSAGES/gtk20-properties.mo -share/locale/ru/LC_MESSAGES/gtk20.mo -share/locale/rw/LC_MESSAGES/gtk20-properties.mo -share/locale/rw/LC_MESSAGES/gtk20.mo -share/locale/si/LC_MESSAGES/gtk20-properties.mo -share/locale/si/LC_MESSAGES/gtk20.mo -share/locale/sk/LC_MESSAGES/gtk20-properties.mo -share/locale/sk/LC_MESSAGES/gtk20.mo -share/locale/sl/LC_MESSAGES/gtk20-properties.mo -share/locale/sl/LC_MESSAGES/gtk20.mo -share/locale/sq/LC_MESSAGES/gtk20-properties.mo -share/locale/sq/LC_MESSAGES/gtk20.mo -share/locale/sr/LC_MESSAGES/gtk20-properties.mo -share/locale/sr/LC_MESSAGES/gtk20.mo -share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo -share/locale/sr@ije/LC_MESSAGES/gtk20.mo -share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo -share/locale/sr@latin/LC_MESSAGES/gtk20.mo -share/locale/sv/LC_MESSAGES/gtk20-properties.mo -share/locale/sv/LC_MESSAGES/gtk20.mo -share/locale/ta/LC_MESSAGES/gtk20-properties.mo -share/locale/ta/LC_MESSAGES/gtk20.mo -share/locale/te/LC_MESSAGES/gtk20-properties.mo -share/locale/te/LC_MESSAGES/gtk20.mo -share/locale/th/LC_MESSAGES/gtk20-properties.mo -share/locale/th/LC_MESSAGES/gtk20.mo -share/locale/tk/LC_MESSAGES/gtk20-properties.mo -share/locale/tk/LC_MESSAGES/gtk20.mo -share/locale/tr/LC_MESSAGES/gtk20-properties.mo -share/locale/tr/LC_MESSAGES/gtk20.mo -share/locale/tt/LC_MESSAGES/gtk20-properties.mo -share/locale/tt/LC_MESSAGES/gtk20.mo -share/locale/uk/LC_MESSAGES/gtk20-properties.mo -share/locale/uk/LC_MESSAGES/gtk20.mo -share/locale/ur/LC_MESSAGES/gtk20-properties.mo -share/locale/ur/LC_MESSAGES/gtk20.mo -share/locale/uz/LC_MESSAGES/gtk20-properties.mo -share/locale/uz/LC_MESSAGES/gtk20.mo -share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo -share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo -share/locale/vi/LC_MESSAGES/gtk20-properties.mo -share/locale/vi/LC_MESSAGES/gtk20.mo -share/locale/wa/LC_MESSAGES/gtk20-properties.mo -share/locale/wa/LC_MESSAGES/gtk20.mo -share/locale/xh/LC_MESSAGES/gtk20-properties.mo -share/locale/xh/LC_MESSAGES/gtk20.mo -share/locale/yi/LC_MESSAGES/gtk20-properties.mo -share/locale/yi/LC_MESSAGES/gtk20.mo -share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo -share/locale/zh_CN/LC_MESSAGES/gtk20.mo -share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo -share/locale/zh_HK/LC_MESSAGES/gtk20.mo -share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo -share/locale/zh_TW/LC_MESSAGES/gtk20.mo -share/themes/Default/gtk-2.0-key/gtkrc -share/themes/Emacs/gtk-2.0-key/gtkrc -share/themes/Raleigh/gtk-2.0/gtkrc -@exec /usr/bin/find %%LOCALBASE%%/share/icons -type d -depth 1 -exec %D/bin/gtk-update-icon-cache -q -f {} \; 2>/dev/null || /usr/bin/true -@unexec /usr/bin/find %%LOCALBASE%%/share/icons -type f -depth 2 -name icon-theme.cache -delete 2>/dev/null || /usr/bin/true -@dirrm share/themes/Raleigh/gtk-2.0 -@dirrm share/themes/Raleigh -@dirrm share/themes/Emacs/gtk-2.0-key -@dirrm share/themes/Emacs -@dirrm share/themes/Default/gtk-2.0-key -@dirrm share/gtk-2.0/demo -@dirrm share/gtk-2.0 -@dirrm include/gtk-unix-print-2.0/gtk -@dirrm include/gtk-unix-print-2.0 -@dirrm include/gtk-2.0/gtk -@dirrm include/gtk-2.0/gdk-pixbuf-xlib -@dirrm include/gtk-2.0/gdk-pixbuf -@dirrm include/gtk-2.0/gdk -@dirrm include/gtk-2.0 -@dirrm include/gail-1.0/libgail-util -@dirrm include/gail-1.0/gail -@dirrm include/gail-1.0 -@dirrm etc/gtk-2.0 -@exec /bin/mkdir -p %D/lib/gtk-2.0/modules -@exec /bin/mkdir -p %D/lib/gtk-2.0/%%GTK_VERSION%%/engines -@dirrmtry share/themes/Default -@dirrmtry share/themes -@dirrmtry lib/gtk-2.0/modules -@dirrmtry lib/gtk-2.0/%%GTK_VERSION%%/printbackends -@dirrmtry lib/gtk-2.0/%%GTK_VERSION%%/modules -@dirrmtry lib/gtk-2.0/%%GTK_VERSION%%/loaders -@dirrmtry lib/gtk-2.0/%%GTK_VERSION%%/immodules -@dirrmtry lib/gtk-2.0/%%GTK_VERSION%%/engines -@dirrmtry lib/gtk-2.0/%%GTK_VERSION%% -@dirrmtry lib/gtk-2.0 -@exec %D/bin/gdk-pixbuf-query-loaders > /dev/null 2>&1 && %D/bin/gdk-pixbuf-query-loaders > %D/etc/gtk-2.0/gdk-pixbuf.loaders 2>/dev/null || /usr/bin/true -@exec %D/bin/gtk-query-immodules-2.0 > /dev/null 2>&1 && %D/bin/gtk-query-immodules-2.0 > %D/etc/gtk-2.0/gtk.immodules 2>/dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ur/LC_MESSAGES -@dirrmtry share/locale/ur -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/io/LC_MESSAGES -@dirrmtry share/locale/io -@dirrmtry share/locale/ia/LC_MESSAGES -@dirrmtry share/locale/ia -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/az_IR/LC_MESSAGES -@dirrmtry share/locale/az_IR -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang diff --git a/x11-toolkits/gtkmm24/Makefile b/x11-toolkits/gtkmm24/Makefile deleted file mode 100644 index 0472b058b..000000000 --- a/x11-toolkits/gtkmm24/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: gtkmm2 -# Date created: 30 September 2002 -# Whom: Martin Klaffenboeck <martin.klaffenboeck@gmx.at> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/gtkmm24/Makefile,v 1.45 2009/03/05 07:57:13 marcus Exp $ -# - -PORTNAME= gtkmm -PORTVERSION= 2.16.0 -PORTREVISION?= 0 -CATEGORIES= x11-toolkits -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= C++ wrapper for Gtk+, Pango, Atk - -USE_BZIP2= yes -LATEST_LINK= gtkmm24 - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= glibmm-2.4.1:${PORTSDIR}/devel/glibmm \ - cairomm-1.0.1:${PORTSDIR}/graphics/cairomm \ - pangomm-1.4.1:${PORTSDIR}/x11-toolkits/pangomm -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -USE_GNOME= gnomehack gtk20 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-demos \ - --disable-docs \ - --disable-examples \ - --enable-static=yes \ - --with-sigc-prefix=${LOCALBASE} - -PLIST_SUB= VERSION="2.4" API_VERSION="2.4" - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/tests//' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e 's|demo[$$][(]EXEEXT[)]|gtkmm-demo$$(EXEEXT)|g' \ - ${WRKSRC}/demos/gtk-demo/Makefile.in - -.include <bsd.port.mk> - -.endif diff --git a/x11-toolkits/gtkmm24/distinfo b/x11-toolkits/gtkmm24/distinfo deleted file mode 100644 index 98ae79afc..000000000 --- a/x11-toolkits/gtkmm24/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gtkmm-2.16.0.tar.bz2) = a82e3b5b93008421ff67df16d1e51ec2 -SHA256 (gnome2/gtkmm-2.16.0.tar.bz2) = 9994e6a92f7086adb58aba0431f29a766218f806b9db95359dad59a0615f95bf -SIZE (gnome2/gtkmm-2.16.0.tar.bz2) = 9313258 diff --git a/x11-toolkits/gtkmm24/pkg-descr b/x11-toolkits/gtkmm24/pkg-descr deleted file mode 100644 index b2371e32c..000000000 --- a/x11-toolkits/gtkmm24/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -C++ wrapper for Gtk+, Pango and Atk. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/x11-toolkits/gtkmm24/pkg-plist b/x11-toolkits/gtkmm24/pkg-plist deleted file mode 100644 index acf9e6def..000000000 --- a/x11-toolkits/gtkmm24/pkg-plist +++ /dev/null @@ -1,483 +0,0 @@ -include/atkmm-1.6/atkmm.h -include/atkmm-1.6/atkmm/action.h -include/atkmm-1.6/atkmm/component.h -include/atkmm-1.6/atkmm/document.h -include/atkmm-1.6/atkmm/editabletext.h -include/atkmm-1.6/atkmm/hyperlink.h -include/atkmm-1.6/atkmm/hypertext.h -include/atkmm-1.6/atkmm/image.h -include/atkmm-1.6/atkmm/implementor.h -include/atkmm-1.6/atkmm/init.h -include/atkmm-1.6/atkmm/noopobject.h -include/atkmm-1.6/atkmm/object.h -include/atkmm-1.6/atkmm/objectaccessible.h -include/atkmm-1.6/atkmm/private/action_p.h -include/atkmm-1.6/atkmm/private/component_p.h -include/atkmm-1.6/atkmm/private/document_p.h -include/atkmm-1.6/atkmm/private/editabletext_p.h -include/atkmm-1.6/atkmm/private/hyperlink_p.h -include/atkmm-1.6/atkmm/private/hypertext_p.h -include/atkmm-1.6/atkmm/private/image_p.h -include/atkmm-1.6/atkmm/private/implementor_p.h -include/atkmm-1.6/atkmm/private/noopobject_p.h -include/atkmm-1.6/atkmm/private/object_p.h -include/atkmm-1.6/atkmm/private/objectaccessible_p.h -include/atkmm-1.6/atkmm/private/relation_p.h -include/atkmm-1.6/atkmm/private/relationset_p.h -include/atkmm-1.6/atkmm/private/selection_p.h -include/atkmm-1.6/atkmm/private/stateset_p.h -include/atkmm-1.6/atkmm/private/streamablecontent_p.h -include/atkmm-1.6/atkmm/private/table_p.h -include/atkmm-1.6/atkmm/private/text_p.h -include/atkmm-1.6/atkmm/private/value_p.h -include/atkmm-1.6/atkmm/relation.h -include/atkmm-1.6/atkmm/relationset.h -include/atkmm-1.6/atkmm/selection.h -include/atkmm-1.6/atkmm/stateset.h -include/atkmm-1.6/atkmm/streamablecontent.h -include/atkmm-1.6/atkmm/table.h -include/atkmm-1.6/atkmm/text.h -include/atkmm-1.6/atkmm/value.h -include/atkmm-1.6/atkmm/wrap_init.h -include/gdkmm-%%API_VERSION%%/gdkmm.h -include/gdkmm-%%API_VERSION%%/gdkmm/bitmap.h -include/gdkmm-%%API_VERSION%%/gdkmm/color.h -include/gdkmm-%%API_VERSION%%/gdkmm/colormap.h -include/gdkmm-%%API_VERSION%%/gdkmm/cursor.h -include/gdkmm-%%API_VERSION%%/gdkmm/device.h -include/gdkmm-%%API_VERSION%%/gdkmm/display.h -include/gdkmm-%%API_VERSION%%/gdkmm/displaymanager.h -include/gdkmm-%%API_VERSION%%/gdkmm/dragcontext.h -include/gdkmm-%%API_VERSION%%/gdkmm/drawable.h -include/gdkmm-%%API_VERSION%%/gdkmm/event.h -include/gdkmm-%%API_VERSION%%/gdkmm/gc.h -include/gdkmm-%%API_VERSION%%/gdkmm/general.h -include/gdkmm-%%API_VERSION%%/gdkmm/image.h -include/gdkmm-%%API_VERSION%%/gdkmm/list.h -include/gdkmm-%%API_VERSION%%/gdkmm/pixbuf.h -include/gdkmm-%%API_VERSION%%/gdkmm/pixbufanimation.h -include/gdkmm-%%API_VERSION%%/gdkmm/pixbufanimationiter.h -include/gdkmm-%%API_VERSION%%/gdkmm/pixbufformat.h -include/gdkmm-%%API_VERSION%%/gdkmm/pixbufloader.h -include/gdkmm-%%API_VERSION%%/gdkmm/pixmap.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/bitmap_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/color_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/colormap_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/cursor_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/device_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/display_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/displaymanager_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/dragcontext_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/drawable_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/event_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/gc_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/image_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbuf_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufanimation_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufanimationiter_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufformat_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufloader_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/pixmap_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/rectangle_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/region_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/rgbcmap_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/screen_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/types_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/visual_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/private/window_p.h -include/gdkmm-%%API_VERSION%%/gdkmm/rectangle.h -include/gdkmm-%%API_VERSION%%/gdkmm/region.h -include/gdkmm-%%API_VERSION%%/gdkmm/rgb.h -include/gdkmm-%%API_VERSION%%/gdkmm/rgbcmap.h -include/gdkmm-%%API_VERSION%%/gdkmm/screen.h -include/gdkmm-%%API_VERSION%%/gdkmm/types.h -include/gdkmm-%%API_VERSION%%/gdkmm/visual.h -include/gdkmm-%%API_VERSION%%/gdkmm/window.h -include/gdkmm-%%API_VERSION%%/gdkmm/wrap_init.h -include/gtkmm-%%API_VERSION%%/gtkmm.h -include/gtkmm-%%API_VERSION%%/gtkmm/aboutdialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/accelgroup.h -include/gtkmm-%%API_VERSION%%/gtkmm/accelkey.h -include/gtkmm-%%API_VERSION%%/gtkmm/accellabel.h -include/gtkmm-%%API_VERSION%%/gtkmm/accelmap.h -include/gtkmm-%%API_VERSION%%/gtkmm/action.h -include/gtkmm-%%API_VERSION%%/gtkmm/actiongroup.h -include/gtkmm-%%API_VERSION%%/gtkmm/activatable.h -include/gtkmm-%%API_VERSION%%/gtkmm/adjustment.h -include/gtkmm-%%API_VERSION%%/gtkmm/alignment.h -include/gtkmm-%%API_VERSION%%/gtkmm/arrow.h -include/gtkmm-%%API_VERSION%%/gtkmm/aspectframe.h -include/gtkmm-%%API_VERSION%%/gtkmm/assistant.h -include/gtkmm-%%API_VERSION%%/gtkmm/base.h -include/gtkmm-%%API_VERSION%%/gtkmm/bin.h -include/gtkmm-%%API_VERSION%%/gtkmm/box.h -include/gtkmm-%%API_VERSION%%/gtkmm/builder.h -include/gtkmm-%%API_VERSION%%/gtkmm/button.h -include/gtkmm-%%API_VERSION%%/gtkmm/buttonbox.h -include/gtkmm-%%API_VERSION%%/gtkmm/calendar.h -include/gtkmm-%%API_VERSION%%/gtkmm/celleditable.h -include/gtkmm-%%API_VERSION%%/gtkmm/celllayout.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderer.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderer_generation.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrendereraccel.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderercombo.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrendererpixbuf.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrendererprogress.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrendererspin.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderertext.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderertoggle.h -include/gtkmm-%%API_VERSION%%/gtkmm/cellview.h -include/gtkmm-%%API_VERSION%%/gtkmm/checkbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/checkmenuitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/clipboard.h -include/gtkmm-%%API_VERSION%%/gtkmm/colorbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/colorselection.h -include/gtkmm-%%API_VERSION%%/gtkmm/combo.h -include/gtkmm-%%API_VERSION%%/gtkmm/combobox.h -include/gtkmm-%%API_VERSION%%/gtkmm/comboboxentry.h -include/gtkmm-%%API_VERSION%%/gtkmm/comboboxentrytext.h -include/gtkmm-%%API_VERSION%%/gtkmm/comboboxtext.h -include/gtkmm-%%API_VERSION%%/gtkmm/container.h -include/gtkmm-%%API_VERSION%%/gtkmm/curve.h -include/gtkmm-%%API_VERSION%%/gtkmm/dialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/drawingarea.h -include/gtkmm-%%API_VERSION%%/gtkmm/editable.h -include/gtkmm-%%API_VERSION%%/gtkmm/entry.h -include/gtkmm-%%API_VERSION%%/gtkmm/entrycompletion.h -include/gtkmm-%%API_VERSION%%/gtkmm/enums.h -include/gtkmm-%%API_VERSION%%/gtkmm/eventbox.h -include/gtkmm-%%API_VERSION%%/gtkmm/expander.h -include/gtkmm-%%API_VERSION%%/gtkmm/filechooser.h -include/gtkmm-%%API_VERSION%%/gtkmm/filechooserbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/filechooserdialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/filechooserwidget.h -include/gtkmm-%%API_VERSION%%/gtkmm/filefilter.h -include/gtkmm-%%API_VERSION%%/gtkmm/fileselection.h -include/gtkmm-%%API_VERSION%%/gtkmm/fixed.h -include/gtkmm-%%API_VERSION%%/gtkmm/fontbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/fontselection.h -include/gtkmm-%%API_VERSION%%/gtkmm/frame.h -include/gtkmm-%%API_VERSION%%/gtkmm/handlebox.h -include/gtkmm-%%API_VERSION%%/gtkmm/iconfactory.h -include/gtkmm-%%API_VERSION%%/gtkmm/iconinfo.h -include/gtkmm-%%API_VERSION%%/gtkmm/iconset.h -include/gtkmm-%%API_VERSION%%/gtkmm/iconsource.h -include/gtkmm-%%API_VERSION%%/gtkmm/icontheme.h -include/gtkmm-%%API_VERSION%%/gtkmm/iconview.h -include/gtkmm-%%API_VERSION%%/gtkmm/image.h -include/gtkmm-%%API_VERSION%%/gtkmm/imagemenuitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/inputdialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/invisible.h -include/gtkmm-%%API_VERSION%%/gtkmm/item.h -include/gtkmm-%%API_VERSION%%/gtkmm/label.h -include/gtkmm-%%API_VERSION%%/gtkmm/layout.h -include/gtkmm-%%API_VERSION%%/gtkmm/linkbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/liststore.h -include/gtkmm-%%API_VERSION%%/gtkmm/listviewtext.h -include/gtkmm-%%API_VERSION%%/gtkmm/main.h -include/gtkmm-%%API_VERSION%%/gtkmm/menu.h -include/gtkmm-%%API_VERSION%%/gtkmm/menu_elems.h -include/gtkmm-%%API_VERSION%%/gtkmm/menubar.h -include/gtkmm-%%API_VERSION%%/gtkmm/menuitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/menushell.h -include/gtkmm-%%API_VERSION%%/gtkmm/menutoolbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/messagedialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/misc.h -include/gtkmm-%%API_VERSION%%/gtkmm/notebook.h -include/gtkmm-%%API_VERSION%%/gtkmm/object.h -include/gtkmm-%%API_VERSION%%/gtkmm/optionmenu.h -include/gtkmm-%%API_VERSION%%/gtkmm/orientable.h -include/gtkmm-%%API_VERSION%%/gtkmm/pagesetup.h -include/gtkmm-%%API_VERSION%%/gtkmm/pagesetupunixdialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/paned.h -include/gtkmm-%%API_VERSION%%/gtkmm/papersize.h -include/gtkmm-%%API_VERSION%%/gtkmm/plug.h -include/gtkmm-%%API_VERSION%%/gtkmm/printcontext.h -include/gtkmm-%%API_VERSION%%/gtkmm/printer.h -include/gtkmm-%%API_VERSION%%/gtkmm/printjob.h -include/gtkmm-%%API_VERSION%%/gtkmm/printoperation.h -include/gtkmm-%%API_VERSION%%/gtkmm/printoperationpreview.h -include/gtkmm-%%API_VERSION%%/gtkmm/printsettings.h -include/gtkmm-%%API_VERSION%%/gtkmm/printunixdialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/aboutdialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/accelgroup_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/accellabel_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/action_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/actiongroup_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/activatable_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/adjustment_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/alignment_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/arrow_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/aspectframe_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/assistant_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/bin_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/box_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/builder_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/button_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/buttonbox_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/calendar_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/celleditable_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/celllayout_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderer_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendereraccel_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderercombo_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendererpixbuf_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendererprogress_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendererspin_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderertext_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderertoggle_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/cellview_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/checkbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/checkmenuitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/clipboard_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/colorbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/colorselection_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/combo_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/combobox_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/comboboxentry_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/container_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/curve_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/dialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/drawingarea_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/editable_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/entry_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/entrycompletion_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/enums_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/eventbox_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/expander_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooser_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooserbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooserdialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooserwidget_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/filefilter_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/fileselection_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/fixed_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/fontbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/fontselection_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/frame_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/handlebox_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/iconfactory_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/iconinfo_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/iconset_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/iconsource_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/icontheme_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/iconview_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/image_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/imagemenuitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/inputdialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/invisible_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/item_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/label_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/layout_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/linkbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/liststore_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/main_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/menu_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/menubar_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/menuitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/menushell_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/menutoolbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/messagedialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/misc_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/notebook_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/object_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/optionmenu_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/orientable_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/pagesetup_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/pagesetupunixdialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/paned_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/papersize_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/plug_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/printcontext_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/printer_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/printjob_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/printoperation_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/printoperationpreview_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/printsettings_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/printunixdialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/progressbar_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/radioaction_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/radiobutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/radiomenuitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/radiotoolbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/range_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/rc_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentaction_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchooser_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchooserdialog_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchoosermenu_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchooserwidget_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentfilter_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentinfo_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/recentmanager_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/ruler_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/scale_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/scalebutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/scrollbar_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/scrolledwindow_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/selectiondata_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/separator_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/separatormenuitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/separatortoolitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/settings_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/sizegroup_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/socket_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/spinbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/statusbar_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/statusicon_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/stockitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/style_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/table_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/targetlist_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/tearoffmenuitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/textattributes_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/textbuffer_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/textchildanchor_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/textiter_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/textmark_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/texttag_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/texttagtable_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/textview_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/toggleaction_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/togglebutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/toggletoolbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/toolbar_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/toolbutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/toolitem_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/toolshell_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/tooltip_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/tooltips_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treedragdest_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treedragsource_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treeiter_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treemodel_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treemodelfilter_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treemodelsort_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treepath_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treerowreference_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treeselection_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treesortable_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treestore_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treeview_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/treeviewcolumn_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/uimanager_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/viewport_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/volumebutton_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/widget_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/private/window_p.h -include/gtkmm-%%API_VERSION%%/gtkmm/progressbar.h -include/gtkmm-%%API_VERSION%%/gtkmm/radioaction.h -include/gtkmm-%%API_VERSION%%/gtkmm/radiobutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/radiobuttongroup.h -include/gtkmm-%%API_VERSION%%/gtkmm/radiomenuitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/radiotoolbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/range.h -include/gtkmm-%%API_VERSION%%/gtkmm/rc.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentaction.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentchooser.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentchooserdialog.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentchoosermenu.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentchooserwidget.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentfilter.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentinfo.h -include/gtkmm-%%API_VERSION%%/gtkmm/recentmanager.h -include/gtkmm-%%API_VERSION%%/gtkmm/ruler.h -include/gtkmm-%%API_VERSION%%/gtkmm/scale.h -include/gtkmm-%%API_VERSION%%/gtkmm/scalebutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/scrollbar.h -include/gtkmm-%%API_VERSION%%/gtkmm/scrolledwindow.h -include/gtkmm-%%API_VERSION%%/gtkmm/selectiondata.h -include/gtkmm-%%API_VERSION%%/gtkmm/selectiondata_private.h -include/gtkmm-%%API_VERSION%%/gtkmm/separator.h -include/gtkmm-%%API_VERSION%%/gtkmm/separatormenuitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/separatortoolitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/settings.h -include/gtkmm-%%API_VERSION%%/gtkmm/sizegroup.h -include/gtkmm-%%API_VERSION%%/gtkmm/socket.h -include/gtkmm-%%API_VERSION%%/gtkmm/spinbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/statusbar.h -include/gtkmm-%%API_VERSION%%/gtkmm/statusicon.h -include/gtkmm-%%API_VERSION%%/gtkmm/stock.h -include/gtkmm-%%API_VERSION%%/gtkmm/stockid.h -include/gtkmm-%%API_VERSION%%/gtkmm/stockitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/style.h -include/gtkmm-%%API_VERSION%%/gtkmm/table.h -include/gtkmm-%%API_VERSION%%/gtkmm/targetentry.h -include/gtkmm-%%API_VERSION%%/gtkmm/targetlist.h -include/gtkmm-%%API_VERSION%%/gtkmm/tearoffmenuitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/textattributes.h -include/gtkmm-%%API_VERSION%%/gtkmm/textbuffer.h -include/gtkmm-%%API_VERSION%%/gtkmm/textchildanchor.h -include/gtkmm-%%API_VERSION%%/gtkmm/textiter.h -include/gtkmm-%%API_VERSION%%/gtkmm/textmark.h -include/gtkmm-%%API_VERSION%%/gtkmm/texttag.h -include/gtkmm-%%API_VERSION%%/gtkmm/texttagtable.h -include/gtkmm-%%API_VERSION%%/gtkmm/textview.h -include/gtkmm-%%API_VERSION%%/gtkmm/toggleaction.h -include/gtkmm-%%API_VERSION%%/gtkmm/togglebutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/toggletoolbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/toolbar.h -include/gtkmm-%%API_VERSION%%/gtkmm/toolbutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/toolitem.h -include/gtkmm-%%API_VERSION%%/gtkmm/toolshell.h -include/gtkmm-%%API_VERSION%%/gtkmm/tooltip.h -include/gtkmm-%%API_VERSION%%/gtkmm/tooltips.h -include/gtkmm-%%API_VERSION%%/gtkmm/treedragdest.h -include/gtkmm-%%API_VERSION%%/gtkmm/treedragsource.h -include/gtkmm-%%API_VERSION%%/gtkmm/treeiter.h -include/gtkmm-%%API_VERSION%%/gtkmm/treemodel.h -include/gtkmm-%%API_VERSION%%/gtkmm/treemodelcolumn.h -include/gtkmm-%%API_VERSION%%/gtkmm/treemodelfilter.h -include/gtkmm-%%API_VERSION%%/gtkmm/treemodelsort.h -include/gtkmm-%%API_VERSION%%/gtkmm/treepath.h -include/gtkmm-%%API_VERSION%%/gtkmm/treerowreference.h -include/gtkmm-%%API_VERSION%%/gtkmm/treeselection.h -include/gtkmm-%%API_VERSION%%/gtkmm/treesortable.h -include/gtkmm-%%API_VERSION%%/gtkmm/treestore.h -include/gtkmm-%%API_VERSION%%/gtkmm/treeview.h -include/gtkmm-%%API_VERSION%%/gtkmm/treeview_private.h -include/gtkmm-%%API_VERSION%%/gtkmm/treeviewcolumn.h -include/gtkmm-%%API_VERSION%%/gtkmm/uimanager.h -include/gtkmm-%%API_VERSION%%/gtkmm/viewport.h -include/gtkmm-%%API_VERSION%%/gtkmm/volumebutton.h -include/gtkmm-%%API_VERSION%%/gtkmm/widget.h -include/gtkmm-%%API_VERSION%%/gtkmm/window.h -include/gtkmm-%%API_VERSION%%/gtkmm/wrap_init.h -lib/gdkmm-%%API_VERSION%%/include/gdkmmconfig.h -lib/gtkmm-%%API_VERSION%%/include/gtkmmconfig.h -lib/gtkmm-%%API_VERSION%%/proc/m4/convert.m4 -lib/gtkmm-%%API_VERSION%%/proc/m4/convert_atk.m4 -lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gdk.m4 -lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gtk.m4 -lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gtkmm.m4 -lib/gtkmm-%%API_VERSION%%/proc/m4/convert_pango.m4 -lib/libatkmm-1.6.a -lib/libatkmm-1.6.la -lib/libatkmm-1.6.so -lib/libatkmm-1.6.so.1 -lib/libgdkmm-%%VERSION%%.a -lib/libgdkmm-%%VERSION%%.la -lib/libgdkmm-%%VERSION%%.so -lib/libgdkmm-%%VERSION%%.so.1 -lib/libgtkmm-%%VERSION%%.a -lib/libgtkmm-%%VERSION%%.la -lib/libgtkmm-%%VERSION%%.so -lib/libgtkmm-%%VERSION%%.so.1 -libdata/pkgconfig/atkmm-1.6.pc -libdata/pkgconfig/gdkmm-%%API_VERSION%%.pc -libdata/pkgconfig/gtkmm-%%API_VERSION%%.pc -@dirrm lib/gtkmm-%%API_VERSION%%/proc/m4 -@dirrm lib/gtkmm-%%API_VERSION%%/proc -@dirrm lib/gtkmm-%%API_VERSION%%/include -@dirrm lib/gtkmm-%%API_VERSION%% -@dirrm lib/gdkmm-%%API_VERSION%%/include -@dirrm lib/gdkmm-%%API_VERSION%% -@dirrm include/gtkmm-%%API_VERSION%%/gtkmm/private -@dirrm include/gtkmm-%%API_VERSION%%/gtkmm -@dirrm include/gtkmm-%%API_VERSION%% -@dirrm include/gdkmm-%%API_VERSION%%/gdkmm/private -@dirrm include/gdkmm-%%API_VERSION%%/gdkmm -@dirrm include/gdkmm-%%API_VERSION%% -@dirrm include/atkmm-1.6/atkmm/private -@dirrm include/atkmm-1.6/atkmm -@dirrm include/atkmm-1.6 diff --git a/x11-toolkits/gtksourceview2/Makefile b/x11-toolkits/gtksourceview2/Makefile deleted file mode 100644 index 2b77ccd72..000000000 --- a/x11-toolkits/gtksourceview2/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: gtksourceview -# Date created: 07 May 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/gtksourceview2/Makefile,v 1.71 2009/03/16 08:06:00 kwm Exp $ -# - -PORTNAME= gtksourceview2 -PORTVERSION= 2.6.0 -PORTREVISION?= 0 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A text widget that adds syntax highlighting to the GtkTextView widget - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -USE_GETTEXT= yes -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -USE_GNOME= gnomeprefix gnomehack gtk20 libxml2 intlhack \ - ltverhack referencehack -CONFIGURE_ARGS= --enable-compile-warnings=no -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> - -.endif diff --git a/x11-toolkits/gtksourceview2/distinfo b/x11-toolkits/gtksourceview2/distinfo deleted file mode 100644 index 04fd78d27..000000000 --- a/x11-toolkits/gtksourceview2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gtksourceview-2.6.0.tar.bz2) = dd065ab2e96e51aade949249c5556439 -SHA256 (gnome2/gtksourceview-2.6.0.tar.bz2) = 92ddd976721e26377eaa59fea07707a0caa85eb874500868c1e6fdd9a21fe0dd -SIZE (gnome2/gtksourceview-2.6.0.tar.bz2) = 976669 diff --git a/x11-toolkits/gtksourceview2/pkg-descr b/x11-toolkits/gtksourceview2/pkg-descr deleted file mode 100644 index 729f71780..000000000 --- a/x11-toolkits/gtksourceview2/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -GtkSourceView is a text widget for Gtk+-2 that provides syntax highlighting -and other features typically expected in a source code editor. diff --git a/x11-toolkits/gtksourceview2/pkg-plist b/x11-toolkits/gtksourceview2/pkg-plist deleted file mode 100644 index 012ade348..000000000 --- a/x11-toolkits/gtksourceview2/pkg-plist +++ /dev/null @@ -1,197 +0,0 @@ -include/gtksourceview-2.0/gtksourceview/gtksourcebuffer.h -include/gtksourceview-2.0/gtksourceview/gtksourceiter.h -include/gtksourceview-2.0/gtksourceview/gtksourcelanguage.h -include/gtksourceview-2.0/gtksourceview/gtksourcelanguagemanager.h -include/gtksourceview-2.0/gtksourceview/gtksourcemark.h -include/gtksourceview-2.0/gtksourceview/gtksourceprintcompositor.h -include/gtksourceview-2.0/gtksourceview/gtksourcestyle.h -include/gtksourceview-2.0/gtksourceview/gtksourcestylescheme.h -include/gtksourceview-2.0/gtksourceview/gtksourcestyleschememanager.h -include/gtksourceview-2.0/gtksourceview/gtksourceview-typebuiltins.h -include/gtksourceview-2.0/gtksourceview/gtksourceview.h -lib/libgtksourceview-2.0.a -lib/libgtksourceview-2.0.la -lib/libgtksourceview-2.0.so -lib/libgtksourceview-2.0.so.0 -libdata/pkgconfig/gtksourceview-2.0.pc -share/gtksourceview-2.0/language-specs/R.lang -share/gtksourceview-2.0/language-specs/ada.lang -share/gtksourceview-2.0/language-specs/asp.lang -share/gtksourceview-2.0/language-specs/awk.lang -share/gtksourceview-2.0/language-specs/boo.lang -share/gtksourceview-2.0/language-specs/c.lang -share/gtksourceview-2.0/language-specs/changelog.lang -share/gtksourceview-2.0/language-specs/chdr.lang -share/gtksourceview-2.0/language-specs/check.sh -share/gtksourceview-2.0/language-specs/cmake.lang -share/gtksourceview-2.0/language-specs/convert.py -share/gtksourceview-2.0/language-specs/cpp.lang -share/gtksourceview-2.0/language-specs/csharp.lang -share/gtksourceview-2.0/language-specs/css.lang -share/gtksourceview-2.0/language-specs/d.lang -share/gtksourceview-2.0/language-specs/def.lang -share/gtksourceview-2.0/language-specs/desktop.lang -share/gtksourceview-2.0/language-specs/diff.lang -share/gtksourceview-2.0/language-specs/docbook.lang -share/gtksourceview-2.0/language-specs/dosbatch.lang -share/gtksourceview-2.0/language-specs/dot.lang -share/gtksourceview-2.0/language-specs/dpatch.lang -share/gtksourceview-2.0/language-specs/dtd.lang -share/gtksourceview-2.0/language-specs/eiffel.lang -share/gtksourceview-2.0/language-specs/erlang.lang -share/gtksourceview-2.0/language-specs/forth.lang -share/gtksourceview-2.0/language-specs/fortran.lang -share/gtksourceview-2.0/language-specs/gap.lang -share/gtksourceview-2.0/language-specs/gtk-doc.lang -share/gtksourceview-2.0/language-specs/gtkrc.lang -share/gtksourceview-2.0/language-specs/haddock.lang -share/gtksourceview-2.0/language-specs/haskell-literate.lang -share/gtksourceview-2.0/language-specs/haskell.lang -share/gtksourceview-2.0/language-specs/html.lang -share/gtksourceview-2.0/language-specs/idl.lang -share/gtksourceview-2.0/language-specs/ini.lang -share/gtksourceview-2.0/language-specs/java.lang -share/gtksourceview-2.0/language-specs/javascript.lang -share/gtksourceview-2.0/language-specs/language.dtd -share/gtksourceview-2.0/language-specs/language.rng -share/gtksourceview-2.0/language-specs/language2.rng -share/gtksourceview-2.0/language-specs/latex.lang -share/gtksourceview-2.0/language-specs/libtool.lang -share/gtksourceview-2.0/language-specs/lua.lang -share/gtksourceview-2.0/language-specs/m4.lang -share/gtksourceview-2.0/language-specs/makefile.lang -share/gtksourceview-2.0/language-specs/msil.lang -share/gtksourceview-2.0/language-specs/nemerle.lang -share/gtksourceview-2.0/language-specs/nsis.lang -share/gtksourceview-2.0/language-specs/objc.lang -share/gtksourceview-2.0/language-specs/ocaml.lang -share/gtksourceview-2.0/language-specs/ocl.lang -share/gtksourceview-2.0/language-specs/octave.lang -share/gtksourceview-2.0/language-specs/pascal.lang -share/gtksourceview-2.0/language-specs/perl.lang -share/gtksourceview-2.0/language-specs/php.lang -share/gtksourceview-2.0/language-specs/pkgconfig.lang -share/gtksourceview-2.0/language-specs/po.lang -share/gtksourceview-2.0/language-specs/prolog.lang -share/gtksourceview-2.0/language-specs/python.lang -share/gtksourceview-2.0/language-specs/rpmspec.lang -share/gtksourceview-2.0/language-specs/ruby.lang -share/gtksourceview-2.0/language-specs/scheme.lang -share/gtksourceview-2.0/language-specs/sh.lang -share/gtksourceview-2.0/language-specs/sql.lang -share/gtksourceview-2.0/language-specs/styles.rng -share/gtksourceview-2.0/language-specs/t2t.lang -share/gtksourceview-2.0/language-specs/tcl.lang -share/gtksourceview-2.0/language-specs/texinfo.lang -share/gtksourceview-2.0/language-specs/vala.lang -share/gtksourceview-2.0/language-specs/vbnet.lang -share/gtksourceview-2.0/language-specs/verilog.lang -share/gtksourceview-2.0/language-specs/vhdl.lang -share/gtksourceview-2.0/language-specs/xml.lang -share/gtksourceview-2.0/language-specs/xslt.lang -share/gtksourceview-2.0/language-specs/yacc.lang -share/gtksourceview-2.0/styles/classic.xml -share/gtksourceview-2.0/styles/cobalt.xml -share/gtksourceview-2.0/styles/kate.xml -share/gtksourceview-2.0/styles/oblivion.xml -share/gtksourceview-2.0/styles/styles.rng -share/gtksourceview-2.0/styles/tango.xml -share/locale/ar/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/az/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/be/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/bg/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/bn/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/bs/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ca/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/cs/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/cy/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/da/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/de/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/dz/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/el/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/en_CA/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/en_GB/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/es/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/et/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/eu/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/fa/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/fi/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/fr/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ga/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/gl/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/gu/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/he/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/hi/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/hr/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/hu/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/id/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/it/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ja/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/kn/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ko/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/lt/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/lv/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/mg/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/mk/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ml/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/mn/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/mr/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ms/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/nb/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ne/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/nl/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/nn/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/oc/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/or/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/pa/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/pl/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/pt/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ro/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ru/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/rw/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/si/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/sk/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/sl/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/sq/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/sr/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/sv/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/ta/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/te/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/th/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/tr/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/uk/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/vi/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/xh/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gtksourceview-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gtksourceview-2.0.mo -@dirrm share/gtksourceview-2.0/styles -@dirrm share/gtksourceview-2.0/language-specs -@dirrm share/gtksourceview-2.0 -@dirrm include/gtksourceview-2.0/gtksourceview -@dirrm include/gtksourceview-2.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/x11-toolkits/libgnomeuimm26/Makefile b/x11-toolkits/libgnomeuimm26/Makefile deleted file mode 100644 index 827ad33eb..000000000 --- a/x11-toolkits/libgnomeuimm26/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: libgnomeuimm -# Date created: 22 May 2003 -# Whom: Alexander Nedotsukov <bland@mail.ru> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= libgnomeuimm -PORTVERSION= 2.26.0 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libgnomeui library - -LIB_DEPENDS= gnomemm-2.6.1:${PORTSDIR}/x11/libgnomemm26 \ - gnomecanvasmm-2.6.1:${PORTSDIR}/graphics/libgnomecanvasmm26 \ - gconfmm-2.6.1:${PORTSDIR}/devel/gconfmm26 \ - glademm-2.4.1:${PORTSDIR}/devel/libglademm24 \ - gnomevfsmm-2.6.1:${PORTSDIR}/devel/gnome-vfsmm -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -LATEST_LINK= libgnomeuimm26 - -USE_AUTOTOOLS= libtool:15 -USE_BZIP2= yes -USE_XORG= x11 -USE_GMAKE= yes -USE_GNOME= gnomehack libgnomeui -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples//' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e "s|\(-lglibmm\)|-L\$$(GMM_PROCDIR)/../.. \1|" \ - ${WRKSRC}/tools/extra_defs_gen/Makefile.in - -.include <bsd.port.mk> diff --git a/x11-toolkits/libgnomeuimm26/distinfo b/x11-toolkits/libgnomeuimm26/distinfo deleted file mode 100644 index 12ed4522c..000000000 --- a/x11-toolkits/libgnomeuimm26/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomeuimm-2.26.0.tar.bz2) = 7a9c8426a227a80ca70f2c976fcb1ae3 -SHA256 (gnome2/libgnomeuimm-2.26.0.tar.bz2) = d2993a6c70e5049971bf1163765c459ce1c3b0999c8e686267e3e544442322a3 -SIZE (gnome2/libgnomeuimm-2.26.0.tar.bz2) = 337722 diff --git a/x11-toolkits/libgnomeuimm26/pkg-descr b/x11-toolkits/libgnomeuimm26/pkg-descr deleted file mode 100644 index 46696c35a..000000000 --- a/x11-toolkits/libgnomeuimm26/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a set of thin C++ wrappers for libgnomeui library. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/x11-toolkits/libgnomeuimm26/pkg-plist b/x11-toolkits/libgnomeuimm26/pkg-plist deleted file mode 100644 index 44a43a572..000000000 --- a/x11-toolkits/libgnomeuimm26/pkg-plist +++ /dev/null @@ -1,67 +0,0 @@ -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/about.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/app-callback.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/app-helper.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/app.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/appbar.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/client.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/color-picker.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/dateedit.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/druid-page-edge.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/druid-page-standard.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/druid-page.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/druid.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/entry.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/file-entry.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/font-picker.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/href.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/icon-entry.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/icon-list.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/icon-lookup.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/icon-sel.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/icon-textitem.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/init.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/pixmap-entry.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/about_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/app_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/appbar_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/client_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/color-picker_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/dateedit_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/druid-page-edge_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/druid-page-standard_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/druid-page_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/druid_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/entry_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/file-entry_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/font-picker_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/href_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/icon-entry_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/icon-list_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/icon-lookup_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/icon-sel_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/icon-textitem_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/pixmap-entry_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private/thumbnail_p.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/stock.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/thumbnail.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/types.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/ui-items-derived.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/ui-items-icon.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/ui-items-stock.h -include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/wrap_init.h -lib/libgnomeuimm-%%VERSION%%.a -lib/libgnomeuimm-%%VERSION%%.la -lib/libgnomeuimm-%%VERSION%%.so -lib/libgnomeuimm-%%VERSION%%.so.1 -lib/libgnomeuimm-%%API_VERSION%%/include/libgnomeuimmconfig.h -lib/libgnomeuimm-%%API_VERSION%%/proc/m4/convert.m4 -lib/libgnomeuimm-%%API_VERSION%%/proc/m4/convert_libgnomeuimm.m4 -libdata/pkgconfig/libgnomeuimm-%%API_VERSION%%.pc -@dirrm lib/libgnomeuimm-%%API_VERSION%%/proc/m4 -@dirrm lib/libgnomeuimm-%%API_VERSION%%/proc -@dirrm lib/libgnomeuimm-%%API_VERSION%%/include -@dirrm lib/libgnomeuimm-%%API_VERSION%% -@dirrm include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm/private -@dirrm include/libgnomeuimm-%%API_VERSION%%/libgnomeuimm -@dirrm include/libgnomeuimm-%%API_VERSION%% diff --git a/x11-toolkits/libpanelappletmm/Makefile b/x11-toolkits/libpanelappletmm/Makefile deleted file mode 100644 index d677ca7f5..000000000 --- a/x11-toolkits/libpanelappletmm/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: libpanelappletmm -# Date created: 3 Dec 2003 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= libpanelappletmm -PORTVERSION= 2.22.0 -PORTREVISION= 2 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libpanelapplet library - -LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 \ - gconfmm-2.6.1:${PORTSDIR}/devel/gconfmm26 \ - gnomemm-2.6.1:${PORTSDIR}/x11/libgnomemm26 -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack lthack gnomepanel -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static -CONFIGURE_ENV= CPPFLAGS="`pkg-config --cflags libgnomeui-2.0`" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples//' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e "s|\(-lglibmm\)|-L\$$(GMM_PROCDIR)/../.. \1|" \ - ${WRKSRC}/tools/extra_defs_gen/Makefile.in - -.include <bsd.port.mk> diff --git a/x11-toolkits/libpanelappletmm/distinfo b/x11-toolkits/libpanelappletmm/distinfo deleted file mode 100644 index b099d4dd2..000000000 --- a/x11-toolkits/libpanelappletmm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libpanelappletmm-2.22.0.tar.bz2) = 9209dd219a3f4542753743f3c8666e79 -SHA256 (gnome2/libpanelappletmm-2.22.0.tar.bz2) = 74e88cf91f7c3c50e8a546ebc9ff1d011e76b9720644cdc07b613544bd2be33b -SIZE (gnome2/libpanelappletmm-2.22.0.tar.bz2) = 264581 diff --git a/x11-toolkits/libpanelappletmm/pkg-descr b/x11-toolkits/libpanelappletmm/pkg-descr deleted file mode 100644 index 7154f4509..000000000 --- a/x11-toolkits/libpanelappletmm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a set of thin C++ wrappers for libpanelapplet (part of gnomepanel). - -WWW: http://www.gtkmm.org/ diff --git a/x11-toolkits/libpanelappletmm/pkg-plist b/x11-toolkits/libpanelappletmm/pkg-plist deleted file mode 100644 index fd2d98455..000000000 --- a/x11-toolkits/libpanelappletmm/pkg-plist +++ /dev/null @@ -1,24 +0,0 @@ -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/applet.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/enums.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/factory.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/init.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/private.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/private/applet_p.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/private/enums_p.h -include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/wrap_init.h -lib/libpanelappletmm-%%VERSION%%.a -lib/libpanelappletmm-%%VERSION%%.la -lib/libpanelappletmm-%%VERSION%%.so -lib/libpanelappletmm-%%VERSION%%.so.1 -lib/libpanelappletmm-%%API_VERSION%%/include/libpanelappletmmconfig.h -lib/libpanelappletmm-%%API_VERSION%%/proc/m4/convert.m4 -lib/libpanelappletmm-%%API_VERSION%%/proc/m4/convert_libpanelappletmm.m4 -libdata/pkgconfig/libpanelappletmm-%%API_VERSION%%.pc -@dirrm lib/libpanelappletmm-%%API_VERSION%%/proc/m4 -@dirrm lib/libpanelappletmm-%%API_VERSION%%/proc -@dirrm lib/libpanelappletmm-%%API_VERSION%%/include -@dirrm lib/libpanelappletmm-%%API_VERSION%% -@dirrm include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm/private -@dirrm include/libpanelappletmm-%%API_VERSION%%/libpanelappletmm -@dirrm include/libpanelappletmm-%%API_VERSION%% diff --git a/x11-toolkits/libwnck/Makefile b/x11-toolkits/libwnck/Makefile deleted file mode 100644 index 9dc8c9540..000000000 --- a/x11-toolkits/libwnck/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: libwnck -# Date created: 12 April 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/libwnck/Makefile,v 1.116 2009/02/21 19:12:03 kwm Exp $ -# - -PORTNAME= libwnck -PORTVERSION= 2.26.0 -PORTREVISION?= 0 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Library used for writing pagers and taskslists - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification - -USE_GETTEXT= yes -USE_XORG= xres -USE_GMAKE= yes -USE_GNOME= gnomehack gtk20 ltverhack referencehack intlhack -USE_BISON= build -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.mk> - -.endif diff --git a/x11-toolkits/libwnck/distinfo b/x11-toolkits/libwnck/distinfo deleted file mode 100644 index 4299aded9..000000000 --- a/x11-toolkits/libwnck/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libwnck-2.26.0.tar.bz2) = 73873bf666fc18dff04d66c48400b0c5 -SHA256 (gnome2/libwnck-2.26.0.tar.bz2) = b47a9252da2f5a32e171a8ecfc4fe74a9fa241fdc68a6bc063935573be8939dc -SIZE (gnome2/libwnck-2.26.0.tar.bz2) = 707479 diff --git a/x11-toolkits/libwnck/pkg-descr b/x11-toolkits/libwnck/pkg-descr deleted file mode 100644 index 685bf95e0..000000000 --- a/x11-toolkits/libwnck/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -libwnck is a Window Navigator Construction Kit, i.e. a library used -for writing pagers and taskslists. It is needed for the -GNOME 2.0 desktop. - -WWW: http://www.gnome.org/ diff --git a/x11-toolkits/libwnck/pkg-plist b/x11-toolkits/libwnck/pkg-plist deleted file mode 100644 index 168881d9e..000000000 --- a/x11-toolkits/libwnck/pkg-plist +++ /dev/null @@ -1,135 +0,0 @@ -bin/wnckprop -include/libwnck-1.0/libwnck/application.h -include/libwnck-1.0/libwnck/class-group.h -include/libwnck-1.0/libwnck/libwnck.h -include/libwnck-1.0/libwnck/pager.h -include/libwnck-1.0/libwnck/screen.h -include/libwnck-1.0/libwnck/selector.h -include/libwnck-1.0/libwnck/tasklist.h -include/libwnck-1.0/libwnck/util.h -include/libwnck-1.0/libwnck/window-action-menu.h -include/libwnck-1.0/libwnck/window.h -include/libwnck-1.0/libwnck/wnck-enum-types.h -include/libwnck-1.0/libwnck/workspace.h -lib/libwnck-1.a -lib/libwnck-1.la -lib/libwnck-1.so -lib/libwnck-1.so.22 -libdata/pkgconfig/libwnck-1.0.pc -share/locale/am/LC_MESSAGES/libwnck.mo -share/locale/ar/LC_MESSAGES/libwnck.mo -share/locale/as/LC_MESSAGES/libwnck.mo -share/locale/az/LC_MESSAGES/libwnck.mo -share/locale/be/LC_MESSAGES/libwnck.mo -share/locale/be@latin/LC_MESSAGES/libwnck.mo -share/locale/bg/LC_MESSAGES/libwnck.mo -share/locale/bn/LC_MESSAGES/libwnck.mo -share/locale/bn_IN/LC_MESSAGES/libwnck.mo -share/locale/bs/LC_MESSAGES/libwnck.mo -share/locale/ca/LC_MESSAGES/libwnck.mo -share/locale/ca@valencia/LC_MESSAGES/libwnck.mo -share/locale/cs/LC_MESSAGES/libwnck.mo -share/locale/cy/LC_MESSAGES/libwnck.mo -share/locale/da/LC_MESSAGES/libwnck.mo -share/locale/de/LC_MESSAGES/libwnck.mo -share/locale/dz/LC_MESSAGES/libwnck.mo -share/locale/el/LC_MESSAGES/libwnck.mo -share/locale/en_CA/LC_MESSAGES/libwnck.mo -share/locale/en_GB/LC_MESSAGES/libwnck.mo -share/locale/eo/LC_MESSAGES/libwnck.mo -share/locale/es/LC_MESSAGES/libwnck.mo -share/locale/et/LC_MESSAGES/libwnck.mo -share/locale/eu/LC_MESSAGES/libwnck.mo -share/locale/fa/LC_MESSAGES/libwnck.mo -share/locale/fi/LC_MESSAGES/libwnck.mo -share/locale/fr/LC_MESSAGES/libwnck.mo -share/locale/ga/LC_MESSAGES/libwnck.mo -share/locale/gl/LC_MESSAGES/libwnck.mo -share/locale/gu/LC_MESSAGES/libwnck.mo -share/locale/he/LC_MESSAGES/libwnck.mo -share/locale/hi/LC_MESSAGES/libwnck.mo -share/locale/hr/LC_MESSAGES/libwnck.mo -share/locale/hu/LC_MESSAGES/libwnck.mo -share/locale/id/LC_MESSAGES/libwnck.mo -share/locale/is/LC_MESSAGES/libwnck.mo -share/locale/it/LC_MESSAGES/libwnck.mo -share/locale/ja/LC_MESSAGES/libwnck.mo -share/locale/ka/LC_MESSAGES/libwnck.mo -share/locale/kn/LC_MESSAGES/libwnck.mo -share/locale/ko/LC_MESSAGES/libwnck.mo -share/locale/ku/LC_MESSAGES/libwnck.mo -share/locale/ky/LC_MESSAGES/libwnck.mo -share/locale/li/LC_MESSAGES/libwnck.mo -share/locale/lt/LC_MESSAGES/libwnck.mo -share/locale/lv/LC_MESSAGES/libwnck.mo -share/locale/mi/LC_MESSAGES/libwnck.mo -share/locale/mk/LC_MESSAGES/libwnck.mo -share/locale/ml/LC_MESSAGES/libwnck.mo -share/locale/mn/LC_MESSAGES/libwnck.mo -share/locale/mr/LC_MESSAGES/libwnck.mo -share/locale/ms/LC_MESSAGES/libwnck.mo -share/locale/nb/LC_MESSAGES/libwnck.mo -share/locale/ne/LC_MESSAGES/libwnck.mo -share/locale/nl/LC_MESSAGES/libwnck.mo -share/locale/nn/LC_MESSAGES/libwnck.mo -share/locale/oc/LC_MESSAGES/libwnck.mo -share/locale/or/LC_MESSAGES/libwnck.mo -share/locale/pa/LC_MESSAGES/libwnck.mo -share/locale/pl/LC_MESSAGES/libwnck.mo -share/locale/pt/LC_MESSAGES/libwnck.mo -share/locale/pt_BR/LC_MESSAGES/libwnck.mo -share/locale/ro/LC_MESSAGES/libwnck.mo -share/locale/ru/LC_MESSAGES/libwnck.mo -share/locale/rw/LC_MESSAGES/libwnck.mo -share/locale/si/LC_MESSAGES/libwnck.mo -share/locale/sk/LC_MESSAGES/libwnck.mo -share/locale/sl/LC_MESSAGES/libwnck.mo -share/locale/sq/LC_MESSAGES/libwnck.mo -share/locale/sr/LC_MESSAGES/libwnck.mo -share/locale/sr@latin/LC_MESSAGES/libwnck.mo -share/locale/sv/LC_MESSAGES/libwnck.mo -share/locale/ta/LC_MESSAGES/libwnck.mo -share/locale/te/LC_MESSAGES/libwnck.mo -share/locale/th/LC_MESSAGES/libwnck.mo -share/locale/tr/LC_MESSAGES/libwnck.mo -share/locale/uk/LC_MESSAGES/libwnck.mo -share/locale/vi/LC_MESSAGES/libwnck.mo -share/locale/wa/LC_MESSAGES/libwnck.mo -share/locale/xh/LC_MESSAGES/libwnck.mo -share/locale/zh_CN/LC_MESSAGES/libwnck.mo -share/locale/zh_HK/LC_MESSAGES/libwnck.mo -share/locale/zh_TW/LC_MESSAGES/libwnck.mo -@dirrm include/libwnck-1.0/libwnck -@dirrm include/libwnck-1.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11-toolkits/ocaml-lablgtk2/Makefile b/x11-toolkits/ocaml-lablgtk2/Makefile deleted file mode 100644 index 5686ae698..000000000 --- a/x11-toolkits/ocaml-lablgtk2/Makefile +++ /dev/null @@ -1,162 +0,0 @@ -# New ports collection makefile for: lablgtk2 -# Date created: 2004-11-02 -# Whom: Rene Ladan -# -# $FreeBSD$ - -PORTNAME= lablgtk2 -PORTVERSION= 2.10.1 -PORTREVISION= 1 -CATEGORIES= x11-toolkits -MASTER_SITES= ftp://ftp.kurims.kyoto-u.ac.jp/pub/lang/olabl/ \ - http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/ \ - ftp://ftp.inria.fr/INRIA/caml-light/bazar-ocaml/ \ - http://caml.inria.fr/distrib/bazar-ocaml/ -PKGNAMEPREFIX= ocaml- -DISTNAME= lablgtk-${PORTVERSION} - -MAINTAINER= stas@FreeBSD.org -COMMENT= An Objective Caml interface to GTK+ 2.x - -USE_GMAKE= yes -USE_GNOME= gtk20 -USE_OCAML= yes - -BROKEN= does not build with GNOME 2.26 - -OPTIONS= GLADE "With glade support" ON \ - GNOMECANVAS "With gnomecanvas support" ON \ - GNOMEPANEL "With gnomepanel support" ON \ - GNOMEUI "With gnomeui support" ON \ - GTKSPELL "With gtkspell support" ON \ - GTKTL "With gtkglarea support" ON \ - RSVG "With rsvg support" ON - -DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME} -EXAMPLESDIR= ${PREFIX}/share/examples/ocaml/${PORTNAME} - -HAS_CONFIGURE= yes -ALL_TARGET= all opt - -CONFIGURE_ARGS= --prefix=${PREFIX} --with-libdir=${PREFIX}/lib/ocaml - -PATTERN= [[:space:]]*(do|then)?[[:space:]]*)cp([[:space:]] - -.include <bsd.port.pre.mk> - -.if (exists(${LOCALBASE}/bin/lablgl) && exists(${LOCALBASE}/libdata/pkgconfig/gtkgl-2.0.pc)) || defined(WITH_GTKTL) -CONFIGURE_ARGS+= --with-gl -BUILD_DEPENDS+= lablgl:${PORTSDIR}/graphics/ocaml-lablgl -RUN_DEPENDS+= lablgl:${PORTSDIR}/graphics/ocaml-lablgl -LIB_DEPENDS+= gtkgl-2.0.1:${PORTSDIR}/x11-toolkits/gtkglarea2 -WITH_GL= yes -PLIST_SUB+= GL="" -.else -CONFIGURE_ARGS+= --without-gl -PLIST_SUB+= GL="@comment " -.endif - -.if (exists(${LOCALBASE}/libdata/pkgconfig/libglade-2.0.pc)) || defined(WITH_GLADE) -CONFIGURE_ARGS+= --with-glade -USE_GNOME+= libglade2 -WITH_GLADE= yes -PLIST_SUB+= GLADE="" -.else -CONFIGURE_ARGS+= --without-glade -PLIST_SUB+= GLADE="@comment " -.endif - -.if (exists(${LOCALBASE}/libdata/pkgconfig/libgnomeui-2.0.pc)) || defined(WITH_GNOMEUI) -CONFIGURE_ARGS+= --with-gnomeui -USE_GNOME+= libgnomeui -WITH_GNOMEUI= yes -PLIST_SUB+= GNOMEUI="" -.else -CONFIGURE_ARGS+= --without-gnomeui -PLIST_SUB+= GNOMEUI="@comment " -.endif - -.if (exists(${LOCALBASE}/libdata/pkgconfig/libgnomecanvas-2.0.pc)) || defined(WITH_GNOMECANVAS) -CONFIGURE_ARGS+= --with-gnomecanvas -USE_GNOME+= libgnomecanvas -PLIST_SUB+= GNOMECANVAS="" -WITH_GNOMECANVAS= yes -.else -CONFIGURE_ARGS+= --without-gnomecanvas -PLIST_SUB+= GNOMECANVAS="@comment " -.endif - -.if (exists(${LOCALBASE}/libdata/pkgconfig/librsvg-2.0.pc)) || defined(WITH_RSVG) -CONFIGURE_ARGS+= --with-rsvg -USE_GNOME+= librsvg2 -WITH_RSVG= yes -PLIST_SUB+= RSVG="" -.else -CONFIGURE_ARGS+= --without-rsvg -PLIST_SUB+= RSVG="@comment " -.endif - -.if (exists(${LOCALBASE}/libdata/pkgconfig/libpanelapplet-2.0.pc)) || defined(WITH_GNOMEPANEL) -CONFIGURE_ARGS+= --with-panel -USE_GNOME+= gnomepanel -WITH_PANEL= yes -PLIST_SUB+= PANEL="" -.else -CONFIGURE_ARGS+= --without-panel -PLIST_SUB+= PANEL="@comment " -.endif - -.if (exists(${LOCALBASE}/libdata/pkgconfig/gtkspell-2.0.pc)) || defined(WITH_GTKSPELL) -LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell - -CONFIGURE_ARGS+= --with-gtkspell -PLIST_SUB+= GTKSPELL="" -WITH_GTKSPELL= yes -.else -CONFIGURE_ARGS+= --without-gtkspell -PLIST_SUB+= GTKSPELL="@comment " -.endif - -post-extract: - @${REINPLACE_CMD} -E \ - -e 's,^(CFLAGS[[:space:]]*\+=[[:space:]]*-O),\1 ${CFLAGS},' \ - -e 's,^(${PATTERN}+.*INSTALLDIR),\1\$${BSD_INSTALL_DATA} \3,' \ - -e 's,^(${PATTERN}+.*BINDIR),\1\$${BSD_INSTALL_SCRIPT} \3,' \ - -e 's,^(${PATTERN}+.*LIBDIR),\1\$${BSD_INSTALL_DATA} \3,' \ - ${WRKSRC}/src/Makefile - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/examples/image256x256.rgb \ - ${WRKSRC}/examples/test.xpm \ - ${WRKSRC}/examples/*.ml ${EXAMPLESDIR} - @${MKDIR} ${EXAMPLESDIR}/text - @${INSTALL_DATA} ${WRKSRC}/examples/text/* ${EXAMPLESDIR}/text - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README - @${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR}/COPYING -.endif -.if defined(WITH_GL) && !defined(NOPORTDOCS) - @${MKDIR} ${EXAMPLESDIR}/GL - @${INSTALL_DATA} ${WRKSRC}/examples/GL/* ${EXAMPLESDIR}/GL -.endif -.if defined(WITH_GNOMECANVAS) && !defined(NOPORTDOCS) - @${MKDIR} ${EXAMPLESDIR}/canvas - @${INSTALL_DATA} ${WRKSRC}/examples/canvas/* ${EXAMPLESDIR}/canvas -.endif -.if defined(WITH_GLADE) && !defined(NOPORTDOCS) - @${MKDIR} ${EXAMPLESDIR}/glade - @${INSTALL_DATA} ${WRKSRC}/examples/glade/* ${EXAMPLESDIR}/glade -.endif -.if defined(WITH_PANEL) && !defined(NOPORTDOCS) - @${MKDIR} ${EXAMPLESDIR}/panel - @${INSTALL_DATA} ${WRKSRC}/examples/panel/* ${EXAMPLESDIR}/panel -.endif -.if defined(WITH_RSVG) && !defined(NOPORTDOCS) - @${MKDIR} ${EXAMPLESDIR}/rsvg - @${INSTALL_DATA} ${WRKSRC}/examples/rsvg/* ${EXAMPLESDIR}/rsvg -.endif - @${INSTALL_DATA} ${WRKSRC}/META ${PREFIX}/${OCAML_LIBDIR}/${PORTNAME} - -.include <bsd.port.post.mk> diff --git a/x11-toolkits/ocaml-lablgtk2/distinfo b/x11-toolkits/ocaml-lablgtk2/distinfo deleted file mode 100644 index 5be18e4bc..000000000 --- a/x11-toolkits/ocaml-lablgtk2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (lablgtk-2.10.1.tar.gz) = bd7073ca05e684e5d5a3d553371fd6e5 -SHA256 (lablgtk-2.10.1.tar.gz) = e80c1db579cec89072fdaed755a179e26849c5eec51b2aa5627edda6173da886 -SIZE (lablgtk-2.10.1.tar.gz) = 768508 diff --git a/x11-toolkits/ocaml-lablgtk2/pkg-descr b/x11-toolkits/ocaml-lablgtk2/pkg-descr deleted file mode 100644 index 752d2e513..000000000 --- a/x11-toolkits/ocaml-lablgtk2/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -LablGTK2 uses the rich type system of Objective Caml 3 to provide -a strongly typed, yet very comfortable, object-oriented interface -to GTK+ 2.x. - -Objective Caml threads are supported, including for the toplevel, -which allows for interactive use of the library. - -Please see ${PREFIX}/share/doc/ocaml/${PORTNAME}/README for further -information. - -WWW: http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgtk.html - -- Rene -r.c.ladan@student.tue.nl diff --git a/x11-toolkits/ocaml-lablgtk2/pkg-plist b/x11-toolkits/ocaml-lablgtk2/pkg-plist deleted file mode 100644 index a9068f312..000000000 --- a/x11-toolkits/ocaml-lablgtk2/pkg-plist +++ /dev/null @@ -1,426 +0,0 @@ -bin/gdk-pixbuf-mlsource -%%GLADE%%bin/lablgladecc2 -bin/lablgtk2 -lib/ocaml/lablgtk2/META -lib/ocaml/lablgtk2/gAction.cmi -lib/ocaml/lablgtk2/gAction.cmx -lib/ocaml/lablgtk2/gAction.ml -lib/ocaml/lablgtk2/gAction.mli -lib/ocaml/lablgtk2/gAssistant.cmi -lib/ocaml/lablgtk2/gAssistant.cmx -lib/ocaml/lablgtk2/gAssistant.ml -lib/ocaml/lablgtk2/gAssistant.mli -lib/ocaml/lablgtk2/gBin.cmi -lib/ocaml/lablgtk2/gBin.cmx -lib/ocaml/lablgtk2/gBin.ml -lib/ocaml/lablgtk2/gBin.mli -lib/ocaml/lablgtk2/gBroken.cmi -lib/ocaml/lablgtk2/gBroken.cmx -lib/ocaml/lablgtk2/gBroken.ml -lib/ocaml/lablgtk2/gBroken.mli -lib/ocaml/lablgtk2/gButton.cmi -lib/ocaml/lablgtk2/gButton.cmx -lib/ocaml/lablgtk2/gButton.ml -lib/ocaml/lablgtk2/gButton.mli -lib/ocaml/lablgtk2/gContainer.cmi -lib/ocaml/lablgtk2/gContainer.cmx -lib/ocaml/lablgtk2/gContainer.ml -lib/ocaml/lablgtk2/gContainer.mli -lib/ocaml/lablgtk2/gData.cmi -lib/ocaml/lablgtk2/gData.cmx -lib/ocaml/lablgtk2/gData.ml -lib/ocaml/lablgtk2/gData.mli -lib/ocaml/lablgtk2/gDraw.cmi -lib/ocaml/lablgtk2/gDraw.cmx -lib/ocaml/lablgtk2/gDraw.ml -lib/ocaml/lablgtk2/gDraw.mli -lib/ocaml/lablgtk2/gEdit.cmi -lib/ocaml/lablgtk2/gEdit.cmx -lib/ocaml/lablgtk2/gEdit.ml -lib/ocaml/lablgtk2/gEdit.mli -lib/ocaml/lablgtk2/gFile.cmi -lib/ocaml/lablgtk2/gFile.cmx -lib/ocaml/lablgtk2/gFile.ml -lib/ocaml/lablgtk2/gFile.mli -lib/ocaml/lablgtk2/gList.cmi -lib/ocaml/lablgtk2/gList.cmx -lib/ocaml/lablgtk2/gList.ml -lib/ocaml/lablgtk2/gList.mli -lib/ocaml/lablgtk2/gMain.cmi -lib/ocaml/lablgtk2/gMain.cmx -lib/ocaml/lablgtk2/gMain.ml -lib/ocaml/lablgtk2/gMain.mli -lib/ocaml/lablgtk2/gMenu.cmi -lib/ocaml/lablgtk2/gMenu.cmx -lib/ocaml/lablgtk2/gMenu.ml -lib/ocaml/lablgtk2/gMenu.mli -lib/ocaml/lablgtk2/gMisc.cmi -lib/ocaml/lablgtk2/gMisc.cmx -lib/ocaml/lablgtk2/gMisc.ml -lib/ocaml/lablgtk2/gMisc.mli -lib/ocaml/lablgtk2/gObj.cmi -lib/ocaml/lablgtk2/gObj.cmx -lib/ocaml/lablgtk2/gObj.ml -lib/ocaml/lablgtk2/gObj.mli -lib/ocaml/lablgtk2/gPack.cmi -lib/ocaml/lablgtk2/gPack.cmx -lib/ocaml/lablgtk2/gPack.ml -lib/ocaml/lablgtk2/gPack.mli -lib/ocaml/lablgtk2/gPango.cmi -lib/ocaml/lablgtk2/gPango.cmx -lib/ocaml/lablgtk2/gPango.ml -lib/ocaml/lablgtk2/gRange.cmi -lib/ocaml/lablgtk2/gRange.cmx -lib/ocaml/lablgtk2/gRange.ml -lib/ocaml/lablgtk2/gRange.mli -lib/ocaml/lablgtk2/gSourceView.mli -lib/ocaml/lablgtk2/gText.cmi -lib/ocaml/lablgtk2/gText.cmx -lib/ocaml/lablgtk2/gText.ml -lib/ocaml/lablgtk2/gText.mli -lib/ocaml/lablgtk2/gToolbox.cmi -lib/ocaml/lablgtk2/gToolbox.cmx -lib/ocaml/lablgtk2/gToolbox.ml -lib/ocaml/lablgtk2/gToolbox.mli -lib/ocaml/lablgtk2/gTree.cmi -lib/ocaml/lablgtk2/gTree.cmx -lib/ocaml/lablgtk2/gTree.ml -lib/ocaml/lablgtk2/gTree.mli -lib/ocaml/lablgtk2/gUtil.cmi -lib/ocaml/lablgtk2/gUtil.cmx -lib/ocaml/lablgtk2/gUtil.ml -lib/ocaml/lablgtk2/gUtil.mli -lib/ocaml/lablgtk2/gWindow.cmi -lib/ocaml/lablgtk2/gWindow.cmx -lib/ocaml/lablgtk2/gWindow.ml -lib/ocaml/lablgtk2/gWindow.mli -lib/ocaml/lablgtk2/gaux.cmi -lib/ocaml/lablgtk2/gaux.cmx -lib/ocaml/lablgtk2/gaux.ml -lib/ocaml/lablgtk2/gdk.cmi -lib/ocaml/lablgtk2/gdk.cmx -lib/ocaml/lablgtk2/gdk.ml -lib/ocaml/lablgtk2/gdk.mli -lib/ocaml/lablgtk2/gdkEnums.cmi -lib/ocaml/lablgtk2/gdkEnums.cmx -lib/ocaml/lablgtk2/gdkEnums.ml -lib/ocaml/lablgtk2/gdkEvent.cmi -lib/ocaml/lablgtk2/gdkEvent.cmx -lib/ocaml/lablgtk2/gdkEvent.ml -lib/ocaml/lablgtk2/gdkKeysyms.cmi -lib/ocaml/lablgtk2/gdkKeysyms.cmx -lib/ocaml/lablgtk2/gdkKeysyms.ml -lib/ocaml/lablgtk2/gdkPixbuf.cmi -lib/ocaml/lablgtk2/gdkPixbuf.cmx -lib/ocaml/lablgtk2/gdkPixbuf.ml -lib/ocaml/lablgtk2/gdkPixbuf.mli -lib/ocaml/lablgtk2/gdk_tags.h -lib/ocaml/lablgtk2/gdkpixbuf_tags.h -lib/ocaml/lablgtk2/gdkprivate-win32.h -%%GL%%lib/ocaml/lablgtk2/glGtk.cmi -%%GL%%lib/ocaml/lablgtk2/glGtk.cmx -%%GL%%lib/ocaml/lablgtk2/glGtk.ml -%%GL%%lib/ocaml/lablgtk2/glGtk.mli -%%GLADE%%lib/ocaml/lablgtk2/glade.cmi -%%GLADE%%lib/ocaml/lablgtk2/glade.cmx -%%GLADE%%lib/ocaml/lablgtk2/glade.ml -%%GLADE%%lib/ocaml/lablgtk2/glade.mli -lib/ocaml/lablgtk2/glib.cmi -lib/ocaml/lablgtk2/glib.cmx -lib/ocaml/lablgtk2/glib.ml -lib/ocaml/lablgtk2/glib.mli -lib/ocaml/lablgtk2/glib_tags.h -%%GNOMECANVAS%%lib/ocaml/lablgtk2/gnoCanvas.cmi -%%GNOMECANVAS%%lib/ocaml/lablgtk2/gnoCanvas.cmx -%%GNOMECANVAS%%lib/ocaml/lablgtk2/gnoCanvas.ml -%%GNOMECANVAS%%lib/ocaml/lablgtk2/gnoCanvas.mli -lib/ocaml/lablgtk2/gnoDruid.cmi -lib/ocaml/lablgtk2/gnoDruid.cmx -lib/ocaml/lablgtk2/gnoDruid.ml -lib/ocaml/lablgtk2/gnoDruid.mli -%%GNOMECANVAS%%lib/ocaml/lablgtk2/gnomeCanvas.cmi -%%GNOMECANVAS%%lib/ocaml/lablgtk2/gnomeCanvas.cmx -%%GNOMECANVAS%%lib/ocaml/lablgtk2/gnomeCanvas.ml -lib/ocaml/lablgtk2/gnomeDruid.cmi -lib/ocaml/lablgtk2/gnomeDruid.cmx -lib/ocaml/lablgtk2/gnomeDruid.ml -%%GNOMEUI%%lib/ocaml/lablgtk2/gnomeui_tags.h -lib/ocaml/lablgtk2/gobject.cmi -lib/ocaml/lablgtk2/gobject.cmx -lib/ocaml/lablgtk2/gobject.ml -lib/ocaml/lablgtk2/gobject.mli -lib/ocaml/lablgtk2/gobject_tags.h -lib/ocaml/lablgtk2/gpointer.cmi -lib/ocaml/lablgtk2/gpointer.cmx -lib/ocaml/lablgtk2/gpointer.ml -lib/ocaml/lablgtk2/gpointer.mli -lib/ocaml/lablgtk2/gtk.cmi -lib/ocaml/lablgtk2/gtk.cmx -lib/ocaml/lablgtk2/gtk.ml -lib/ocaml/lablgtk2/gtkAssistant.cmi -lib/ocaml/lablgtk2/gtkAssistant.cmx -lib/ocaml/lablgtk2/gtkAssistant.ml -lib/ocaml/lablgtk2/gtkBase.cmi -lib/ocaml/lablgtk2/gtkBase.cmx -lib/ocaml/lablgtk2/gtkBase.ml -lib/ocaml/lablgtk2/gtkBin.cmi -lib/ocaml/lablgtk2/gtkBin.cmx -lib/ocaml/lablgtk2/gtkBin.ml -lib/ocaml/lablgtk2/gtkBroken.cmi -lib/ocaml/lablgtk2/gtkBroken.cmx -lib/ocaml/lablgtk2/gtkBroken.ml -lib/ocaml/lablgtk2/gtkButton.cmi -lib/ocaml/lablgtk2/gtkButton.cmx -lib/ocaml/lablgtk2/gtkButton.ml -lib/ocaml/lablgtk2/gtkData.cmi -lib/ocaml/lablgtk2/gtkData.cmx -lib/ocaml/lablgtk2/gtkData.ml -lib/ocaml/lablgtk2/gtkEdit.cmi -lib/ocaml/lablgtk2/gtkEdit.cmx -lib/ocaml/lablgtk2/gtkEdit.ml -lib/ocaml/lablgtk2/gtkEnums.cmi -lib/ocaml/lablgtk2/gtkEnums.cmx -lib/ocaml/lablgtk2/gtkEnums.ml -lib/ocaml/lablgtk2/gtkFile.cmi -lib/ocaml/lablgtk2/gtkFile.cmx -lib/ocaml/lablgtk2/gtkFile.ml -lib/ocaml/lablgtk2/gtkInit.cmi -lib/ocaml/lablgtk2/gtkInit.cmo -lib/ocaml/lablgtk2/gtkInit.cmx -lib/ocaml/lablgtk2/gtkInit.ml -lib/ocaml/lablgtk2/gtkInit.o -lib/ocaml/lablgtk2/gtkList.cmi -lib/ocaml/lablgtk2/gtkList.cmx -lib/ocaml/lablgtk2/gtkList.ml -lib/ocaml/lablgtk2/gtkMain.cmi -lib/ocaml/lablgtk2/gtkMain.cmx -lib/ocaml/lablgtk2/gtkMain.ml -lib/ocaml/lablgtk2/gtkMenu.cmi -lib/ocaml/lablgtk2/gtkMenu.cmx -lib/ocaml/lablgtk2/gtkMenu.ml -lib/ocaml/lablgtk2/gtkMisc.cmi -lib/ocaml/lablgtk2/gtkMisc.cmx -lib/ocaml/lablgtk2/gtkMisc.ml -lib/ocaml/lablgtk2/gtkObject.cmi -lib/ocaml/lablgtk2/gtkObject.cmx -lib/ocaml/lablgtk2/gtkObject.ml -lib/ocaml/lablgtk2/gtkPack.cmi -lib/ocaml/lablgtk2/gtkPack.cmx -lib/ocaml/lablgtk2/gtkPack.ml -lib/ocaml/lablgtk2/gtkRange.cmi -lib/ocaml/lablgtk2/gtkRange.cmx -lib/ocaml/lablgtk2/gtkRange.ml -lib/ocaml/lablgtk2/gtkSignal.cmi -lib/ocaml/lablgtk2/gtkSignal.cmx -lib/ocaml/lablgtk2/gtkSignal.ml -lib/ocaml/lablgtk2/gtkSignal.mli -lib/ocaml/lablgtk2/gtkSourceView_types.mli -%%GTKSPELL%%lib/ocaml/lablgtk2/gtkSpell.cmi -%%GTKSPELL%%lib/ocaml/lablgtk2/gtkSpell.cmx -%%GTKSPELL%%lib/ocaml/lablgtk2/gtkSpell.ml -%%GTKSPELL%%lib/ocaml/lablgtk2/gtkSpell.mli -lib/ocaml/lablgtk2/gtkStock.cmi -lib/ocaml/lablgtk2/gtkStock.cmx -lib/ocaml/lablgtk2/gtkStock.ml -lib/ocaml/lablgtk2/gtkText.cmi -lib/ocaml/lablgtk2/gtkText.cmx -lib/ocaml/lablgtk2/gtkText.ml -lib/ocaml/lablgtk2/gtkThInit.cmo -lib/ocaml/lablgtk2/gtkThInit.ml -lib/ocaml/lablgtk2/gtkThread.cmi -lib/ocaml/lablgtk2/gtkThread.cmo -lib/ocaml/lablgtk2/gtkThread.cmx -lib/ocaml/lablgtk2/gtkThread.ml -lib/ocaml/lablgtk2/gtkThread.mli -lib/ocaml/lablgtk2/gtkThread.o -lib/ocaml/lablgtk2/gtkTree.cmi -lib/ocaml/lablgtk2/gtkTree.cmx -lib/ocaml/lablgtk2/gtkTree.ml -lib/ocaml/lablgtk2/gtkWindow.cmi -lib/ocaml/lablgtk2/gtkWindow.cmx -lib/ocaml/lablgtk2/gtkWindow.ml -lib/ocaml/lablgtk2/gtk_tags.h -lib/ocaml/lablgtk2/gtkgl_tags.h -%%GLADE%%lib/ocaml/lablgtk2/lablglade.a -%%GLADE%%lib/ocaml/lablgtk2/lablglade.cma -%%GLADE%%lib/ocaml/lablgtk2/lablglade.cmxa -%%GNOMECANVAS%%lib/ocaml/lablgtk2/lablgnomecanvas.a -%%GNOMECANVAS%%lib/ocaml/lablgtk2/lablgnomecanvas.cma -%%GNOMECANVAS%%lib/ocaml/lablgtk2/lablgnomecanvas.cmxa -%%GNOMEUI%%lib/ocaml/lablgtk2/lablgnomeui.a -%%GNOMEUI%%lib/ocaml/lablgtk2/lablgnomeui.cma -%%GNOMEUI%%lib/ocaml/lablgtk2/lablgnomeui.cmxa -lib/ocaml/lablgtk2/lablgtk.a -lib/ocaml/lablgtk2/lablgtk.cma -lib/ocaml/lablgtk2/lablgtk.cmxa -lib/ocaml/lablgtk2/lablgtkgl.a -lib/ocaml/lablgtk2/lablgtkgl.cma -lib/ocaml/lablgtk2/lablgtkgl.cmxa -%%GTKSPELL%%lib/ocaml/lablgtk2/lablgtkspell.a -%%GTKSPELL%%lib/ocaml/lablgtk2/lablgtkspell.cma -%%GTKSPELL%%lib/ocaml/lablgtk2/lablgtkspell.cmxa -%%PANEL%%%%PANEL%%lib/ocaml/lablgtk2/lablpanel.a -%%PANEL%%lib/ocaml/lablgtk2/lablpanel.cma -%%PANEL%%lib/ocaml/lablgtk2/lablpanel.cmxa -%%RSVG%%lib/ocaml/lablgtk2/lablrsvg.a -%%RSVG%%lib/ocaml/lablgtk2/lablrsvg.cma -%%RSVG%%lib/ocaml/lablgtk2/lablrsvg.cmxa -%%GLADE%%lib/ocaml/lablgtk2/liblablglade2.a -%%GNOMECANVAS%%lib/ocaml/lablgtk2/liblablgnomecanvas.a -%%GNOMEUI%%lib/ocaml/lablgtk2/liblablgnomeui.a -lib/ocaml/lablgtk2/liblablgtk2.a -lib/ocaml/lablgtk2/liblablgtkgl2.a -%%GTKSPELL%%lib/ocaml/lablgtk2/liblablgtkspell.a -%%PANEL%%lib/ocaml/lablgtk2/liblablpanel.a -%%RSVG%%lib/ocaml/lablgtk2/liblablrsvg.a -lib/ocaml/lablgtk2/ml_domain.h -lib/ocaml/lablgtk2/ml_gdk.h -lib/ocaml/lablgtk2/ml_gdkpixbuf.h -lib/ocaml/lablgtk2/ml_glib.h -lib/ocaml/lablgtk2/ml_gobject.h -lib/ocaml/lablgtk2/ml_gpointer.h -lib/ocaml/lablgtk2/ml_gtk.h -lib/ocaml/lablgtk2/ml_gtktext.h -lib/ocaml/lablgtk2/ml_gtktree.h -lib/ocaml/lablgtk2/ml_gvaluecaml.h -lib/ocaml/lablgtk2/ml_pango.h -%%PANEL%%lib/ocaml/lablgtk2/panel.cmi -%%PANEL%%lib/ocaml/lablgtk2/panel.cmx -%%PANEL%%lib/ocaml/lablgtk2/panel.ml -%%PANEL%%lib/ocaml/lablgtk2/panel.mli -%%PANEL%%lib/ocaml/lablgtk2/panel_tags.h -lib/ocaml/lablgtk2/pango.cmi -lib/ocaml/lablgtk2/pango.cmx -lib/ocaml/lablgtk2/pango.ml -lib/ocaml/lablgtk2/pangoEnums.cmi -lib/ocaml/lablgtk2/pangoEnums.cmx -lib/ocaml/lablgtk2/pangoEnums.ml -lib/ocaml/lablgtk2/pango_tags.h -lib/ocaml/lablgtk2/propcc -%%RSVG%%lib/ocaml/lablgtk2/rsvg.cmi -%%RSVG%%lib/ocaml/lablgtk2/rsvg.cmx -%%RSVG%%lib/ocaml/lablgtk2/rsvg.ml -%%RSVG%%lib/ocaml/lablgtk2/rsvg.mli -lib/ocaml/lablgtk2/varcc -lib/ocaml/lablgtk2/win32.h -lib/ocaml/lablgtk2/wrappers.h -lib/ocaml/lablgtk2/xml_lexer.mli -%%GLADE%%lib/ocaml/stublibs/dlllablglade2.so -%%GNOMECANVAS%%lib/ocaml/stublibs/dlllablgnomecanvas.so -%%GNOMEUI%%lib/ocaml/stublibs/dlllablgnomeui.so -lib/ocaml/stublibs/dlllablgtk2.so -lib/ocaml/stublibs/dlllablgtkgl2.so -%%GTKSPELL%%lib/ocaml/stublibs/dlllablgtkspell.so -%%PANEL%%lib/ocaml/stublibs/dlllablpanel.so -%%RSVG%%lib/ocaml/stublibs/dlllablrsvg.so -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/aargb.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/gears.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/morph3d.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/planet.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/scene.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/simple.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/texturesurf.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/tutorial-2.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/tutorial-3.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/tutorial-4.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/GL/tutorial-5.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/about.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/action.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/assistant.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/assistant_tutorial.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/buttons.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/calc.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/calendar.ml -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/canvas-arrowhead.ml -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/canvas-curve.ml -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/canvas-features.ml -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/canvas-fifteen.ml -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/canvas-primitives.ml -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/canvas-richtext.ml -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/flower.png -%%PORTDOCS%%%%GNOMECANVAS%%%%EXAMPLESDIR%%/canvas/toroid.png -%%PORTDOCS%%%%EXAMPLESDIR%%/cgets.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/clist.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/cputs.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/combo.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/combobox.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/counter.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/csview.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/dcalendar.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/drawing.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/druid.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/editor.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/editor2.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/entry.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/entrycompletion.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/events.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/events2.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/expander.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/fifteen.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/filechooser.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/fixed_editor.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/fixpoint.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/giotest.ml -%%PORTDOCS%%%%GLADE%%%%EXAMPLESDIR%%/glade/glade_demo.ml -%%PORTDOCS%%%%GLADE%%%%EXAMPLESDIR%%/glade/gladecalc.ml -%%PORTDOCS%%%%GLADE%%%%EXAMPLESDIR%%/glade/project1.glade -%%PORTDOCS%%%%GLADE%%%%EXAMPLESDIR%%/glade/project1.gladep -%%PORTDOCS%%%%GLADE%%%%EXAMPLESDIR%%/glade/project2.glade -%%PORTDOCS%%%%GLADE%%%%EXAMPLESDIR%%/glade/project2.gladep -%%PORTDOCS%%%%EXAMPLESDIR%%/hello.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/iconview.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/image.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/image256x256.rgb -%%PORTDOCS%%%%EXAMPLESDIR%%/kaimono.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/label.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/link_button.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/lissajous.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/nihongo.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/notebook.ml -%%PORTDOCS%%%%PANEL%%%%EXAMPLESDIR%%/panel/README -%%PORTDOCS%%%%PANEL%%%%EXAMPLESDIR%%/panel/applet.ml -%%PORTDOCS%%%%PANEL%%%%EXAMPLESDIR%%/panel/lablgtk_applet.server -%%PORTDOCS%%%%EXAMPLESDIR%%/pixview.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/pousse.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/progressbar.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/radiobuttons.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/rpn.ml -%%PORTDOCS%%%%RSVG%%%%EXAMPLESDIR%%/rsvg/floppy.svg -%%PORTDOCS%%%%RSVG%%%%EXAMPLESDIR%%/rsvg/test_rsvg.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/scrolledwin.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/signal_override.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/slide_show.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/socket.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/spell.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/test.xpm -%%PORTDOCS%%%%EXAMPLESDIR%%/testdnd.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/testgtk.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/text/Makefile -%%PORTDOCS%%%%EXAMPLESDIR%%/text/floppybuddy.gif -%%PORTDOCS%%%%EXAMPLESDIR%%/text/gtk-logo-rgb.gif -%%PORTDOCS%%%%EXAMPLESDIR%%/text/test.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/text/test_text.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/text/text-demo.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/text/unicode_table.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/text/unicode_viewer.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/timer.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/toolbar.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/tree.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/tree_model.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/tree_store.ml -%%PORTDOCS%%%%EXAMPLESDIR%%/tron.ml -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/text -%%PORTDOCS%%%%RSVG%%@dirrm %%EXAMPLESDIR%%/rsvg -%%PORTDOCS%%%%PANEL%%@dirrm %%EXAMPLESDIR%%/panel -%%PORTDOCS%%%%GLADE%%@dirrm %%EXAMPLESDIR%%/glade -%%PORTDOCS%%%%GNOMECANVAS%%@dirrm %%EXAMPLESDIR%%/canvas -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/GL -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrmtry share/examples/ocaml -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% -%%PORTDOCS%%@dirrmtry share/doc/ocaml -@dirrmtry lib/ocaml/stublibs -@dirrm lib/ocaml/lablgtk2 -@dirrmtry lib/ocaml diff --git a/x11-toolkits/pango/Makefile b/x11-toolkits/pango/Makefile deleted file mode 100644 index ba025ce38..000000000 --- a/x11-toolkits/pango/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -# New ports collection makefile for: pango -# Date Created: 18 July 2000 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/pango/Makefile,v 1.138 2009/03/21 03:13:24 marcus Exp $ -# - -PORTNAME= pango -PORTVERSION= 1.24.0 -PORTREVISION?= 2 -CATEGORIES= x11-toolkits -MASTER_SITES= GNOME \ - ftp://ftp.gtk.org/pub/pango/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/ -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= An open-source framework for the layout and rendering of i18n text - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/freetype2.pc:${PORTSDIR}/print/freetype2 -LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo -RUN_DEPENDS= ${FONTSCALE}:${X_FONTS_TTF_PORT} \ - ${FONTENCOD}:${X_FONTS_ENCODINGS_PORT} - -USE_GETTEXT= yes -USE_GMAKE= yes -MAKE_JOBS_SAFE= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomehack glib20 ltverhack referencehack -CONFIGURE_ARGS= --with-qt=no \ - --with-html-dir=${PREFIX}/share/doc \ - --enable-static -# Hmm.. tough one. Found this one when I had graphics/hdf installed -# (which installs glist.h) which is picked up before the glib-2.0 -# stuff, with Bad Results[tm] -# -GLIB2_CFLAGS= `pkg-config glib-2.0 --cflags` -PLIST_SUB= VERSION="1.6.0" - -FONTSCALE= ${LOCALBASE}/lib/X11/fonts/TTF/luximb.ttf -FONTENCOD= ${LOCALBASE}/lib/X11/fonts/encodings/encodings.dir - -MAN1= pango-view.1 pango-querymodules.1 preload.1 - -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+= --with-x=no -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype2 \ - ${GLIB2_CFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -PLIST_SUB+= X11="@comment " -.else -USE_XORG+= xft xrender -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype2 \ - ${GLIB2_CFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -PLIST_SUB+= X11="" -.endif - -.include <bsd.port.mk> - -.endif diff --git a/x11-toolkits/pango/distinfo b/x11-toolkits/pango/distinfo deleted file mode 100644 index 3ea90a967..000000000 --- a/x11-toolkits/pango/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/pango-1.24.0.tar.bz2) = d209f41079833cd2ef2c5e580ab9c5ee -SHA256 (gnome2/pango-1.24.0.tar.bz2) = 7a0af222b8f07defbf492246b7f7ba386025ab504f2ec4abc408d3d6fa4d4b95 -SIZE (gnome2/pango-1.24.0.tar.bz2) = 1520527 diff --git a/x11-toolkits/pango/files/patch-pango-view_Makefile.in b/x11-toolkits/pango/files/patch-pango-view_Makefile.in deleted file mode 100644 index 1a865c134..000000000 --- a/x11-toolkits/pango/files/patch-pango-view_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- pango-view/Makefile.in.orig 2009-03-20 23:09:47.000000000 -0400 -+++ pango-view/Makefile.in 2009-03-20 23:10:27.000000000 -0400 -@@ -727,7 +727,7 @@ $(srcdir)/pango-view.1: ../configure.in - (test -f "$@" || echo help2man is required to generate this file. >> "$@")); - - install-data-hook: -- @cd "$(DESTDIR)$(man1dir)" && gzip -c pango-view.1 > preload.1.gz && $(RM) preload.1 -+ @cd "$(DESTDIR)$(man1dir)" && cp -p pango-view.1 preload.1 - - uninstall-hook: - $(RM) "$(DESTDIR)$(man1dir)/pango-view.1.gz" diff --git a/x11-toolkits/pango/pkg-descr b/x11-toolkits/pango/pkg-descr deleted file mode 100644 index 9ff793b51..000000000 --- a/x11-toolkits/pango/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Pango provides a framework to render and control the layout of -internationalized text, and is the backend for right-to-left text. -Pango is an integral part of the GTK+ and GNOME projects, but its -code is platform- and toolkit-independent. - -WWW: http://www.pango.org/ diff --git a/x11-toolkits/pango/pkg-plist b/x11-toolkits/pango/pkg-plist deleted file mode 100644 index 83c249c73..000000000 --- a/x11-toolkits/pango/pkg-plist +++ /dev/null @@ -1,105 +0,0 @@ -bin/pango-querymodules -%%X11%%bin/pango-view -etc/pango/pango.modules -%%X11%%etc/pango/pangox.aliases -include/pango-1.0/pango/pango-attributes.h -include/pango-1.0/pango/pango-bidi-type.h -include/pango-1.0/pango/pango-break.h -include/pango-1.0/pango/pango-context.h -include/pango-1.0/pango/pango-coverage.h -include/pango-1.0/pango/pango-engine.h -include/pango-1.0/pango/pango-enum-types.h -include/pango-1.0/pango/pango-features.h -include/pango-1.0/pango/pango-font.h -include/pango-1.0/pango/pango-fontmap.h -include/pango-1.0/pango/pango-fontset.h -include/pango-1.0/pango/pango-glyph-item.h -include/pango-1.0/pango/pango-glyph.h -include/pango-1.0/pango/pango-gravity.h -include/pango-1.0/pango/pango-item.h -include/pango-1.0/pango/pango-language.h -include/pango-1.0/pango/pango-layout.h -include/pango-1.0/pango/pango-matrix.h -include/pango-1.0/pango/pango-modules.h -include/pango-1.0/pango/pango-ot.h -include/pango-1.0/pango/pango-renderer.h -include/pango-1.0/pango/pango-script.h -include/pango-1.0/pango/pango-tabs.h -include/pango-1.0/pango/pango-types.h -include/pango-1.0/pango/pango-utils.h -include/pango-1.0/pango/pango.h -include/pango-1.0/pango/pangocairo.h -include/pango-1.0/pango/pangofc-decoder.h -include/pango-1.0/pango/pangofc-font.h -include/pango-1.0/pango/pangofc-fontmap.h -include/pango-1.0/pango/pangoft2.h -%%X11%%include/pango-1.0/pango/pangox.h -%%X11%%include/pango-1.0/pango/pangoxft-render.h -%%X11%%include/pango-1.0/pango/pangoxft.h -lib/libpango-1.0.a -lib/libpango-1.0.la -lib/libpango-1.0.so -lib/libpango-1.0.so.0 -lib/libpangocairo-1.0.a -lib/libpangocairo-1.0.la -lib/libpangocairo-1.0.so -lib/libpangocairo-1.0.so.0 -lib/libpangoft2-1.0.a -lib/libpangoft2-1.0.la -lib/libpangoft2-1.0.so -lib/libpangoft2-1.0.so.0 -%%X11%%lib/libpangox-1.0.a -%%X11%%lib/libpangox-1.0.la -%%X11%%lib/libpangox-1.0.so -%%X11%%lib/libpangox-1.0.so.0 -%%X11%%lib/libpangoxft-1.0.a -%%X11%%lib/libpangoxft-1.0.la -%%X11%%lib/libpangoxft-1.0.so -%%X11%%lib/libpangoxft-1.0.so.0 -lib/pango/%%VERSION%%/modules/pango-arabic-fc.a -lib/pango/%%VERSION%%/modules/pango-arabic-fc.la -lib/pango/%%VERSION%%/modules/pango-arabic-fc.so -lib/pango/%%VERSION%%/modules/pango-arabic-lang.a -lib/pango/%%VERSION%%/modules/pango-arabic-lang.la -lib/pango/%%VERSION%%/modules/pango-arabic-lang.so -lib/pango/%%VERSION%%/modules/pango-basic-fc.a -lib/pango/%%VERSION%%/modules/pango-basic-fc.la -lib/pango/%%VERSION%%/modules/pango-basic-fc.so -%%X11%%lib/pango/%%VERSION%%/modules/pango-basic-x.a -%%X11%%lib/pango/%%VERSION%%/modules/pango-basic-x.la -%%X11%%lib/pango/%%VERSION%%/modules/pango-basic-x.so -lib/pango/%%VERSION%%/modules/pango-hangul-fc.a -lib/pango/%%VERSION%%/modules/pango-hangul-fc.la -lib/pango/%%VERSION%%/modules/pango-hangul-fc.so -lib/pango/%%VERSION%%/modules/pango-hebrew-fc.a -lib/pango/%%VERSION%%/modules/pango-hebrew-fc.la -lib/pango/%%VERSION%%/modules/pango-hebrew-fc.so -lib/pango/%%VERSION%%/modules/pango-indic-fc.a -lib/pango/%%VERSION%%/modules/pango-indic-fc.la -lib/pango/%%VERSION%%/modules/pango-indic-fc.so -lib/pango/%%VERSION%%/modules/pango-indic-lang.a -lib/pango/%%VERSION%%/modules/pango-indic-lang.la -lib/pango/%%VERSION%%/modules/pango-indic-lang.so -lib/pango/%%VERSION%%/modules/pango-khmer-fc.a -lib/pango/%%VERSION%%/modules/pango-khmer-fc.la -lib/pango/%%VERSION%%/modules/pango-khmer-fc.so -lib/pango/%%VERSION%%/modules/pango-syriac-fc.a -lib/pango/%%VERSION%%/modules/pango-syriac-fc.la -lib/pango/%%VERSION%%/modules/pango-syriac-fc.so -lib/pango/%%VERSION%%/modules/pango-thai-fc.a -lib/pango/%%VERSION%%/modules/pango-thai-fc.la -lib/pango/%%VERSION%%/modules/pango-thai-fc.so -lib/pango/%%VERSION%%/modules/pango-tibetan-fc.a -lib/pango/%%VERSION%%/modules/pango-tibetan-fc.la -lib/pango/%%VERSION%%/modules/pango-tibetan-fc.so -libdata/pkgconfig/pango.pc -libdata/pkgconfig/pangocairo.pc -libdata/pkgconfig/pangoft2.pc -%%X11%%libdata/pkgconfig/pangox.pc -%%X11%%libdata/pkgconfig/pangoxft.pc -@dirrm lib/pango/%%VERSION%%/modules -@dirrm lib/pango/%%VERSION%% -@dirrm lib/pango -@dirrm include/pango-1.0/pango -@dirrm include/pango-1.0 -@dirrm etc/pango diff --git a/x11-toolkits/pangomm/Makefile b/x11-toolkits/pangomm/Makefile deleted file mode 100644 index 1995635cb..000000000 --- a/x11-toolkits/pangomm/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: pangomm -# Date created: 23 July 2008 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= pangomm -PORTVERSION= 2.24.0 -PORTREVISION?= 0 -CATEGORIES= x11-toolkits -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= C++ wrapper for Pango - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= glibmm-2.4.1:${PORTSDIR}/devel/glibmm \ - cairomm-1.0.1:${PORTSDIR}/graphics/cairomm -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -USE_GNOME= gnomehack pango -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-demos \ - --disable-docs \ - --disable-examples \ - --enable-static=yes \ - --with-sigc-prefix=${LOCALBASE} - -PLIST_SUB= VERSION="2.4" API_VERSION="1.4" - -post-patch: - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/tests//' \ - ${WRKSRC}/Makefile.in - -.include <bsd.port.mk> - -.endif diff --git a/x11-toolkits/pangomm/distinfo b/x11-toolkits/pangomm/distinfo deleted file mode 100644 index 5e4dcdf24..000000000 --- a/x11-toolkits/pangomm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/pangomm-2.24.0.tar.bz2) = fa0f44c37499433455857becad4bbcda -SHA256 (gnome2/pangomm-2.24.0.tar.bz2) = 0f0a45644bd11a3e354b52c3823a635cf0ebf2123fe7fa48e728e6aa5699039e -SIZE (gnome2/pangomm-2.24.0.tar.bz2) = 996057 diff --git a/x11-toolkits/pangomm/pkg-descr b/x11-toolkits/pangomm/pkg-descr deleted file mode 100644 index 1fec3f2b7..000000000 --- a/x11-toolkits/pangomm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -C++ wrapper for Pango. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/x11-toolkits/pangomm/pkg-plist b/x11-toolkits/pangomm/pkg-plist deleted file mode 100644 index 08c681f69..000000000 --- a/x11-toolkits/pangomm/pkg-plist +++ /dev/null @@ -1,67 +0,0 @@ -include/pangomm-%%API_VERSION%%/pangomm.h -include/pangomm-%%API_VERSION%%/pangomm/attributes.h -include/pangomm-%%API_VERSION%%/pangomm/attriter.h -include/pangomm-%%API_VERSION%%/pangomm/attrlist.h -include/pangomm-%%API_VERSION%%/pangomm/cairofontmap.h -include/pangomm-%%API_VERSION%%/pangomm/color.h -include/pangomm-%%API_VERSION%%/pangomm/context.h -include/pangomm-%%API_VERSION%%/pangomm/coverage.h -include/pangomm-%%API_VERSION%%/pangomm/font.h -include/pangomm-%%API_VERSION%%/pangomm/fontdescription.h -include/pangomm-%%API_VERSION%%/pangomm/fontface.h -include/pangomm-%%API_VERSION%%/pangomm/fontfamily.h -include/pangomm-%%API_VERSION%%/pangomm/fontmap.h -include/pangomm-%%API_VERSION%%/pangomm/fontmetrics.h -include/pangomm-%%API_VERSION%%/pangomm/fontset.h -include/pangomm-%%API_VERSION%%/pangomm/glyph.h -include/pangomm-%%API_VERSION%%/pangomm/glyphstring.h -include/pangomm-%%API_VERSION%%/pangomm/init.h -include/pangomm-%%API_VERSION%%/pangomm/item.h -include/pangomm-%%API_VERSION%%/pangomm/language.h -include/pangomm-%%API_VERSION%%/pangomm/layout.h -include/pangomm-%%API_VERSION%%/pangomm/layoutiter.h -include/pangomm-%%API_VERSION%%/pangomm/layoutline.h -include/pangomm-%%API_VERSION%%/pangomm/layoutrun.h -include/pangomm-%%API_VERSION%%/pangomm/private/attributes_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/attriter_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/attrlist_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/cairofontmap_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/color_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/context_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/coverage_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/font_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/fontdescription_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/fontface_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/fontfamily_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/fontmap_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/fontmetrics_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/fontset_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/glyph_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/glyphstring_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/item_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/language_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/layout_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/layoutiter_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/layoutline_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/layoutrun_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/rectangle_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/renderer_p.h -include/pangomm-%%API_VERSION%%/pangomm/private/tabarray_p.h -include/pangomm-%%API_VERSION%%/pangomm/rectangle.h -include/pangomm-%%API_VERSION%%/pangomm/renderer.h -include/pangomm-%%API_VERSION%%/pangomm/tabarray.h -include/pangomm-%%API_VERSION%%/pangomm/types.h -include/pangomm-%%API_VERSION%%/pangomm/wrap_init.h -lib/libpangomm-%%API_VERSION%%.a -lib/libpangomm-%%API_VERSION%%.la -lib/libpangomm-%%API_VERSION%%.so -lib/libpangomm-%%API_VERSION%%.so.1 -lib/pangomm-%%API_VERSION%%/proc/m4/convert.m4 -lib/pangomm-%%API_VERSION%%/proc/m4/convert_pango.m4 -libdata/pkgconfig/pangomm-%%API_VERSION%%.pc -@dirrm lib/pangomm-%%API_VERSION%%/proc/m4 -@dirrm lib/pangomm-%%API_VERSION%%/proc -@dirrm lib/pangomm-%%API_VERSION%% -@dirrm include/pangomm-%%API_VERSION%%/pangomm/private -@dirrm include/pangomm-%%API_VERSION%%/pangomm -@dirrm include/pangomm-%%API_VERSION%% diff --git a/x11-toolkits/py-gnome-desktop/Makefile b/x11-toolkits/py-gnome-desktop/Makefile deleted file mode 100644 index 55a19b092..000000000 --- a/x11-toolkits/py-gnome-desktop/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -# New ports collection makefile for: py-gnome-desktop -# Date created: 20 January 2006 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/py-gnome-desktop/Makefile,v 1.85 2009/03/14 21:17:08 marcus Exp $ -# - -PORTNAME= gnome -PORTVERSION= 2.26.0 -CATEGORIES= x11-toolkits python gnome -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/gnome-python-desktop/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -PKGNAMESUFFIX= -desktop -DISTNAME= gnome-python-desktop-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A set of Python bindings used by modules in the GNOME Desktop - -BUILD_DEPENDS= bug-buddy:${PORTSDIR}/devel/bug-buddy -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \ - totem-plparser.12:${PORTSDIR}/multimedia/totem-pl-parser \ - gnome-media-profiles.0:${PORTSDIR}/audio/gnome-media \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring \ - evdocument.1:${PORTSDIR}/graphics/evince -RUN_DEPENDS= bug-buddy:${PORTSDIR}/devel/bug-buddy - -USE_BZIP2= yes -USE_GMAKE= yes -USE_PYTHON= yes -USE_GNOME= gnomehack libgnomeprintui gnomepanel gnomedesktop \ - gtksourceview libwnck nautilus2 pygnome2 metacity \ - evolutiondataserver -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-metacity --disable-nautilusburn -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -EG_SRC_DIR= ${WRKSRC}/examples -EG_DST_DIR= ${PREFIX}/share/examples/py-gnome -.if !defined(NOPORTDOCS) -DOCSDIR= ${PREFIX}/share/doc/py-gnome-desktop -.else -DOCSDIR= ${WRKSRC}/share/doc/py-gnome-desktop -.endif - -.include <bsd.port.pre.mk> - -post-patch: - @${FIND} ${WRKSRC}/docs -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \ - -e 's|^HTML_DIR =.*|HTML_DIR = ${DOCSDIR}|g' - -.if !defined(NOPORTDOCS) -post-install: - ${MKDIR} ${EG_DST_DIR} - ${TAR} -C ${EG_SRC_DIR} --exclude *nautilusburn* -cf - . | ${TAR} -C ${EG_DST_DIR} -xf - - ${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR} - ${CHMOD} -R go-w ${EG_DST_DIR} -.endif - -.include <bsd.port.post.mk> diff --git a/x11-toolkits/py-gnome-desktop/distinfo b/x11-toolkits/py-gnome-desktop/distinfo deleted file mode 100644 index 7c842b1e4..000000000 --- a/x11-toolkits/py-gnome-desktop/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-python-desktop-2.26.0.tar.bz2) = fbcf4ef5ec4a8c4eec4d390c5889c80f -SHA256 (gnome2/gnome-python-desktop-2.26.0.tar.bz2) = 400a5401a591e271c3357d0a8cb05a7927b4c218130497d06f75df9763d4efd8 -SIZE (gnome2/gnome-python-desktop-2.26.0.tar.bz2) = 571939 diff --git a/x11-toolkits/py-gnome-desktop/pkg-descr b/x11-toolkits/py-gnome-desktop/pkg-descr deleted file mode 100644 index cbc8cc5d8..000000000 --- a/x11-toolkits/py-gnome-desktop/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -GnomePythonDesktop provides python interfacing modules for some GNOME -libraries part of the GNOME Desktop. diff --git a/x11-toolkits/py-gnome-desktop/pkg-plist b/x11-toolkits/py-gnome-desktop/pkg-plist deleted file mode 100644 index 2d7723f57..000000000 --- a/x11-toolkits/py-gnome-desktop/pkg-plist +++ /dev/null @@ -1,131 +0,0 @@ -%%PYTHON_SITELIBDIR%%/gtk-2.0/bugbuddy.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/bugbuddy.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/bugbuddy.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/evince.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/evince.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/evolution/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/evolution/ebook.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/evolution/ebook.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/evolution/ecal.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/evolution/ecal.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/applet.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/applet.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/applet.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeapplet.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeapplet.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomedesktop/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomedesktop/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomedesktop/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomedesktop/_gnomedesktop.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomedesktop/_gnomedesktop.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomekeyring.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomekeyring.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint/_print.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint/_print.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint/ui.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint/ui.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtksourceview.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtksourceview.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtop.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtop.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/mediaprofiles.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/mediaprofiles.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/metacity.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/metacity.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/rsvg.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/rsvg.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/totem/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/totem/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/totem/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/totem/plparser.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/totem/plparser.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/wnck.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/wnck.so -libdata/pkgconfig/gnome-python-desktop-2.0.pc -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/class-gnomeprintconfig.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/class-gnomeprintcontext.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/class-gnomeprintfont.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/class-gnomeprintfontface.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/class-gnomeprintglyphlist.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/class-gnomeprintjob.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/gnomeprint-class-reference.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/index.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/index.sgml -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprint/pygnomeprint.devhelp -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/class-gnomeprintuidialog.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/class-gnomeprintuifontdialog.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/class-gnomeprintuifontpreview.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/class-gnomeprintuifontselection.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/class-gnomeprintuijobpreview.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/class-gnomeprintuipaperselector.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/class-gnomeprintuipreview.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/gnomeprintui-class-reference.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/index.html -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/index.sgml -%%PORTDOCS%%%%DOCSDIR%%/pygnomeprintui/pygnomeprintui.devhelp -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcebuffer.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcelanguage.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcelanguagesmanager.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcemarker.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourceprintjob.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcestylescheme.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcetag.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcetagstyle.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourcetagtable.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/class-gtksourceview.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/gtksourceview-class-reference.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/index.html -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/index.sgml -%%PORTDOCS%%%%DOCSDIR%%/pygtksourceview/pygtksourceview.devhelp -%%PORTDOCS%%share/examples/py-gnome/applet/GNOME_PythonAppletSample.server -%%PORTDOCS%%share/examples/py-gnome/applet/README -%%PORTDOCS%%share/examples/py-gnome/applet/applet.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/README -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_01.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_02.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_03.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_04.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_05.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_06.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_08.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_09.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_10.glade -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_10.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/example_11.py -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/sample-image.png -%%PORTDOCS%%share/examples/py-gnome/gnomeprint/test-print.py -%%PORTDOCS%%share/examples/py-gnome/gtksourceview/test-widget.py -%%PORTDOCS%%share/examples/py-gnome/keyring-async.py -%%PORTDOCS%%share/examples/py-gnome/keyring.py -%%PORTDOCS%%share/examples/py-gnome/mediaprofiles/profiles.py -%%PORTDOCS%%share/examples/py-gnome/rsvg/rsvg-cairo.py -%%PORTDOCS%%share/examples/py-gnome/wnck_example.py -share/pygtk/2.0/defs/_gnomedesktop.defs -share/pygtk/2.0/defs/applet.defs -share/pygtk/2.0/defs/art.defs -share/pygtk/2.0/defs/ebook.defs -share/pygtk/2.0/defs/evince.defs -share/pygtk/2.0/defs/gnomekeyring.defs -share/pygtk/2.0/defs/gtksourceview.defs -share/pygtk/2.0/defs/mediaprofiles.defs -share/pygtk/2.0/defs/metacity.defs -share/pygtk/2.0/defs/print.defs -share/pygtk/2.0/defs/printui.defs -share/pygtk/2.0/defs/wnck.defs -%%PORTDOCS%%@dirrm share/examples/py-gnome/rsvg -%%PORTDOCS%%@dirrm share/examples/py-gnome/mediaprofiles -%%PORTDOCS%%@dirrm share/examples/py-gnome/gtksourceview -%%PORTDOCS%%@dirrm share/examples/py-gnome/gnomeprint -%%PORTDOCS%%@dirrm share/examples/py-gnome/applet -%%PORTDOCS%%@dirrmtry share/examples/py-gnome -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pygtksourceview -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pygnomeprintui -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pygnomeprint -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/totem -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/gnomeprint -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/gnomedesktop -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/evolution diff --git a/x11-toolkits/py-gnome-extras/Makefile b/x11-toolkits/py-gnome-extras/Makefile deleted file mode 100644 index 2725a3f46..000000000 --- a/x11-toolkits/py-gnome-extras/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# New ports collection makefile for: py-gnome-extras -# Date created: 22 November 2005 -# Whom: Koop Mast <kwm@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/py-gnome-extras/Makefile,v 1.47 2009/02/28 22:37:49 marcus Exp $ -# - -PORTNAME= gnome -PORTVERSION= 2.25.3 -PORTREVISION= 1 -CATEGORIES= x11-toolkits python gnome -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/gnome-python-extras/${PORTVERSION:C/..$//} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -PKGNAMESUFFIX= -extras -DISTNAME= gnome-python-extras-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A set of Python bindings for GNOME 2 - -LIB_DEPENDS= gtkspell.0:${PORTSDIR}/textproc/gtkspell \ - gksu1.2.0:${PORTSDIR}/sysutils/libgksu \ - gksuui1.0.1:${PORTSDIR}/sysutils/libgksuui \ - gdl-1.0:${PORTSDIR}/x11-toolkits/gdl - -USE_GECKO= firefox seamonkey xulrunner mozilla -USE_BZIP2= yes -USE_GMAKE= yes -USE_PYTHON= yes -USE_GNOME= gnomehack libgtkhtml pygnome2 libgda4 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gtkmozembed=${GECKO} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -EG_SRC_DIR= ${WRKSRC}/examples -EG_DST_DIR= ${PREFIX}/share/examples/py-gnome -.if !defined(NOPORTDOCS) -DOCSDIR= ${PREFIX}/share/doc/py-gnome-extras -.else -DOCSDIR= ${WRKSRC}/share/doc/py-gnome-extras -.endif - -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk" - -post-patch: - @${FIND} ${WRKSRC}/docs -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \ - -e 's|^HTML_DIR =.*|HTML_DIR = ${DOCSDIR}|g' - -.if !defined(NOPORTDOCS) -post-install: - ${MKDIR} ${EG_DST_DIR} - ${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xf - - ${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR} - ${CHMOD} -R go-w ${EG_DST_DIR} -.endif - -.include <bsd.port.post.mk> diff --git a/x11-toolkits/py-gnome-extras/distinfo b/x11-toolkits/py-gnome-extras/distinfo deleted file mode 100644 index 71fc1395f..000000000 --- a/x11-toolkits/py-gnome-extras/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-python-extras-2.25.3.tar.bz2) = 9f3b7ec5c57130b96061cb486b79c076 -SHA256 (gnome2/gnome-python-extras-2.25.3.tar.bz2) = ca346264e00e193f0866cabd8801d3b7ce70dae7b8b296e41e5b3a45c9b0275c -SIZE (gnome2/gnome-python-extras-2.25.3.tar.bz2) = 370489 diff --git a/x11-toolkits/py-gnome-extras/files/patch-configure b/x11-toolkits/py-gnome-extras/files/patch-configure deleted file mode 100644 index 04f5b2569..000000000 --- a/x11-toolkits/py-gnome-extras/files/patch-configure +++ /dev/null @@ -1,675 +0,0 @@ ---- configure.orig 2009-02-28 16:14:05.000000000 -0500 -+++ configure 2009-02-28 16:21:48.000000000 -0500 -@@ -1721,7 +1721,7 @@ Optional Packages: - --with-pic try to use only PIC/non-PIC objects [default=use - both] - --with-tags[=TAGS] include additional configurations [automatic] -- --with-gtkmozembed=mozilla|firefox|xulrunner -+ --with-gtkmozembed=mozilla|firefox|xulrunner|seamonkey - package that provides libgtkmozembed - - Some influential environment variables: -@@ -22428,6 +22428,150 @@ fi - - { $as_echo "$as_me:$LINENO: result: no" >&5 - $as_echo "no" >&6; } -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } -+ build_gtkmozembed=false -+elif test $pkg_failed = untried; then -+ build_gtkmozembed=false -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+elif test $pkg_failed = untried; then -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } - build_gtkmozembed=false - elif test $pkg_failed = untried; then - build_gtkmozembed=false -@@ -22436,6 +22580,14 @@ else - GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS - { $as_echo "$as_me:$LINENO: result: yes" >&5 - $as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } - build_gtkmozembed=true; mozpackage=mozilla - fi - -@@ -22506,6 +22658,150 @@ fi - - { $as_echo "$as_me:$LINENO: result: no" >&5 - $as_echo "no" >&6; } -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } -+ build_gtkmozembed=false -+elif test $pkg_failed = untried; then -+ build_gtkmozembed=false -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+elif test $pkg_failed = untried; then -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } - build_gtkmozembed=false - elif test $pkg_failed = untried; then - build_gtkmozembed=false -@@ -22514,6 +22810,14 @@ else - GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS - { $as_echo "$as_me:$LINENO: result: yes" >&5 - $as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } - build_gtkmozembed=true; mozpackage=mozilla - fi - -@@ -22658,6 +22962,150 @@ fi - - { $as_echo "$as_me:$LINENO: result: no" >&5 - $as_echo "no" >&6; } -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } -+ build_gtkmozembed=false -+elif test $pkg_failed = untried; then -+ build_gtkmozembed=false -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+elif test $pkg_failed = untried; then -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } - build_gtkmozembed=false - elif test $pkg_failed = untried; then - build_gtkmozembed=false -@@ -22666,6 +23114,14 @@ else - GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS - { $as_echo "$as_me:$LINENO: result: yes" >&5 - $as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } - build_gtkmozembed=true; mozpackage=mozilla - fi - -@@ -22736,6 +23192,150 @@ fi - - { $as_echo "$as_me:$LINENO: result: no" >&5 - $as_echo "no" >&6; } -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } -+ build_gtkmozembed=false -+elif test $pkg_failed = untried; then -+ build_gtkmozembed=false -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+elif test $pkg_failed = untried; then -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:$LINENO: checking for GTKMOZEMBED" >&5 -+$as_echo_n "checking for GTKMOZEMBED... " >&6; } -+ -+if test -n "$GTKMOZEMBED_CFLAGS"; then -+ pkg_cv_GTKMOZEMBED_CFLAGS="$GTKMOZEMBED_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_CFLAGS=`$PKG_CONFIG --cflags "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$GTKMOZEMBED_LIBS"; then -+ pkg_cv_GTKMOZEMBED_LIBS="$GTKMOZEMBED_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0\"") >&5 -+ ($PKG_CONFIG --exists --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); }; then -+ pkg_cv_GTKMOZEMBED_LIBS=`$PKG_CONFIG --libs "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>/dev/null` -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ else -+ GTKMOZEMBED_PKG_ERRORS=`$PKG_CONFIG --print-errors "seamonkey-gtkmozembed >= 1.1.3 -+ gtk+-2.0 >= 2.4.0" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$GTKMOZEMBED_PKG_ERRORS" >&5 -+ -+ { $as_echo "$as_me:$LINENO: result: no" >&5 -+$as_echo "no" >&6; } - build_gtkmozembed=false - elif test $pkg_failed = untried; then - build_gtkmozembed=false -@@ -22744,6 +23344,14 @@ else - GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS - { $as_echo "$as_me:$LINENO: result: yes" >&5 - $as_echo "yes" >&6; } -+ build_gtkmozembed=true; mozpackage=seamonkey -+fi -+ -+else -+ GTKMOZEMBED_CFLAGS=$pkg_cv_GTKMOZEMBED_CFLAGS -+ GTKMOZEMBED_LIBS=$pkg_cv_GTKMOZEMBED_LIBS -+ { $as_echo "$as_me:$LINENO: result: yes" >&5 -+$as_echo "yes" >&6; } - build_gtkmozembed=true; mozpackage=mozilla - fi - diff --git a/x11-toolkits/py-gnome-extras/pkg-descr b/x11-toolkits/py-gnome-extras/pkg-descr deleted file mode 100644 index 422d464c6..000000000 --- a/x11-toolkits/py-gnome-extras/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Excerpt from the README: - - PyGNOME -- Python bindings for GNOME 2 - ====================================== - Author: James Henstridge <james@daa.com.au> - - This is a set of bindings for the GNOME 2 libraries for use with python. - -WWW: http://www.pygtk.org/ --- Jacques Vidrine <nectar@FreeBSD.ORG> diff --git a/x11-toolkits/py-gnome-extras/pkg-plist b/x11-toolkits/py-gnome-extras/pkg-plist deleted file mode 100644 index 8564adea3..000000000 --- a/x11-toolkits/py-gnome-extras/pkg-plist +++ /dev/null @@ -1,55 +0,0 @@ -include/pygda-4.0/pygdavalue_conversions.h -%%PYTHON_SITELIBDIR%%/gtk-2.0/egg/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/egg/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/egg/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/egg/recent.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/egg/recent.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/egg/trayicon.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/egg/trayicon.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gda.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gda.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gdl.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gdl.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gksu/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gksu/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gksu/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gksu/_gksu.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gksu/_gksu.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gksu/ui.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gksu/ui.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkhtml2.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkhtml2.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkmozembed.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkmozembed.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkspell.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkspell.so -libdata/pkgconfig/gnome-python-extras-2.0.pc -libdata/pkgconfig/pygda-4.0.pc -%%PORTDOCS%%share/examples/py-gnome/egg/recent/Bonobo_Sample_Hello.xml -%%PORTDOCS%%share/examples/py-gnome/egg/recent/bonobo-view.py -%%PORTDOCS%%share/examples/py-gnome/egg/recent/gtk-view.py -%%PORTDOCS%%share/examples/py-gnome/egg/recent/populate-recent.py -%%PORTDOCS%%share/examples/py-gnome/egg/trayicon.py -%%PORTDOCS%%share/examples/py-gnome/gdl/gdl_combo_button.py -%%PORTDOCS%%share/examples/py-gnome/gdl/gdl_dock.py -%%PORTDOCS%%share/examples/py-gnome/gdl/gdl_test.py -%%PORTDOCS%%share/examples/py-gnome/gksu2/simple.py -%%PORTDOCS%%share/examples/py-gnome/gtkhtml2/simple-browser.py -%%PORTDOCS%%share/examples/py-gnome/gtkspell/spell.py -%%PORTDOCS%%share/examples/py-gnome/gtkspell/test.py -share/pygtk/2.0/argtypes/gda-arg-types.py -share/pygtk/2.0/argtypes/gda-arg-types.pyc -share/pygtk/2.0/argtypes/gda-arg-types.pyo -share/pygtk/2.0/defs/gda.defs -share/pygtk/2.0/defs/gtkhtml2.defs -share/pygtk/2.0/defs/gtkmozembed.defs -share/pygtk/2.0/defs/trayicon.defs -%%PORTDOCS%%@dirrm share/examples/py-gnome/gtkspell -%%PORTDOCS%%@dirrm share/examples/py-gnome/gtkhtml2 -%%PORTDOCS%%@dirrm share/examples/py-gnome/gksu2 -%%PORTDOCS%%@dirrm share/examples/py-gnome/gdl -%%PORTDOCS%%@dirrm share/examples/py-gnome/egg/recent -%%PORTDOCS%%@dirrm share/examples/py-gnome/egg -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/gksu -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/egg -@dirrm include/pygda-4.0 diff --git a/x11-toolkits/py-gnome2/Makefile b/x11-toolkits/py-gnome2/Makefile deleted file mode 100644 index 2ecc95736..000000000 --- a/x11-toolkits/py-gnome2/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: py-gnome -# Date created: 09 February 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/py-gnome2/Makefile,v 1.54 2009/02/28 22:40:50 marcus Exp $ -# - -PORTNAME= gnome -PORTVERSION= 2.26.0 -CATEGORIES= x11-toolkits python gnome -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/gnome-python/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= gnome-python-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A set of Python bindings for GNOME 2 - -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/ORBit.so:${PORTSDIR}/devel/py-orbit -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/ORBit.so:${PORTSDIR}/devel/py-orbit - -LATEST_LINK= py-gnome2 -USE_BZIP2= yes -USE_GMAKE= yes -USE_PYTHON= yes -USE_LDCONFIG= yes -USE_GNOME= gnomehack libgnomeui pygtk2 -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" - -EG_SRC_DIR= ${WRKSRC}/examples -EG_DST_DIR= ${PREFIX}/share/examples/py-gnome - -CONFLICTS= py*-gnome-1* - -.include <bsd.port.pre.mk> - -.if !defined(NOPORTDOCS) -post-install: - ${MKDIR} ${EG_DST_DIR} - ${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xf - - ${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR} - ${FIND} ${EG_DST_DIR} -type d -print | ${XARGS} ${CHMOD} 0555 - ${FIND} ${EG_DST_DIR} -type f -print | ${XARGS} ${CHMOD} 0444 -.endif - -.include <bsd.port.post.mk> diff --git a/x11-toolkits/py-gnome2/distinfo b/x11-toolkits/py-gnome2/distinfo deleted file mode 100644 index 82938c982..000000000 --- a/x11-toolkits/py-gnome2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-python-2.26.0.tar.bz2) = 452b8489eed892d09c506c17efd597f1 -SHA256 (gnome2/gnome-python-2.26.0.tar.bz2) = 7b15e68979afe72224e4e2928c1656f2e4d3c8c3ba3d69487e6179bb46947e04 -SIZE (gnome2/gnome-python-2.26.0.tar.bz2) = 523096 diff --git a/x11-toolkits/py-gnome2/files/patch-configure b/x11-toolkits/py-gnome2/files/patch-configure deleted file mode 100644 index 0f477bfef..000000000 --- a/x11-toolkits/py-gnome2/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2007-12-26 11:53:20.000000000 +0100 -+++ configure 2007-12-26 11:56:25.000000000 +0100 -@@ -19694,7 +19694,7 @@ - save_CC="$CC" - save_LIBS="$LIBS" - --PYTHON_EMBED_LIBS="-L${PYTHON_LIBDIR} ${PYTHON_LIB_DEPS} -lpython${PYTHON_VERSION}" -+PYTHON_EMBED_LIBS="-L${py_prefix}/lib/ ${PYTHON_LIB_DEPS} -lpython${PYTHON_VERSION} ${PTHREAD_LIBS}" - - CC="$PYTHON_CC" - LIBS="$LIBS $PYTHON_EMBED_LIBS" diff --git a/x11-toolkits/py-gnome2/pkg-descr b/x11-toolkits/py-gnome2/pkg-descr deleted file mode 100644 index 422d464c6..000000000 --- a/x11-toolkits/py-gnome2/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Excerpt from the README: - - PyGNOME -- Python bindings for GNOME 2 - ====================================== - Author: James Henstridge <james@daa.com.au> - - This is a set of bindings for the GNOME 2 libraries for use with python. - -WWW: http://www.pygtk.org/ --- Jacques Vidrine <nectar@FreeBSD.ORG> diff --git a/x11-toolkits/py-gnome2/pkg-plist b/x11-toolkits/py-gnome2/pkg-plist deleted file mode 100644 index 54bab3102..000000000 --- a/x11-toolkits/py-gnome2/pkg-plist +++ /dev/null @@ -1,104 +0,0 @@ -include/gnome-python-2.0/pygnomevfs.h -include/gnome-python-2.0/pygnomevfsbonobo.h -lib/gnome-vfs-2.0/modules/libpythonmethod.la -lib/gnome-vfs-2.0/modules/libpythonmethod.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/_bonobo.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/_bonobo.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/activation.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/activation.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/ui.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo/ui.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gconf.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gconf.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/_gnome.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/_gnome.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/canvas.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/canvas.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/canvas.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/ui.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/ui.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/vfs.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/vfs.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnome/vfs.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomecanvas.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomecanvas.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs/__init__.py -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs/__init__.pyc -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs/__init__.pyo -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs/_gnomevfs.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs/_gnomevfs.so -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs/gnomevfsbonobo.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs/gnomevfsbonobo.so -libdata/pkgconfig/gnome-python-2.0.pc -%%PORTDOCS%%share/examples/py-gnome/bonobo/bonobo-application.py -%%PORTDOCS%%share/examples/py-gnome/bonobo/bonoboui/Bonobo_Sample_Hello.xml -%%PORTDOCS%%share/examples/py-gnome/bonobo/bonoboui/hello.py -%%PORTDOCS%%share/examples/py-gnome/bonobo/echo/README -%%PORTDOCS%%share/examples/py-gnome/bonobo/echo/echo-client.py -%%PORTDOCS%%share/examples/py-gnome/bonobo/unknown.py -%%PORTDOCS%%share/examples/py-gnome/bug-buddy-integration.py -%%PORTDOCS%%share/examples/py-gnome/canvas/canvas-curve.py -%%PORTDOCS%%share/examples/py-gnome/canvas/canvas-example.py -%%PORTDOCS%%share/examples/py-gnome/gconf/basic-gconf-app.py -%%PORTDOCS%%share/examples/py-gnome/gconf/simple-controller.py -%%PORTDOCS%%share/examples/py-gnome/gconf/simple-view.py -%%PORTDOCS%%share/examples/py-gnome/popt/popt.py -%%PORTDOCS%%share/examples/py-gnome/vfs/async-xfer.py -%%PORTDOCS%%share/examples/py-gnome/vfs/async.py -%%PORTDOCS%%share/examples/py-gnome/vfs/cancellation.py -%%PORTDOCS%%share/examples/py-gnome/vfs/pygvfsmethod/README -%%PORTDOCS%%share/examples/py-gnome/vfs/pygvfsmethod/pyfs.conf -%%PORTDOCS%%share/examples/py-gnome/vfs/pygvfsmethod/pyfs.py -%%PORTDOCS%%share/examples/py-gnome/vfs/shell.py -%%PORTDOCS%%share/examples/py-gnome/vfs/sync-xfer.py -share/gtk-doc/html/pygnomevfs/class-gnomevfs-context.html -share/gtk-doc/html/pygnomevfs/class-gnomevfs-directoryhandle.html -share/gtk-doc/html/pygnomevfs/class-gnomevfs-drive.html -share/gtk-doc/html/pygnomevfs/class-gnomevfs-fileinfo.html -share/gtk-doc/html/pygnomevfs/class-gnomevfs-handle.html -share/gtk-doc/html/pygnomevfs/class-gnomevfs-uri.html -share/gtk-doc/html/pygnomevfs/class-gnomevfs-volume.html -share/gtk-doc/html/pygnomevfs/gnomevfs-class-reference.html -share/gtk-doc/html/pygnomevfs/gnomevfs-constants.html -share/gtk-doc/html/pygnomevfs/gnomevfs-functions.html -share/gtk-doc/html/pygnomevfs/index.html -share/gtk-doc/html/pygnomevfs/index.sgml -share/gtk-doc/html/pygnomevfs/pygnomevfs.devhelp -share/pygtk/2.0/argtypes/bonobo-arg-types.py -share/pygtk/2.0/argtypes/bonobo-arg-types.pyc -share/pygtk/2.0/argtypes/bonobo-arg-types.pyo -share/pygtk/2.0/argtypes/gconf-arg-types.py -share/pygtk/2.0/argtypes/gconf-arg-types.pyc -share/pygtk/2.0/argtypes/gconf-arg-types.pyo -share/pygtk/2.0/defs/bonobo-types.defs -share/pygtk/2.0/defs/bonobo.defs -share/pygtk/2.0/defs/bonoboui-types.defs -share/pygtk/2.0/defs/bonoboui.defs -share/pygtk/2.0/defs/canvas.defs -share/pygtk/2.0/defs/gconf.defs -share/pygtk/2.0/defs/gnome-types.defs -share/pygtk/2.0/defs/gnome.defs -share/pygtk/2.0/defs/ui.defs -@dirrmtry share/pygtk/2.0/argtypes -@dirrm share/gtk-doc/html/pygnomevfs -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -%%PORTDOCS%%@dirrm share/examples/py-gnome/vfs/pygvfsmethod -%%PORTDOCS%%@dirrm share/examples/py-gnome/vfs -%%PORTDOCS%%@dirrm share/examples/py-gnome/popt -%%PORTDOCS%%@dirrm share/examples/py-gnome/gconf -%%PORTDOCS%%@dirrm share/examples/py-gnome/canvas -%%PORTDOCS%%@dirrm share/examples/py-gnome/bonobo/echo -%%PORTDOCS%%@dirrm share/examples/py-gnome/bonobo/bonoboui -%%PORTDOCS%%@dirrm share/examples/py-gnome/bonobo -%%PORTDOCS%%@dirrm share/examples/py-gnome -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/gnomevfs -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/gnome -@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/bonobo -@dirrm include/gnome-python-2.0 diff --git a/x11-toolkits/py-gtksourceview/Makefile b/x11-toolkits/py-gtksourceview/Makefile deleted file mode 100644 index 0dc7c0862..000000000 --- a/x11-toolkits/py-gtksourceview/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: py-gtksourceview -# Date created: 25 June 2007 -# Whom: Mezz <mezz@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/py-gtksourceview/Makefile,v 1.16 2009/03/13 14:04:45 kwm Exp $ -# - -PORTNAME= gtksourceview -PORTVERSION= 2.6.0 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/pygtksourceview/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= pygtksourceview-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A python bindings for the version 2 of the GtkSourceView library - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnomeprefix gtksourceview2 pygtk2 -USE_PYTHON= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-docs - -post-patch: - @${REINPLACE_CMD} -e 's| == x| = x|g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/x11-toolkits/py-gtksourceview/distinfo b/x11-toolkits/py-gtksourceview/distinfo deleted file mode 100644 index e07fe304f..000000000 --- a/x11-toolkits/py-gtksourceview/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (pygtksourceview-2.6.0.tar.bz2) = 5587a1865bd5c785c6f34095c57cc96b -SHA256 (pygtksourceview-2.6.0.tar.bz2) = 77acb735fee997a1638c79256b9dcf592566d066b54a72eb4321909f98f66178 -SIZE (pygtksourceview-2.6.0.tar.bz2) = 271314 diff --git a/x11-toolkits/py-gtksourceview/pkg-descr b/x11-toolkits/py-gtksourceview/pkg-descr deleted file mode 100644 index 2e25fb731..000000000 --- a/x11-toolkits/py-gtksourceview/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This archive contains python bindings for the version 2 of the -GtkSourceView library. - -WWW: http://www.gnome.org diff --git a/x11-toolkits/py-gtksourceview/pkg-plist b/x11-toolkits/py-gtksourceview/pkg-plist deleted file mode 100644 index 579b96136..000000000 --- a/x11-toolkits/py-gtksourceview/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -%%PYTHON_SITELIBDIR%%/gtksourceview2.la -%%PYTHON_SITELIBDIR%%/gtksourceview2.so -libdata/pkgconfig/pygtksourceview-2.0.pc -share/pygtk/2.0/defs/gtksourceview2.defs diff --git a/x11-toolkits/py-vte/Makefile b/x11-toolkits/py-vte/Makefile deleted file mode 100644 index 5a129c0c7..000000000 --- a/x11-toolkits/py-vte/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: py-vte -# Date created: 18 February 2007 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTREVISION= 0 -CATEGORIES= x11-toolkits gnome python -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Python interface for VTE (Terminal widget) - -MASTERDIR= ${.CURDIR}/../vte -BUILD_WRKSRC= ${WRKSRC}/python -INSTALL_WRKSRC= ${BUILD_WRKSRC} -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -USE_GNOME= gnomehack gnometarget vte pygtk2 -USE_PYTHON= yes -CONFIGURE_ARGS= --enable-python \ - --disable-freetypetest - -.include "${MASTERDIR}/Makefile" diff --git a/x11-toolkits/py-vte/pkg-descr b/x11-toolkits/py-vte/pkg-descr deleted file mode 100644 index c01fbb23d..000000000 --- a/x11-toolkits/py-vte/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Python interface for VTE (Terminal widget). - -WWW: http://www.gnome.org/ diff --git a/x11-toolkits/py-vte/pkg-plist b/x11-toolkits/py-vte/pkg-plist deleted file mode 100644 index d726d02a6..000000000 --- a/x11-toolkits/py-vte/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -%%PYTHON_SITELIBDIR%%/gtk-2.0/vtemodule.a -%%PYTHON_SITELIBDIR%%/gtk-2.0/vtemodule.la -%%PYTHON_SITELIBDIR%%/gtk-2.0/vtemodule.so -libdata/pkgconfig/pyvte.pc -share/pygtk/2.0/defs/vte.defs diff --git a/x11-toolkits/ruby-panelapplet/Makefile b/x11-toolkits/ruby-panelapplet/Makefile deleted file mode 100644 index 47d7433a5..000000000 --- a/x11-toolkits/ruby-panelapplet/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# New ports collection makefile for: Ruby/PanelApplet -# Date created: 15 August 2004 -# Whom: Mezz <mezz@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/ruby-panelapplet/Makefile,v 1.2 2005/10/17 07:05:43 mezz Exp $ -# - -PORTNAME= panelapplet -PORTVERSION= ${RUBY_GNOME_PORTVERSION} -CATEGORIES= x11-toolkits gnome ruby -MASTER_SITES= ${RUBY_GNOME_MASTER_SITES} -MASTER_SITE_SUBDIR= ${RUBY_GNOME_MASTER_SITE_SUBDIR} -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ${RUBY_GNOME_DISTNAME} -DIST_SUBDIR= ruby - -MAINTAINER= ports@FreeBSD.org -COMMENT= Ruby binding for libpanel-applet - -RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR:S/${PREFIX}/${LOCALBASE}/}/gnome2.so:${PORTSDIR}/x11/ruby-gnome2 - -USE_RUBY= yes -USE_GNOME= gnomepanel -USE_RUBY_EXTCONF= yes - -BROKEN= does not build with GNOME 2.26. - -.include "${.CURDIR}/../../x11/ruby-gnome2/Makefile.common" - -WRKSRC= ${RUBY_GNOME_WRKSRC}/panel-applet -INSTALL_TARGET= site-install - -DOCS= COPYING.LIB ChangeLog README - -post-patch: general-patch - @${REINPLACE_CMD} -e 's|/usr/lib/|${LOCALBASE}/libdata/|g ; \ - s|/usr/libexec/|${LOCALBASE}/libexec/|g' \ - ${WRKSRC}/sample/README ${WRKSRC}/sample/*.server - @${REINPLACE_CMD} -e 's|bin/ruby|bin/env ruby|g' \ - ${WRKSRC}/sample/hello-applet.rb - @${FIND} ${WRKSRC} -name '*.bak' -delete - -post-install: -.if !defined(NOPORTEXAMPLES) - @${MKDIR} ${RUBY_MODEXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_MODEXAMPLESDIR}/ -.endif -.if !defined(NOPORTDOCS) - @${MKDIR} ${RUBY_MODDOCDIR} -.for f in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ -.endfor -.endif - -.include <bsd.port.mk> diff --git a/x11-toolkits/ruby-panelapplet/pkg-descr b/x11-toolkits/ruby-panelapplet/pkg-descr deleted file mode 100644 index b9c41c873..000000000 --- a/x11-toolkits/ruby-panelapplet/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Ruby/PanelApplet is a Ruby binding of libpanel-applet. - -WWW: http://ruby-gnome2.sourceforge.jp/ diff --git a/x11-toolkits/ruby-panelapplet/pkg-plist b/x11-toolkits/ruby-panelapplet/pkg-plist deleted file mode 100644 index 3f01e884b..000000000 --- a/x11-toolkits/ruby-panelapplet/pkg-plist +++ /dev/null @@ -1,18 +0,0 @@ -%%RUBY_SITEARCHLIBDIR%%/panelapplet2.so -%%RUBY_SITELIBDIR%%/panelapplet2.rb -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/COPYING.LIB -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/README -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/clock-applet.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/clock-applet.server -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/hello-applet.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/hello-applet.server -%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%% -%%PORTEXAMPLES%%@dirrmtry %%RUBY_EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% -%%PORTDOCS%%@dirrmtry %%RUBY_DOCDIR%% -@dirrmtry %%RUBY_SITEARCHLIBDIR%% -@dirrmtry %%RUBY_SITELIBDIR%% -@dirrmtry lib/ruby/site_ruby -@dirrmtry lib/ruby diff --git a/x11-toolkits/vte/Makefile b/x11-toolkits/vte/Makefile deleted file mode 100644 index d85f34a19..000000000 --- a/x11-toolkits/vte/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: vte -# Date created: 05 October 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11-toolkits/vte/Makefile,v 1.93 2009/02/24 19:42:18 kwm Exp $ -# - -PORTNAME= vte -PORTVERSION= 0.20.0 -PORTREVISION?= 0 -CATEGORIES= x11-toolkits gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER?= gnome@FreeBSD.org -COMMENT?= Terminal widget with improved accessibility and I18N support - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -USE_GMAKE= yes -USE_BISON= build -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -USE_GETTEXT= yes -USE_GNOME?= gnomeprefix gnomehack gtk20 ltverhack referencehack -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -# BSD_PTHREAD_LIBS="${PTHREAD_LIBS}" -CONFIGURE_ARGS?=--disable-python \ - --disable-freetypetest - -.if !defined(MASTERDIR) -OPTIONS= GLX "Enable support for DRI/GLX rendering" off -.endif - -.include <bsd.port.pre.mk> - -.if defined(WITH_GLX) && !defined(MASTERDIR) -CONFIGURE_ARGS+= --with-glX -USE_GL= yes -.endif - -.include <bsd.port.post.mk> - -.endif diff --git a/x11-toolkits/vte/distinfo b/x11-toolkits/vte/distinfo deleted file mode 100644 index f716a7305..000000000 --- a/x11-toolkits/vte/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/vte-0.20.0.tar.bz2) = 12dde859bc98e039336baff6e9e6b15b -SHA256 (gnome2/vte-0.20.0.tar.bz2) = 6612c72fe73279a23e296a70e19b3f5dd270c6d16cf0cc6a191475c1a16846f7 -SIZE (gnome2/vte-0.20.0.tar.bz2) = 1089171 diff --git a/x11-toolkits/vte/files/patch-config.h.in b/x11-toolkits/vte/files/patch-config.h.in deleted file mode 100644 index 03db0e1c4..000000000 --- a/x11-toolkits/vte/files/patch-config.h.in +++ /dev/null @@ -1,12 +0,0 @@ ---- config.h.in.orig Wed May 17 10:45:57 2006 -+++ config.h.in Wed May 17 10:46:25 2006 -@@ -106,6 +106,9 @@ - /* Define to 1 if you have the <GL/glx.h> header file. */ - #undef HAVE_GL_GLX_H - -+/* Define to 1 if you have the `posix_openpt' function. */ -+#undef HAVE_POSIX_OPENPT -+ - /* Define to 1 if you have the `grantpt' function. */ - #undef HAVE_GRANTPT - diff --git a/x11-toolkits/vte/files/patch-configure b/x11-toolkits/vte/files/patch-configure deleted file mode 100644 index e9fe90107..000000000 --- a/x11-toolkits/vte/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Tue Feb 13 16:22:38 2007 -+++ configure Tue Feb 13 16:23:19 2007 -@@ -24887,7 +24887,7 @@ fi - - - --for ac_func in cfmakeraw fork setsid setpgid getpgid getpt grantpt unlockpt ptsname ptsname_r tcgetattr tcsetattr -+for ac_func in cfmakeraw fork setsid setpgid getpgid getpt grantpt posix_openpt unlockpt ptsname ptsname_r tcgetattr tcsetattr - do - as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` - echo "$as_me:$LINENO: checking for $ac_func" >&5 diff --git a/x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in b/x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in deleted file mode 100644 index 553422500..000000000 --- a/x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- gnome-pty-helper/Makefile.in.orig 2007-07-29 17:20:13.000000000 -0400 -+++ gnome-pty-helper/Makefile.in 2007-07-29 17:25:47.000000000 -0400 -@@ -584,8 +585,8 @@ uninstall-am: uninstall-libexecPROGRAMS - - - install-exec-hook: -- chown root.utmp $(DESTDIR)$(libexecdir)/gnome-pty-helper || true -- chmod g+s $(DESTDIR)$(libexecdir)/gnome-pty-helper || true -+ chown root:wheel $(DESTDIR)$(libexecdir)/gnome-pty-helper || true -+ chmod u+s $(DESTDIR)$(libexecdir)/gnome-pty-helper || true - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. - .NOEXPORT: diff --git a/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c b/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c deleted file mode 100644 index bc0877bf5..000000000 --- a/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c +++ /dev/null @@ -1,40 +0,0 @@ ---- gnome-pty-helper/gnome-utmp.c.orig Sat Oct 28 23:15:53 2006 -+++ gnome-pty-helper/gnome-utmp.c Sat Oct 28 23:15:40 2006 -@@ -258,10 +258,18 @@ write_logout_record (char *login_name, v - #endif - - if (utmp) -+#if defined(__FreeBSD__) -+ logout (put.ut_line); -+#else - update_utmp (&put); -+#endif - - if (wtmp) -+#if defined(__FreeBSD__) -+ logwtmp (put.ut_line, "", ""); -+#else - update_wtmp (WTMP_OUTPUT_FILENAME, &put); -+#endif - - free (ut); - } -@@ -347,10 +355,18 @@ write_login_record (char *login_name, ch - # endif - #endif - if (utmp) -+#if defined(__FreeBSD__) -+ login (ut); -+#else - update_utmp (ut); -+#endif - - if (wtmp) -+#if defined(__FreeBSD__) -+ logwtmp (ut->ut_line, ut->ut_name, ut->ut_host); -+#else - update_wtmp (WTMP_OUTPUT_FILENAME, ut); -+#endif - - if (lastlog) - update_lastlog(login_name, ut); diff --git a/x11-toolkits/vte/files/patch-python_Makefile.in b/x11-toolkits/vte/files/patch-python_Makefile.in deleted file mode 100644 index d8c01a748..000000000 --- a/x11-toolkits/vte/files/patch-python_Makefile.in +++ /dev/null @@ -1,36 +0,0 @@ ---- python/Makefile.in.orig 2009-03-16 08:49:19.000000000 +0100 -+++ python/Makefile.in 2009-03-16 08:51:17.000000000 +0100 -@@ -56,7 +56,6 @@ - LTLIBRARIES = $(pythonsiteexec_LTLIBRARIES) - am__DEPENDENCIES_1 = - @BUILD_PYTHON_MODULES_TRUE@vtemodule_la_DEPENDENCIES = \ --@BUILD_PYTHON_MODULES_TRUE@ $(top_builddir)/src/libvte.la \ - @BUILD_PYTHON_MODULES_TRUE@ $(am__DEPENDENCIES_1) \ - @BUILD_PYTHON_MODULES_TRUE@ $(am__DEPENDENCIES_1) \ - @BUILD_PYTHON_MODULES_TRUE@ $(am__DEPENDENCIES_1) -@@ -290,11 +289,11 @@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ - EXTRA_DIST = vte.defs pyvte.pc.in vte.override cat.py unrealize.py vte-demo.py --defsdir = $(datadir)/pygtk/2.0/defs --defs_DATA = vte.defs --pkgconfigdir = $(prefix)/libdata/pkgconfig --pkgconfig_DATA = pyvte.pc --PYTHON_MODULES = vtemodule.la -+@BUILD_PYTHON_MODULES_TRUE@defsdir = $(datadir)/pygtk/2.0/defs -+@BUILD_PYTHON_MODULES_TRUE@defs_DATA = vte.defs -+@BUILD_PYTHON_MODULES_TRUE@pkgconfigdir = $(prefix)/libdata/pkgconfig -+@BUILD_PYTHON_MODULES_TRUE@pkgconfig_DATA = pyvte.pc -+@BUILD_PYTHON_MODULES_TRUE@PYTHON_MODULES = vtemodule.la - @BUILD_PYTHON_MODULES_TRUE@pythonsiteexecdir = $(pyexecdir)/gtk-2.0 - @BUILD_PYTHON_MODULES_TRUE@pythonsiteexec_LTLIBRARIES = $(PYTHON_MODULES) - @BUILD_PYTHON_MODULES_TRUE@CLEANFILES = vte.c -@@ -305,7 +304,7 @@ - # we do this to suport building with -Wl,-z,defs which errors on - # vtemodule.so as we cannot include $(PYTHON_LIBS) due to bug 410986. - @BUILD_PYTHON_MODULES_TRUE@vtemodule_la_LDFLAGS = -module -avoid-version -export-symbols-regex initvte $(PYTHON_LDFLAGS) $(AM_LDFLAGS) --@BUILD_PYTHON_MODULES_TRUE@vtemodule_la_LIBADD = $(top_builddir)/src/libvte.la $(LIBS) $(PYGTK_LIBS) $(VTE_LIBS) $(X_LIBS) -+@BUILD_PYTHON_MODULES_TRUE@vtemodule_la_LIBADD = -lvte $(LIBS) $(PYGTK_LIBS) $(VTE_LIBS) $(X_LIBS) - @BUILD_PYTHON_MODULES_TRUE@nodist_vtemodule_la_SOURCES = vte.c - all: all-am - diff --git a/x11-toolkits/vte/files/patch-src_vteseq.c b/x11-toolkits/vte/files/patch-src_vteseq.c deleted file mode 100644 index e5afb288b..000000000 --- a/x11-toolkits/vte/files/patch-src_vteseq.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/vteseq.c.orig Mon Jun 12 20:27:00 2006 -+++ src/vteseq.c Mon Jun 12 20:27:19 2006 -@@ -20,6 +20,7 @@ - #include "../config.h" - - #ifdef HAVE_SYS_SYSLIMITS_H -+#include <sys/cdefs.h> - #include <sys/syslimits.h> - #endif - diff --git a/x11-toolkits/vte/pkg-descr b/x11-toolkits/vte/pkg-descr deleted file mode 100644 index a363e23c7..000000000 --- a/x11-toolkits/vte/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Terminal widget with improved font, internationalisation and accessibility -support for the GNOME 2 desktop. Designed to replace libzvt. - -WWW: http://www.gnome.org/ diff --git a/x11-toolkits/vte/pkg-plist b/x11-toolkits/vte/pkg-plist deleted file mode 100644 index d4337b165..000000000 --- a/x11-toolkits/vte/pkg-plist +++ /dev/null @@ -1,140 +0,0 @@ -bin/vte -include/vte/pty.h -include/vte/reaper.h -include/vte/vte.h -include/vte/vteaccess.h -include/vte/vtetypebuiltins.h -include/vte/vteversion.h -lib/libvte.a -lib/libvte.la -lib/libvte.so -lib/libvte.so.9 -lib/vte/decset -lib/vte/interpret -lib/vte/osc -lib/vte/slowcat -lib/vte/window -libdata/pkgconfig/vte.pc -libexec/gnome-pty-helper -share/locale/am/LC_MESSAGES/vte.mo -share/locale/ang/LC_MESSAGES/vte.mo -share/locale/ar/LC_MESSAGES/vte.mo -share/locale/as/LC_MESSAGES/vte.mo -share/locale/az/LC_MESSAGES/vte.mo -share/locale/be/LC_MESSAGES/vte.mo -share/locale/be@latin/LC_MESSAGES/vte.mo -share/locale/bg/LC_MESSAGES/vte.mo -share/locale/bn/LC_MESSAGES/vte.mo -share/locale/bn_IN/LC_MESSAGES/vte.mo -share/locale/bs/LC_MESSAGES/vte.mo -share/locale/ca/LC_MESSAGES/vte.mo -share/locale/cs/LC_MESSAGES/vte.mo -share/locale/cy/LC_MESSAGES/vte.mo -share/locale/da/LC_MESSAGES/vte.mo -share/locale/de/LC_MESSAGES/vte.mo -share/locale/dz/LC_MESSAGES/vte.mo -share/locale/el/LC_MESSAGES/vte.mo -share/locale/en_CA/LC_MESSAGES/vte.mo -share/locale/en_GB/LC_MESSAGES/vte.mo -share/locale/es/LC_MESSAGES/vte.mo -share/locale/et/LC_MESSAGES/vte.mo -share/locale/eu/LC_MESSAGES/vte.mo -share/locale/fa/LC_MESSAGES/vte.mo -share/locale/fi/LC_MESSAGES/vte.mo -share/locale/fr/LC_MESSAGES/vte.mo -share/locale/ga/LC_MESSAGES/vte.mo -share/locale/gl/LC_MESSAGES/vte.mo -share/locale/gu/LC_MESSAGES/vte.mo -share/locale/he/LC_MESSAGES/vte.mo -share/locale/hi/LC_MESSAGES/vte.mo -share/locale/hr/LC_MESSAGES/vte.mo -share/locale/hu/LC_MESSAGES/vte.mo -share/locale/id/LC_MESSAGES/vte.mo -share/locale/is/LC_MESSAGES/vte.mo -share/locale/it/LC_MESSAGES/vte.mo -share/locale/ja/LC_MESSAGES/vte.mo -share/locale/ka/LC_MESSAGES/vte.mo -share/locale/kn/LC_MESSAGES/vte.mo -share/locale/ko/LC_MESSAGES/vte.mo -share/locale/ku/LC_MESSAGES/vte.mo -share/locale/ky/LC_MESSAGES/vte.mo -share/locale/li/LC_MESSAGES/vte.mo -share/locale/lt/LC_MESSAGES/vte.mo -share/locale/lv/LC_MESSAGES/vte.mo -share/locale/mi/LC_MESSAGES/vte.mo -share/locale/mk/LC_MESSAGES/vte.mo -share/locale/ml/LC_MESSAGES/vte.mo -share/locale/mn/LC_MESSAGES/vte.mo -share/locale/mr/LC_MESSAGES/vte.mo -share/locale/ms/LC_MESSAGES/vte.mo -share/locale/nb/LC_MESSAGES/vte.mo -share/locale/ne/LC_MESSAGES/vte.mo -share/locale/nl/LC_MESSAGES/vte.mo -share/locale/nn/LC_MESSAGES/vte.mo -share/locale/oc/LC_MESSAGES/vte.mo -share/locale/or/LC_MESSAGES/vte.mo -share/locale/pa/LC_MESSAGES/vte.mo -share/locale/pl/LC_MESSAGES/vte.mo -share/locale/pt/LC_MESSAGES/vte.mo -share/locale/pt_BR/LC_MESSAGES/vte.mo -share/locale/ro/LC_MESSAGES/vte.mo -share/locale/ru/LC_MESSAGES/vte.mo -share/locale/rw/LC_MESSAGES/vte.mo -share/locale/si/LC_MESSAGES/vte.mo -share/locale/sk/LC_MESSAGES/vte.mo -share/locale/sl/LC_MESSAGES/vte.mo -share/locale/sq/LC_MESSAGES/vte.mo -share/locale/sr/LC_MESSAGES/vte.mo -share/locale/sr@latin/LC_MESSAGES/vte.mo -share/locale/sv/LC_MESSAGES/vte.mo -share/locale/ta/LC_MESSAGES/vte.mo -share/locale/te/LC_MESSAGES/vte.mo -share/locale/th/LC_MESSAGES/vte.mo -share/locale/tr/LC_MESSAGES/vte.mo -share/locale/ug/LC_MESSAGES/vte.mo -share/locale/uk/LC_MESSAGES/vte.mo -share/locale/vi/LC_MESSAGES/vte.mo -share/locale/wa/LC_MESSAGES/vte.mo -share/locale/xh/LC_MESSAGES/vte.mo -share/locale/zh_CN/LC_MESSAGES/vte.mo -share/locale/zh_HK/LC_MESSAGES/vte.mo -share/locale/zh_TW/LC_MESSAGES/vte.mo -%%DATADIR%%/termcap/xterm -@dirrm %%DATADIR%%/termcap -@dirrm %%DATADIR%% -@dirrm lib/vte -@dirrm include/vte -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang diff --git a/x11-wm/metacity/Makefile b/x11-wm/metacity/Makefile deleted file mode 100644 index 7ed6242ec..000000000 --- a/x11-wm/metacity/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: metacity -# Date created: 21 May 2002 -# Whom: Garrett Rooney <rooneg@electricjellyfish.net> -# -# $FreeBSD$ -# $MCom: ports/x11-wm/metacity/Makefile,v 1.144 2009/03/17 18:06:08 kwm Exp $ -# - -PORTNAME= metacity -PORTVERSION= 2.26.0 -CATEGORIES= x11-wm -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A window manager for the adult in you - -BUILD_DEPENDS= zenity:${PORTSDIR}/x11/zenity -LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification -RUN_DEPENDS= zenity:${PORTSDIR}/x11/zenity - -CONFLICTS= expocity-[0-9]* -USE_BZIP2= yes -USE_XORG= x11 xcomposite xdamage -USE_GETTEXT= yes -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -USE_GNOME= gnomeprefix intlhack gnomehack gconf2 ltverhack gtk20 -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias" - -GCONF_SCHEMAS= metacity.schemas - -MAN1= metacity-message.1 metacity-theme-viewer.1 \ - metacity-window-demo.1 metacity.1 - -post-patch: - @${REINPLACE_CMD} -e 's|-Werror||g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/x11-wm/metacity/distinfo b/x11-wm/metacity/distinfo deleted file mode 100644 index 092049327..000000000 --- a/x11-wm/metacity/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/metacity-2.26.0.tar.bz2) = eafb624e79fbcdab6da59acc222430b1 -SHA256 (gnome2/metacity-2.26.0.tar.bz2) = 29ba16411899d963bae69a4d72d37dec38a33e62412fe769d497de4555559078 -SIZE (gnome2/metacity-2.26.0.tar.bz2) = 2289848 diff --git a/x11-wm/metacity/files/patch-configure b/x11-wm/metacity/files/patch-configure deleted file mode 100644 index dc37d41d9..000000000 --- a/x11-wm/metacity/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2009-03-17 18:59:17.000000000 +0100 -+++ configure 2009-03-17 19:00:03.000000000 +0100 -@@ -23806,7 +23806,7 @@ - " - - METACITY_MINOR_VERSION=26 --if test $(( $(echo $METACITY_MINOR_VERSION) %2)) == "1"; then -+if test $(( $(echo $METACITY_MINOR_VERSION) %2)) = "1"; then - stable_version=$(( ($METACITY_MINOR_VERSION / 2) * 2)) - echo "This is the UNSTABLE branch of metacity" - echo -n "Use 2.$stable_version.x for stable " diff --git a/x11-wm/metacity/pkg-descr b/x11-wm/metacity/pkg-descr deleted file mode 100644 index fb1cb52b9..000000000 --- a/x11-wm/metacity/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Metacity is a low-frills Window Manager, and is the default -Window Manager of the GNOME 2 desktop. It provides most of -the features expected of a Window Manager, but leaves everything -it can up to other components of the GNOME environment. diff --git a/x11-wm/metacity/pkg-plist b/x11-wm/metacity/pkg-plist deleted file mode 100644 index 82b209e92..000000000 --- a/x11-wm/metacity/pkg-plist +++ /dev/null @@ -1,278 +0,0 @@ -bin/metacity -bin/metacity-message -bin/metacity-theme-viewer -bin/metacity-window-demo -include/metacity-1/metacity-private/boxes.h -include/metacity-1/metacity-private/common.h -include/metacity-1/metacity-private/gradient.h -include/metacity-1/metacity-private/preview-widget.h -include/metacity-1/metacity-private/theme-parser.h -include/metacity-1/metacity-private/theme.h -include/metacity-1/metacity-private/util.h -lib/libmetacity-private.a -lib/libmetacity-private.la -lib/libmetacity-private.so -lib/libmetacity-private.so.0 -libdata/pkgconfig/libmetacity-private.pc -libexec/metacity-dialog -share/applications/metacity.desktop -share/gnome-control-center/keybindings/50-metacity-desktop-key.xml -share/gnome-control-center/keybindings/50-metacity-key.xml -share/gnome/help/creating-metacity-themes/C/creating-metacity-themes.xml -share/gnome/wm-properties/metacity-wm.desktop -share/locale/am/LC_MESSAGES/metacity.mo -share/locale/ar/LC_MESSAGES/metacity.mo -share/locale/as/LC_MESSAGES/metacity.mo -share/locale/ast/LC_MESSAGES/metacity.mo -share/locale/az/LC_MESSAGES/metacity.mo -share/locale/be/LC_MESSAGES/metacity.mo -share/locale/be@latin/LC_MESSAGES/metacity.mo -share/locale/bg/LC_MESSAGES/metacity.mo -share/locale/bn/LC_MESSAGES/metacity.mo -share/locale/bn_IN/LC_MESSAGES/metacity.mo -share/locale/bs/LC_MESSAGES/metacity.mo -share/locale/ca/LC_MESSAGES/metacity.mo -share/locale/ca@valencia/LC_MESSAGES/metacity.mo -share/locale/cs/LC_MESSAGES/metacity.mo -share/locale/cy/LC_MESSAGES/metacity.mo -share/locale/da/LC_MESSAGES/metacity.mo -share/locale/de/LC_MESSAGES/metacity.mo -share/locale/dz/LC_MESSAGES/metacity.mo -share/locale/el/LC_MESSAGES/metacity.mo -share/locale/en_CA/LC_MESSAGES/metacity.mo -share/locale/en_GB/LC_MESSAGES/metacity.mo -share/locale/es/LC_MESSAGES/metacity.mo -share/locale/et/LC_MESSAGES/metacity.mo -share/locale/eu/LC_MESSAGES/metacity.mo -share/locale/fa/LC_MESSAGES/metacity.mo -share/locale/fi/LC_MESSAGES/metacity.mo -share/locale/fr/LC_MESSAGES/metacity.mo -share/locale/ga/LC_MESSAGES/metacity.mo -share/locale/gl/LC_MESSAGES/metacity.mo -share/locale/gu/LC_MESSAGES/metacity.mo -share/locale/ha/LC_MESSAGES/metacity.mo -share/locale/he/LC_MESSAGES/metacity.mo -share/locale/hi/LC_MESSAGES/metacity.mo -share/locale/hr/LC_MESSAGES/metacity.mo -share/locale/hu/LC_MESSAGES/metacity.mo -share/locale/hy/LC_MESSAGES/metacity.mo -share/locale/id/LC_MESSAGES/metacity.mo -share/locale/ig/LC_MESSAGES/metacity.mo -share/locale/is/LC_MESSAGES/metacity.mo -share/locale/it/LC_MESSAGES/metacity.mo -share/locale/ja/LC_MESSAGES/metacity.mo -share/locale/ka/LC_MESSAGES/metacity.mo -share/locale/kn/LC_MESSAGES/metacity.mo -share/locale/ko/LC_MESSAGES/metacity.mo -share/locale/ku/LC_MESSAGES/metacity.mo -share/locale/la/LC_MESSAGES/metacity.mo -share/locale/lt/LC_MESSAGES/metacity.mo -share/locale/lv/LC_MESSAGES/metacity.mo -share/locale/mai/LC_MESSAGES/metacity.mo -share/locale/mg/LC_MESSAGES/metacity.mo -share/locale/mk/LC_MESSAGES/metacity.mo -share/locale/ml/LC_MESSAGES/metacity.mo -share/locale/mn/LC_MESSAGES/metacity.mo -share/locale/mr/LC_MESSAGES/metacity.mo -share/locale/ms/LC_MESSAGES/metacity.mo -share/locale/nb/LC_MESSAGES/metacity.mo -share/locale/ne/LC_MESSAGES/metacity.mo -share/locale/nl/LC_MESSAGES/metacity.mo -share/locale/nn/LC_MESSAGES/metacity.mo -share/locale/oc/LC_MESSAGES/metacity.mo -share/locale/or/LC_MESSAGES/metacity.mo -share/locale/pa/LC_MESSAGES/metacity.mo -share/locale/pl/LC_MESSAGES/metacity.mo -share/locale/pt/LC_MESSAGES/metacity.mo -share/locale/pt_BR/LC_MESSAGES/metacity.mo -share/locale/ro/LC_MESSAGES/metacity.mo -share/locale/ru/LC_MESSAGES/metacity.mo -share/locale/rw/LC_MESSAGES/metacity.mo -share/locale/si/LC_MESSAGES/metacity.mo -share/locale/sk/LC_MESSAGES/metacity.mo -share/locale/sl/LC_MESSAGES/metacity.mo -share/locale/sq/LC_MESSAGES/metacity.mo -share/locale/sr/LC_MESSAGES/metacity.mo -share/locale/sr@latin/LC_MESSAGES/metacity.mo -share/locale/sv/LC_MESSAGES/metacity.mo -share/locale/ta/LC_MESSAGES/metacity.mo -share/locale/te/LC_MESSAGES/metacity.mo -share/locale/th/LC_MESSAGES/metacity.mo -share/locale/tk/LC_MESSAGES/metacity.mo -share/locale/tr/LC_MESSAGES/metacity.mo -share/locale/uk/LC_MESSAGES/metacity.mo -share/locale/vi/LC_MESSAGES/metacity.mo -share/locale/wa/LC_MESSAGES/metacity.mo -share/locale/xh/LC_MESSAGES/metacity.mo -share/locale/yo/LC_MESSAGES/metacity.mo -share/locale/zh_CN/LC_MESSAGES/metacity.mo -share/locale/zh_HK/LC_MESSAGES/metacity.mo -share/locale/zh_TW/LC_MESSAGES/metacity.mo -%%DATADIR%%/icons/metacity-window-demo.png -share/themes/AgingGorilla/metacity-1/active-button.png -share/themes/AgingGorilla/metacity-1/active-close-button.png -share/themes/AgingGorilla/metacity-1/active-close-menu-icon.png -share/themes/AgingGorilla/metacity-1/active-maximize-button.png -share/themes/AgingGorilla/metacity-1/active-maximize-menu-icon.png -share/themes/AgingGorilla/metacity-1/active-menu-button.png -share/themes/AgingGorilla/metacity-1/active-minimize-button.png -share/themes/AgingGorilla/metacity-1/active-minimize-menu-icon.png -share/themes/AgingGorilla/metacity-1/inactive-close-button.png -share/themes/AgingGorilla/metacity-1/inactive-maximize-button.png -share/themes/AgingGorilla/metacity-1/inactive-menu-button.png -share/themes/AgingGorilla/metacity-1/inactive-minimize-button.png -share/themes/AgingGorilla/metacity-1/metacity-theme-1.xml -share/themes/Atlanta/metacity-1/metacity-theme-1.xml -share/themes/Bright/metacity-1/metacity-theme-1.xml -share/themes/Bright/metacity-1/metacity-theme-2.xml -share/themes/Crux/metacity-1/active-above-button.png -share/themes/Crux/metacity-1/active-border-top-left-border.png -share/themes/Crux/metacity-1/active-border-top-right-border.png -share/themes/Crux/metacity-1/active-bottom-left-border.png -share/themes/Crux/metacity-1/active-bottom-left-corner.png -share/themes/Crux/metacity-1/active-bottom-mid-left-border.png -share/themes/Crux/metacity-1/active-bottom-mid-right-border.png -share/themes/Crux/metacity-1/active-bottom-right-border.png -share/themes/Crux/metacity-1/active-bottom-right-corner.png -share/themes/Crux/metacity-1/active-button-prelight.png -share/themes/Crux/metacity-1/active-button-pressed.png -share/themes/Crux/metacity-1/active-button.png -share/themes/Crux/metacity-1/active-close-button.png -share/themes/Crux/metacity-1/active-left-border.png -share/themes/Crux/metacity-1/active-left-top-border-shaded.png -share/themes/Crux/metacity-1/active-left-top-border.png -share/themes/Crux/metacity-1/active-maximize-button.png -share/themes/Crux/metacity-1/active-menu-button-prelight.png -share/themes/Crux/metacity-1/active-menu-button-pressed.png -share/themes/Crux/metacity-1/active-menu-button.png -share/themes/Crux/metacity-1/active-minimize-button.png -share/themes/Crux/metacity-1/active-restore-button.png -share/themes/Crux/metacity-1/active-right-border.png -share/themes/Crux/metacity-1/active-right-top-border-shaded.png -share/themes/Crux/metacity-1/active-right-top-border.png -share/themes/Crux/metacity-1/active-shade-button.png -share/themes/Crux/metacity-1/active-stick-button.png -share/themes/Crux/metacity-1/active-top-center-left.png -share/themes/Crux/metacity-1/active-top-center-mid-left.png -share/themes/Crux/metacity-1/active-top-center-mid-right.png -share/themes/Crux/metacity-1/active-top-center-right.png -share/themes/Crux/metacity-1/active-top-left-border.png -share/themes/Crux/metacity-1/active-top-left-corner.png -share/themes/Crux/metacity-1/active-top-mid-left-border.png -share/themes/Crux/metacity-1/active-top-mid-right-border.png -share/themes/Crux/metacity-1/active-top-right-border.png -share/themes/Crux/metacity-1/active-top-right-corner.png -share/themes/Crux/metacity-1/active-unabove-button.png -share/themes/Crux/metacity-1/active-unshade-button.png -share/themes/Crux/metacity-1/active-unstick-button.png -share/themes/Crux/metacity-1/inactive-above-button.png -share/themes/Crux/metacity-1/inactive-border-top-left-border.png -share/themes/Crux/metacity-1/inactive-border-top-right-border.png -share/themes/Crux/metacity-1/inactive-bottom-left-border.png -share/themes/Crux/metacity-1/inactive-bottom-left-corner.png -share/themes/Crux/metacity-1/inactive-bottom-mid-border.png -share/themes/Crux/metacity-1/inactive-bottom-right-border.png -share/themes/Crux/metacity-1/inactive-bottom-right-corner.png -share/themes/Crux/metacity-1/inactive-button-prelight.png -share/themes/Crux/metacity-1/inactive-button-pressed.png -share/themes/Crux/metacity-1/inactive-button.png -share/themes/Crux/metacity-1/inactive-close-button.png -share/themes/Crux/metacity-1/inactive-left-border.png -share/themes/Crux/metacity-1/inactive-left-top-border-shaded.png -share/themes/Crux/metacity-1/inactive-left-top-border.png -share/themes/Crux/metacity-1/inactive-maximize-button.png -share/themes/Crux/metacity-1/inactive-menu-button-prelight.png -share/themes/Crux/metacity-1/inactive-menu-button-pressed.png -share/themes/Crux/metacity-1/inactive-menu-button.png -share/themes/Crux/metacity-1/inactive-minimize-button.png -share/themes/Crux/metacity-1/inactive-restore-button.png -share/themes/Crux/metacity-1/inactive-right-border.png -share/themes/Crux/metacity-1/inactive-right-top-border-shaded.png -share/themes/Crux/metacity-1/inactive-right-top-border.png -share/themes/Crux/metacity-1/inactive-shade-button.png -share/themes/Crux/metacity-1/inactive-stick-button.png -share/themes/Crux/metacity-1/inactive-top-center-left.png -share/themes/Crux/metacity-1/inactive-top-center-mid.png -share/themes/Crux/metacity-1/inactive-top-center-right.png -share/themes/Crux/metacity-1/inactive-top-left-border.png -share/themes/Crux/metacity-1/inactive-top-left-corner.png -share/themes/Crux/metacity-1/inactive-top-mid-border.png -share/themes/Crux/metacity-1/inactive-top-right-border.png -share/themes/Crux/metacity-1/inactive-top-right-corner.png -share/themes/Crux/metacity-1/inactive-unabove-button.png -share/themes/Crux/metacity-1/inactive-unshade-button.png -share/themes/Crux/metacity-1/inactive-unstick-button.png -share/themes/Crux/metacity-1/metacity-theme-1.xml -share/themes/Crux/metacity-1/metacity-theme-2.xml -share/themes/Esco/metacity-1/metacity-theme-1.xml -share/themes/Metabox/metacity-1/metacity-theme-1.xml -share/themes/Simple/metacity-1/close.png -share/themes/Simple/metacity-1/maximize.png -share/themes/Simple/metacity-1/maximized.png -share/themes/Simple/metacity-1/metacity-theme-1.xml -share/themes/Simple/metacity-1/minimize.png -@dirrm share/themes/Simple/metacity-1 -@dirrmtry share/themes/Simple -@dirrm share/themes/Metabox/metacity-1 -@dirrmtry share/themes/Metabox -@dirrm share/themes/Esco/metacity-1 -@dirrmtry share/themes/Esco -@dirrm share/themes/Crux/metacity-1 -@dirrmtry share/themes/Crux -@dirrm share/themes/Bright/metacity-1 -@dirrmtry share/themes/Bright -@dirrm share/themes/Atlanta/metacity-1 -@dirrmtry share/themes/Atlanta -@dirrm share/themes/AgingGorilla/metacity-1 -@dirrmtry share/themes/AgingGorilla -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm share/gnome/help/creating-metacity-themes/C -@dirrm share/gnome/help/creating-metacity-themes -@dirrm include/metacity-1/metacity-private -@dirrm include/metacity-1 -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yo/LC_MESSAGES -@dirrmtry share/locale/yo -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/la/LC_MESSAGES -@dirrmtry share/locale/la -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ig/LC_MESSAGES -@dirrmtry share/locale/ig -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/ha/LC_MESSAGES -@dirrmtry share/locale/ha -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gdm/Makefile b/x11/gdm/Makefile deleted file mode 100644 index 885508cb8..000000000 --- a/x11/gdm/Makefile +++ /dev/null @@ -1,95 +0,0 @@ -# New ports collection makefile for: gdm2 -# Date created: 20 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gdm/Makefile,v 1.147 2009/03/17 16:53:02 kwm Exp $ -# - -PORTNAME= gdm -PORTVERSION= 2.26.0 -PORTREVISION= 1 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 version of xdm display manager - -BUILD_DEPENDS= zenity:${PORTSDIR}/x11/zenity -LIB_DEPENDS= ck-connector.0:${PORTSDIR}/sysutils/consolekit \ - execinfo:${PORTSDIR}/devel/libexecinfo -RUN_DEPENDS= zenity:${PORTSDIR}/x11/zenity \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_XORG= dmx dmxproto -INSTALLS_ICONS= yes -USE_RC_SUBR= gdm -USE_GNOME_SUBR= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomehier libgnomeui librsvg2 gnomedocutils \ - gnomeprefix gnomepanel -GCONF_SCHEMAS= gdm-simple-greeter.schemas -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-working-directory=${PREFIX}/etc/gdm/home -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - GTKDOC="false" - -SUB_FILES+= gdm.pam - -GDMDIR?= ${PREFIX}/etc/gdm -PKGMESSAGE= ${WRKDIR}/pkg-message - -GNOME_LOCALSTATEDIR= /var - -OPTIONS= IPV6 "Enable IPv6 support" on \ - KEYRING "Enable GnomeKeyring/PAM integration" on - -.include <bsd.port.pre.mk> - -.if defined(WITHOUT_KEYRING) -SUB_LIST+= PAM_KEYRING=\# -.else -RUN_DEPENDS+= ${LOCALBASE}/lib/pam_gnome_keyring.so:${PORTSDIR}/security/gnome-keyring -SUB_LIST+= PAM_KEYRING= -.endif - -.if !defined(WITHOUT_IPV6) -CONFIGURE_ARGS+= --enable-ipv6 -.else -CONFIGURE_ARGS+= --disable-ipv6 -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|root:root|root:wheel|g' \ - ${WRKSRC}/data/Makefile.in - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/daemon/gdm-session-worker.c \ - ${WRKSRC}/data/gconf.path - @${REINPLACE_CMD} -e 's|/bin/true|/usr/bin/true|g' \ - ${WRKSRC}/data/session-setup.entries - @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/configure ${WRKSRC}/daemon/*.c ${WRKSRC}/po/*.po - -post-install: - ${INSTALL_DATA} ${WRKSRC}/data/gconf.path \ - ${PREFIX}/share/gdm/gconf.path - ${INSTALL_DATA} ${WRKSRC}/data/session-setup.entries \ - ${PREFIX}/share/gdm/session-setup.entries -.if !defined(PACKAGE_BUILDING) - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - ${INSTALL_DATA} ${WRKSRC}/data/gdm.conf-custom \ - ${PREFIX}/etc/gdm/custom.conf.default - ${MKDIR} ${PREFIX}/share/xsessions - ${INSTALL_DATA} ${WRKDIR}/gdm.pam ${PREFIX}/etc/pam.d/gdm - @${MKDIR} ${PREFIX}/etc/gdm/Sessions - @${SED} -e 's|%%PREFIX%%|${PREFIX}|g' < ${PKGDIR}/pkg-message \ - | /usr/bin/fmt 75 79 > ${PKGMESSAGE} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/x11/gdm/distinfo b/x11/gdm/distinfo deleted file mode 100644 index 8cdc2bc52..000000000 --- a/x11/gdm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gdm-2.26.0.tar.bz2) = b1a8db2f0e058d3c7b4c9a4600839a14 -SHA256 (gnome2/gdm-2.26.0.tar.bz2) = 34b9e36eaaa004f47b3e67924537cba1bdfe6ae467d8f0d30028ae7e6ef34627 -SIZE (gnome2/gdm-2.26.0.tar.bz2) = 2552457 diff --git a/x11/gdm/files/gdm.in b/x11/gdm/files/gdm.in deleted file mode 100644 index 73f52426a..000000000 --- a/x11/gdm/files/gdm.in +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# $MCom: ports/x11/gdm/files/gdm.in,v 1.34 2009/02/24 18:45:03 kwm Exp $ - -# PROVIDE: gdm -# REQUIRE: LOGIN cleanvar moused syscons dbus hald -# -# Add the following to /etc/rc.conf to start GDM at boot time: -# -# gdm_enable="YES" -# - -. %%RC_SUBR%% -. %%GNOME_SUBR%% - -gdm_enable=${gdm_enable-${gnome_enable}} -gdm_preserve_base_pam_conf=${gdm_preserve_base_pam_conf-NO} - -export PATH=/bin:/sbin:/usr/bin:/usr/sbin:%%LOCALBASE%%/bin:%%LOCALBASE%%/sbin - -name="gdm" -rcvar=`set_rcvar` -command="%%PREFIX%%/sbin/${name}" -pidfile="/var/run/${name}.pid" -procname="%%PREFIX%%/sbin/gdm-binary" -start_cmd="gdm_start" - -gdm_start() -{ - if ! checkyesno gdm_enable ; then - return 0 - fi - echo "Starting ${name}." - - # make sure there is no pam configuration for gdm service in base system - if ! checkyesno gdm_preserve_base_pam_conf && [ -f /etc/pam.d/gdm ]; then - cp -p /etc/pam.d/gdm /etc/pam.d/gdm_disabled - rm -f /etc/pam.d/gdm - fi - - ( iter=0 - while ! ps -axoargs | grep "^/usr/libexec/getty " | grep -qv grep >/dev/null 2>&1; do - if [ ${iter} -eq 60 ]; then - break - fi - sleep 1 - iter=$(expr ${iter} + 1) - done - iter=0 - while ! %%LOCALBASE%%/bin/lshal >/dev/null 2>&1 ; do - if [ ${iter} -eq 60 ]; then - break - fi - sleep 1 - iter=$(expr ${iter} + 1) - done - ${command} ${gdm_flags} ) & -} - -load_rc_config ${name} -run_rc_command "$1" diff --git a/x11/gdm/files/gdm.pam.in b/x11/gdm/files/gdm.pam.in deleted file mode 100644 index ea630b7b1..000000000 --- a/x11/gdm/files/gdm.pam.in +++ /dev/null @@ -1,21 +0,0 @@ -# -# $FreeBSD$ -# -# PAM configuration for the "gdm" service -# - -# auth -#auth sufficient pam_krb5.so no_warn try_first_pass -#auth sufficient pam_ssh.so no_warn try_first_pass -auth required pam_unix.so no_warn try_first_pass -%%PAM_KEYRING%%auth optional %%LOCALBASE%%/lib/pam_gnome_keyring.so - -# account -account required pam_nologin.so -#account required pam_krb5.so -account required pam_unix.so - -# session -#session optional pam_ssh.so -session required pam_permit.so -%%PAM_KEYRING%%session optional %%LOCALBASE%%/lib/pam_gnome_keyring.so auto_start diff --git a/x11/gdm/files/patch-common_Makefile.in b/x11/gdm/files/patch-common_Makefile.in deleted file mode 100644 index 2ab0a5001..000000000 --- a/x11/gdm/files/patch-common_Makefile.in +++ /dev/null @@ -1,20 +0,0 @@ ---- common/Makefile.in.orig 2008-08-20 14:34:16.000000000 -0400 -+++ common/Makefile.in 2008-08-20 14:36:50.000000000 -0400 -@@ -428,7 +428,8 @@ gdm_crash_logger_CPPFLAGS = \ - -DLOCALSTATEDIR=\"$(localstatedir)\" \ - $(NULL) - --gdm_crash_logger_LDADD = $(GTHREAD_LIBS) -+gdm_crash_logger_LDADD = $(GTHREAD_LIBS) \ -+ -lexecinfo - @MKDTEMP_MISSING_FALSE@MKDTEMP_FILES = - @MKDTEMP_MISSING_TRUE@MKDTEMP_FILES = mkdtemp.c mkdtemp.h - libgdmcommon_la_SOURCES = \ -@@ -473,6 +474,7 @@ libgdmcommon_la_CFLAGS = \ - $(NULL) - - libgdmcommon_la_LIBADD = \ -+ -lexecinfo \ - $(NULL) - - libgdmcommon_la_LDFLAGS = \ diff --git a/x11/gdm/files/patch-common_gdm-address.c b/x11/gdm/files/patch-common_gdm-address.c deleted file mode 100644 index 4c38474cb..000000000 --- a/x11/gdm/files/patch-common_gdm-address.c +++ /dev/null @@ -1,27 +0,0 @@ ---- common/gdm-address.c.orig 2008-04-17 23:29:27.000000000 -0400 -+++ common/gdm-address.c 2008-05-02 14:36:15.000000000 -0400 -@@ -29,6 +29,8 @@ - #include <stropts.h> - #endif - #include <string.h> -+#include <sys/types.h> -+#include <sys/param.h> - #ifdef HAVE_SYS_SOCKET_H - #include <sys/socket.h> - #endif -@@ -37,7 +39,6 @@ - #endif - #include <netdb.h> - #include <sys/ioctl.h> --#include <net/if.h> - - #ifndef G_OS_WIN32 - #include <sys/select.h> -@@ -47,6 +48,7 @@ - #include <winsock2.h> - #include <ws2tcpip.h> - #endif -+#include <net/if.h> - - #include <glib-object.h> - diff --git a/x11/gdm/files/patch-common_gdm-common.c b/x11/gdm/files/patch-common_gdm-common.c deleted file mode 100644 index 9fa4acafa..000000000 --- a/x11/gdm/files/patch-common_gdm-common.c +++ /dev/null @@ -1,13 +0,0 @@ ---- common/gdm-common.c.orig 2007-12-23 10:29:20.000000000 +0100 -+++ common/gdm-common.c 2007-12-23 10:29:34.000000000 +0100 -@@ -33,6 +33,10 @@ - - #include "gdm-common.h" - -+#ifndef ENODATA -+#define ENODATA EAGAIN -+#endif -+ - void - gdm_set_fatal_warnings_if_unstable (void) - { diff --git a/x11/gdm/files/patch-config.h.in b/x11/gdm/files/patch-config.h.in deleted file mode 100644 index d17901da1..000000000 --- a/x11/gdm/files/patch-config.h.in +++ /dev/null @@ -1,12 +0,0 @@ ---- config.h.in.orig 2007-11-02 20:48:28.000000000 -0400 -+++ config.h.in 2007-11-02 20:49:39.000000000 -0400 -@@ -23,6 +23,9 @@ - #undef HAVE_LC_MESSAGES - #undef HAVE_LIBSM - #undef HAVE_LIBXDMCP -+#undef HAVE_LOGIN -+#undef HAVE_LOGOUT -+#undef HAVE_LOGWTMP - #undef HAVE_LOGINCAP - #undef HAVE_LOGINDEVPERM - #undef HAVE_LOGINRESTRICTIONS diff --git a/x11/gdm/files/patch-daemon-gdm-xdmcp-display-factory.c b/x11/gdm/files/patch-daemon-gdm-xdmcp-display-factory.c deleted file mode 100644 index e3062eeea..000000000 --- a/x11/gdm/files/patch-daemon-gdm-xdmcp-display-factory.c +++ /dev/null @@ -1,10 +0,0 @@ ---- daemon/gdm-xdmcp-display-factory.c.orig 2007-11-01 10:15:58.269325570 -0400 -+++ daemon/gdm-xdmcp-display-factory.c 2007-11-01 10:20:19.093220785 -0400 -@@ -35,6 +35,7 @@ - #include <netdb.h> - #include <arpa/inet.h> - #include <net/if.h> -+#include <netinet/in.h> - #ifdef HAVE_SYS_SOCKIO_H - #include <sys/sockio.h> - #endif diff --git a/x11/gdm/files/patch-daemon_Makefile.in b/x11/gdm/files/patch-daemon_Makefile.in deleted file mode 100644 index 9186a23e3..000000000 --- a/x11/gdm/files/patch-daemon_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- daemon/Makefile.in.orig 2007-11-02 20:54:53.000000000 -0400 -+++ daemon/Makefile.in 2007-11-02 20:55:08.000000000 -0400 -@@ -451,6 +451,7 @@ test_session_SOURCES = \ - - test_session_LDADD = \ - $(DAEMON_LIBS) \ -+ $(EXTRA_DAEMON_LIBS) \ - $(PAM_LIBS) \ - $(top_builddir)/common/libgdmcommon.la \ - $(NULL) diff --git a/x11/gdm/files/patch-daemon_gdm-session-worker.c b/x11/gdm/files/patch-daemon_gdm-session-worker.c deleted file mode 100644 index 5f3a1b9ee..000000000 --- a/x11/gdm/files/patch-daemon_gdm-session-worker.c +++ /dev/null @@ -1,11 +0,0 @@ ---- daemon/gdm-session-worker.c.orig 2008-07-30 19:15:47.000000000 -0400 -+++ daemon/gdm-session-worker.c 2008-08-25 12:50:00.000000000 -0400 -@@ -332,7 +332,7 @@ gdm_session_execute (const char *file, - * what to search if PATH is unset. POSIX may, dunno. - */ - -- path = "/bin:/usr/bin:."; -+ path = "/bin:/usr/bin:/usr/local/bin:."; - } - - len = strlen (file) + 1; diff --git a/x11/gdm/files/patch-data_Xsession.in b/x11/gdm/files/patch-data_Xsession.in deleted file mode 100644 index 894c97d16..000000000 --- a/x11/gdm/files/patch-data_Xsession.in +++ /dev/null @@ -1,39 +0,0 @@ ---- data/Xsession.in.orig 2008-05-12 20:25:54.000000000 -0400 -+++ data/Xsession.in 2008-06-09 01:29:59.000000000 -0400 -@@ -231,12 +231,31 @@ if [ "x$command" = "xdefault" ] ; then - fi - fi - -+is_gnome=0 -+if [ "x$command" = "xgnome-session" ]; then -+ is_gnome=1 -+fi -+ -+# add seahorse-agent if found -+if [ ${is_gnome} = 1 ]; then -+ seahorseagent="`gdmwhich seahorse-agent`" -+ if [ -n "$seahorseagent" ] && [ -x "$seahorseagent" ] && [ -z "$GPG_AGENT_INFO" ] ; then -+ command="dbus-launch --exit-with-session $seahorseagent --execute $command" -+ elif [ -z "$seahorseagent" ] ; then -+ echo "$0: seahorse-agent not found!" -+ fi -+fi -+ - # add ssh-agent if found --sshagent="`gdmwhich ssh-agent`" --if [ -n "$sshagent" ] && [ -x "$sshagent" ] && [ -z "$SSH_AUTH_SOCK" ]; then -- command="$sshagent -- $command" --elif [ -z "$sshagent" ] ; then -- echo "$0: ssh-agent not found!" -+# ssh-agent functionality is handled by gnome-keyring-daemon which is launched -+# from gnome-session -+if [ ${is_gnome} != 1 ]; then -+ sshagent="`gdmwhich ssh-agent`" -+ if [ -n "$sshagent" ] && [ -x "$sshagent" ] && [ -z "$SSH_AUTH_SOCK" ]; then -+ command="$sshagent -- $command" -+ elif [ -z "$sshagent" ] ; then -+ echo "$0: ssh-agent not found!" -+ fi - fi - - echo "$0: Setup done, will execute: $command" diff --git a/x11/gdm/files/patch-data_gconf.path b/x11/gdm/files/patch-data_gconf.path deleted file mode 100644 index 2efdb3cc9..000000000 --- a/x11/gdm/files/patch-data_gconf.path +++ /dev/null @@ -1,9 +0,0 @@ ---- data/gconf.path.orig 2008-12-26 17:04:03.000000000 -0500 -+++ data/gconf.path 2008-12-26 17:04:13.000000000 -0500 -@@ -1,5 +1,5 @@ - # treat system-wide settings as mandatory --xml:readonly:/etc/gconf/gconf.xml.system -+xml:readonly:%%LOCALBASE%%/etc/gconf/gconf.xml.system - - # override some settings - # we treat settings in this location as diff --git a/x11/gdm/files/patch-data_greeter-autostart_gdm-simple-greeter.desktop.in.in b/x11/gdm/files/patch-data_greeter-autostart_gdm-simple-greeter.desktop.in.in deleted file mode 100644 index 7febf5165..000000000 --- a/x11/gdm/files/patch-data_greeter-autostart_gdm-simple-greeter.desktop.in.in +++ /dev/null @@ -1,7 +0,0 @@ ---- data/greeter-autostart/gdm-simple-greeter.desktop.in.in.orig 2008-11-23 22:22:04.000000000 -0500 -+++ data/greeter-autostart/gdm-simple-greeter.desktop.in.in 2008-11-23 22:22:09.000000000 -0500 -@@ -5,4 +5,3 @@ Exec=@LIBEXECDIR@/gdm-simple-greeter - OnlyShowIn=GNOME; - X-GNOME-Autostart-Phase=Application - X-GNOME-Autostart-Notify=true --X-GNOME-AutoRestart=true diff --git a/x11/gdm/files/patch-gui_simple-chooser_gdm-host-chooser-widget.c b/x11/gdm/files/patch-gui_simple-chooser_gdm-host-chooser-widget.c deleted file mode 100644 index 6f0c08d8a..000000000 --- a/x11/gdm/files/patch-gui_simple-chooser_gdm-host-chooser-widget.c +++ /dev/null @@ -1,20 +0,0 @@ ---- gui/simple-chooser/gdm-host-chooser-widget.c.orig 2008-03-04 14:42:37.000000000 -0500 -+++ gui/simple-chooser/gdm-host-chooser-widget.c 2008-08-03 01:48:49.000000000 -0400 -@@ -442,7 +442,7 @@ find_broadcast_addresses (GdmHostChooser - /* paranoia */ - ifreq.ifr_name[sizeof (ifreq.ifr_name) - 1] = '\0'; - -- if (ioctl (sock, SIOCGIFFLAGS, &ifreq) < 0) { -+ if ((ioctl (sock, SIOCGIFFLAGS, &ifreq) < 0) && (errno != ENXIO)) { - g_warning ("Could not get SIOCGIFFLAGS for %s", ifr[i].ifr_name); - } - -@@ -542,6 +542,8 @@ xdmcp_init (GdmHostChooserWidget *widget - #ifdef ENABLE_IPV6 - widget->priv->socket_fd = socket (AF_INET6, SOCK_DGRAM, 0); - if (widget->priv->socket_fd != -1) { -+ int no = 0; -+ setsockopt(widget->priv->socket_fd, IPPROTO_IPV6, IPV6_V6ONLY, &no, sizeof(no)); - widget->priv->have_ipv6 = TRUE; - } - #endif diff --git a/x11/gdm/files/patch-gui_simple-greeter_Makefile.in b/x11/gdm/files/patch-gui_simple-greeter_Makefile.in deleted file mode 100644 index 56d49b99b..000000000 --- a/x11/gdm/files/patch-gui_simple-greeter_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- gui/simple-greeter/Makefile.in.orig 2008-02-13 01:57:37.000000000 -0500 -+++ gui/simple-greeter/Makefile.in 2008-02-13 01:57:44.000000000 -0500 -@@ -445,7 +445,7 @@ INCLUDES = \ - -DGDMCONFDIR=\"$(gdmconfdir)\" \ - -DDATADIR=\""$(datadir)"\" \ - -DSYSCONFDIR=\""$(sysconfdir)"\" \ -- -DLIBLOCALEDIR=\""$(prefix)/lib/locale"\" \ -+ -DLIBLOCALEDIR=\""$(prefix)/share/locale"\" \ - -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ - -DGLADEDIR=\""$(pkgdatadir)"\" \ - -DLIBEXECDIR=\""$(libexecdir)"\" \ diff --git a/x11/gdm/files/patch-gui_simple-greeter_gdm-languages.c b/x11/gdm/files/patch-gui_simple-greeter_gdm-languages.c deleted file mode 100644 index 9116dc917..000000000 --- a/x11/gdm/files/patch-gui_simple-greeter_gdm-languages.c +++ /dev/null @@ -1,45 +0,0 @@ ---- gui/simple-greeter/gdm-languages.c.orig 2008-11-22 17:16:42.000000000 -0500 -+++ gui/simple-greeter/gdm-languages.c 2008-11-22 17:29:05.000000000 -0500 -@@ -168,13 +168,13 @@ gdm_parse_language_name (const char *nam - *codesetp = NULL; - } - -- if (*codesetp != NULL) { -+/* if (*codesetp != NULL) { - char *codeset; - - codeset = normalize_codeset (*codesetp); - g_free (*codesetp); - *codesetp = codeset; -- } -+ }*/ - } - - if (modifierp != NULL) { -@@ -353,7 +353,7 @@ add_locale (const char *language_name) - if (language_name_is_utf8 (language_name)) { - name = g_strdup (language_name); - } else { -- name = g_strdup_printf ("%s.utf8", language_name); -+ name = g_strdup_printf ("%s.UTF-8", language_name); - - if (!language_name_is_utf8 (name)) { - g_free (name); -@@ -482,7 +482,7 @@ select_dirs (const struct dirent *dirent - struct stat st; - char *path; - -- path = g_build_filename (GNOMELOCALEDIR, dirent->d_name, NULL); -+ path = g_build_filename ("/usr/share/locale", dirent->d_name, NULL); - if (g_stat (path, &st) == 0) { - mode = st.st_mode; - } -@@ -502,7 +502,7 @@ collect_locales_from_directory (void) - int ndirents; - int cnt; - -- ndirents = scandir (GNOMELOCALEDIR, &dirents, select_dirs, alphasort); -+ ndirents = scandir ("/usr/share/locale", &dirents, select_dirs, alphasort); - - for (cnt = 0; cnt < ndirents; ++cnt) { - add_locale (dirents[cnt]->d_name); diff --git a/x11/gdm/files/patch-gui_simple-greeter_gdm-remote-login-window.c b/x11/gdm/files/patch-gui_simple-greeter_gdm-remote-login-window.c deleted file mode 100644 index 059d72cf4..000000000 --- a/x11/gdm/files/patch-gui_simple-greeter_gdm-remote-login-window.c +++ /dev/null @@ -1,10 +0,0 @@ ---- gui/simple-greeter/gdm-remote-login-window.c.orig 2008-03-24 11:27:13.000000000 +0100 -+++ gui/simple-greeter/gdm-remote-login-window.c 2008-03-24 11:27:31.000000000 +0100 -@@ -25,6 +25,7 @@ - #include <unistd.h> - #include <sys/types.h> - #include <sys/wait.h> -+#include <sys/signal.h> - #include <errno.h> - - #include <glib.h> diff --git a/x11/gdm/files/patch-gui_simple-greeter_gdm-user-manager.c b/x11/gdm/files/patch-gui_simple-greeter_gdm-user-manager.c deleted file mode 100644 index d666bc1fd..000000000 --- a/x11/gdm/files/patch-gui_simple-greeter_gdm-user-manager.c +++ /dev/null @@ -1,51 +0,0 @@ ---- gui/simple-greeter/gdm-user-manager.c.orig 2008-04-29 13:38:43.000000000 -0400 -+++ gui/simple-greeter/gdm-user-manager.c 2008-05-03 13:27:52.000000000 -0400 -@@ -1269,17 +1269,23 @@ reload_passwd (GdmUserManager *manager) - GSList *old_users; - GSList *new_users; - GSList *list; -- FILE *fp; -+#ifndef __FreeBSD__ -+ FILE *fp; -+#endif - - old_users = NULL; - new_users = NULL; - -+#ifdef __FreeBSD__ -+ setpwent (); -+#else - errno = 0; - fp = fopen (PATH_PASSWD, "r"); - if (fp == NULL) { - g_warning ("Unable to open %s: %s", PATH_PASSWD, g_strerror (errno)); - goto out; - } -+#endif - - g_hash_table_foreach (manager->priv->users, listify_hash_values_hfunc, &old_users); - g_slist_foreach (old_users, (GFunc) g_object_ref, NULL); -@@ -1292,7 +1298,11 @@ reload_passwd (GdmUserManager *manager) - } - } - -+#ifdef __FreeBSD__ -+ for (pwent = getpwent (); pwent != NULL; pwent = getpwent ()) { -+#else - for (pwent = fgetpwent (fp); pwent != NULL; pwent = fgetpwent (fp)) { -+#endif - GdmUser *user; - - user = NULL; -@@ -1355,7 +1365,11 @@ reload_passwd (GdmUserManager *manager) - out: - /* Cleanup */ - -+#ifdef __FreeBSD__ -+ endpwent (); -+#else - fclose (fp); -+#endif - - g_slist_foreach (new_users, (GFunc) g_object_thaw_notify, NULL); - g_slist_foreach (new_users, (GFunc) g_object_unref, NULL); diff --git a/x11/gdm/pkg-descr b/x11/gdm/pkg-descr deleted file mode 100644 index 1699cf5b7..000000000 --- a/x11/gdm/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The GNOME 2.0 version of the xdm display manager. It supports user -icons, multiple sessions, and clean system shutdowns. - -WWW: http://www.gnome.org/projects/gdm/ diff --git a/x11/gdm/pkg-install b/x11/gdm/pkg-install deleted file mode 100644 index 788a1a610..000000000 --- a/x11/gdm/pkg-install +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -case $2 in -POST-INSTALL) - USER=gdm - GROUP=${USER} - UID=92 - GID=${UID} - PW=/usr/sbin/pw - CHMOD=/bin/chmod - CHOWN=/usr/sbin/chown - MKDIR=/bin/mkdir - - if ${PW} group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if ${PW} groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if ${PW} user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - uhome=`${PW} user show ${USER} | awk -F: '{print $9}'` - if [ x"${uhome}" = x"/nonexistent" -o x"${uhome}" = x"/var/gdm" ]; then - ${PW} usermod ${USER} -d "${PKG_PREFIX}/etc/gdm/home" - fi - else - if ${PW} useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d "${PKG_PREFIX}/etc/gdm/home" -s /sbin/nologin -c "GNOME Display Manager" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - ${MKDIR} -p /var/gdm - ${MKDIR} -p /var/log/gdm - ${CHMOD} 0755 /var/log/gdm - ${CHOWN} root:wheel /var/log/gdm - ${CHOWN} -R root:${GROUP} /var/gdm - ${CHMOD} 1770 /var/gdm - ${MKDIR} -p /var/run/gdm - ${CHOWN} root:${GROUP} /var/run/gdm - ${CHMOD} 1777 /var/run/gdm - ${CHOWN} root:wheel ${PKG_PREFIX}/share/gdm - ${CHMOD} 0755 ${PKG_PREFIX}/share/gdm - ${MKDIR} -p ${PKG_PREFIX}/etc/gdm/home - ${CHOWN} root:${GROUP} ${PKG_PREFIX}/etc/gdm/home - ${CHMOD} 1770 ${PKG_PREFIX}/etc/gdm/home - install -o root -g wheel -m 444 ${PKG_PREFIX}/share/gdm/gconf.path ${PKG_PREFIX}/etc/gdm/home/.gconf.path - gconftool-2 --direct --config-source=xml:merged:${PKG_PREFIX}/etc/gdm/home/.gconf.mandatory --recursive-unset / - gconftool-2 --direct --config-source=xml:merged:${PKG_PREFIX}/etc/gdm/home/.gconf.mandatory --load ${PKG_PREFIX}/share/gdm/session-setup.entries - ${CHOWN} -R root:gdm ${PKG_PREFIX}/etc/gdm/home/.gconf.mandatory - ${CHMOD} 1750 ${PKG_PREFIX}/etc/gdm/home/.gconf.mandatory - ${CHMOD} 1640 ${PKG_PREFIX}/etc/gdm/home/.gconf.mandatory/*.xml - - ${MKDIR} -p ${PKG_PREFIX}/etc/dm/Sessions - exit 0 - ;; -esac diff --git a/x11/gdm/pkg-message b/x11/gdm/pkg-message deleted file mode 100644 index 038101552..000000000 --- a/x11/gdm/pkg-message +++ /dev/null @@ -1,6 +0,0 @@ -GDM is installed. - -Do _NOT_ use /etc/ttys to start gdm at boot time. This will result in gdm -hanging or restarting constantly. Instead, add gdm_enable="YES" to -/etc/rc.conf. GDM will be started automatic on the next reboot. - diff --git a/x11/gdm/pkg-plist b/x11/gdm/pkg-plist deleted file mode 100644 index cfe404abd..000000000 --- a/x11/gdm/pkg-plist +++ /dev/null @@ -1,274 +0,0 @@ -bin/gdm-screenshot -bin/gdmflexiserver -etc/dbus-1/system.d/gdm.conf -etc/gdm/Init/Default -etc/gdm/PostLogin/Default.sample -etc/gdm/PostSession/Default -etc/gdm/PreSession/Default -etc/gdm/Xsession -@unexec if cmp -s %D/etc/gdm/custom.conf %D/etc/gdm/custom.conf.default; then rm -f %D/etc/gdm/custom.conf; fi -etc/gdm/custom.conf.default -@exec [ -f %B/custom.conf ] || cp %B/%f %B/custom.conf -etc/gdm/gdm.schemas -etc/pam.d/gdm -libdata/bonobo/servers/GNOME_FastUserSwitchApplet.server -libexec/gdm-crash-logger -libexec/gdm-factory-slave -libexec/gdm-host-chooser -libexec/gdm-product-slave -libexec/gdm-session-worker -libexec/gdm-simple-chooser -libexec/gdm-simple-greeter -libexec/gdm-simple-slave -libexec/gdm-user-switch-applet -libexec/gdm-xdmcp-chooser-slave -sbin/gdm -sbin/gdm-binary -sbin/gdm-restart -sbin/gdm-safe-restart -sbin/gdm-stop -%%DATADIR%%/autostart/LoginWindow/at-spi-registryd-wrapper.desktop -%%DATADIR%%/autostart/LoginWindow/gdm-simple-greeter.desktop -%%DATADIR%%/autostart/LoginWindow/gnome-mag.desktop -%%DATADIR%%/autostart/LoginWindow/gnome-power-manager.desktop -%%DATADIR%%/autostart/LoginWindow/gnome-settings-daemon.desktop -%%DATADIR%%/autostart/LoginWindow/gok.desktop -%%DATADIR%%/autostart/LoginWindow/metacity.desktop -%%DATADIR%%/autostart/LoginWindow/orca-screen-reader.desktop -%%DATADIR%%/gconf.path -%%DATADIR%%/gdb-cmd -%%DATADIR%%/gdm-greeter-login-window.glade -%%DATADIR%%/session-setup.entries -share/gnome-2.0/ui/GNOME_FastUserSwitchApplet.xml -share/gnome/help/gdm/C/gdm.xml -share/gnome/help/gdm/C/legal.xml -share/gnome/help/gdm/de/gdm.xml -share/gnome/help/gdm/en_GB/gdm.xml -share/gnome/help/gdm/es/gdm.xml -share/gnome/help/gdm/fr/gdm.xml -share/gnome/help/gdm/it/gdm.xml -share/gnome/help/gdm/ko/gdm.xml -share/gnome/help/gdm/oc/gdm.xml -share/gnome/help/gdm/ru/gdm.xml -share/gnome/help/gdm/sv/gdm.xml -share/gnome/help/gdm/uk/gdm.xml -share/icons/hicolor/16x16/apps/gdm-xnest.png -share/icons/hicolor/32x32/apps/gdm-setup.png -share/icons/hicolor/32x32/apps/gdm-xnest.png -share/locale/af/LC_MESSAGES/gdm.mo -share/locale/am/LC_MESSAGES/gdm.mo -share/locale/ar/LC_MESSAGES/gdm.mo -share/locale/as/LC_MESSAGES/gdm.mo -share/locale/ast/LC_MESSAGES/gdm.mo -share/locale/az/LC_MESSAGES/gdm.mo -share/locale/be/LC_MESSAGES/gdm.mo -share/locale/be@latin/LC_MESSAGES/gdm.mo -share/locale/bg/LC_MESSAGES/gdm.mo -share/locale/bn/LC_MESSAGES/gdm.mo -share/locale/bn_IN/LC_MESSAGES/gdm.mo -share/locale/bs/LC_MESSAGES/gdm.mo -share/locale/ca/LC_MESSAGES/gdm.mo -share/locale/crh/LC_MESSAGES/gdm.mo -share/locale/cs/LC_MESSAGES/gdm.mo -share/locale/cy/LC_MESSAGES/gdm.mo -share/locale/da/LC_MESSAGES/gdm.mo -share/locale/de/LC_MESSAGES/gdm.mo -share/locale/dz/LC_MESSAGES/gdm.mo -share/locale/el/LC_MESSAGES/gdm.mo -share/locale/en_CA/LC_MESSAGES/gdm.mo -share/locale/en_GB/LC_MESSAGES/gdm.mo -share/locale/es/LC_MESSAGES/gdm.mo -share/locale/et/LC_MESSAGES/gdm.mo -share/locale/eu/LC_MESSAGES/gdm.mo -share/locale/fa/LC_MESSAGES/gdm.mo -share/locale/fi/LC_MESSAGES/gdm.mo -share/locale/fr/LC_MESSAGES/gdm.mo -share/locale/fur/LC_MESSAGES/gdm.mo -share/locale/ga/LC_MESSAGES/gdm.mo -share/locale/gl/LC_MESSAGES/gdm.mo -share/locale/gu/LC_MESSAGES/gdm.mo -share/locale/he/LC_MESSAGES/gdm.mo -share/locale/hi/LC_MESSAGES/gdm.mo -share/locale/hr/LC_MESSAGES/gdm.mo -share/locale/hu/LC_MESSAGES/gdm.mo -share/locale/hy/LC_MESSAGES/gdm.mo -share/locale/id/LC_MESSAGES/gdm.mo -share/locale/is/LC_MESSAGES/gdm.mo -share/locale/it/LC_MESSAGES/gdm.mo -share/locale/ja/LC_MESSAGES/gdm.mo -share/locale/ka/LC_MESSAGES/gdm.mo -share/locale/kn/LC_MESSAGES/gdm.mo -share/locale/ko/LC_MESSAGES/gdm.mo -share/locale/ku/LC_MESSAGES/gdm.mo -share/locale/lt/LC_MESSAGES/gdm.mo -share/locale/lv/LC_MESSAGES/gdm.mo -share/locale/mai/LC_MESSAGES/gdm.mo -share/locale/mg/LC_MESSAGES/gdm.mo -share/locale/mi/LC_MESSAGES/gdm.mo -share/locale/mk/LC_MESSAGES/gdm.mo -share/locale/ml/LC_MESSAGES/gdm.mo -share/locale/mn/LC_MESSAGES/gdm.mo -share/locale/mr/LC_MESSAGES/gdm.mo -share/locale/ms/LC_MESSAGES/gdm.mo -share/locale/nb/LC_MESSAGES/gdm.mo -share/locale/ne/LC_MESSAGES/gdm.mo -share/locale/nl/LC_MESSAGES/gdm.mo -share/locale/nn/LC_MESSAGES/gdm.mo -share/locale/nso/LC_MESSAGES/gdm.mo -share/locale/oc/LC_MESSAGES/gdm.mo -share/locale/or/LC_MESSAGES/gdm.mo -share/locale/pa/LC_MESSAGES/gdm.mo -share/locale/pl/LC_MESSAGES/gdm.mo -share/locale/ps/LC_MESSAGES/gdm.mo -share/locale/pt/LC_MESSAGES/gdm.mo -share/locale/pt_BR/LC_MESSAGES/gdm.mo -share/locale/ro/LC_MESSAGES/gdm.mo -share/locale/ru/LC_MESSAGES/gdm.mo -share/locale/rw/LC_MESSAGES/gdm.mo -share/locale/si/LC_MESSAGES/gdm.mo -share/locale/sk/LC_MESSAGES/gdm.mo -share/locale/sl/LC_MESSAGES/gdm.mo -share/locale/sq/LC_MESSAGES/gdm.mo -share/locale/sr/LC_MESSAGES/gdm.mo -share/locale/sr@latin/LC_MESSAGES/gdm.mo -share/locale/sv/LC_MESSAGES/gdm.mo -share/locale/ta/LC_MESSAGES/gdm.mo -share/locale/te/LC_MESSAGES/gdm.mo -share/locale/th/LC_MESSAGES/gdm.mo -share/locale/tr/LC_MESSAGES/gdm.mo -share/locale/uk/LC_MESSAGES/gdm.mo -share/locale/uz/LC_MESSAGES/gdm.mo -share/locale/uz@cyrillic/LC_MESSAGES/gdm.mo -share/locale/vi/LC_MESSAGES/gdm.mo -share/locale/wa/LC_MESSAGES/gdm.mo -share/locale/xh/LC_MESSAGES/gdm.mo -share/locale/zh_CN/LC_MESSAGES/gdm.mo -share/locale/zh_HK/LC_MESSAGES/gdm.mo -share/locale/zh_TW/LC_MESSAGES/gdm.mo -share/locale/zu/LC_MESSAGES/gdm.mo -share/omf/gdm/gdm-C.omf -share/omf/gdm/gdm-de.omf -share/omf/gdm/gdm-en_GB.omf -share/omf/gdm/gdm-es.omf -share/omf/gdm/gdm-fr.omf -share/omf/gdm/gdm-it.omf -share/omf/gdm/gdm-ko.omf -share/omf/gdm/gdm-oc.omf -share/omf/gdm/gdm-ru.omf -share/omf/gdm/gdm-sv.omf -share/omf/gdm/gdm-uk.omf -share/pixmaps/faces/astronaut.jpg -share/pixmaps/faces/baseball.png -share/pixmaps/faces/butterfly.png -share/pixmaps/faces/cat-eye.jpg -share/pixmaps/faces/chess.jpg -share/pixmaps/faces/coffee.jpg -share/pixmaps/faces/dice.jpg -share/pixmaps/faces/energy-arc.jpg -share/pixmaps/faces/fish.jpg -share/pixmaps/faces/flake.jpg -share/pixmaps/faces/flower.jpg -share/pixmaps/faces/grapes.jpg -share/pixmaps/faces/guitar.jpg -share/pixmaps/faces/launch.jpg -share/pixmaps/faces/leaf.jpg -share/pixmaps/faces/lightning.jpg -share/pixmaps/faces/penguin.jpg -share/pixmaps/faces/puppy.jpg -share/pixmaps/faces/sky.jpg -share/pixmaps/faces/soccerball.png -share/pixmaps/faces/sunflower.jpg -share/pixmaps/faces/sunset.jpg -share/pixmaps/faces/tennis-ball.png -share/pixmaps/faces/yellow-rose.jpg -share/pixmaps/gdm-foot-logo.png -share/pixmaps/gdm-setup.png -share/pixmaps/gdm-xnest.png -share/pixmaps/gdm.png -share/pixmaps/nobody.png -share/pixmaps/nohost.png -@exec mkdir -p %D/share/xsessions -@dirrmtry share/xsessions -@dirrm share/pixmaps/faces -@dirrm share/omf/gdm -@dirrm share/gnome/help/gdm/uk -@dirrm share/gnome/help/gdm/sv -@dirrm share/gnome/help/gdm/ru -@dirrm share/gnome/help/gdm/oc -@dirrm share/gnome/help/gdm/ko -@dirrm share/gnome/help/gdm/it -@dirrm share/gnome/help/gdm/fr -@dirrm share/gnome/help/gdm/es -@dirrm share/gnome/help/gdm/en_GB -@dirrm share/gnome/help/gdm/de -@dirrm share/gnome/help/gdm/C -@dirrm share/gnome/help/gdm -@dirrm %%DATADIR%%/autostart/LoginWindow -@dirrm %%DATADIR%%/autostart -@dirrm %%DATADIR%% -@dirrm etc/gdm/Sessions -@dirrm etc/gdm/PreSession -@dirrm etc/gdm/PostSession -@dirrm etc/gdm/PostLogin -@dirrm etc/gdm/Init -@unexec rm -rf %D/etc/gdm/home/.gconf* -@dirrmtry etc/gdm/home -@dirrmtry etc/gdm -@dirrmtry etc/dm/Sessions -@dirrmtry etc/dm -@dirrmtry sbin -@dirrmtry share/log/gdm -@dirrmtry share/log -@unexec /bin/rm -rf /var/gdm 2>/dev/null || /usr/bin/true -@unexec /bin/rm -rf /var/log/gdm 2>/dev/null || /usr/bin/true -@unexec /bin/rm -rf /var/run/gdm 2>/dev/null || /usr/bin/true -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/uz/LC_MESSAGES -@dirrmtry share/locale/uz -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-applets/Makefile b/x11/gnome-applets/Makefile deleted file mode 100644 index 08bace224..000000000 --- a/x11/gnome-applets/Makefile +++ /dev/null @@ -1,103 +0,0 @@ -# New ports collection makefile for: gnomeapplets2 -# Date created: 26th May 2000 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-applets/Makefile,v 1.196 2009/03/02 13:37:00 kwm Exp $ -# - -PORTNAME= gnome-applets -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Applets components for the GNOME 2 Desktop Environment - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/system-tools-backends-2.0.pc:${PORTSDIR}/sysutils/system-tools-backends \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \ - gweather.1:${PORTSDIR}/net/libgweather \ - xklavier.12:${PORTSDIR}/x11/libxklavier \ - gucharmap.7:${PORTSDIR}/deskutils/gucharmap -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/system-tools-backends-2.0.pc:${PORTSDIR}/sysutils/system-tools-backends \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_LDCONFIG= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel gnomedocutils \ - libgnomekbd -WANT_GNOME= yes -USE_GSTREAMER= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gstreamer=0.10 \ - --enable-mixer-applet -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ - OS_SYS="/usr/include" - -GCONF_SCHEMAS= charpick.schemas drivemount.schemas geyes.schemas \ - mixer.schemas multiload.schemas stickynotes.schemas - -OPTIONS= MINI_COMMANDER "Enable mini-commander applet" off - -.if defined(PACKAGE_BUILDING) -.undef WITHOUT_GNOME -WITH_GNOME= yes -.endif - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/libdata/pkgconfig/libnotify.pc) || \ - !defined(WITHOUT_LIBNOTIFY) -LIB_DEPENDS+= notify:${PORTSDIR}/devel/libnotify -.endif - -.if ${ARCH} != "i386" && ${ARCH} != "amd64" -CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC" -PLIST_SUB= BATTERY="@comment " -.else -GCONF_SCHEMAS+= battstat.schemas -PLIST_SUB= BATTERY="" -.endif - -.if ${ARCH} != "i386" && ${ARCH} != "amd64" -PLIST_SUB+= CPUFREQ="@comment " -.else -PLIST_SUB+= CPUFREQ="" -GCONF_SCHEMAS+= cpufreq-applet.schemas -.endif - -.if defined(WITH_MINI_COMMANDER) -CONFIGURE_ARGS+= --enable-mini-commander -GCONF_SCHEMAS+= mini-commander-global.schemas mini-commander.schemas -PLIST_SUB+= COMMANDER="" -.else -PLIST_SUB+= COMMANDER="@comment " -.endif - -.if ( exists(${pygnomedesktop_DETECT}) ) || \ - ( ( ${HAVE_GNOME:Mpygnomedesktop}!="" ) && ${ARCH}!="sparc64" ) -USE_PYTHON= yes -.include "${PORTSDIR}/Mk/bsd.python.mk" -USE_GNOME+= pygnomedesktop -PLIST_SUB+= PYTHON="" -.else -PLIST_SUB+= PYTHON="@comment " -.endif - -post-patch: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|" == "|" = "|g' -.if !defined(USE_PYTHON) - @${REINPLACE_CMD} -e 's|HAVE_PYGTK="yes"|HAVE_PYGTK="no"|' \ - ${WRKSRC}/configure -.endif - -.include <bsd.port.post.mk> diff --git a/x11/gnome-applets/distinfo b/x11/gnome-applets/distinfo deleted file mode 100644 index 62fe9e66e..000000000 --- a/x11/gnome-applets/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-applets-2.26.0.tar.bz2) = eed64366b0a1f4032506ac7221ce898a -SHA256 (gnome2/gnome-applets-2.26.0.tar.bz2) = fec614c75bf26daab73489eae26021f358cfe371f0b70ea1d1ad32a5d6e1761e -SIZE (gnome2/gnome-applets-2.26.0.tar.bz2) = 8602310 diff --git a/x11/gnome-applets/files/patch-aa b/x11/gnome-applets/files/patch-aa deleted file mode 100644 index 8a9822d48..000000000 --- a/x11/gnome-applets/files/patch-aa +++ /dev/null @@ -1,95 +0,0 @@ ---- configure.orig 2008-12-20 14:46:11.000000000 -0500 -+++ configure 2008-12-20 14:54:57.000000000 -0500 -@@ -17150,7 +17150,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${datadir}/locale"` -+ ac_define_dir=`eval echo "${datadir}/locale"` - ac_define_dir=`eval echo $ac_define_dir` - GNOMELOCALEDIR="$ac_define_dir" - -@@ -19097,8 +19097,8 @@ fi - - ;; - # list of supported OS cores that do not use libapm -- i386-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) -- if -n "${OS_SYS}" ; then -+ i386-*-freebsd*|amd64-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) -+ if test -n "${OS_SYS}" ; then - ACPIINC="-I${OS_SYS}" - else - ACPIINC="-I/usr/src/sys" -@@ -20023,6 +20023,9 @@ if test x$disable_cpufreq = xno; then - *linux*) - build_cpufreq_applet=yes - ;; -+ i386-*-freebsd*|amd64-*-freebsd*) -+ build_cpufreq_applet=yes -+ ;; - *) - { echo "$as_me:$LINENO: WARNING: ${host} is not supported by cpufreq applet, not building" >&5 - echo "$as_me: WARNING: ${host} is not supported by cpufreq applet, not building" >&2;} -@@ -20591,7 +20594,7 @@ builderdir="${pkgdatadir}/builder" - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${iconsdir}"` -+ ac_define_dir=`eval echo "${iconsdir}"` - ac_define_dir=`eval echo $ac_define_dir` - GNOME_ICONDIR="$ac_define_dir" - -@@ -20604,7 +20607,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${pixmapsdir}"` -+ ac_define_dir=`eval echo "${pixmapsdir}"` - ac_define_dir=`eval echo $ac_define_dir` - GNOME_PIXMAPSDIR="$ac_define_dir" - -@@ -20617,7 +20620,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${builderdir}"` -+ ac_define_dir=`eval echo "${builderdir}"` - ac_define_dir=`eval echo $ac_define_dir` - GTK_BUILDERDIR="$ac_define_dir" - -@@ -20630,7 +20633,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${datadir}"` -+ ac_define_dir=`eval echo "${datadir}"` - ac_define_dir=`eval echo $ac_define_dir` - DATADIR="$ac_define_dir" - -@@ -20643,7 +20646,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${sysconfdir}"` -+ ac_define_dir=`eval echo "${sysconfdir}"` - ac_define_dir=`eval echo $ac_define_dir` - SYSCONFDIR="$ac_define_dir" - -@@ -20656,7 +20659,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${libdir}"` -+ ac_define_dir=`eval echo "${libdir}"` - ac_define_dir=`eval echo $ac_define_dir` - LIBDIR="$ac_define_dir" - -@@ -20669,7 +20672,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"$prefix"` -+ ac_define_dir=`eval echo "$prefix"` - ac_define_dir=`eval echo $ac_define_dir` - PREFIX="$ac_define_dir" - diff --git a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c deleted file mode 100644 index 48746fa03..000000000 --- a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c +++ /dev/null @@ -1,152 +0,0 @@ ---- battstat/acpi-freebsd.c.orig Sun Jul 3 16:41:26 2005 -+++ battstat/acpi-freebsd.c Sun Jul 3 16:49:55 2005 -@@ -31,9 +31,13 @@ - - #include <stdio.h> - #include <sys/types.h> -+#include <sys/socket.h> - #include <sys/sysctl.h> -+#include <sys/un.h> - #include <sys/ioctl.h> -+#if defined(__i386__) - #include <machine/apm_bios.h> -+#endif - #include <stdlib.h> - #include <errno.h> - #include <unistd.h> -@@ -92,16 +96,36 @@ gboolean - acpi_freebsd_init(struct acpi_info * acpiinfo) - { - int acpi_fd; -+ int event_fd; - - g_assert(acpiinfo); - -- acpi_fd = open(ACPIDEV, O_RDONLY); -- if (acpi_fd >= 0) { -- acpiinfo->acpifd = acpi_fd; -+ if (acpiinfo->acpifd == -1) { -+ acpi_fd = open(ACPIDEV, O_RDONLY); -+ if (acpi_fd >= 0) { -+ acpiinfo->acpifd = acpi_fd; -+ } -+ else { -+ acpiinfo->acpifd = -1; -+ return FALSE; -+ } - } -- else { -- acpiinfo->acpifd = -1; -- return FALSE; -+ -+ event_fd = socket(PF_UNIX, SOCK_STREAM, 0); -+ if (event_fd >= 0) { -+ struct sockaddr_un addr; -+ addr.sun_family = AF_UNIX; -+ strcpy(addr.sun_path, "/var/run/devd.pipe"); -+ if (connect(event_fd, (struct sockaddr *) &addr, sizeof(addr)) == 0) { -+ acpiinfo->event_fd = event_fd; -+ acpiinfo->event_inited = TRUE; -+ acpiinfo->channel = g_io_channel_unix_new(event_fd); -+ } -+ else { -+ close(event_fd); -+ acpiinfo->event_fd = -1; -+ acpiinfo->event_inited = FALSE; -+ } - } - - update_battery_info(acpiinfo); -@@ -110,6 +134,65 @@ acpi_freebsd_init(struct acpi_info * acp - return TRUE; - } - -+#define ACPI_EVENT_IGNORE 0 -+#define ACPI_EVENT_AC 1 -+#define ACPI_EVENT_BATTERY_INFO 2 -+ -+static int parse_acpi_event(GString *buffer) -+{ -+ if (strstr(buffer->str, "system=ACPI")) { -+ if (strstr(buffer->str, "subsystem=ACAD")) -+ return ACPI_EVENT_AC; -+ if (strstr(buffer->str, "subsystem=CMBAT")) -+ return ACPI_EVENT_BATTERY_INFO; -+ } -+ -+ return ACPI_EVENT_IGNORE; -+} -+ -+void acpi_freebsd_update(struct acpi_info *acpiinfo) -+{ -+ /* XXX This is needed for systems where devd does not have permissions -+ * to allow for event-driven updates. -+ */ -+ update_ac_info(acpiinfo); -+ update_battery_info(acpiinfo); -+} -+ -+gboolean acpi_process_event(struct acpi_info *acpiinfo, gboolean *read_error) -+{ -+ gsize i; -+ int evt; -+ gboolean result = FALSE; -+ GString *buffer; -+ GIOStatus stat; -+ buffer = g_string_new(NULL); -+ -+ *read_error = FALSE; -+ stat = g_io_channel_read_line_string(acpiinfo->channel, buffer, &i, NULL); -+ -+ if (stat == G_IO_STATUS_ERROR || stat == G_IO_STATUS_EOF) { -+ *read_error = TRUE; -+ g_string_free(buffer, TRUE); -+ return FALSE; -+ } -+ -+ evt = parse_acpi_event(buffer); -+ switch (evt) { -+ case ACPI_EVENT_AC: -+ update_ac_info(acpiinfo); -+ result = TRUE; -+ break; -+ case ACPI_EVENT_BATTERY_INFO: -+ update_battery_info(acpiinfo); -+ result = TRUE; -+ break; -+ } -+ -+ g_string_free(buffer, TRUE); -+ return result; -+} -+ - void - acpi_freebsd_cleanup(struct acpi_info * acpiinfo) - { -@@ -119,21 +202,12 @@ acpi_freebsd_cleanup(struct acpi_info * - close(acpiinfo->acpifd); - acpiinfo->acpifd = -1; - } --} - --/* XXX This is a hack since user-land applications can't get ACPI events yet. -- * Devd provides this (or supposedly provides this), but you need to be -- * root to access devd. -- */ --gboolean --acpi_process_event(struct acpi_info * acpiinfo) --{ -- g_assert(acpiinfo); -- -- update_ac_info(acpiinfo); -- update_battery_info(acpiinfo); -- -- return TRUE; -+ if (acpiinfo->event_fd >= 0) { -+ g_io_channel_unref(acpiinfo->channel); -+ close(acpiinfo->event_fd); -+ acpiinfo->event_fd = -1; -+ } - } - - gboolean diff --git a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h deleted file mode 100644 index 918cd59eb..000000000 --- a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h +++ /dev/null @@ -1,78 +0,0 @@ ---- battstat/acpi-freebsd.h.orig Sun Jul 3 16:50:22 2005 -+++ battstat/acpi-freebsd.h Sun Jul 3 16:54:14 2005 -@@ -29,61 +29,31 @@ - #define ACPI_LIFE "hw.acpi.battery.life" - #define ACPI_STATE "hw.acpi.battery.state" - --struct acpi_info { -- gboolean ac_online; -- int acpifd; -- int max_capacity; -- int low_capacity; -- int critical_capacity; -+/* XXX: AMD64 does not have machine/apm_bios.h. */ -+#if !defined(__i386__) -+struct apm_info { -+ guint ai_acline; -+ guint ai_batt_stat; -+ guint ai_batt_life; -+ int ai_batt_time; -+ guint ai_status; - }; -- --gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info * acpiinfo); --gboolean acpi_process_event(struct acpi_info * acpiinfo); --gboolean acpi_freebsd_init(struct acpi_info * acpiinfo); --void acpi_freebsd_cleanup(struct acpi_info * acpiinfo); -- --#endif /* __ACPI_FREEBSD_H__ */ --/* -- * Copyright (C) 2004 by Joe Marcus Clarke <marcus@FreeBSD.org> -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License -- * along with this program; if not, write to the Free Software -- * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. -- */ -- --#ifndef __ACPI_FREEBSD_H__ --#define __ACPI_FREEBSD_H__ -- --#define ACPIDEV "/dev/acpi" -- --#define BATT_MIN 0 --#define BATT_MAX 64 -- --#define ACPI_ACLINE "hw.acpi.acline" --#define ACPI_TIME "hw.acpi.battery.time" --#define ACPI_LIFE "hw.acpi.battery.life" --#define ACPI_STATE "hw.acpi.battery.state" -+#endif - - struct acpi_info { - gboolean ac_online; -+ gboolean event_inited; - int acpifd; -+ int event_fd; - int max_capacity; - int low_capacity; - int critical_capacity; -+ GIOChannel * channel; - }; - - gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info * acpiinfo); --gboolean acpi_process_event(struct acpi_info * acpiinfo); -+void acpi_freebsd_update(struct acpi_info * acpiinfo); -+gboolean acpi_process_event(struct acpi_info * acpiinfo, gboolean *read_error); - gboolean acpi_freebsd_init(struct acpi_info * acpiinfo); - void acpi_freebsd_cleanup(struct acpi_info * acpiinfo); - diff --git a/x11/gnome-applets/files/patch-battstat_battstat_applet.c b/x11/gnome-applets/files/patch-battstat_battstat_applet.c deleted file mode 100644 index a95b7b569..000000000 --- a/x11/gnome-applets/files/patch-battstat_battstat_applet.c +++ /dev/null @@ -1,21 +0,0 @@ ---- battstat/battstat_applet.c.orig Fri Aug 19 22:13:49 2005 -+++ battstat/battstat_applet.c Tue Aug 23 20:37:13 2005 -@@ -430,14 +430,14 @@ battery_full_notify (GtkWidget *applet) - static void - battery_full_dialog (GtkWidget *applet) - { -- /* first attempt to use libnotify */ -- if (battery_full_notify (applet)) -- return; -- - GtkWidget *dialog, *hbox, *image, *label; - GdkPixbuf *pixbuf; - - gchar *new_label; -+ /* first attempt to use libnotify */ -+ if (battery_full_notify (applet)) -+ return; -+ - dialog = gtk_dialog_new_with_buttons ( - _("Battery Notice"), - NULL, diff --git a/x11/gnome-applets/files/patch-battstat_power-management.c b/x11/gnome-applets/files/patch-battstat_power-management.c deleted file mode 100644 index 9cea2d65b..000000000 --- a/x11/gnome-applets/files/patch-battstat_power-management.c +++ /dev/null @@ -1,123 +0,0 @@ ---- battstat/power-management.c.orig Thu Aug 25 23:45:47 2005 -+++ battstat/power-management.c Tue Aug 30 01:28:40 2005 -@@ -61,9 +61,7 @@ - - static const char *apm_readinfo (BatteryStatus *status); - static int pm_initialised; --#ifdef HAVE_HAL --static int using_hal; --#endif -+static int using_hal = FALSE; - - /* - * What follows is a series of platform-specific apm_readinfo functions -@@ -173,16 +171,40 @@ apm_readinfo (BatteryStatus *status) - - #elif __FreeBSD__ - -+#if defined(__i386__) - #include <machine/apm_bios.h> -+#endif - #include "acpi-freebsd.h" - - static struct acpi_info acpiinfo; - static gboolean using_acpi; - static int acpi_count; -+static int acpiwatch; - static struct apm_info apminfo; - -+gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info *acpiinfo); -+ - #define APMDEVICE "/dev/apm" - -+static gboolean acpi_callback (GIOChannel * chan, GIOCondition cond, gpointer data) -+{ -+ gboolean read_error; -+ if (cond & (G_IO_ERR | G_IO_HUP)) { -+ acpi_freebsd_cleanup(&acpiinfo); -+ return FALSE; -+ } -+ -+ if (acpi_process_event(&acpiinfo, &read_error)) { -+ acpi_freebsd_read(&apminfo, &acpiinfo); -+ } -+ else if (read_error) { -+ acpi_freebsd_cleanup(&acpiinfo); -+ return FALSE; -+ } -+ -+ return TRUE; -+} -+ - static const char * - apm_readinfo (BatteryStatus *status) - { -@@ -190,21 +212,27 @@ apm_readinfo (BatteryStatus *status) - - if (DEBUG) g_print("apm_readinfo() (FreeBSD)\n"); - -- if (using_acpi) { -+ if (using_acpi && (!acpiinfo.event_inited || acpiinfo.event_fd >= 0)) { - if (acpi_count <= 0) { - acpi_count = 30; -- acpi_process_event(&acpiinfo); -+ if (!acpiinfo.event_inited) { -+ acpi_freebsd_update(&acpiinfo); -+ } - if (acpi_freebsd_read(&apminfo, &acpiinfo) == FALSE) - return ERR_FREEBSD_ACPI; - } - acpi_count--; - } -- else -- { -- /* This is how I read the information from the APM subsystem under -- FreeBSD. Each time this functions is called (once every second) -- the APM device is opened, read from and then closed. -- */ -+ else if (using_acpi && acpiinfo.event_inited) { -+ if (acpi_freebsd_init(&acpiinfo)) { -+ acpiwatch = g_io_add_watch (acpiinfo.channel, -+ G_IO_IN | G_IO_ERR | G_IO_HUP, -+ acpi_callback, NULL); -+ acpi_freebsd_read(&apminfo, &acpiinfo); -+ } -+ } -+ else { -+#if defined(__i386__) - fd = open(APMDEVICE, O_RDONLY); - if (fd == -1) { - return ERR_OPEN_APMDEV; -@@ -217,6 +245,9 @@ apm_readinfo (BatteryStatus *status) - - if(apminfo.ai_status == 0) - return ERR_APM_E; -+#else -+ return ERR_OPEN_APMDEV; -+#endif - } - - status->present = TRUE; -@@ -480,6 +511,12 @@ power_management_initialise( int no_hal - } - else - using_acpi = FALSE; -+ -+ if (using_acpi && acpiinfo.event_fd >= 0) { -+ acpiwatch = g_io_add_watch (acpiinfo.channel, -+ G_IO_IN | G_IO_ERR | G_IO_HUP, -+ acpi_callback, NULL); -+ } - #endif - pm_initialised = 1; - -@@ -513,6 +550,9 @@ power_management_cleanup( void ) - } - #elif defined(__FreeBSD__) - if (using_acpi) { -+ if (acpiwatch != 0) -+ g_source_remove(acpiwatch); -+ acpiwatch = 0; - acpi_freebsd_cleanup(&acpiinfo); - } - #endif diff --git a/x11/gnome-applets/files/patch-cpufreq-freebsd b/x11/gnome-applets/files/patch-cpufreq-freebsd deleted file mode 100644 index a597e6725..000000000 --- a/x11/gnome-applets/files/patch-cpufreq-freebsd +++ /dev/null @@ -1,436 +0,0 @@ ---- cpufreq/src/cpufreq-monitor-cpuinfo.c.orig Thu Jun 15 01:01:54 2006 -+++ cpufreq/src/cpufreq-monitor-cpuinfo.c Sat Jun 17 13:48:19 2006 -@@ -22,6 +22,10 @@ - #include <glib.h> - #include <glib/gi18n.h> - -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#endif /* __FreeBSD__ */ - #include <string.h> - #include <stdio.h> - -@@ -59,15 +63,20 @@ cpufreq_monitor_cpuinfo_new (guint cpu) - static gboolean - cpufreq_monitor_cpuinfo_run (CPUFreqMonitor *monitor) - { -+#ifndef __FreeBSD__ - gchar *file; - gchar **lines; - gchar *buffer = NULL; - gchar *p; -+#else -+ size_t len; -+#endif /* __FreeBSD__ */ - gint cpu, i; - gint cur_freq, max_freq; - gchar *governor; - GError *error = NULL; - -+#ifndef __FreeBSD__ - file = g_strdup ("/proc/cpuinfo"); - if (!g_file_get_contents (file, &buffer, NULL, &error)) { - g_warning (error->message); -@@ -112,6 +121,12 @@ cpufreq_monitor_cpuinfo_run (CPUFreqMoni - - g_strfreev (lines); - g_free (buffer); -+#else -+ len = sizeof (cpu); -+ -+ if (sysctlbyname ("hw.clockrate", &cpu, &len, NULL, 0) == -1) -+ return FALSE; -+#endif /* __FreeBSD__ */ - - governor = g_strdup (_("Frequency Scaling Unsupported")); - cur_freq = cpu * 1000; ---- cpufreq/src/cpufreq-applet.c.orig Thu Jun 15 01:01:53 2006 -+++ cpufreq/src/cpufreq-applet.c Sat Jun 17 13:42:50 2006 -@@ -17,6 +17,7 @@ - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * Authors : Carlos García Campos <carlosgc@gnome.org> -+ * Joe Marcus Clarke <marcus@FreeBSD.org> - */ - - #ifdef HAVE_CONFIG_H -@@ -519,6 +524,7 @@ cpufreq_applet_about_cb (BonoboUICompone - { - static const gchar *const authors[] = { - "Carlos Garcia Campos <carlosgc@gnome.org>", -+ "Joe Marcus Clarke <marcus@FreeBSD.org> (FreeBSD support)", - NULL - }; - static const gchar *const documenters[] = { ---- cpufreq/src/cpufreq-monitor-sysctl.h.orig Sat Jun 17 14:05:37 2006 -+++ cpufreq/src/cpufreq-monitor-sysctl.h Sat Jun 17 14:14:13 2006 -@@ -0,0 +1,49 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#ifndef __CPUFREQ_MONITOR_SYSCTL_H__ -+#define __CPUFREQ_MONITOR_SYSCTL_H__ -+ -+#include <glib-object.h> -+ -+#include "cpufreq-monitor.h" -+ -+#define TYPE_CPUFREQ_MONITOR_SYSCTL (cpufreq_monitor_sysctl_get_type ()) -+#define CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctl)) -+#define CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) -+#define IS_CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL)) -+#define IS_CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_CPUFREQ_MONITOR_SYSCTL)) -+#define CPUFREQ_MONITOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) -+ -+typedef struct _CPUFreqMonitorSysctl CPUFreqMonitorSysctl; -+typedef struct _CPUFreqMonitorSysctlClass CPUFreqMonitorSysctlClass; -+ -+struct _CPUFreqMonitorSysctl { -+ CPUFreqMonitor parent; -+}; -+ -+struct _CPUFreqMonitorSysctlClass { -+ CPUFreqMonitorClass parent_class; -+}; -+ -+GType cpufreq_monitor_sysctl_get_type (void) G_GNUC_CONST; -+CPUFreqMonitor *cpufreq_monitor_sysctl_new (guint cpu); -+ -+#endif /* __CPUFREQ_MONITOR_SYSCTL_H__ */ ---- cpufreq/src/cpufreq-monitor-factory.c.orig Sat Jun 17 06:28:02 2006 -+++ cpufreq/src/cpufreq-monitor-factory.c Sat Jun 24 01:45:54 2006 -@@ -17,6 +17,7 @@ - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * Authors : Carlos García Campos <carlosgc@gnome.org> -+ * Joe Marcus Clarke <marcus@FreeBSD.org> - */ - - #ifdef HAVE_CONFIG_H -@@ -25,11 +26,18 @@ - - #include <glib.h> - #include <glib/gi18n.h> -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#endif /* __FreeBSD__ */ - - #include "cpufreq-applet.h" - #include "cpufreq-utils.h" - #include "cpufreq-monitor-sysfs.h" - #include "cpufreq-monitor-procfs.h" -+#ifdef __FreeBSD__ -+#include "cpufreq-monitor-sysctl.h" -+#endif /* __FreeBSD__ */ - #include "cpufreq-monitor-cpuinfo.h" - #ifdef HAVE_LIBCPUFREQ - #include "cpufreq-monitor-libcpufreq.h" -@@ -40,6 +48,7 @@ CPUFreqMonitor * - cpufreq_monitor_factory_create_monitor (guint cpu) - { - CPUFreqMonitor *monitor = NULL; -+#ifndef __FreeBSD__ - - #ifdef HAVE_LIBCPUFREQ - monitor = cpufreq_monitor_libcpufreq_new (cpu); -@@ -63,6 +72,19 @@ cpufreq_monitor_factory_create_monitor ( - - monitor = cpufreq_monitor_cpuinfo_new (cpu); - } -+#else -+ size_t len; -+ -+ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) { -+ monitor = cpufreq_monitor_sysctl_new (cpu); -+ } else { -+ cpufreq_utils_display_error (_("CPU frequency scaling unsupported"), -+ _("You will not be able to modify the frequency of your machine. " -+ "Your machine may be misconfigured or not have hardware support " -+ "for CPU frequency scaling.")); -+ monitor = cpufreq_monitor_cpuinfo_new (cpu); -+ } -+#endif /* __FreeBSD__ */ - - return monitor; - } ---- cpufreq/src/cpufreq-utils.c.orig Sat Aug 12 21:26:50 2006 -+++ cpufreq/src/cpufreq-utils.c Tue Aug 22 11:07:32 2006 -@@ -22,6 +22,9 @@ - #include <glib.h> - #include <gtk/gtkmessagedialog.h> - #include <sys/types.h> -+#ifdef __FreeBSD__ -+#include <sys/sysctl.h> -+#endif - #include <sys/stat.h> - #include <fcntl.h> - #include <unistd.h> -@@ -30,6 +33,24 @@ - - #include "cpufreq-utils.h" - -+#ifdef __FreeBSD__ -+guint -+cpufreq_utils_get_n_cpus (void) -+{ -+ size_t len; -+ static guint n_cpus = 0; -+ -+ if (n_cpus > 0) -+ return n_cpus; -+ -+ len = sizeof (n_cpus); -+ if (sysctlbyname ("hw.ncpu", &n_cpus, &len, NULL, 0) == -1) { -+ return 1; -+ } -+ -+ return n_cpus; -+} -+#else - guint - cpufreq_utils_get_n_cpus (void) - { -@@ -72,6 +93,7 @@ cpufreq_utils_get_n_cpus (void) - - return 1; - } -+#endif /* __FreeBSD__ */ - - void - cpufreq_utils_display_error (const gchar *message, ---- cpufreq/src/cpufreq-monitor-sysctl.c.orig Wed Feb 28 14:03:58 2007 -+++ cpufreq/src/cpufreq-monitor-sysctl.c Wed Feb 28 14:28:47 2007 -@@ -0,0 +1,176 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#include <glib.h> -+#include <glib/gi18n.h> -+ -+#include <string.h> -+ -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+ -+#include "cpufreq-monitor-sysctl.h" -+ -+#define PARENT_TYPE TYPE_CPUFREQ_MONITOR -+ -+#define CPUFREQ_MONITOR_GET_PROTECTED(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), PARENT_TYPE, CPUFreqMonitorProtected)) -+ -+static void cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass); -+ -+static gboolean cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor); -+static GList *cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor); -+static GList *cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor); -+ -+static gboolean cpufreq_monitor_sysctl_get (gpointer gdata); -+ -+G_DEFINE_TYPE (CPUFreqMonitorSysctl, cpufreq_monitor_sysctl, CPUFREQ_TYPE_MONITOR) -+ -+static void -+cpufreq_monitor_sysctl_init (CPUFreqMonitorSysctl *monitor) -+{ -+} -+ -+static void -+cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass) -+{ -+ CPUFreqMonitorClass *monitor_class = CPUFREQ_MONITOR_CLASS (klass); -+ -+ monitor_class->run = cpufreq_monitor_sysctl_run; -+ monitor_class->get_available_frequencies = cpufreq_monitor_sysctl_get_available_frequencies; -+ monitor_class->get_available_governors = cpufreq_monitor_sysctl_get_available_governors; -+} -+ -+CPUFreqMonitor * -+cpufreq_monitor_sysctl_new (guint cpu) -+{ -+ CPUFreqMonitorSysctl *monitor; -+ -+ monitor = g_object_new (TYPE_CPUFREQ_MONITOR_SYSCTL, "cpu", cpu, NULL); -+ -+ return CPUFREQ_MONITOR (monitor); -+} -+ -+static gboolean -+cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor) -+{ -+ gint fmax, fmin, ifreq; -+ gchar *governor; -+ size_t len; -+ gchar *freq_oid; -+ guint mon_cpu; -+ GList *list; -+ -+ list = cpufreq_monitor_sysctl_get_available_frequencies (CPUFREQ_MONITOR (monitor)); -+ -+ fmax = atoi ((gchar *) list->data); -+ fmin = atoi ((gchar *) g_list_nth_data (list, (g_list_length (list) - 1))); -+ -+ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); -+ len = sizeof (ifreq); -+ freq_oid = g_strdup_printf ("dev.cpu.%d.freq", 0); -+ -+ if (sysctlbyname (freq_oid, &ifreq, &len, NULL, 0) == -1) { -+ g_free (freq_oid); -+ return FALSE; -+ } -+ -+ ifreq *= 1000; -+ -+ if (ifreq == fmax) -+ governor = g_strdup ("performance"); -+ else if (ifreq == fmin) -+ governor = g_strdup ("economy"); -+ else -+ governor = g_strdup ("userspace"); -+ -+ g_object_set (G_OBJECT (monitor), -+ "online", TRUE, -+ "governor", governor, -+ "frequency", ifreq, -+ "max-frequency", fmax, -+ NULL); -+ -+ return TRUE; -+} -+ -+static GList * -+cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor) -+{ -+ gchar *levels_oid, *levels; -+ gchar **levelsp, **l; -+ GList *list = NULL; -+ gint mib[4]; -+ guint mon_cpu; -+ size_t len; -+ -+ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); -+ -+ levels_oid = g_strdup_printf ("dev.cpu.%d.freq_levels", -+ 0); -+ len = 4; -+ sysctlnametomib (levels_oid, mib, &len); -+ len = sizeof (levels); -+ g_free (levels_oid); -+ -+ if (sysctl (mib, 4, NULL, &len, NULL, 0) == -1) -+ return NULL; -+ -+ levels = g_malloc (len); -+ if (sysctl (mib, 4, levels, &len, NULL, 0) == -1) -+ return NULL; -+ -+ levelsp = g_strsplit (levels, " ", 0); -+ g_free (levels); -+ -+ for (l = levelsp; l && *l; l++) { -+ gchar **frpr; -+ -+ frpr = g_strsplit (*l, "/", 0); -+ if (frpr && frpr[0] != NULL) { -+ /* sysctl format is %d/%d where the -+ * first %d is the frequency, and -+ * the second is the power used in -+ * mW. -+ */ -+ int freq = atoi (frpr[0]); -+ list = -+ g_list_append (list, g_strdup_printf ("%d", freq * 1000)); -+ } -+ g_strfreev (frpr); -+ } -+ -+ g_strfreev (levelsp); -+ -+ return (list); -+} -+ -+static GList * -+cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor) -+{ -+ GList *list = NULL; -+ -+ list = g_list_prepend (list, g_strdup ("performance")); -+ list = g_list_prepend (list, g_strdup ("userspace")); -+ list = g_list_prepend (list, g_strdup ("economy")); -+ -+ return list; -+} -+#endif /* __FreeBSD__ */ ---- cpufreq/src/Makefile.in.orig 2007-07-30 21:06:58.000000000 -0400 -+++ cpufreq/src/Makefile.in 2007-07-30 21:06:58.000000000 -0400 -@@ -61,7 +61,8 @@ am__cpufreq_applet_SOURCES_DIST = cpufre - cpufreq-monitor-procfs.h cpufreq-monitor-sysfs.c \ - cpufreq-monitor-sysfs.h cpufreq-monitor-libcpufreq.c \ - cpufreq-monitor-libcpufreq.h cpufreq-monitor-cpuinfo.c \ -- cpufreq-monitor-cpuinfo.h -+ cpufreq-monitor-cpuinfo.h cpufreq-monitor-sysctl.c \ -+ cpufreq-monitor-sysctl.h - @HAVE_LIBCPUFREQ_TRUE@am__objects_1 = \ - @HAVE_LIBCPUFREQ_TRUE@ cpufreq-monitor-libcpufreq.$(OBJEXT) - am_cpufreq_applet_OBJECTS = cpufreq-applet.$(OBJEXT) \ -@@ -70,7 +71,8 @@ am_cpufreq_applet_OBJECTS = cpufreq-appl - cpufreq-monitor-factory.$(OBJEXT) \ - cpufreq-monitor-procfs.$(OBJEXT) \ - cpufreq-monitor-sysfs.$(OBJEXT) $(am__objects_1) \ -- cpufreq-monitor-cpuinfo.$(OBJEXT) -+ cpufreq-monitor-cpuinfo.$(OBJEXT) \ -+ cpufreq-monitor-sysctl.$(OBJEXT) - cpufreq_applet_OBJECTS = $(am_cpufreq_applet_OBJECTS) - am__DEPENDENCIES_1 = - cpufreq_applet_DEPENDENCIES = $(am__DEPENDENCIES_1) \ -@@ -402,6 +404,7 @@ cpufreq_applet_SOURCES = \ - cpufreq-monitor.c cpufreq-monitor.h \ - cpufreq-monitor-factory.c cpufreq-monitor-factory.h \ - cpufreq-monitor-procfs.c cpufreq-monitor-procfs.h \ -+ cpufreq-monitor-sysctl.c cpufreq-monitor-sysctl.h \ - cpufreq-monitor-sysfs.c cpufreq-monitor-sysfs.h \ - $(cpufreq_files) \ - cpufreq-monitor-cpuinfo.c cpufreq-monitor-cpuinfo.h -@@ -487,6 +490,7 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-factory.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-libcpufreq.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-procfs.Po@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-sysctl.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-sysfs.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-popup.Po@am__quote@ diff --git a/x11/gnome-applets/files/patch-cpufreq-selector-freebsd b/x11/gnome-applets/files/patch-cpufreq-selector-freebsd deleted file mode 100644 index 5cca16dd4..000000000 --- a/x11/gnome-applets/files/patch-cpufreq-selector-freebsd +++ /dev/null @@ -1,218 +0,0 @@ ---- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h.orig Sat Jun 24 01:52:35 2006 -+++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h Sat Jun 24 02:13:05 2006 -@@ -0,0 +1,53 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#ifndef __CPUFREQ_SELECTOR_SYSCTL_H__ -+#define __CPUFREQ_SELECTOR_SYSCTL_H__ -+ -+#include <glib-object.h> -+ -+#include "cpufreq-selector.h" -+ -+G_BEGIN_DECLS -+ -+#define CPUFREQ_TYPE_SELECTOR_SYSCTL (cpufreq_selector_sysctl_get_type ()) -+#define CPUFREQ_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfs)) -+#define CPUFREQ_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass)) -+#define CPUFREQ_IS_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL)) -+#define CPUFREQ_IS_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL)) -+#define CPUFREQ_SELECTOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass)) -+ -+typedef struct _CPUFreqSelectorSysctl CPUFreqSelectorSysctl; -+typedef struct _CPUFreqSelectorSysctlClass CPUFreqSelectorSysctlClass; -+ -+struct _CPUFreqSelectorSysctl { -+ CPUFreqSelector parent; -+}; -+ -+struct _CPUFreqSelectorSysctlClass { -+ CPUFreqSelectorClass parent_class; -+}; -+ -+GType cpufreq_selector_sysctl_get_type (void) G_GNUC_CONST; -+CPUFreqSelector *cpufreq_selector_sysctl_new (guint cpu); -+ -+G_END_DECLS -+ -+#endif /* __CPUFREQ_SELECTOR_SYSCTL_H__ */ ---- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c.orig Wed Jul 26 01:34:18 2006 -+++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c Wed Jul 26 01:42:00 2006 -@@ -0,0 +1,87 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#include <glib.h> -+#include <stdio.h> -+#include <stdlib.h> -+ -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#endif /* __FreeBSD__ */ -+ -+#include "cpufreq-selector-sysctl.h" -+ -+static void cpufreq_selector_sysctl_init (CPUFreqSelectorSysctl *selector); -+static void cpufreq_selector_sysctl_class_init (CPUFreqSelectorSysctlClass *klass); -+ -+static gboolean cpufreq_selector_sysctl_set_frequency (CPUFreqSelector *selector, guint frequency, GError **error); -+static gboolean cpufreq_selector_sysctl_set_governor (CPUFreqSelector *selector, const gchar *governor, GError **error); -+ -+G_DEFINE_TYPE (CPUFreqSelectorSysctl, cpufreq_selector_sysctl, CPUFREQ_TYPE_SELECTOR) -+ -+static void -+cpufreq_selector_sysctl_init (CPUFreqSelectorSysctl *selector) -+{ -+} -+ -+static void -+cpufreq_selector_sysctl_class_init (CPUFreqSelectorSysctlClass *klass) -+{ -+ CPUFreqSelectorClass *selector_class = CPUFREQ_SELECTOR_CLASS (klass); -+ -+ selector_class->set_frequency = cpufreq_selector_sysctl_set_frequency; -+ selector_class->set_governor = cpufreq_selector_sysctl_set_governor; -+} -+ -+CPUFreqSelector * -+cpufreq_selector_sysctl_new (guint cpu) -+{ -+ CPUFreqSelector *selector; -+ -+ selector = CPUFREQ_SELECTOR (g_object_new (CPUFREQ_TYPE_SELECTOR_SYSCTL, -+ "cpu", cpu, NULL)); -+ -+ return selector; -+} -+ -+static gboolean -+cpufreq_selector_sysctl_set_governor (CPUFreqSelector *selector, const gchar *governor, GError **error) -+{ -+ return TRUE; -+} -+ -+static gboolean -+cpufreq_selector_sysctl_set_frequency (CPUFreqSelector *selector, guint frequency, GError **error) -+{ -+ guint cpu, i; -+ size_t len; -+ gchar *freq_oid; -+ -+ g_object_get (G_OBJECT (selector), "cpu", &cpu, NULL); -+ -+ frequency = (guint) ((gdouble) frequency / 1000); /* Convert back to MHz*/ -+ freq_oid = g_strdup_printf ("dev.cpu.%d.freq", (gint) 0); -+ -+ sysctlbyname (freq_oid, NULL, &len, &frequency, sizeof (frequency)); -+ g_free (freq_oid); -+ -+ return TRUE; -+} ---- cpufreq/src/cpufreq-selector/cpufreq-selector-factory.c.orig 2008-06-16 14:33:25.000000000 -0400 -+++ cpufreq/src/cpufreq-selector/cpufreq-selector-factory.c 2008-06-16 14:35:28.000000000 -0400 -@@ -27,20 +27,32 @@ - #ifdef HAVE_LIBCPUFREQ - #include "cpufreq-selector-libcpufreq.h" - #endif -+#ifdef __FreeBSD__ -+#include "cpufreq-selector-sysctl.h" -+#endif /* __FreeBSD__ */ - - CPUFreqSelector * - cpufreq_selector_factory_create_selector (guint cpu) - { - CPUFreqSelector *selector = NULL; -+#ifdef __FreeBSD__ -+ size_t len; -+#endif - - #ifdef HAVE_LIBCPUFREQ - selector = cpufreq_selector_libcpufreq_new (cpu); - #else -+#ifndef __FreeBSD__ - if (g_file_test ("/sys/devices/system/cpu/cpu0/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.6 kernel */ - selector = cpufreq_selector_sysfs_new (cpu); - } else if (g_file_test ("/proc/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.4 kernel */ - selector = cpufreq_selector_procfs_new (cpu); - } -+#else -+ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) { -+ selector = cpufreq_selector_sysctl_new (cpu); -+ } -+#endif /* __FreeBSD__ */ - #endif /* HAVE_LIBCPUFREQ */ - - return selector; ---- cpufreq/src/cpufreq-selector/Makefile.in.orig 2008-06-16 14:26:07.000000000 -0400 -+++ cpufreq/src/cpufreq-selector/Makefile.in 2008-06-16 14:38:15.000000000 -0400 -@@ -65,7 +65,7 @@ am__cpufreq_selector_SOURCES_DIST = cpuf - cpufreq-selector-libcpufreq.h cpufreq-selector-service.c \ - cpufreq-selector-service.h cpufreq-selector-factory.c \ - cpufreq-selector-factory.h cpufreq-selector-service-glue.h \ -- main.c -+ main.c cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h - @HAVE_LIBCPUFREQ_TRUE@am__objects_1 = \ - @HAVE_LIBCPUFREQ_TRUE@ cpufreq-selector-libcpufreq.$(OBJEXT) - @HAVE_POLKIT_TRUE@am__objects_2 = cpufreq-selector-service.$(OBJEXT) -@@ -74,7 +74,8 @@ am_cpufreq_selector_OBJECTS = cpufreq-se - cpufreq-selector-sysfs.$(OBJEXT) \ - cpufreq-selector-procfs.$(OBJEXT) $(am__objects_1) \ - $(am__objects_2) cpufreq-selector-factory.$(OBJEXT) \ -- $(am__objects_3) main.$(OBJEXT) -+ $(am__objects_3) main.$(OBJEXT) \ -+ cpufreq-selector-sysctl.$(OBJEXT) - cpufreq_selector_OBJECTS = $(am_cpufreq_selector_OBJECTS) - am__DEPENDENCIES_1 = - @HAVE_POLKIT_TRUE@am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) \ -@@ -371,6 +372,7 @@ cpufreq_selector_SOURCES = \ - cpufreq-selector.c cpufreq-selector.h \ - cpufreq-selector-sysfs.c cpufreq-selector-sysfs.h \ - cpufreq-selector-procfs.c cpufreq-selector-procfs.h \ -+ cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h \ - $(cpufreq_files) \ - $(service_files) \ - cpufreq-selector-factory.c cpufreq-selector-factory.h \ -@@ -480,6 +482,7 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-procfs.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-service.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-sysfs.Po@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-sysctl.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ - diff --git a/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py b/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py deleted file mode 100644 index 7ddb583de..000000000 --- a/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py +++ /dev/null @@ -1,13 +0,0 @@ ---- invest-applet/invest/invest-applet.py.orig 2008-03-15 19:39:32.000000000 -0400 -+++ invest-applet/invest/invest-applet.py 2008-04-28 13:27:46.000000000 -0400 -@@ -26,8 +26,8 @@ import invest, invest.applet, invest.def - import gettext, locale - gettext.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) - gettext.textdomain(invest.defs.GETTEXT_PACKAGE) --locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) --locale.textdomain(invest.defs.GETTEXT_PACKAGE) -+#locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) -+#locale.textdomain(invest.defs.GETTEXT_PACKAGE) - - from gettext import gettext as _ - diff --git a/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart b/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart deleted file mode 100644 index aa763c16c..000000000 --- a/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart +++ /dev/null @@ -1,13 +0,0 @@ ---- invest-applet/invest/invest-chart.orig 2008-03-15 16:34:50.000000000 -0400 -+++ invest-applet/invest/invest-chart 2008-04-28 13:29:13.000000000 -0400 -@@ -6,8 +6,8 @@ import sys, invest.chart, gtk - import gettext, locale - gettext.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) - gettext.textdomain(invest.defs.GETTEXT_PACKAGE) --locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) --locale.textdomain(invest.defs.GETTEXT_PACKAGE) -+#locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) -+#locale.textdomain(invest.defs.GETTEXT_PACKAGE) - - if __name__ == "__main__": - win = invest.chart.show_chart(sys.argv[1:]) diff --git a/x11/gnome-applets/pkg-descr b/x11/gnome-applets/pkg-descr deleted file mode 100644 index 5f715cf9a..000000000 --- a/x11/gnome-applets/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Panel applets for the Gnome 2.0 Desktop Environment. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-applets/pkg-plist b/x11/gnome-applets/pkg-plist deleted file mode 100644 index 2a93c03d1..000000000 --- a/x11/gnome-applets/pkg-plist +++ /dev/null @@ -1,2312 +0,0 @@ -%%CPUFREQ%%bin/cpufreq-selector -%%PYTHON%%bin/invest-chart -%%CPUFREQ%%etc/dbus-1/system.d/org.gnome.CPUFreqSelector.conf -%%BATTERY%%etc/sound/events/battstat_applet.soundlist -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.pyo -libdata/bonobo/servers/GNOME_AccessxStatusApplet.server -%%BATTERY%%libdata/bonobo/servers/GNOME_BattstatApplet.server -libdata/bonobo/servers/GNOME_CDPlayerApplet.server -%%CPUFREQ%%libdata/bonobo/servers/GNOME_CPUFreqApplet.server -libdata/bonobo/servers/GNOME_CharpickerApplet.server -libdata/bonobo/servers/GNOME_DriveMountApplet.server -libdata/bonobo/servers/GNOME_GWeatherApplet_Factory.server -libdata/bonobo/servers/GNOME_GeyesApplet.server -%%PYTHON%%libdata/bonobo/servers/GNOME_GtikApplet.server -libdata/bonobo/servers/GNOME_KeyboardApplet.server -libdata/bonobo/servers/GNOME_MailcheckApplet_Factory.server -libdata/bonobo/servers/GNOME_MiniCommanderApplet.server -libdata/bonobo/servers/GNOME_MixerApplet.server -libdata/bonobo/servers/GNOME_MultiLoadApplet_Factory.server -libdata/bonobo/servers/GNOME_NullApplet_Factory.server -libdata/bonobo/servers/GNOME_Panel_TrashApplet.server -libdata/bonobo/servers/GNOME_Panel_WirelessApplet.server -libdata/bonobo/servers/GNOME_StickyNotesApplet.server -%%PYTHON%%libdata/bonobo/servers/Invest_Applet.server -libexec/accessx-status-applet -%%BATTERY%%libexec/battstat-applet-2 -libexec/charpick_applet2 -%%CPUFREQ%%libexec/cpufreq-applet -libexec/drivemount_applet2 -libexec/geyes_applet2 -%%COMMANDER%%libexec/gnome-applets/mc-install-default-macros -libexec/gnome-keyboard-applet -libexec/gweather-applet-2 -%%PYTHON%%libexec/invest-applet -%%COMMANDER%%libexec/mini_commander_applet -libexec/mixer_applet2 -libexec/multiload-applet-2 -libexec/null_applet -libexec/stickynotes_applet -libexec/trashapplet -%%CPUFREQ%%share/PolicyKit/policy/org.gnome.cpufreqselector.policy -%%CPUFREQ%%share/dbus-1/system-services/org.gnome.CPUFreqSelector.service -share/gnome-2.0/ui/GNOME_AccessxApplet.xml -%%BATTERY%%share/gnome-2.0/ui/GNOME_BattstatApplet.xml -%%CPUFREQ%%share/gnome-2.0/ui/GNOME_CPUFreqApplet.xml -share/gnome-2.0/ui/GNOME_CharpickerApplet.xml -share/gnome-2.0/ui/GNOME_DriveMountApplet.xml -share/gnome-2.0/ui/GNOME_GSwitchItApplet.xml -share/gnome-2.0/ui/GNOME_GWeatherApplet.xml -share/gnome-2.0/ui/GNOME_GeyesApplet.xml -%%COMMANDER%%share/gnome-2.0/ui/GNOME_MiniCommanderApplet.xml -share/gnome-2.0/ui/GNOME_MixerApplet.xml -share/gnome-2.0/ui/GNOME_MultiloadApplet.xml -share/gnome-2.0/ui/GNOME_Panel_TrashApplet.xml -share/gnome-2.0/ui/GNOME_StickyNotesApplet.xml -%%PYTHON%%share/gnome-2.0/ui/Invest_Applet.xml -%%BATTERY%%%%DATADIR%%/builder/battstat_applet.ui -%%CPUFREQ%%%%DATADIR%%/builder/cpufreq-preferences.ui -%%PYTHON%%%%DATADIR%%/builder/financialchart.ui -%%DATADIR%%/builder/gswitchit.ui -%%COMMANDER%%%%DATADIR%%/builder/mini-commander.ui -%%PYTHON%%%%DATADIR%%/builder/prefs-dialog.ui -%%DATADIR%%/builder/stickynotes.ui -%%DATADIR%%/builder/trashapplet-empty-progress.ui -%%DATADIR%%/geyes/Bizarre/Bizarre-eye.png -%%DATADIR%%/geyes/Bizarre/Bizarre-pupil.png -%%DATADIR%%/geyes/Bizarre/config -%%DATADIR%%/geyes/Bloodshot/Bloodshot-eye.png -%%DATADIR%%/geyes/Bloodshot/Bloodshot-pupil.png -%%DATADIR%%/geyes/Bloodshot/config -%%DATADIR%%/geyes/Default-tiny/Default-tiny-eye.png -%%DATADIR%%/geyes/Default-tiny/Default-tiny-pupil.png -%%DATADIR%%/geyes/Default-tiny/config -%%DATADIR%%/geyes/Default/Default-eye.png -%%DATADIR%%/geyes/Default/Default-pupil.png -%%DATADIR%%/geyes/Default/config -%%DATADIR%%/geyes/Horrid/config -%%DATADIR%%/geyes/Horrid/horrid_eye.png -%%DATADIR%%/geyes/Horrid/horrid_pupil.png -%%DATADIR%%/geyes/Tango/config -%%DATADIR%%/geyes/Tango/tango-eye.png -%%DATADIR%%/geyes/Tango/tango-pupil.png -%%PYTHON%%%%DATADIR%%/invest-applet/invest-16_neutral.png -%%PYTHON%%%%DATADIR%%/invest-applet/invest-22_down.png -%%PYTHON%%%%DATADIR%%/invest-applet/invest-22_neutral.png -%%PYTHON%%%%DATADIR%%/invest-applet/invest-22_up.png -%%PYTHON%%%%DATADIR%%/invest-applet/invest_down.svg -%%PYTHON%%%%DATADIR%%/invest-applet/invest_neutral.svg -%%PYTHON%%%%DATADIR%%/invest-applet/invest_up.svg -share/gnome/help/accessx-status/C/accessx-status.xml -share/gnome/help/accessx-status/C/figures/accessx-status-applet.png -share/gnome/help/accessx-status/C/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/C/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/C/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/C/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/C/legal.xml -share/gnome/help/accessx-status/bg/accessx-status.xml -share/gnome/help/accessx-status/bg/figures/accessx-status-applet.png -share/gnome/help/accessx-status/bg/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/bg/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/ca/accessx-status.xml -share/gnome/help/accessx-status/ca/figures/accessx-status-applet.png -share/gnome/help/accessx-status/ca/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/ca/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/cs/accessx-status.xml -share/gnome/help/accessx-status/cs/figures/accessx-status-applet.png -share/gnome/help/accessx-status/cs/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/cs/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/cs/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/cs/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/cs/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/cs/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/cs/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/cs/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/cs/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/cs/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/de/accessx-status.xml -share/gnome/help/accessx-status/de/figures/accessx-status-applet.png -share/gnome/help/accessx-status/de/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/de/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/de/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/de/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/de/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/de/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/de/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/de/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/de/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/de/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/el/accessx-status.xml -share/gnome/help/accessx-status/el/figures/accessx-status-applet.png -share/gnome/help/accessx-status/el/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/el/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/el/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/el/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/el/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/el/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/el/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/el/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/el/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/el/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/en_GB/accessx-status.xml -share/gnome/help/accessx-status/en_GB/figures/accessx-status-applet.png -share/gnome/help/accessx-status/en_GB/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/en_GB/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/es/accessx-status.xml -share/gnome/help/accessx-status/es/figures/accessx-status-applet.png -share/gnome/help/accessx-status/es/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/es/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/es/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/es/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/eu/accessx-status.xml -share/gnome/help/accessx-status/eu/figures/accessx-status-applet.png -share/gnome/help/accessx-status/eu/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/eu/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/eu/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/eu/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/eu/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/eu/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/eu/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/eu/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/eu/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/eu/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/fi/accessx-status.xml -share/gnome/help/accessx-status/fi/figures/accessx-status-applet.png -share/gnome/help/accessx-status/fi/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/fi/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/fi/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/fi/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/fi/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/fi/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/fi/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/fi/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/fi/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/fi/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/fr/accessx-status.xml -share/gnome/help/accessx-status/fr/figures/accessx-status-applet.png -share/gnome/help/accessx-status/fr/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/fr/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/it/accessx-status.xml -share/gnome/help/accessx-status/it/figures/accessx-status-applet.png -share/gnome/help/accessx-status/it/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/it/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/it/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/it/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/ko/accessx-status.xml -share/gnome/help/accessx-status/ko/figures/accessx-status-applet.png -share/gnome/help/accessx-status/ko/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/ko/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/ko/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/ko/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/ko/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/ko/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/ko/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/ko/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/ko/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/ko/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/nl/accessx-status.xml -share/gnome/help/accessx-status/nl/figures/accessx-status-applet.png -share/gnome/help/accessx-status/nl/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/nl/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/oc/accessx-status.xml -share/gnome/help/accessx-status/oc/figures/accessx-status-applet.png -share/gnome/help/accessx-status/oc/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/oc/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/sv/accessx-status.xml -share/gnome/help/accessx-status/sv/figures/accessx-status-applet.png -share/gnome/help/accessx-status/sv/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/sv/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/uk/accessx-status.xml -share/gnome/help/accessx-status/uk/figures/accessx-status-applet.png -share/gnome/help/accessx-status/uk/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/uk/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-windows-key.png -%%BATTERY%%share/gnome/help/battstat/C/battstat.xml -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/C/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/C/legal.xml -%%BATTERY%%share/gnome/help/battstat/bg/battstat.xml -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/de/battstat.xml -%%BATTERY%%share/gnome/help/battstat/de/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/de/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/de/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/de/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/de/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/el/battstat.xml -%%BATTERY%%share/gnome/help/battstat/el/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/el/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/el/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/el/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/el/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/en_GB/battstat.xml -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/es/battstat.xml -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/es/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/eu/battstat.xml -%%BATTERY%%share/gnome/help/battstat/eu/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/eu/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/eu/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/eu/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/eu/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/fi/battstat.xml -%%BATTERY%%share/gnome/help/battstat/fi/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/fi/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/fi/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/fi/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/fi/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/fr/battstat.xml -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/ko/battstat.xml -%%BATTERY%%share/gnome/help/battstat/ko/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/ko/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/ko/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/ko/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/ko/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/oc/battstat.xml -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/pa/battstat.xml -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/pt_BR/battstat.xml -%%BATTERY%%share/gnome/help/battstat/pt_BR/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/pt_BR/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/pt_BR/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/pt_BR/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/pt_BR/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/sv/battstat.xml -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/uk/battstat.xml -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/context-menu.png -share/gnome/help/char-palette/C/char-palette.xml -share/gnome/help/char-palette/C/figures/charpalette_applet.png -share/gnome/help/char-palette/C/figures/charpalette_chargroup.png -share/gnome/help/char-palette/C/figures/charpick-preferences.png -share/gnome/help/char-palette/C/figures/charpick_characters.png -share/gnome/help/char-palette/C/legal.xml -share/gnome/help/char-palette/bg/char-palette.xml -share/gnome/help/char-palette/bg/figures/charpalette_applet.png -share/gnome/help/char-palette/bg/figures/charpalette_chargroup.png -share/gnome/help/char-palette/bg/figures/charpick-preferences.png -share/gnome/help/char-palette/bg/figures/charpick_characters.png -share/gnome/help/char-palette/ca/char-palette.xml -share/gnome/help/char-palette/ca/figures/charpalette_applet.png -share/gnome/help/char-palette/ca/figures/charpalette_chargroup.png -share/gnome/help/char-palette/ca/figures/charpick-preferences.png -share/gnome/help/char-palette/ca/figures/charpick_characters.png -share/gnome/help/char-palette/de/char-palette.xml -share/gnome/help/char-palette/de/figures/charpalette_applet.png -share/gnome/help/char-palette/de/figures/charpalette_chargroup.png -share/gnome/help/char-palette/de/figures/charpick-preferences.png -share/gnome/help/char-palette/de/figures/charpick_characters.png -share/gnome/help/char-palette/en_GB/char-palette.xml -share/gnome/help/char-palette/en_GB/figures/charpalette_applet.png -share/gnome/help/char-palette/en_GB/figures/charpalette_chargroup.png -share/gnome/help/char-palette/en_GB/figures/charpick-preferences.png -share/gnome/help/char-palette/en_GB/figures/charpick_characters.png -share/gnome/help/char-palette/es/char-palette.xml -share/gnome/help/char-palette/es/figures/charpalette_applet.png -share/gnome/help/char-palette/es/figures/charpalette_chargroup.png -share/gnome/help/char-palette/es/figures/charpick-preferences.png -share/gnome/help/char-palette/es/figures/charpick_characters.png -share/gnome/help/char-palette/eu/char-palette.xml -share/gnome/help/char-palette/eu/figures/charpalette_applet.png -share/gnome/help/char-palette/eu/figures/charpalette_chargroup.png -share/gnome/help/char-palette/eu/figures/charpick-preferences.png -share/gnome/help/char-palette/eu/figures/charpick_characters.png -share/gnome/help/cpufreq-applet/eu/cpufreq-applet.xml -share/gnome/help/char-palette/fi/char-palette.xml -share/gnome/help/char-palette/fi/figures/charpalette_applet.png -share/gnome/help/char-palette/fi/figures/charpalette_chargroup.png -share/gnome/help/char-palette/fi/figures/charpick-preferences.png -share/gnome/help/char-palette/fi/figures/charpick_characters.png -share/gnome/help/char-palette/fr/char-palette.xml -share/gnome/help/char-palette/fr/figures/charpalette_applet.png -share/gnome/help/char-palette/fr/figures/charpalette_chargroup.png -share/gnome/help/char-palette/fr/figures/charpick-preferences.png -share/gnome/help/char-palette/fr/figures/charpick_characters.png -share/gnome/help/char-palette/it/char-palette.xml -share/gnome/help/char-palette/it/figures/charpalette_applet.png -share/gnome/help/char-palette/it/figures/charpalette_chargroup.png -share/gnome/help/char-palette/it/figures/charpick-preferences.png -share/gnome/help/char-palette/it/figures/charpick_characters.png -share/gnome/help/char-palette/ko/char-palette.xml -share/gnome/help/char-palette/ko/figures/charpalette_applet.png -share/gnome/help/char-palette/ko/figures/charpalette_chargroup.png -share/gnome/help/char-palette/ko/figures/charpick-preferences.png -share/gnome/help/char-palette/ko/figures/charpick_characters.png -share/gnome/help/char-palette/nl/char-palette.xml -share/gnome/help/char-palette/nl/figures/charpalette_applet.png -share/gnome/help/char-palette/nl/figures/charpalette_chargroup.png -share/gnome/help/char-palette/nl/figures/charpick-preferences.png -share/gnome/help/char-palette/nl/figures/charpick_characters.png -share/gnome/help/char-palette/oc/char-palette.xml -share/gnome/help/char-palette/oc/figures/charpalette_applet.png -share/gnome/help/char-palette/oc/figures/charpalette_chargroup.png -share/gnome/help/char-palette/oc/figures/charpick-preferences.png -share/gnome/help/char-palette/oc/figures/charpick_characters.png -share/gnome/help/char-palette/pt_BR/char-palette.xml -share/gnome/help/char-palette/pt_BR/figures/charpalette_applet.png -share/gnome/help/char-palette/pt_BR/figures/charpalette_chargroup.png -share/gnome/help/char-palette/pt_BR/figures/charpick-preferences.png -share/gnome/help/char-palette/pt_BR/figures/charpick_characters.png -share/gnome/help/char-palette/ru/char-palette.xml -share/gnome/help/char-palette/ru/figures/charpalette_applet.png -share/gnome/help/char-palette/ru/figures/charpalette_chargroup.png -share/gnome/help/char-palette/ru/figures/charpick-preferences.png -share/gnome/help/char-palette/ru/figures/charpick_characters.png -share/gnome/help/char-palette/sv/char-palette.xml -share/gnome/help/char-palette/sv/figures/charpalette_applet.png -share/gnome/help/char-palette/sv/figures/charpalette_chargroup.png -share/gnome/help/char-palette/sv/figures/charpick-preferences.png -share/gnome/help/char-palette/sv/figures/charpick_characters.png -share/gnome/help/char-palette/uk/char-palette.xml -share/gnome/help/char-palette/uk/figures/charpalette_applet.png -share/gnome/help/char-palette/uk/figures/charpalette_chargroup.png -share/gnome/help/char-palette/uk/figures/charpick-preferences.png -share/gnome/help/char-palette/uk/figures/charpick_characters.png -%%COMMANDER%%share/gnome/help/command-line/C/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/C/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/C/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/C/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/C/legal.xml -%%COMMANDER%%share/gnome/help/command-line/de/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/de/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/de/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/de/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/el/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/el/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/el/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/el/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/en_GB/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/es/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/es/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/es/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/es/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/eu/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/eu/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/eu/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/eu/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/fr/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/fr/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/fr/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/fr/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/ko/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/ko/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/ko/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/ko/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/oc/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/oc/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/oc/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/oc/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/pt_BR/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/sv/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/sv/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/sv/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/sv/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/uk/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/uk/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/uk/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/uk/figures/prefs.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/legal.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/de/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/eu/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fi/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/pt_BR/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet.png -share/gnome/help/drivemount/C/drivemount.xml -share/gnome/help/drivemount/C/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/C/figures/drivemount-applet_example.png -share/gnome/help/drivemount/C/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/C/figures/drivemount-applet_open.png -share/gnome/help/drivemount/C/figures/drivemount-applet_status.png -share/gnome/help/drivemount/C/legal.xml -share/gnome/help/drivemount/de/drivemount.xml -share/gnome/help/drivemount/de/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/de/figures/drivemount-applet_example.png -share/gnome/help/drivemount/de/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/de/figures/drivemount-applet_open.png -share/gnome/help/drivemount/de/figures/drivemount-applet_status.png -share/gnome/help/drivemount/en_GB/drivemount.xml -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_example.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_open.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_status.png -share/gnome/help/drivemount/es/drivemount.xml -share/gnome/help/drivemount/es/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/es/figures/drivemount-applet_example.png -share/gnome/help/drivemount/es/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/es/figures/drivemount-applet_open.png -share/gnome/help/drivemount/es/figures/drivemount-applet_status.png -share/gnome/help/drivemount/eu/drivemount.xml -share/gnome/help/drivemount/eu/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/eu/figures/drivemount-applet_example.png -share/gnome/help/drivemount/eu/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/eu/figures/drivemount-applet_open.png -share/gnome/help/drivemount/eu/figures/drivemount-applet_status.png -share/gnome/help/drivemount/fi/drivemount.xml -share/gnome/help/drivemount/fi/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/fi/figures/drivemount-applet_example.png -share/gnome/help/drivemount/fi/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/fi/figures/drivemount-applet_open.png -share/gnome/help/drivemount/fi/figures/drivemount-applet_status.png -share/gnome/help/drivemount/fr/drivemount.xml -share/gnome/help/drivemount/fr/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_example.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_open.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_status.png -share/gnome/help/drivemount/it/drivemount.xml -share/gnome/help/drivemount/it/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/it/figures/drivemount-applet_example.png -share/gnome/help/drivemount/it/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/it/figures/drivemount-applet_open.png -share/gnome/help/drivemount/it/figures/drivemount-applet_status.png -share/gnome/help/drivemount/ko/drivemount.xml -share/gnome/help/drivemount/ko/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/ko/figures/drivemount-applet_example.png -share/gnome/help/drivemount/ko/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/ko/figures/drivemount-applet_open.png -share/gnome/help/drivemount/ko/figures/drivemount-applet_status.png -share/gnome/help/drivemount/oc/drivemount.xml -share/gnome/help/drivemount/oc/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_example.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_open.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_status.png -share/gnome/help/drivemount/pa/drivemount.xml -share/gnome/help/drivemount/pa/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_example.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_open.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_status.png -share/gnome/help/drivemount/ru/drivemount.xml -share/gnome/help/drivemount/ru/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_example.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_open.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_status.png -share/gnome/help/drivemount/sv/drivemount.xml -share/gnome/help/drivemount/sv/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_example.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_open.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_status.png -share/gnome/help/drivemount/uk/drivemount.xml -share/gnome/help/drivemount/uk/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_example.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_open.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_status.png -share/gnome/help/drivemount/zh_CN/drivemount.xml -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_example.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_open.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_status.png -share/gnome/help/geyes/C/figures/geyes_applet.png -share/gnome/help/geyes/C/geyes.xml -share/gnome/help/geyes/C/legal.xml -share/gnome/help/geyes/bg/figures/geyes_applet.png -share/gnome/help/geyes/bg/geyes.xml -share/gnome/help/geyes/ca/figures/geyes_applet.png -share/gnome/help/geyes/ca/geyes.xml -share/gnome/help/geyes/cs/figures/geyes_applet.png -share/gnome/help/geyes/cs/geyes.xml -share/gnome/help/geyes/da/figures/geyes_applet.png -share/gnome/help/geyes/da/geyes.xml -share/gnome/help/geyes/de/figures/geyes_applet.png -share/gnome/help/geyes/de/geyes.xml -share/gnome/help/geyes/en_GB/figures/geyes_applet.png -share/gnome/help/geyes/en_GB/geyes.xml -share/gnome/help/geyes/es/figures/geyes_applet.png -share/gnome/help/geyes/es/geyes.xml -share/gnome/help/geyes/eu/figures/geyes_applet.png -share/gnome/help/geyes/eu/geyes.xml -share/gnome/help/geyes/fi/figures/geyes_applet.png -share/gnome/help/geyes/fi/geyes.xml -share/gnome/help/geyes/fr/figures/geyes_applet.png -share/gnome/help/geyes/fr/geyes.xml -share/gnome/help/geyes/it/figures/geyes_applet.png -share/gnome/help/geyes/it/geyes.xml -share/gnome/help/geyes/ko/figures/geyes_applet.png -share/gnome/help/geyes/ko/geyes.xml -share/gnome/help/geyes/oc/figures/geyes_applet.png -share/gnome/help/geyes/oc/geyes.xml -share/gnome/help/geyes/ru/figures/geyes_applet.png -share/gnome/help/geyes/ru/geyes.xml -share/gnome/help/geyes/sv/figures/geyes_applet.png -share/gnome/help/geyes/sv/geyes.xml -share/gnome/help/geyes/uk/figures/geyes_applet.png -share/gnome/help/geyes/uk/geyes.xml -share/gnome/help/gswitchit/C/gswitchit.xml -share/gnome/help/gswitchit/C/legal.xml -share/gnome/help/gswitchit/ca/gswitchit.xml -share/gnome/help/gswitchit/cs/gswitchit.xml -share/gnome/help/gswitchit/de/gswitchit.xml -share/gnome/help/gswitchit/el/gswitchit.xml -share/gnome/help/gswitchit/en_GB/gswitchit.xml -share/gnome/help/gswitchit/es/gswitchit.xml -share/gnome/help/gswitchit/eu/gswitchit.xml -share/gnome/help/gswitchit/fi/gswitchit.xml -share/gnome/help/gswitchit/fr/gswitchit.xml -share/gnome/help/gswitchit/oc/gswitchit.xml -share/gnome/help/gswitchit/ru/gswitchit.xml -share/gnome/help/gswitchit/sv/gswitchit.xml -share/gnome/help/gswitchit/uk/gswitchit.xml -share/gnome/help/gweather/C/figures/gweather-details.png -share/gnome/help/gweather/C/figures/gweather-menu-prefs.png -share/gnome/help/gweather/C/figures/gweather-prefs-general.png -share/gnome/help/gweather/C/figures/gweather-prefs-locations.png -share/gnome/help/gweather/C/figures/gweather_applet.png -share/gnome/help/gweather/C/figures/stock_weather-cloudy.png -share/gnome/help/gweather/C/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/C/figures/stock_weather-fog.png -share/gnome/help/gweather/C/figures/stock_weather-night-clear.png -share/gnome/help/gweather/C/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/C/figures/stock_weather-showers.png -share/gnome/help/gweather/C/figures/stock_weather-snow.png -share/gnome/help/gweather/C/figures/stock_weather-storm.png -share/gnome/help/gweather/C/figures/stock_weather-sunny.png -share/gnome/help/gweather/C/gweather.xml -share/gnome/help/gweather/C/legal.xml -share/gnome/help/gweather/de/figures/gweather-details.png -share/gnome/help/gweather/de/figures/gweather-menu-prefs.png -share/gnome/help/gweather/de/figures/gweather-prefs-general.png -share/gnome/help/gweather/de/figures/gweather-prefs-locations.png -share/gnome/help/gweather/de/figures/gweather_applet.png -share/gnome/help/gweather/de/figures/stock_weather-cloudy.png -share/gnome/help/gweather/de/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/de/figures/stock_weather-fog.png -share/gnome/help/gweather/de/figures/stock_weather-night-clear.png -share/gnome/help/gweather/de/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/de/figures/stock_weather-showers.png -share/gnome/help/gweather/de/figures/stock_weather-snow.png -share/gnome/help/gweather/de/figures/stock_weather-storm.png -share/gnome/help/gweather/de/figures/stock_weather-sunny.png -share/gnome/help/gweather/de/gweather.xml -share/gnome/help/gweather/en_GB/figures/gweather-details.png -share/gnome/help/gweather/en_GB/figures/gweather-menu-prefs.png -share/gnome/help/gweather/en_GB/figures/gweather-prefs-general.png -share/gnome/help/gweather/en_GB/figures/gweather-prefs-locations.png -share/gnome/help/gweather/en_GB/figures/gweather_applet.png -share/gnome/help/gweather/en_GB/figures/stock_weather-cloudy.png -share/gnome/help/gweather/en_GB/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/en_GB/figures/stock_weather-fog.png -share/gnome/help/gweather/en_GB/figures/stock_weather-night-clear.png -share/gnome/help/gweather/en_GB/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/en_GB/figures/stock_weather-showers.png -share/gnome/help/gweather/en_GB/figures/stock_weather-snow.png -share/gnome/help/gweather/en_GB/figures/stock_weather-storm.png -share/gnome/help/gweather/en_GB/figures/stock_weather-sunny.png -share/gnome/help/gweather/en_GB/gweather.xml -share/gnome/help/gweather/es/figures/gweather-details.png -share/gnome/help/gweather/es/figures/gweather-menu-prefs.png -share/gnome/help/gweather/es/figures/gweather-prefs-general.png -share/gnome/help/gweather/es/figures/gweather-prefs-locations.png -share/gnome/help/gweather/es/figures/gweather_applet.png -share/gnome/help/gweather/es/figures/stock_weather-cloudy.png -share/gnome/help/gweather/es/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/es/figures/stock_weather-fog.png -share/gnome/help/gweather/es/figures/stock_weather-night-clear.png -share/gnome/help/gweather/es/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/es/figures/stock_weather-showers.png -share/gnome/help/gweather/es/figures/stock_weather-snow.png -share/gnome/help/gweather/es/figures/stock_weather-storm.png -share/gnome/help/gweather/es/figures/stock_weather-sunny.png -share/gnome/help/gweather/es/gweather.xml -share/gnome/help/gweather/eu/figures/gweather-details.png -share/gnome/help/gweather/eu/figures/gweather-menu-prefs.png -share/gnome/help/gweather/eu/figures/gweather-prefs-general.png -share/gnome/help/gweather/eu/figures/gweather-prefs-locations.png -share/gnome/help/gweather/eu/figures/gweather_applet.png -share/gnome/help/gweather/eu/figures/stock_weather-cloudy.png -share/gnome/help/gweather/eu/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/eu/figures/stock_weather-fog.png -share/gnome/help/gweather/eu/figures/stock_weather-night-clear.png -share/gnome/help/gweather/eu/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/eu/figures/stock_weather-showers.png -share/gnome/help/gweather/eu/figures/stock_weather-snow.png -share/gnome/help/gweather/eu/figures/stock_weather-storm.png -share/gnome/help/gweather/eu/figures/stock_weather-sunny.png -share/gnome/help/gweather/eu/gweather.xml -share/gnome/help/gweather/fi/figures/gweather-details.png -share/gnome/help/gweather/fi/figures/gweather-menu-prefs.png -share/gnome/help/gweather/fi/figures/gweather-prefs-general.png -share/gnome/help/gweather/fi/figures/gweather-prefs-locations.png -share/gnome/help/gweather/fi/figures/gweather_applet.png -share/gnome/help/gweather/fi/figures/stock_weather-cloudy.png -share/gnome/help/gweather/fi/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/fi/figures/stock_weather-fog.png -share/gnome/help/gweather/fi/figures/stock_weather-night-clear.png -share/gnome/help/gweather/fi/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/fi/figures/stock_weather-showers.png -share/gnome/help/gweather/fi/figures/stock_weather-snow.png -share/gnome/help/gweather/fi/figures/stock_weather-storm.png -share/gnome/help/gweather/fi/figures/stock_weather-sunny.png -share/gnome/help/gweather/fi/gweather.xml -share/gnome/help/gweather/fr/figures/gweather-details.png -share/gnome/help/gweather/fr/figures/gweather-menu-prefs.png -share/gnome/help/gweather/fr/figures/gweather-prefs-general.png -share/gnome/help/gweather/fr/figures/gweather-prefs-locations.png -share/gnome/help/gweather/fr/figures/gweather_applet.png -share/gnome/help/gweather/fr/figures/stock_weather-cloudy.png -share/gnome/help/gweather/fr/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/fr/figures/stock_weather-fog.png -share/gnome/help/gweather/fr/figures/stock_weather-night-clear.png -share/gnome/help/gweather/fr/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/fr/figures/stock_weather-showers.png -share/gnome/help/gweather/fr/figures/stock_weather-snow.png -share/gnome/help/gweather/fr/figures/stock_weather-storm.png -share/gnome/help/gweather/fr/figures/stock_weather-sunny.png -share/gnome/help/gweather/fr/gweather.xml -share/gnome/help/gweather/ko/figures/gweather-details.png -share/gnome/help/gweather/ko/figures/gweather-menu-prefs.png -share/gnome/help/gweather/ko/figures/gweather-prefs-general.png -share/gnome/help/gweather/ko/figures/gweather-prefs-locations.png -share/gnome/help/gweather/ko/figures/gweather_applet.png -share/gnome/help/gweather/ko/figures/stock_weather-cloudy.png -share/gnome/help/gweather/ko/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/ko/figures/stock_weather-fog.png -share/gnome/help/gweather/ko/figures/stock_weather-night-clear.png -share/gnome/help/gweather/ko/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/ko/figures/stock_weather-showers.png -share/gnome/help/gweather/ko/figures/stock_weather-snow.png -share/gnome/help/gweather/ko/figures/stock_weather-storm.png -share/gnome/help/gweather/ko/figures/stock_weather-sunny.png -share/gnome/help/gweather/ko/gweather.xml -share/gnome/help/gweather/nl/figures/gweather-details.png -share/gnome/help/gweather/nl/figures/gweather-menu-prefs.png -share/gnome/help/gweather/nl/figures/gweather-prefs-general.png -share/gnome/help/gweather/nl/figures/gweather-prefs-locations.png -share/gnome/help/gweather/nl/figures/gweather_applet.png -share/gnome/help/gweather/nl/figures/stock_weather-cloudy.png -share/gnome/help/gweather/nl/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/nl/figures/stock_weather-fog.png -share/gnome/help/gweather/nl/figures/stock_weather-night-clear.png -share/gnome/help/gweather/nl/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/nl/figures/stock_weather-showers.png -share/gnome/help/gweather/nl/figures/stock_weather-snow.png -share/gnome/help/gweather/nl/figures/stock_weather-storm.png -share/gnome/help/gweather/nl/figures/stock_weather-sunny.png -share/gnome/help/gweather/nl/gweather.xml -share/gnome/help/gweather/oc/figures/gweather-details.png -share/gnome/help/gweather/oc/figures/gweather-menu-prefs.png -share/gnome/help/gweather/oc/figures/gweather-prefs-general.png -share/gnome/help/gweather/oc/figures/gweather-prefs-locations.png -share/gnome/help/gweather/oc/figures/gweather_applet.png -share/gnome/help/gweather/oc/figures/stock_weather-cloudy.png -share/gnome/help/gweather/oc/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/oc/figures/stock_weather-fog.png -share/gnome/help/gweather/oc/figures/stock_weather-night-clear.png -share/gnome/help/gweather/oc/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/oc/figures/stock_weather-showers.png -share/gnome/help/gweather/oc/figures/stock_weather-snow.png -share/gnome/help/gweather/oc/figures/stock_weather-storm.png -share/gnome/help/gweather/oc/figures/stock_weather-sunny.png -share/gnome/help/gweather/oc/gweather.xml -share/gnome/help/gweather/pa/figures/gweather-details.png -share/gnome/help/gweather/pa/figures/gweather-menu-prefs.png -share/gnome/help/gweather/pa/figures/gweather-prefs-general.png -share/gnome/help/gweather/pa/figures/gweather-prefs-locations.png -share/gnome/help/gweather/pa/figures/gweather_applet.png -share/gnome/help/gweather/pa/figures/stock_weather-cloudy.png -share/gnome/help/gweather/pa/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/pa/figures/stock_weather-fog.png -share/gnome/help/gweather/pa/figures/stock_weather-night-clear.png -share/gnome/help/gweather/pa/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/pa/figures/stock_weather-showers.png -share/gnome/help/gweather/pa/figures/stock_weather-snow.png -share/gnome/help/gweather/pa/figures/stock_weather-storm.png -share/gnome/help/gweather/pa/figures/stock_weather-sunny.png -share/gnome/help/gweather/pa/gweather.xml -share/gnome/help/gweather/pt_BR/figures/gweather-details.png -share/gnome/help/gweather/pt_BR/figures/gweather-menu-prefs.png -share/gnome/help/gweather/pt_BR/figures/gweather-prefs-general.png -share/gnome/help/gweather/pt_BR/figures/gweather-prefs-locations.png -share/gnome/help/gweather/pt_BR/figures/gweather_applet.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-cloudy.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-fog.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-night-clear.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-showers.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-snow.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-storm.png -share/gnome/help/gweather/pt_BR/figures/stock_weather-sunny.png -share/gnome/help/gweather/pt_BR/gweather.xml -share/gnome/help/gweather/ru/figures/gweather-details.png -share/gnome/help/gweather/ru/figures/gweather-menu-prefs.png -share/gnome/help/gweather/ru/figures/gweather-prefs-general.png -share/gnome/help/gweather/ru/figures/gweather-prefs-locations.png -share/gnome/help/gweather/ru/figures/gweather_applet.png -share/gnome/help/gweather/ru/figures/stock_weather-cloudy.png -share/gnome/help/gweather/ru/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/ru/figures/stock_weather-fog.png -share/gnome/help/gweather/ru/figures/stock_weather-night-clear.png -share/gnome/help/gweather/ru/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/ru/figures/stock_weather-showers.png -share/gnome/help/gweather/ru/figures/stock_weather-snow.png -share/gnome/help/gweather/ru/figures/stock_weather-storm.png -share/gnome/help/gweather/ru/figures/stock_weather-sunny.png -share/gnome/help/gweather/ru/gweather.xml -share/gnome/help/gweather/sv/figures/gweather-details.png -share/gnome/help/gweather/sv/figures/gweather-menu-prefs.png -share/gnome/help/gweather/sv/figures/gweather-prefs-general.png -share/gnome/help/gweather/sv/figures/gweather-prefs-locations.png -share/gnome/help/gweather/sv/figures/gweather_applet.png -share/gnome/help/gweather/sv/figures/stock_weather-cloudy.png -share/gnome/help/gweather/sv/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/sv/figures/stock_weather-fog.png -share/gnome/help/gweather/sv/figures/stock_weather-night-clear.png -share/gnome/help/gweather/sv/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/sv/figures/stock_weather-showers.png -share/gnome/help/gweather/sv/figures/stock_weather-snow.png -share/gnome/help/gweather/sv/figures/stock_weather-storm.png -share/gnome/help/gweather/sv/figures/stock_weather-sunny.png -share/gnome/help/gweather/sv/gweather.xml -share/gnome/help/gweather/uk/figures/gweather-details.png -share/gnome/help/gweather/uk/figures/gweather-menu-prefs.png -share/gnome/help/gweather/uk/figures/gweather-prefs-general.png -share/gnome/help/gweather/uk/figures/gweather-prefs-locations.png -share/gnome/help/gweather/uk/figures/gweather_applet.png -share/gnome/help/gweather/uk/figures/stock_weather-cloudy.png -share/gnome/help/gweather/uk/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/uk/figures/stock_weather-fog.png -share/gnome/help/gweather/uk/figures/stock_weather-night-clear.png -share/gnome/help/gweather/uk/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/uk/figures/stock_weather-showers.png -share/gnome/help/gweather/uk/figures/stock_weather-snow.png -share/gnome/help/gweather/uk/figures/stock_weather-storm.png -share/gnome/help/gweather/uk/figures/stock_weather-sunny.png -share/gnome/help/gweather/uk/gweather.xml -share/gnome/help/gweather/zh_CN/figures/gweather-details.png -share/gnome/help/gweather/zh_CN/figures/gweather-menu-prefs.png -share/gnome/help/gweather/zh_CN/figures/gweather-prefs-general.png -share/gnome/help/gweather/zh_CN/figures/gweather-prefs-locations.png -share/gnome/help/gweather/zh_CN/figures/gweather_applet.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-cloudy.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-fog.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-night-clear.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-showers.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-snow.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-storm.png -share/gnome/help/gweather/zh_CN/figures/stock_weather-sunny.png -share/gnome/help/gweather/zh_CN/gweather.xml -%%PYTHON%%share/gnome/help/invest-applet/C/invest-applet.xml -%%PYTHON%%share/gnome/help/invest-applet/C/legal.xml -%%PYTHON%%share/gnome/help/invest-applet/en_GB/invest-applet.xml -%%PYTHON%%share/gnome/help/invest-applet/de/invest-applet.xml -%%PYTHON%%share/gnome/help/invest-applet/el/invest-applet.xml -%%PYTHON%%share/gnome/help/invest-applet/es/invest-applet.xml -%%PYTHON%%share/gnome/help/invest-applet/fi/invest-applet.xml -%%PYTHON%%share/gnome/help/invest-applet/sv/invest-applet.xml -share/gnome/help/mixer_applet2/C/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/C/legal.xml -share/gnome/help/mixer_applet2/C/mixer_applet2.xml -share/gnome/help/mixer_applet2/ca/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/ca/mixer_applet2.xml -share/gnome/help/mixer_applet2/cs/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/cs/mixer_applet2.xml -share/gnome/help/mixer_applet2/de/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/de/mixer_applet2.xml -share/gnome/help/mixer_applet2/el/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/el/mixer_applet2.xml -share/gnome/help/mixer_applet2/en_GB/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/en_GB/mixer_applet2.xml -share/gnome/help/mixer_applet2/es/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/es/mixer_applet2.xml -share/gnome/help/mixer_applet2/eu/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/eu/mixer_applet2.xml -share/gnome/help/mixer_applet2/fi/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/fi/mixer_applet2.xml -share/gnome/help/mixer_applet2/fr/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/fr/mixer_applet2.xml -share/gnome/help/mixer_applet2/hu/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/hu/mixer_applet2.xml -share/gnome/help/mixer_applet2/it/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/it/mixer_applet2.xml -share/gnome/help/mixer_applet2/ko/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/ko/mixer_applet2.xml -share/gnome/help/mixer_applet2/oc/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/oc/mixer_applet2.xml -share/gnome/help/mixer_applet2/pa/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/pa/mixer_applet2.xml -share/gnome/help/mixer_applet2/pt_BR/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/pt_BR/mixer_applet2.xml -share/gnome/help/mixer_applet2/ru/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/ru/mixer_applet2.xml -share/gnome/help/mixer_applet2/sv/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/sv/mixer_applet2.xml -share/gnome/help/mixer_applet2/uk/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/uk/mixer_applet2.xml -share/gnome/help/multiload/C/figures/multiload-preferences.png -share/gnome/help/multiload/C/figures/system-monitor-applet_window.png -share/gnome/help/multiload/C/figures/system_monitor.png -share/gnome/help/multiload/C/legal.xml -share/gnome/help/multiload/C/multiload.xml -share/gnome/help/multiload/ca/figures/multiload-preferences.png -share/gnome/help/multiload/ca/figures/system-monitor-applet_window.png -share/gnome/help/multiload/ca/figures/system_monitor.png -share/gnome/help/multiload/ca/multiload.xml -share/gnome/help/multiload/de/figures/multiload-preferences.png -share/gnome/help/multiload/de/figures/system-monitor-applet_window.png -share/gnome/help/multiload/de/figures/system_monitor.png -share/gnome/help/multiload/de/multiload.xml -share/gnome/help/multiload/en_GB/figures/multiload-preferences.png -share/gnome/help/multiload/en_GB/figures/system-monitor-applet_window.png -share/gnome/help/multiload/en_GB/figures/system_monitor.png -share/gnome/help/multiload/en_GB/multiload.xml -share/gnome/help/multiload/es/figures/multiload-preferences.png -share/gnome/help/multiload/es/figures/system-monitor-applet_window.png -share/gnome/help/multiload/es/figures/system_monitor.png -share/gnome/help/multiload/es/multiload.xml -share/gnome/help/multiload/eu/figures/multiload-preferences.png -share/gnome/help/multiload/eu/figures/system-monitor-applet_window.png -share/gnome/help/multiload/eu/figures/system_monitor.png -share/gnome/help/multiload/eu/multiload.xml -share/gnome/help/multiload/fi/figures/multiload-preferences.png -share/gnome/help/multiload/fi/figures/system-monitor-applet_window.png -share/gnome/help/multiload/fi/figures/system_monitor.png -share/gnome/help/multiload/fi/multiload.xml -share/gnome/help/multiload/fr/figures/multiload-preferences.png -share/gnome/help/multiload/fr/figures/system-monitor-applet_window.png -share/gnome/help/multiload/fr/figures/system_monitor.png -share/gnome/help/multiload/fr/multiload.xml -share/gnome/help/multiload/ko/figures/multiload-preferences.png -share/gnome/help/multiload/ko/figures/system-monitor-applet_window.png -share/gnome/help/multiload/ko/figures/system_monitor.png -share/gnome/help/multiload/ko/multiload.xml -share/gnome/help/multiload/oc/figures/multiload-preferences.png -share/gnome/help/multiload/oc/figures/system-monitor-applet_window.png -share/gnome/help/multiload/oc/figures/system_monitor.png -share/gnome/help/multiload/oc/multiload.xml -share/gnome/help/multiload/pa/figures/multiload-preferences.png -share/gnome/help/multiload/pa/figures/system-monitor-applet_window.png -share/gnome/help/multiload/pa/figures/system_monitor.png -share/gnome/help/multiload/pa/multiload.xml -share/gnome/help/multiload/pt_BR/figures/multiload-preferences.png -share/gnome/help/multiload/pt_BR/figures/system-monitor-applet_window.png -share/gnome/help/multiload/pt_BR/figures/system_monitor.png -share/gnome/help/multiload/pt_BR/multiload.xml -share/gnome/help/multiload/ru/figures/multiload-preferences.png -share/gnome/help/multiload/ru/figures/system-monitor-applet_window.png -share/gnome/help/multiload/ru/figures/system_monitor.png -share/gnome/help/multiload/ru/multiload.xml -share/gnome/help/multiload/sv/figures/multiload-preferences.png -share/gnome/help/multiload/sv/figures/system-monitor-applet_window.png -share/gnome/help/multiload/sv/figures/system_monitor.png -share/gnome/help/multiload/sv/multiload.xml -share/gnome/help/multiload/uk/figures/multiload-preferences.png -share/gnome/help/multiload/uk/figures/system-monitor-applet_window.png -share/gnome/help/multiload/uk/figures/system_monitor.png -share/gnome/help/multiload/uk/multiload.xml -share/gnome/help/stickynotes_applet/C/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/C/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/C/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/C/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/C/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/C/legal.xml -share/gnome/help/stickynotes_applet/C/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/ca/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/ca/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/ca/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/ca/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/ca/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/ca/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/de/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/de/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/de/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/de/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/de/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/de/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/el/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/el/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/el/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/el/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/el/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/el/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/en_GB/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/en_GB/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/es/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/es/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/es/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/es/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/es/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/es/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/eu/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/eu/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/eu/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/eu/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/eu/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/eu/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/fi/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/fi/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/fi/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/fi/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/fi/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/fi/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/fr/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/fr/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/fr/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/fr/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/fr/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/fr/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/ko/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/ko/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/ko/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/ko/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/ko/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/ko/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/oc/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/oc/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/oc/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/oc/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/oc/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/oc/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/pa/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/pa/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/pa/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/pa/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/pa/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/pa/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/pt_BR/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/pt_BR/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/pt_BR/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/pt_BR/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/pt_BR/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/pt_BR/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/ru/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/ru/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/ru/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/ru/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/ru/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/ru/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/sv/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/sv/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/sv/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/sv/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/sv/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/sv/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/uk/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/uk/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/uk/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/uk/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/uk/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/uk/stickynotes_applet.xml -share/gnome/help/trashapplet/C/figures/trash-applet.png -share/gnome/help/trashapplet/C/legal.xml -share/gnome/help/trashapplet/C/trashapplet.xml -share/gnome/help/trashapplet/ca/figures/trash-applet.png -share/gnome/help/trashapplet/ca/trashapplet.xml -share/gnome/help/trashapplet/cs/figures/trash-applet.png -share/gnome/help/trashapplet/cs/trashapplet.xml -share/gnome/help/trashapplet/da/figures/trash-applet.png -share/gnome/help/trashapplet/da/trashapplet.xml -share/gnome/help/trashapplet/de/figures/trash-applet.png -share/gnome/help/trashapplet/de/trashapplet.xml -share/gnome/help/trashapplet/el/figures/trash-applet.png -share/gnome/help/trashapplet/el/trashapplet.xml -share/gnome/help/trashapplet/en_GB/figures/trash-applet.png -share/gnome/help/trashapplet/en_GB/trashapplet.xml -share/gnome/help/trashapplet/es/figures/trash-applet.png -share/gnome/help/trashapplet/es/trashapplet.xml -share/gnome/help/trashapplet/eu/figures/trash-applet.png -share/gnome/help/trashapplet/eu/trashapplet.xml -share/gnome/help/trashapplet/fi/figures/trash-applet.png -share/gnome/help/trashapplet/fi/trashapplet.xml -share/gnome/help/trashapplet/fr/figures/trash-applet.png -share/gnome/help/trashapplet/fr/trashapplet.xml -share/gnome/help/trashapplet/hu/figures/trash-applet.png -share/gnome/help/trashapplet/hu/trashapplet.xml -share/gnome/help/trashapplet/it/figures/trash-applet.png -share/gnome/help/trashapplet/it/trashapplet.xml -share/gnome/help/trashapplet/nl/figures/trash-applet.png -share/gnome/help/trashapplet/nl/trashapplet.xml -share/gnome/help/trashapplet/oc/figures/trash-applet.png -share/gnome/help/trashapplet/oc/trashapplet.xml -share/gnome/help/trashapplet/pa/figures/trash-applet.png -share/gnome/help/trashapplet/pa/trashapplet.xml -share/gnome/help/trashapplet/pt_BR/figures/trash-applet.png -share/gnome/help/trashapplet/pt_BR/trashapplet.xml -share/gnome/help/trashapplet/ru/figures/trash-applet.png -share/gnome/help/trashapplet/ru/trashapplet.xml -share/gnome/help/trashapplet/sv/figures/trash-applet.png -share/gnome/help/trashapplet/sv/trashapplet.xml -share/gnome/help/trashapplet/uk/figures/trash-applet.png -share/gnome/help/trashapplet/uk/trashapplet.xml -%%CPUFREQ%%share/icons/hicolor/16x16/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/16x16/apps/gnome-eyes-applet.png -share/icons/hicolor/16x16/apps/gnome-sticky-notes-applet.png -%%PYTHON%%share/icons/hicolor/16x16/apps/invest-applet.png -%%CPUFREQ%%share/icons/hicolor/22x22/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/22x22/apps/gnome-eyes-applet.png -share/icons/hicolor/22x22/apps/gnome-sticky-notes-applet.png -%%PYTHON%%share/icons/hicolor/22x22/apps/invest-applet.png -%%CPUFREQ%%share/icons/hicolor/24x24/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/24x24/apps/gnome-eyes-applet.png -share/icons/hicolor/24x24/apps/gnome-sticky-notes-applet.png -%%CPUFREQ%%share/icons/hicolor/32x32/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/32x32/apps/gnome-eyes-applet.png -share/icons/hicolor/32x32/apps/gnome-sticky-notes-applet.png -share/icons/hicolor/48x48/apps/ax-applet.png -%%COMMANDER%%share/icons/hicolor/48x48/apps/gnome-mini-commander.png -%%PYTHON%%share/icons/hicolor/48x48/apps/invest-applet.png -%%CPUFREQ%%share/icons/hicolor/scalable/apps/gnome-cpu-frequency-applet.svg -share/icons/hicolor/scalable/apps/gnome-eyes-applet.svg -share/icons/hicolor/scalable/apps/gnome-sticky-notes-applet.svg -%%PYTHON%%share/icons/hicolor/scalable/apps/invest-applet.svg -share/locale/af/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/am/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/as/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ast/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/az/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/be/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/da/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/de/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/el/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_AR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_CL/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_CO/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_CR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_DO/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_EC/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_ES/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_GT/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_HN/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_MX/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_NI/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_PA/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_PE/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_PR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_SV/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_UY/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_VE/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/et/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/he/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/id/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/is/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/it/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ky/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mai/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/or/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ps/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/si/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/te/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/th/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-applets-2.0.mo -share/omf/accessx-status/accessx-status-C.omf -share/omf/accessx-status/accessx-status-bg.omf -share/omf/accessx-status/accessx-status-ca.omf -share/omf/accessx-status/accessx-status-cs.omf -share/omf/accessx-status/accessx-status-de.omf -share/omf/accessx-status/accessx-status-el.omf -share/omf/accessx-status/accessx-status-en_GB.omf -share/omf/accessx-status/accessx-status-es.omf -share/omf/accessx-status/accessx-status-eu.omf -share/omf/accessx-status/accessx-status-fi.omf -share/omf/accessx-status/accessx-status-fr.omf -share/omf/accessx-status/accessx-status-it.omf -share/omf/accessx-status/accessx-status-ko.omf -share/omf/accessx-status/accessx-status-nl.omf -share/omf/accessx-status/accessx-status-oc.omf -share/omf/accessx-status/accessx-status-sv.omf -share/omf/accessx-status/accessx-status-uk.omf -%%BATTERY%%share/omf/battstat/battstat-C.omf -%%BATTERY%%share/omf/battstat/battstat-bg.omf -%%BATTERY%%share/omf/battstat/battstat-de.omf -%%BATTERY%%share/omf/battstat/battstat-el.omf -%%BATTERY%%share/omf/battstat/battstat-en_GB.omf -%%BATTERY%%share/omf/battstat/battstat-es.omf -%%BATTERY%%share/omf/battstat/battstat-eu.omf -%%BATTERY%%share/omf/battstat/battstat-fi.omf -%%BATTERY%%share/omf/battstat/battstat-fr.omf -%%BATTERY%%share/omf/battstat/battstat-ko.omf -%%BATTERY%%share/omf/battstat/battstat-oc.omf -%%BATTERY%%share/omf/battstat/battstat-pa.omf -%%BATTERY%%share/omf/battstat/battstat-pt_BR.omf -%%BATTERY%%share/omf/battstat/battstat-sv.omf -%%BATTERY%%share/omf/battstat/battstat-uk.omf -share/omf/char-palette/char-palette-C.omf -share/omf/char-palette/char-palette-bg.omf -share/omf/char-palette/char-palette-ca.omf -share/omf/char-palette/char-palette-de.omf -share/omf/char-palette/char-palette-en_GB.omf -share/omf/char-palette/char-palette-es.omf -share/omf/char-palette/char-palette-eu.omf -share/omf/char-palette/char-palette-fi.omf -share/omf/char-palette/char-palette-fr.omf -share/omf/char-palette/char-palette-it.omf -share/omf/char-palette/char-palette-ko.omf -share/omf/char-palette/char-palette-nl.omf -share/omf/char-palette/char-palette-oc.omf -share/omf/char-palette/char-palette-pt_BR.omf -share/omf/char-palette/char-palette-ru.omf -share/omf/char-palette/char-palette-sv.omf -share/omf/char-palette/char-palette-uk.omf -%%COMMANDER%%share/omf/command-line/command-line-C.omf -%%COMMANDER%%share/omf/command-line/command-line-de.omf -%%COMMANDER%%share/omf/command-line/command-line-el.omf -%%COMMANDER%%share/omf/command-line/command-line-en_GB.omf -%%COMMANDER%%share/omf/command-line/command-line-es.omf -%%COMMANDER%%share/omf/command-line/command-line-eu.omf -%%COMMANDER%%share/omf/command-line/command-line-fr.omf -%%COMMANDER%%share/omf/command-line/command-line-ko.omf -%%COMMANDER%%share/omf/command-line/command-line-oc.omf -%%COMMANDER%%share/omf/command-line/command-line-pt_BR.omf -%%COMMANDER%%share/omf/command-line/command-line-sv.omf -%%COMMANDER%%share/omf/command-line/command-line-uk.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-C.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-ca.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-de.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-en_GB.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-es.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-eu.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-fi.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-fr.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-nl.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-oc.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-pt_BR.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-ru.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-sv.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-uk.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-zh_CN.omf -share/omf/drivemount/drivemount-C.omf -share/omf/drivemount/drivemount-de.omf -share/omf/drivemount/drivemount-en_GB.omf -share/omf/drivemount/drivemount-es.omf -share/omf/drivemount/drivemount-eu.omf -share/omf/drivemount/drivemount-fi.omf -share/omf/drivemount/drivemount-fr.omf -share/omf/drivemount/drivemount-it.omf -share/omf/drivemount/drivemount-ko.omf -share/omf/drivemount/drivemount-oc.omf -share/omf/drivemount/drivemount-pa.omf -share/omf/drivemount/drivemount-ru.omf -share/omf/drivemount/drivemount-sv.omf -share/omf/drivemount/drivemount-uk.omf -share/omf/drivemount/drivemount-zh_CN.omf -share/omf/geyes/geyes-C.omf -share/omf/geyes/geyes-bg.omf -share/omf/geyes/geyes-ca.omf -share/omf/geyes/geyes-cs.omf -share/omf/geyes/geyes-da.omf -share/omf/geyes/geyes-de.omf -share/omf/geyes/geyes-en_GB.omf -share/omf/geyes/geyes-es.omf -share/omf/geyes/geyes-eu.omf -share/omf/geyes/geyes-fi.omf -share/omf/geyes/geyes-fr.omf -share/omf/geyes/geyes-it.omf -share/omf/geyes/geyes-ko.omf -share/omf/geyes/geyes-oc.omf -share/omf/geyes/geyes-ru.omf -share/omf/geyes/geyes-sv.omf -share/omf/geyes/geyes-uk.omf -share/omf/gswitchit/gswitchit-C.omf -share/omf/gswitchit/gswitchit-ca.omf -share/omf/gswitchit/gswitchit-cs.omf -share/omf/gswitchit/gswitchit-de.omf -share/omf/gswitchit/gswitchit-el.omf -share/omf/gswitchit/gswitchit-en_GB.omf -share/omf/gswitchit/gswitchit-es.omf -share/omf/gswitchit/gswitchit-eu.omf -share/omf/gswitchit/gswitchit-fi.omf -share/omf/gswitchit/gswitchit-fr.omf -share/omf/gswitchit/gswitchit-oc.omf -share/omf/gswitchit/gswitchit-ru.omf -share/omf/gswitchit/gswitchit-sv.omf -share/omf/gswitchit/gswitchit-uk.omf -share/omf/gweather/gweather-C.omf -share/omf/gweather/gweather-de.omf -share/omf/gweather/gweather-en_GB.omf -share/omf/gweather/gweather-es.omf -share/omf/gweather/gweather-eu.omf -share/omf/gweather/gweather-fi.omf -share/omf/gweather/gweather-fr.omf -share/omf/gweather/gweather-ko.omf -share/omf/gweather/gweather-nl.omf -share/omf/gweather/gweather-oc.omf -share/omf/gweather/gweather-pa.omf -share/omf/gweather/gweather-pt_BR.omf -share/omf/gweather/gweather-ru.omf -share/omf/gweather/gweather-sv.omf -share/omf/gweather/gweather-uk.omf -share/omf/gweather/gweather-zh_CN.omf -%%PYTHON%%share/omf/invest-applet/invest-applet-C.omf -%%PYTHON%%share/omf/invest-applet/invest-applet-de.omf -%%PYTHON%%share/omf/invest-applet/invest-applet-en_GB.omf -%%PYTHON%%share/omf/invest-applet/invest-applet-el.omf -%%PYTHON%%share/omf/invest-applet/invest-applet-es.omf -%%PYTHON%%share/omf/invest-applet/invest-applet-fi.omf -%%PYTHON%%share/omf/invest-applet/invest-applet-sv.omf -share/omf/mixer_applet2/mixer_applet2-C.omf -share/omf/mixer_applet2/mixer_applet2-ca.omf -share/omf/mixer_applet2/mixer_applet2-cs.omf -share/omf/mixer_applet2/mixer_applet2-de.omf -share/omf/mixer_applet2/mixer_applet2-el.omf -share/omf/mixer_applet2/mixer_applet2-en_GB.omf -share/omf/mixer_applet2/mixer_applet2-es.omf -share/omf/mixer_applet2/mixer_applet2-eu.omf -share/omf/mixer_applet2/mixer_applet2-fi.omf -share/omf/mixer_applet2/mixer_applet2-fr.omf -share/omf/mixer_applet2/mixer_applet2-hu.omf -share/omf/mixer_applet2/mixer_applet2-it.omf -share/omf/mixer_applet2/mixer_applet2-ko.omf -share/omf/mixer_applet2/mixer_applet2-oc.omf -share/omf/mixer_applet2/mixer_applet2-pa.omf -share/omf/mixer_applet2/mixer_applet2-pt_BR.omf -share/omf/mixer_applet2/mixer_applet2-ru.omf -share/omf/mixer_applet2/mixer_applet2-sv.omf -share/omf/mixer_applet2/mixer_applet2-uk.omf -share/omf/multiload/multiload-C.omf -share/omf/multiload/multiload-ca.omf -share/omf/multiload/multiload-de.omf -share/omf/multiload/multiload-en_GB.omf -share/omf/multiload/multiload-es.omf -share/omf/multiload/multiload-eu.omf -share/omf/multiload/multiload-fi.omf -share/omf/multiload/multiload-fr.omf -share/omf/multiload/multiload-ko.omf -share/omf/multiload/multiload-oc.omf -share/omf/multiload/multiload-pa.omf -share/omf/multiload/multiload-pt_BR.omf -share/omf/multiload/multiload-ru.omf -share/omf/multiload/multiload-sv.omf -share/omf/multiload/multiload-uk.omf -share/omf/stickynotes_applet/stickynotes_applet-C.omf -share/omf/stickynotes_applet/stickynotes_applet-ca.omf -share/omf/stickynotes_applet/stickynotes_applet-de.omf -share/omf/stickynotes_applet/stickynotes_applet-el.omf -share/omf/stickynotes_applet/stickynotes_applet-en_GB.omf -share/omf/stickynotes_applet/stickynotes_applet-es.omf -share/omf/stickynotes_applet/stickynotes_applet-eu.omf -share/omf/stickynotes_applet/stickynotes_applet-fi.omf -share/omf/stickynotes_applet/stickynotes_applet-fr.omf -share/omf/stickynotes_applet/stickynotes_applet-ko.omf -share/omf/stickynotes_applet/stickynotes_applet-oc.omf -share/omf/stickynotes_applet/stickynotes_applet-pa.omf -share/omf/stickynotes_applet/stickynotes_applet-pt_BR.omf -share/omf/stickynotes_applet/stickynotes_applet-ru.omf -share/omf/stickynotes_applet/stickynotes_applet-sv.omf -share/omf/stickynotes_applet/stickynotes_applet-uk.omf -share/omf/trashapplet/trashapplet-C.omf -share/omf/trashapplet/trashapplet-ca.omf -share/omf/trashapplet/trashapplet-cs.omf -share/omf/trashapplet/trashapplet-da.omf -share/omf/trashapplet/trashapplet-de.omf -share/omf/trashapplet/trashapplet-el.omf -share/omf/trashapplet/trashapplet-en_GB.omf -share/omf/trashapplet/trashapplet-es.omf -share/omf/trashapplet/trashapplet-eu.omf -share/omf/trashapplet/trashapplet-fi.omf -share/omf/trashapplet/trashapplet-fr.omf -share/omf/trashapplet/trashapplet-hu.omf -share/omf/trashapplet/trashapplet-it.omf -share/omf/trashapplet/trashapplet-nl.omf -share/omf/trashapplet/trashapplet-oc.omf -share/omf/trashapplet/trashapplet-pa.omf -share/omf/trashapplet/trashapplet-pt_BR.omf -share/omf/trashapplet/trashapplet-ru.omf -share/omf/trashapplet/trashapplet-sv.omf -share/omf/trashapplet/trashapplet-uk.omf -share/pixmaps/accessx-status-applet/ax-applet.png -share/pixmaps/accessx-status-applet/ax-bouncekeys.png -share/pixmaps/accessx-status-applet/ax-key-base.png -share/pixmaps/accessx-status-applet/ax-key-inverse.png -share/pixmaps/accessx-status-applet/ax-key-no.png -share/pixmaps/accessx-status-applet/ax-key-none.png -share/pixmaps/accessx-status-applet/ax-key-yes.png -share/pixmaps/accessx-status-applet/ax-slowkeys-no.png -share/pixmaps/accessx-status-applet/ax-slowkeys-pending.png -share/pixmaps/accessx-status-applet/ax-slowkeys-yes.png -share/pixmaps/accessx-status-applet/ax-slowkeys.png -share/pixmaps/accessx-status-applet/mousekeys-base.png -share/pixmaps/accessx-status-applet/mousekeys-default-left.png -share/pixmaps/accessx-status-applet/mousekeys-default-middle.png -share/pixmaps/accessx-status-applet/mousekeys-default-right.png -share/pixmaps/accessx-status-applet/mousekeys-pressed-left.png -share/pixmaps/accessx-status-applet/mousekeys-pressed-middle.png -share/pixmaps/accessx-status-applet/mousekeys-pressed-right.png -share/pixmaps/accessx-status-applet/sticky-alt-latched.png -share/pixmaps/accessx-status-applet/sticky-alt-locked.png -share/pixmaps/accessx-status-applet/sticky-alt-none.png -share/pixmaps/accessx-status-applet/sticky-ctrl-latched.png -share/pixmaps/accessx-status-applet/sticky-ctrl-locked.png -share/pixmaps/accessx-status-applet/sticky-ctrl-none.png -share/pixmaps/accessx-status-applet/sticky-hyper-latched.png -share/pixmaps/accessx-status-applet/sticky-hyper-locked.png -share/pixmaps/accessx-status-applet/sticky-hyper-none.png -share/pixmaps/accessx-status-applet/sticky-meta-latched.png -share/pixmaps/accessx-status-applet/sticky-meta-locked.png -share/pixmaps/accessx-status-applet/sticky-meta-none.png -share/pixmaps/accessx-status-applet/sticky-shift-latched.png -share/pixmaps/accessx-status-applet/sticky-shift-locked.png -share/pixmaps/accessx-status-applet/sticky-shift-none.png -share/pixmaps/accessx-status-applet/sticky-super-latched.png -share/pixmaps/accessx-status-applet/sticky-super-locked.png -share/pixmaps/accessx-status-applet/sticky-super-none.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-100.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-25.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-50.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-75.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-na.png -share/pixmaps/stickynotes/close.png -share/pixmaps/stickynotes/locked.png -share/pixmaps/stickynotes/resize_se.png -share/pixmaps/stickynotes/resize_sw.png -share/pixmaps/stickynotes/unlocked.png -share/xmodmap/base.xml -share/xmodmap/xmodmap.am -share/xmodmap/xmodmap.ar -share/xmodmap/xmodmap.be -share/xmodmap/xmodmap.bg -share/xmodmap/xmodmap.br -share/xmodmap/xmodmap.ch -share/xmodmap/xmodmap.ch_de -share/xmodmap/xmodmap.ch_fr -share/xmodmap/xmodmap.cz -share/xmodmap/xmodmap.de -share/xmodmap/xmodmap.de-apple -share/xmodmap/xmodmap.dk -share/xmodmap/xmodmap.dvorak -share/xmodmap/xmodmap.ee -share/xmodmap/xmodmap.es -share/xmodmap/xmodmap.es_x86 -share/xmodmap/xmodmap.fi -share/xmodmap/xmodmap.fr -share/xmodmap/xmodmap.fr-2 -share/xmodmap/xmodmap.fr_x86 -share/xmodmap/xmodmap.gb -share/xmodmap/xmodmap.gb-102 -share/xmodmap/xmodmap.gb-105 -share/xmodmap/xmodmap.ge_la -share/xmodmap/xmodmap.ge_ru -share/xmodmap/xmodmap.gr -share/xmodmap/xmodmap.hu -share/xmodmap/xmodmap.hu-101-lat1 -share/xmodmap/xmodmap.hu-101-lat2 -share/xmodmap/xmodmap.hu-ibm -share/xmodmap/xmodmap.hu-lat1 -share/xmodmap/xmodmap.hu-sun-lat2 -share/xmodmap/xmodmap.hu.old -share/xmodmap/xmodmap.hu_latin1 -share/xmodmap/xmodmap.hu_x86 -share/xmodmap/xmodmap.il -share/xmodmap/xmodmap.il_phonetic -share/xmodmap/xmodmap.is -share/xmodmap/xmodmap.it -share/xmodmap/xmodmap.jp -share/xmodmap/xmodmap.kr -share/xmodmap/xmodmap.la -share/xmodmap/xmodmap.lt -share/xmodmap/xmodmap.lt_b -share/xmodmap/xmodmap.lt_p -share/xmodmap/xmodmap.mk -share/xmodmap/xmodmap.mn -share/xmodmap/xmodmap.mn-phonet -share/xmodmap/xmodmap.mn-rev -share/xmodmap/xmodmap.mn-uni -share/xmodmap/xmodmap.nl -share/xmodmap/xmodmap.no -share/xmodmap/xmodmap.pl -share/xmodmap/xmodmap.pl2 -share/xmodmap/xmodmap.pt -share/xmodmap/xmodmap.pt-dead -share/xmodmap/xmodmap.qc -share/xmodmap/xmodmap.qc-2 -share/xmodmap/xmodmap.ro -share/xmodmap/xmodmap.ru -share/xmodmap/xmodmap.ru-rev -share/xmodmap/xmodmap.ru_yawerty -share/xmodmap/xmodmap.se -share/xmodmap/xmodmap.sf -share/xmodmap/xmodmap.sg -share/xmodmap/xmodmap.si -share/xmodmap/xmodmap.sk -share/xmodmap/xmodmap.th -share/xmodmap/xmodmap.tr_f -share/xmodmap/xmodmap.tr_q -share/xmodmap/xmodmap.uk -share/xmodmap/xmodmap.uk_x86 -share/xmodmap/xmodmap.us -share/xmodmap/xmodmap.us-101 -share/xmodmap/xmodmap.us-84 -share/xmodmap/xmodmap.us-dec -share/xmodmap/xmodmap.us-ibm -share/xmodmap/xmodmap.us-int -share/xmodmap/xmodmap.us-mac -share/xmodmap/xmodmap.us-sgi-101 -share/xmodmap/xmodmap.us-sun -share/xmodmap/xmodmap.us.old -share/xmodmap/xmodmap.us101A_x86 -share/xmodmap/xmodmap.us_intl -share/xmodmap/xmodmap.yu -@dirrm share/pixmaps/stickynotes -%%CPUFREQ%%@dirrm share/pixmaps/cpufreq-applet -@dirrm share/pixmaps/accessx-status-applet -@dirrm share/omf/trashapplet -@dirrm share/omf/stickynotes_applet -@dirrm share/omf/multiload -@dirrm share/omf/mixer_applet2 -%%PYTHON%%@dirrm share/omf/invest-applet -@dirrm share/omf/gweather -@dirrm share/omf/gswitchit -@dirrm share/omf/geyes -@dirrm share/omf/drivemount -%%CPUFREQ%%@dirrm share/omf/cpufreq-applet -%%COMMANDER%%@dirrm share/omf/command-line -@dirrm share/omf/char-palette -%%BATTERY%%@dirrm share/omf/battstat -@dirrm share/omf/accessx-status -@dirrm share/gnome/help/trashapplet/uk/figures -@dirrm share/gnome/help/trashapplet/uk -@dirrm share/gnome/help/trashapplet/sv/figures -@dirrm share/gnome/help/trashapplet/sv -@dirrm share/gnome/help/trashapplet/ru/figures -@dirrm share/gnome/help/trashapplet/ru -@dirrm share/gnome/help/trashapplet/pt_BR/figures -@dirrm share/gnome/help/trashapplet/pt_BR -@dirrm share/gnome/help/trashapplet/pa/figures -@dirrm share/gnome/help/trashapplet/pa -@dirrm share/gnome/help/trashapplet/oc/figures -@dirrm share/gnome/help/trashapplet/oc -@dirrm share/gnome/help/trashapplet/nl/figures -@dirrm share/gnome/help/trashapplet/nl -@dirrm share/gnome/help/trashapplet/it/figures -@dirrm share/gnome/help/trashapplet/it -@dirrm share/gnome/help/trashapplet/hu/figures -@dirrm share/gnome/help/trashapplet/hu -@dirrm share/gnome/help/trashapplet/fr/figures -@dirrm share/gnome/help/trashapplet/fr -@dirrm share/gnome/help/trashapplet/fi/figures -@dirrm share/gnome/help/trashapplet/fi -@dirrm share/gnome/help/trashapplet/eu/figures -@dirrm share/gnome/help/trashapplet/eu -@dirrm share/gnome/help/trashapplet/es/figures -@dirrm share/gnome/help/trashapplet/es -@dirrm share/gnome/help/trashapplet/en_GB/figures -@dirrm share/gnome/help/trashapplet/en_GB -@dirrm share/gnome/help/trashapplet/el/figures -@dirrm share/gnome/help/trashapplet/el -@dirrm share/gnome/help/trashapplet/de/figures -@dirrm share/gnome/help/trashapplet/de -@dirrm share/gnome/help/trashapplet/da/figures -@dirrm share/gnome/help/trashapplet/da -@dirrm share/gnome/help/trashapplet/cs/figures -@dirrm share/gnome/help/trashapplet/cs -@dirrm share/gnome/help/trashapplet/ca/figures -@dirrm share/gnome/help/trashapplet/ca -@dirrm share/gnome/help/trashapplet/C/figures -@dirrm share/gnome/help/trashapplet/C -@dirrm share/gnome/help/trashapplet -@dirrm share/gnome/help/stickynotes_applet/uk/figures -@dirrm share/gnome/help/stickynotes_applet/uk -@dirrm share/gnome/help/stickynotes_applet/sv/figures -@dirrm share/gnome/help/stickynotes_applet/sv -@dirrm share/gnome/help/stickynotes_applet/ru/figures -@dirrm share/gnome/help/stickynotes_applet/ru -@dirrm share/gnome/help/stickynotes_applet/pt_BR/figures -@dirrm share/gnome/help/stickynotes_applet/pt_BR -@dirrm share/gnome/help/stickynotes_applet/pa/figures -@dirrm share/gnome/help/stickynotes_applet/pa -@dirrm share/gnome/help/stickynotes_applet/oc/figures -@dirrm share/gnome/help/stickynotes_applet/oc -@dirrm share/gnome/help/stickynotes_applet/ko/figures -@dirrm share/gnome/help/stickynotes_applet/ko -@dirrm share/gnome/help/stickynotes_applet/fr/figures -@dirrm share/gnome/help/stickynotes_applet/fr -@dirrm share/gnome/help/stickynotes_applet/fi/figures -@dirrm share/gnome/help/stickynotes_applet/fi -@dirrm share/gnome/help/stickynotes_applet/eu/figures -@dirrm share/gnome/help/stickynotes_applet/eu -@dirrm share/gnome/help/stickynotes_applet/es/figures -@dirrm share/gnome/help/stickynotes_applet/es -@dirrm share/gnome/help/stickynotes_applet/en_GB/figures -@dirrm share/gnome/help/stickynotes_applet/en_GB -@dirrm share/gnome/help/stickynotes_applet/el/figures -@dirrm share/gnome/help/stickynotes_applet/el -@dirrm share/gnome/help/stickynotes_applet/de/figures -@dirrm share/gnome/help/stickynotes_applet/de -@dirrm share/gnome/help/stickynotes_applet/ca/figures -@dirrm share/gnome/help/stickynotes_applet/ca -@dirrm share/gnome/help/stickynotes_applet/C/figures -@dirrm share/gnome/help/stickynotes_applet/C -@dirrm share/gnome/help/stickynotes_applet -@dirrm share/gnome/help/multiload/uk/figures -@dirrm share/gnome/help/multiload/uk -@dirrm share/gnome/help/multiload/sv/figures -@dirrm share/gnome/help/multiload/sv -@dirrm share/gnome/help/multiload/ru/figures -@dirrm share/gnome/help/multiload/ru -@dirrm share/gnome/help/multiload/pt_BR/figures -@dirrm share/gnome/help/multiload/pt_BR -@dirrm share/gnome/help/multiload/pa/figures -@dirrm share/gnome/help/multiload/pa -@dirrm share/gnome/help/multiload/oc/figures -@dirrm share/gnome/help/multiload/oc -@dirrm share/gnome/help/multiload/ko/figures -@dirrm share/gnome/help/multiload/ko -@dirrm share/gnome/help/multiload/fr/figures -@dirrm share/gnome/help/multiload/fr -@dirrm share/gnome/help/multiload/fi/figures -@dirrm share/gnome/help/multiload/fi -@dirrm share/gnome/help/multiload/eu/figures -@dirrm share/gnome/help/multiload/eu -@dirrm share/gnome/help/multiload/es/figures -@dirrm share/gnome/help/multiload/es -@dirrm share/gnome/help/multiload/en_GB/figures -@dirrm share/gnome/help/multiload/en_GB -@dirrm share/gnome/help/multiload/de/figures -@dirrm share/gnome/help/multiload/de -@dirrm share/gnome/help/multiload/ca/figures -@dirrm share/gnome/help/multiload/ca -@dirrm share/gnome/help/multiload/C/figures -@dirrm share/gnome/help/multiload/C -@dirrm share/gnome/help/multiload -@dirrm share/gnome/help/mixer_applet2/uk/figures -@dirrm share/gnome/help/mixer_applet2/uk -@dirrm share/gnome/help/mixer_applet2/sv/figures -@dirrm share/gnome/help/mixer_applet2/sv -@dirrm share/gnome/help/mixer_applet2/ru/figures -@dirrm share/gnome/help/mixer_applet2/ru -@dirrm share/gnome/help/mixer_applet2/pt_BR/figures -@dirrm share/gnome/help/mixer_applet2/pt_BR -@dirrm share/gnome/help/mixer_applet2/pa/figures -@dirrm share/gnome/help/mixer_applet2/pa -@dirrm share/gnome/help/mixer_applet2/oc/figures -@dirrm share/gnome/help/mixer_applet2/oc -@dirrm share/gnome/help/mixer_applet2/ko/figures -@dirrm share/gnome/help/mixer_applet2/ko -@dirrm share/gnome/help/mixer_applet2/it/figures -@dirrm share/gnome/help/mixer_applet2/it -@dirrm share/gnome/help/mixer_applet2/hu/figures -@dirrm share/gnome/help/mixer_applet2/hu -@dirrm share/gnome/help/mixer_applet2/fr/figures -@dirrm share/gnome/help/mixer_applet2/fr -@dirrm share/gnome/help/mixer_applet2/fi/figures -@dirrm share/gnome/help/mixer_applet2/fi -@dirrm share/gnome/help/mixer_applet2/eu/figures -@dirrm share/gnome/help/mixer_applet2/eu -@dirrm share/gnome/help/mixer_applet2/es/figures -@dirrm share/gnome/help/mixer_applet2/es -@dirrm share/gnome/help/mixer_applet2/en_GB/figures -@dirrm share/gnome/help/mixer_applet2/en_GB -@dirrm share/gnome/help/mixer_applet2/el/figures -@dirrm share/gnome/help/mixer_applet2/el -@dirrm share/gnome/help/mixer_applet2/de/figures -@dirrm share/gnome/help/mixer_applet2/de -@dirrm share/gnome/help/mixer_applet2/cs/figures -@dirrm share/gnome/help/mixer_applet2/cs -@dirrm share/gnome/help/mixer_applet2/ca/figures -@dirrm share/gnome/help/mixer_applet2/ca -@dirrm share/gnome/help/mixer_applet2/C/figures -@dirrm share/gnome/help/mixer_applet2/C -@dirrm share/gnome/help/mixer_applet2 -%%PYTHON%%@dirrm share/gnome/help/invest-applet/sv -%%PYTHON%%@dirrm share/gnome/help/invest-applet/fi -%%PYTHON%%@dirrm share/gnome/help/invest-applet/es -%%PYTHON%%@dirrm share/gnome/help/invest-applet/el -%%PYTHON%%@dirrm share/gnome/help/invest-applet/en_GB -%%PYTHON%%@dirrm share/gnome/help/invest-applet/de -%%PYTHON%%@dirrm share/gnome/help/invest-applet/C -%%PYTHON%%@dirrm share/gnome/help/invest-applet -@dirrm share/gnome/help/gweather/zh_CN/figures -@dirrm share/gnome/help/gweather/zh_CN -@dirrm share/gnome/help/gweather/uk/figures -@dirrm share/gnome/help/gweather/uk -@dirrm share/gnome/help/gweather/sv/figures -@dirrm share/gnome/help/gweather/sv -@dirrm share/gnome/help/gweather/ru/figures -@dirrm share/gnome/help/gweather/ru -@dirrm share/gnome/help/gweather/pt_BR/figures -@dirrm share/gnome/help/gweather/pt_BR -@dirrm share/gnome/help/gweather/pa/figures -@dirrm share/gnome/help/gweather/pa -@dirrm share/gnome/help/gweather/oc/figures -@dirrm share/gnome/help/gweather/oc -@dirrm share/gnome/help/gweather/nl/figures -@dirrm share/gnome/help/gweather/nl -@dirrm share/gnome/help/gweather/ko/figures -@dirrm share/gnome/help/gweather/ko -@dirrm share/gnome/help/gweather/fr/figures -@dirrm share/gnome/help/gweather/fr -@dirrm share/gnome/help/gweather/fi/figures -@dirrm share/gnome/help/gweather/fi -@dirrm share/gnome/help/gweather/eu/figures -@dirrm share/gnome/help/gweather/eu -@dirrm share/gnome/help/gweather/es/figures -@dirrm share/gnome/help/gweather/es -@dirrm share/gnome/help/gweather/en_GB/figures -@dirrm share/gnome/help/gweather/en_GB -@dirrm share/gnome/help/gweather/de/figures -@dirrm share/gnome/help/gweather/de -@dirrm share/gnome/help/gweather/C/figures -@dirrm share/gnome/help/gweather/C -@dirrm share/gnome/help/gweather -@dirrm share/gnome/help/gswitchit/uk -@dirrm share/gnome/help/gswitchit/sv -@dirrm share/gnome/help/gswitchit/ru -@dirrm share/gnome/help/gswitchit/oc -@dirrm share/gnome/help/gswitchit/fr -@dirrm share/gnome/help/gswitchit/fi -@dirrm share/gnome/help/gswitchit/eu -@dirrm share/gnome/help/gswitchit/es -@dirrm share/gnome/help/gswitchit/en_GB -@dirrm share/gnome/help/gswitchit/el -@dirrm share/gnome/help/gswitchit/de -@dirrm share/gnome/help/gswitchit/cs -@dirrm share/gnome/help/gswitchit/ca -@dirrm share/gnome/help/gswitchit/C -@dirrm share/gnome/help/gswitchit -@dirrm share/gnome/help/geyes/uk/figures -@dirrm share/gnome/help/geyes/uk -@dirrm share/gnome/help/geyes/sv/figures -@dirrm share/gnome/help/geyes/sv -@dirrm share/gnome/help/geyes/ru/figures -@dirrm share/gnome/help/geyes/ru -@dirrm share/gnome/help/geyes/oc/figures -@dirrm share/gnome/help/geyes/oc -@dirrm share/gnome/help/geyes/ko/figures -@dirrm share/gnome/help/geyes/ko -@dirrm share/gnome/help/geyes/it/figures -@dirrm share/gnome/help/geyes/it -@dirrm share/gnome/help/geyes/fr/figures -@dirrm share/gnome/help/geyes/fr -@dirrm share/gnome/help/geyes/fi/figures -@dirrm share/gnome/help/geyes/fi -@dirrm share/gnome/help/geyes/eu/figures -@dirrm share/gnome/help/geyes/eu -@dirrm share/gnome/help/geyes/es/figures -@dirrm share/gnome/help/geyes/es -@dirrm share/gnome/help/geyes/en_GB/figures -@dirrm share/gnome/help/geyes/en_GB -@dirrm share/gnome/help/geyes/de/figures -@dirrm share/gnome/help/geyes/de -@dirrm share/gnome/help/geyes/da/figures -@dirrm share/gnome/help/geyes/da -@dirrm share/gnome/help/geyes/cs/figures -@dirrm share/gnome/help/geyes/cs -@dirrm share/gnome/help/geyes/ca/figures -@dirrm share/gnome/help/geyes/ca -@dirrm share/gnome/help/geyes/bg/figures -@dirrm share/gnome/help/geyes/bg -@dirrm share/gnome/help/geyes/C/figures -@dirrm share/gnome/help/geyes/C -@dirrm share/gnome/help/geyes -@dirrm share/gnome/help/drivemount/zh_CN/figures -@dirrm share/gnome/help/drivemount/zh_CN -@dirrm share/gnome/help/drivemount/uk/figures -@dirrm share/gnome/help/drivemount/uk -@dirrm share/gnome/help/drivemount/sv/figures -@dirrm share/gnome/help/drivemount/sv -@dirrm share/gnome/help/drivemount/ru/figures -@dirrm share/gnome/help/drivemount/ru -@dirrm share/gnome/help/drivemount/pa/figures -@dirrm share/gnome/help/drivemount/pa -@dirrm share/gnome/help/drivemount/oc/figures -@dirrm share/gnome/help/drivemount/oc -@dirrm share/gnome/help/drivemount/ko/figures -@dirrm share/gnome/help/drivemount/ko -@dirrm share/gnome/help/drivemount/it/figures -@dirrm share/gnome/help/drivemount/it -@dirrm share/gnome/help/drivemount/fr/figures -@dirrm share/gnome/help/drivemount/fr -@dirrm share/gnome/help/drivemount/fi/figures -@dirrm share/gnome/help/drivemount/fi -@dirrm share/gnome/help/drivemount/eu/figures -@dirrm share/gnome/help/drivemount/eu -@dirrm share/gnome/help/drivemount/es/figures -@dirrm share/gnome/help/drivemount/es -@dirrm share/gnome/help/drivemount/en_GB/figures -@dirrm share/gnome/help/drivemount/en_GB -@dirrm share/gnome/help/drivemount/de/figures -@dirrm share/gnome/help/drivemount/de -@dirrm share/gnome/help/drivemount/C/figures -@dirrm share/gnome/help/drivemount/C -@dirrm share/gnome/help/drivemount -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/zh_CN/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/zh_CN -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/uk/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/uk -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/sv/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/sv -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ru/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ru -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/pt_BR/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/pt_BR -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/oc/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/oc -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/nl/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/nl -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fr/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fr -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fi/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fi -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/eu/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/eu -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/es/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/es -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/en_GB/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/en_GB -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/de/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/de -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ca/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ca -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/C/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/C -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet -%%COMMANDER%%@dirrm share/gnome/help/command-line/uk/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/uk -%%COMMANDER%%@dirrm share/gnome/help/command-line/sv/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/sv -%%COMMANDER%%@dirrm share/gnome/help/command-line/pt_BR/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/pt_BR -%%COMMANDER%%@dirrm share/gnome/help/command-line/oc/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/oc -%%COMMANDER%%@dirrm share/gnome/help/command-line/ko/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/ko -%%COMMANDER%%@dirrm share/gnome/help/command-line/fr/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/fr -%%COMMANDER%%@dirrm share/gnome/help/command-line/eu/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/eu -%%COMMANDER%%@dirrm share/gnome/help/command-line/es/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/es -%%COMMANDER%%@dirrm share/gnome/help/command-line/en_GB/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/en_GB -%%COMMANDER%%@dirrm share/gnome/help/command-line/el/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/el -%%COMMANDER%%@dirrm share/gnome/help/command-line/de/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/de -%%COMMANDER%%@dirrm share/gnome/help/command-line/C/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/C -%%COMMANDER%%@dirrm share/gnome/help/command-line -@dirrm share/gnome/help/char-palette/uk/figures -@dirrm share/gnome/help/char-palette/uk -@dirrm share/gnome/help/char-palette/sv/figures -@dirrm share/gnome/help/char-palette/sv -@dirrm share/gnome/help/char-palette/ru/figures -@dirrm share/gnome/help/char-palette/ru -@dirrm share/gnome/help/char-palette/pt_BR/figures -@dirrm share/gnome/help/char-palette/pt_BR -@dirrm share/gnome/help/char-palette/oc/figures -@dirrm share/gnome/help/char-palette/oc -@dirrm share/gnome/help/char-palette/nl/figures -@dirrm share/gnome/help/char-palette/nl -@dirrm share/gnome/help/char-palette/ko/figures -@dirrm share/gnome/help/char-palette/ko -@dirrm share/gnome/help/char-palette/it/figures -@dirrm share/gnome/help/char-palette/it -@dirrm share/gnome/help/char-palette/fr/figures -@dirrm share/gnome/help/char-palette/fr -@dirrm share/gnome/help/char-palette/fi/figures -@dirrm share/gnome/help/char-palette/fi -@dirrm share/gnome/help/char-palette/eu/figures -@dirrm share/gnome/help/char-palette/eu -@dirrm share/gnome/help/char-palette/es/figures -@dirrm share/gnome/help/char-palette/es -@dirrm share/gnome/help/char-palette/en_GB/figures -@dirrm share/gnome/help/char-palette/en_GB -@dirrm share/gnome/help/char-palette/de/figures -@dirrm share/gnome/help/char-palette/de -@dirrm share/gnome/help/char-palette/ca/figures -@dirrm share/gnome/help/char-palette/ca -@dirrm share/gnome/help/char-palette/bg/figures -@dirrm share/gnome/help/char-palette/bg -@dirrm share/gnome/help/char-palette/C/figures -@dirrm share/gnome/help/char-palette/C -@dirrm share/gnome/help/char-palette -%%BATTERY%%@dirrm share/gnome/help/battstat/uk/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/uk -%%BATTERY%%@dirrm share/gnome/help/battstat/sv/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/sv -%%BATTERY%%@dirrm share/gnome/help/battstat/pt_BR/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/pt_BR -%%BATTERY%%@dirrm share/gnome/help/battstat/pa/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/pa -%%BATTERY%%@dirrm share/gnome/help/battstat/oc/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/oc -%%BATTERY%%@dirrm share/gnome/help/battstat/ko/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/ko -%%BATTERY%%@dirrm share/gnome/help/battstat/fr/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/fr -%%BATTERY%%@dirrm share/gnome/help/battstat/fi/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/fi -%%BATTERY%%@dirrm share/gnome/help/battstat/eu/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/eu -%%BATTERY%%@dirrm share/gnome/help/battstat/es/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/es -%%BATTERY%%@dirrm share/gnome/help/battstat/en_GB/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/en_GB -%%BATTERY%%@dirrm share/gnome/help/battstat/el/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/el -%%BATTERY%%@dirrm share/gnome/help/battstat/de/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/de -%%BATTERY%%@dirrm share/gnome/help/battstat/bg/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/bg -%%BATTERY%%@dirrm share/gnome/help/battstat/C/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/C -%%BATTERY%%@dirrm share/gnome/help/battstat -@dirrm share/gnome/help/accessx-status/uk/figures -@dirrm share/gnome/help/accessx-status/uk -@dirrm share/gnome/help/accessx-status/sv/figures -@dirrm share/gnome/help/accessx-status/sv -@dirrm share/gnome/help/accessx-status/oc/figures -@dirrm share/gnome/help/accessx-status/oc -@dirrm share/gnome/help/accessx-status/nl/figures -@dirrm share/gnome/help/accessx-status/nl -@dirrm share/gnome/help/accessx-status/ko/figures -@dirrm share/gnome/help/accessx-status/ko -@dirrm share/gnome/help/accessx-status/it/figures -@dirrm share/gnome/help/accessx-status/it -@dirrm share/gnome/help/accessx-status/fr/figures -@dirrm share/gnome/help/accessx-status/fr -@dirrm share/gnome/help/accessx-status/fi/figures -@dirrm share/gnome/help/accessx-status/fi -@dirrm share/gnome/help/accessx-status/eu/figures -@dirrm share/gnome/help/accessx-status/eu -@dirrm share/gnome/help/accessx-status/es/figures -@dirrm share/gnome/help/accessx-status/es -@dirrm share/gnome/help/accessx-status/en_GB/figures -@dirrm share/gnome/help/accessx-status/en_GB -@dirrm share/gnome/help/accessx-status/el/figures -@dirrm share/gnome/help/accessx-status/el -@dirrm share/gnome/help/accessx-status/de/figures -@dirrm share/gnome/help/accessx-status/de -@dirrm share/gnome/help/accessx-status/cs/figures -@dirrm share/gnome/help/accessx-status/cs -@dirrm share/gnome/help/accessx-status/ca/figures -@dirrm share/gnome/help/accessx-status/ca -@dirrm share/gnome/help/accessx-status/bg/figures -@dirrm share/gnome/help/accessx-status/bg -@dirrm share/gnome/help/accessx-status/C/figures -@dirrm share/gnome/help/accessx-status/C -@dirrm share/gnome/help/accessx-status -%%PYTHON%%@dirrm %%DATADIR%%/invest-applet -@dirrm %%DATADIR%%/geyes/Tango -@dirrm %%DATADIR%%/geyes/Horrid -@dirrm %%DATADIR%%/geyes/Default-tiny -@dirrm %%DATADIR%%/geyes/Default -@dirrm %%DATADIR%%/geyes/Bloodshot -@dirrm %%DATADIR%%/geyes/Bizarre -@dirrm %%DATADIR%%/geyes -@dirrm %%DATADIR%%/builder -@dirrm %%DATADIR%% -%%COMMANDER%%@dirrmtry libexec/gnome-applets -%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/invest -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/es_VE/LC_MESSAGES -@dirrmtry share/locale/es_VE -@dirrmtry share/locale/es_UY/LC_MESSAGES -@dirrmtry share/locale/es_UY -@dirrmtry share/locale/es_SV/LC_MESSAGES -@dirrmtry share/locale/es_SV -@dirrmtry share/locale/es_PR/LC_MESSAGES -@dirrmtry share/locale/es_PR -@dirrmtry share/locale/es_PE/LC_MESSAGES -@dirrmtry share/locale/es_PE -@dirrmtry share/locale/es_PA/LC_MESSAGES -@dirrmtry share/locale/es_PA -@dirrmtry share/locale/es_NI/LC_MESSAGES -@dirrmtry share/locale/es_NI -@dirrmtry share/locale/es_HN/LC_MESSAGES -@dirrmtry share/locale/es_HN -@dirrmtry share/locale/es_GT/LC_MESSAGES -@dirrmtry share/locale/es_GT -@dirrmtry share/locale/es_EC/LC_MESSAGES -@dirrmtry share/locale/es_EC -@dirrmtry share/locale/es_DO/LC_MESSAGES -@dirrmtry share/locale/es_DO -@dirrmtry share/locale/es_CR/LC_MESSAGES -@dirrmtry share/locale/es_CR -@dirrmtry share/locale/es_CO/LC_MESSAGES -@dirrmtry share/locale/es_CO -@dirrmtry share/locale/es_CL/LC_MESSAGES -@dirrmtry share/locale/es_CL -@dirrmtry share/locale/es_AR/LC_MESSAGES -@dirrmtry share/locale/es_AR -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-desktop/Makefile b/x11/gnome-desktop/Makefile deleted file mode 100644 index 3750b556e..000000000 --- a/x11/gnome-desktop/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: gnomedesktop -# Date created: 13 April 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-desktop/Makefile,v 1.157 2009/03/05 05:56:51 marcus Exp $ -# - -PORTNAME= gnome-desktop -PORTVERSION= 2.26.0 -PORTREVISION?= 0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Additional UI API for GNOME 2 - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -RUN_DEPENDS= ${pygnome2_DETECT}:${PORTSDIR}/x11-toolkits/py-gnome2 - -USE_XORG= xpm -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui gnomedocutils \ - ltverhack referencehack -GNOME_DESKTOP_VERSION=2 -USE_GETTEXT= yes -USE_GMAKE= yes -USE_BISON= build -USE_PYTHON= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --with-gnome-distributor="FreeBSD GNOME Project" \ - --with-kde-datadir=${LOCALBASE}/share -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-about.1 - -post-patch: - @${REINPLACE_CMD} -e 's|xsltproc -o| xsltproc --nonet -o|g' \ - ${WRKSRC}/desktop-docs/fdl/Makefile.in \ - ${WRKSRC}/desktop-docs/gpl/Makefile.in \ - ${WRKSRC}/desktop-docs/lgpl/Makefile.in - -.include <bsd.port.mk> - -.endif diff --git a/x11/gnome-desktop/distinfo b/x11/gnome-desktop/distinfo deleted file mode 100644 index 23ed78cda..000000000 --- a/x11/gnome-desktop/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-desktop-2.26.0.tar.bz2) = 796fc830e0baff24381809a7abe012f8 -SHA256 (gnome2/gnome-desktop-2.26.0.tar.bz2) = 3b3fe18bc30ad60f1bbbb2bc2d2ec14a2f9babb9312eb4834395b5839b7d7ee9 -SIZE (gnome2/gnome-desktop-2.26.0.tar.bz2) = 3186127 diff --git a/x11/gnome-desktop/pkg-descr b/x11/gnome-desktop/pkg-descr deleted file mode 100644 index bda4df791..000000000 --- a/x11/gnome-desktop/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a collection of APIs not included in libgnomeui. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-desktop/pkg-plist b/x11/gnome-desktop/pkg-plist deleted file mode 100644 index 778cfb503..000000000 --- a/x11/gnome-desktop/pkg-plist +++ /dev/null @@ -1,401 +0,0 @@ -bin/gnome-about -include/gnome-desktop-2.0/libgnome/gnome-desktop-item.h -include/gnome-desktop-2.0/libgnome/gnome-desktop-utils.h -include/gnome-desktop-2.0/libgnomeui/gnome-bg.h -include/gnome-desktop-2.0/libgnomeui/gnome-bg-crossfade.h -include/gnome-desktop-2.0/libgnomeui/gnome-desktop-thumbnail.h -include/gnome-desktop-2.0/libgnomeui/gnome-rr-config.h -include/gnome-desktop-2.0/libgnomeui/gnome-rr-labeler.h -include/gnome-desktop-2.0/libgnomeui/gnome-rr.h -lib/libgnome-desktop-2.a -lib/libgnome-desktop-2.la -lib/libgnome-desktop-2.so -lib/libgnome-desktop-2.so.11 -libdata/pkgconfig/gnome-desktop-2.0.pc -share/applications/gnome-about.desktop -share/gnome-about/contributors.list -share/gnome-about/foundation-members.list -share/gnome-about/gnome-64.png -share/gnome-about/gnome-version.xml -share/gnome-about/headers/header-bg-ancient01a.png -share/gnome-about/headers/header-bg-city01.png -share/gnome-about/headers/header-bg-clouds01.png -share/gnome-about/headers/header-bg-clouds02.png -share/gnome-about/headers/header-bg-hills01.png -share/gnome-about/headers/header-bg-landscape01.png -share/gnome-about/headers/header-bg-mountains01.png -share/gnome-about/headers/header-bg-snow01.png -share/gnome-about/headers/header-bg-sunset01.png -share/gnome/help/fdl/C/fdl.xml -share/gnome/help/fdl/ar/fdl.xml -share/gnome/help/fdl/de/fdl.xml -share/gnome/help/fdl/es/fdl.xml -share/gnome/help/fdl/eu/fdl.xml -share/gnome/help/fdl/fr/fdl.xml -share/gnome/help/fdl/hu/fdl.xml -share/gnome/help/fdl/ko/fdl.xml -share/gnome/help/fdl/oc/fdl.xml -share/gnome/help/fdl/sv/fdl.xml -share/gnome/help/fdl/uk/fdl.xml -share/gnome/help/fdl/vi/fdl.xml -share/gnome/help/gpl/C/gpl.xml -share/gnome/help/gpl/ar/gpl.xml -share/gnome/help/gpl/ca/gpl.xml -share/gnome/help/gpl/cs/gpl.xml -share/gnome/help/gpl/de/gpl.xml -share/gnome/help/gpl/es/gpl.xml -share/gnome/help/gpl/eu/gpl.xml -share/gnome/help/gpl/fi/gpl.xml -share/gnome/help/gpl/fr/gpl.xml -share/gnome/help/gpl/hu/gpl.xml -share/gnome/help/gpl/ko/gpl.xml -share/gnome/help/gpl/oc/gpl.xml -share/gnome/help/gpl/pa/gpl.xml -share/gnome/help/gpl/sv/gpl.xml -share/gnome/help/gpl/uk/gpl.xml -share/gnome/help/gpl/vi/gpl.xml -share/gnome/help/gpl/zh_CN/gpl.xml -share/gnome/help/lgpl/C/lgpl.xml -share/gnome/help/lgpl/ar/lgpl.xml -share/gnome/help/lgpl/de/lgpl.xml -share/gnome/help/lgpl/es/lgpl.xml -share/gnome/help/lgpl/eu/lgpl.xml -share/gnome/help/lgpl/fi/lgpl.xml -share/gnome/help/lgpl/fr/lgpl.xml -share/gnome/help/lgpl/hu/lgpl.xml -share/gnome/help/lgpl/ko/lgpl.xml -share/gnome/help/lgpl/oc/lgpl.xml -share/gnome/help/lgpl/pa/lgpl.xml -share/gnome/help/lgpl/sv/lgpl.xml -share/gnome/help/lgpl/uk/lgpl.xml -share/gnome/help/lgpl/vi/lgpl.xml -share/gnome/help/lgpl/zh_CN/lgpl.xml -share/locale/af/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/am/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/as/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ast/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/az/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/be/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/br/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/crh/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/da/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/de/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/el/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/eo/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/es/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/et/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/fur/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/he/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/id/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ig/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/is/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/it/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/kk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ky/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/li/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mai/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nso/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/or/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ps/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/si/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/te/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/th/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/tk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ug/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ur/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/uz/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/yi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/yo/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zu/LC_MESSAGES/gnome-desktop-2.0.mo -share/omf/fdl/fdl-C.omf -share/omf/fdl/fdl-ar.omf -share/omf/fdl/fdl-de.omf -share/omf/fdl/fdl-es.omf -share/omf/fdl/fdl-eu.omf -share/omf/fdl/fdl-fr.omf -share/omf/fdl/fdl-hu.omf -share/omf/fdl/fdl-ko.omf -share/omf/fdl/fdl-oc.omf -share/omf/fdl/fdl-sv.omf -share/omf/fdl/fdl-uk.omf -share/omf/fdl/fdl-vi.omf -share/omf/gpl/gpl-C.omf -share/omf/gpl/gpl-ar.omf -share/omf/gpl/gpl-ca.omf -share/omf/gpl/gpl-cs.omf -share/omf/gpl/gpl-de.omf -share/omf/gpl/gpl-es.omf -share/omf/gpl/gpl-eu.omf -share/omf/gpl/gpl-fi.omf -share/omf/gpl/gpl-fr.omf -share/omf/gpl/gpl-hu.omf -share/omf/gpl/gpl-ko.omf -share/omf/gpl/gpl-oc.omf -share/omf/gpl/gpl-pa.omf -share/omf/gpl/gpl-sv.omf -share/omf/gpl/gpl-uk.omf -share/omf/gpl/gpl-vi.omf -share/omf/gpl/gpl-zh_CN.omf -share/omf/lgpl/lgpl-C.omf -share/omf/lgpl/lgpl-ar.omf -share/omf/lgpl/lgpl-de.omf -share/omf/lgpl/lgpl-es.omf -share/omf/lgpl/lgpl-eu.omf -share/omf/lgpl/lgpl-fi.omf -share/omf/lgpl/lgpl-fr.omf -share/omf/lgpl/lgpl-hu.omf -share/omf/lgpl/lgpl-ko.omf -share/omf/lgpl/lgpl-oc.omf -share/omf/lgpl/lgpl-pa.omf -share/omf/lgpl/lgpl-sv.omf -share/omf/lgpl/lgpl-uk.omf -share/omf/lgpl/lgpl-vi.omf -share/omf/lgpl/lgpl-zh_CN.omf -share/pixmaps/apple-green.png -share/pixmaps/apple-red.png -share/pixmaps/gnome-aorta.png -share/pixmaps/gnome-applets.png -share/pixmaps/gnome-background-image.png -share/pixmaps/gnome-background-pattern.png -share/pixmaps/gnome-background.png -share/pixmaps/gnome-calc2.png -share/pixmaps/gnome-calc3.png -share/pixmaps/gnome-calendar.png -share/pixmaps/gnome-ccbackground.png -share/pixmaps/gnome-ccdesktop.png -share/pixmaps/gnome-ccdialog.png -share/pixmaps/gnome-ccmime.png -share/pixmaps/gnome-ccperiph.png -share/pixmaps/gnome-ccscreensaver.png -share/pixmaps/gnome-ccwindowmanager.png -share/pixmaps/gnome-color-browser.png -share/pixmaps/gnome-color-xterm.png -share/pixmaps/gnome-computer.png -share/pixmaps/gnome-cromagnon.png -share/pixmaps/gnome-day.png -share/pixmaps/gnome-debian.png -share/pixmaps/gnome-diskfree.png -share/pixmaps/gnome-emacs.png -share/pixmaps/gnome-eterm.png -share/pixmaps/gnome-file-c.png -share/pixmaps/gnome-file-h.png -share/pixmaps/gnome-folder.png -share/pixmaps/gnome-gemvt.png -share/pixmaps/gnome-gimp.png -share/pixmaps/gnome-gmenu.png -share/pixmaps/gnome-gmush.png -share/pixmaps/gnome-gnomoku.png -share/pixmaps/gnome-home.png -share/pixmaps/gnome-html.png -share/pixmaps/gnome-image-gif.png -share/pixmaps/gnome-image-jpeg.png -share/pixmaps/gnome-irc.png -share/pixmaps/gnome-laptop.png -share/pixmaps/gnome-log.png -share/pixmaps/gnome-logo-icon-transparent.png -share/pixmaps/gnome-logo-icon.png -share/pixmaps/gnome-logo-large.png -share/pixmaps/gnome-mdi.png -share/pixmaps/gnome-mnemonic.png -share/pixmaps/gnome-month.png -share/pixmaps/gnome-mouse.png -share/pixmaps/gnome-news.png -share/pixmaps/gnome-note.png -share/pixmaps/gnome-qeye.png -share/pixmaps/gnome-set-time.png -share/pixmaps/gnome-spider.png -share/pixmaps/gnome-squeak.png -share/pixmaps/gnome-suse.png -share/pixmaps/gnome-talk.png -share/pixmaps/gnome-term-linux.png -share/pixmaps/gnome-term-linux2.png -share/pixmaps/gnome-term-night.png -share/pixmaps/gnome-term-tiger.png -share/pixmaps/gnome-term.png -share/pixmaps/gnome-tigert.png -share/pixmaps/gnome-touristinfo.png -share/pixmaps/gnome-user-interface.png -share/pixmaps/gnome-week.png -share/pixmaps/gnome-windows.png -share/pixmaps/gnome-word.png -share/pixmaps/gnome-xterm.png -share/pixmaps/gtkvim.png -share/pixmaps/kterm.xpm -share/pixmaps/monitor.png -share/pixmaps/vnterm.xpm -@dirrm share/omf/lgpl -@dirrm share/omf/gpl -@dirrm share/omf/fdl -@dirrm share/gnome/help/lgpl/zh_CN -@dirrm share/gnome/help/lgpl/vi -@dirrm share/gnome/help/lgpl/uk -@dirrm share/gnome/help/lgpl/sv -@dirrm share/gnome/help/lgpl/pa -@dirrm share/gnome/help/lgpl/oc -@dirrm share/gnome/help/lgpl/ko -@dirrm share/gnome/help/lgpl/hu -@dirrm share/gnome/help/lgpl/fr -@dirrm share/gnome/help/lgpl/fi -@dirrm share/gnome/help/lgpl/eu -@dirrm share/gnome/help/lgpl/es -@dirrm share/gnome/help/lgpl/de -@dirrm share/gnome/help/lgpl/ar -@dirrm share/gnome/help/gpl/zh_CN -@dirrm share/gnome/help/gpl/vi -@dirrm share/gnome/help/gpl/uk -@dirrm share/gnome/help/gpl/sv -@dirrm share/gnome/help/gpl/pa -@dirrm share/gnome/help/gpl/oc -@dirrm share/gnome/help/gpl/ko -@dirrm share/gnome/help/gpl/hu -@dirrm share/gnome/help/gpl/fr -@dirrm share/gnome/help/gpl/fi -@dirrm share/gnome/help/gpl/eu -@dirrm share/gnome/help/gpl/es -@dirrm share/gnome/help/gpl/de -@dirrm share/gnome/help/gpl/cs -@dirrm share/gnome/help/gpl/ca -@dirrm share/gnome/help/gpl/ar -@dirrm share/gnome/help/fdl/vi -@dirrm share/gnome/help/fdl/uk -@dirrm share/gnome/help/fdl/sv -@dirrm share/gnome/help/fdl/oc -@dirrm share/gnome/help/fdl/ko -@dirrm share/gnome/help/fdl/hu -@dirrm share/gnome/help/fdl/fr -@dirrm share/gnome/help/fdl/eu -@dirrm share/gnome/help/fdl/es -@dirrm share/gnome/help/fdl/de -@dirrm share/gnome/help/fdl/ar -@dirrm share/gnome-about/headers -@dirrmtry share/applications -@dirrm include/gnome-desktop-2.0/libgnomeui -@dirrm include/gnome-desktop-2.0/libgnome -@dirrm include/gnome-desktop-2.0 -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yo/LC_MESSAGES -@dirrmtry share/locale/yo -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ur/LC_MESSAGES -@dirrmtry share/locale/ur -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/ig/LC_MESSAGES -@dirrmtry share/locale/ig -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-menus/Makefile b/x11/gnome-menus/Makefile deleted file mode 100644 index a30b8473f..000000000 --- a/x11/gnome-menus/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: gnome-menus -# Date created: 30 November 2004 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-menus/Makefile,v 1.91 2009/03/12 17:55:58 marcus Exp $ -# - -PORTNAME= gnome-menus -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Implementation of the FreeDesktop Desktop Menu Spec - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack glib20 ltverhack -USE_AUTOTOOLS= libtool:15 -USE_PYTHON= yes -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -post-patch: - @${REINPLACE_CMD} -e 's|applications.menu||' \ - ${WRKSRC}/layout/Makefile.in - @${REINPLACE_CMD} -e 's|applications.menu|gnome-applications.menu|' \ - ${WRKSRC}/util/test-menu-spec.c - @${REINPLACE_CMD} -e 's|/usr/share/gnome|${LOCALBASE}/share/gnome|g' \ - ${WRKSRC}/layout/applications.menu \ - ${WRKSRC}/layout/settings.menu - @${SED} -e 's|/usr/local|${LOCALBASE}|g' \ - < ${FILESDIR}/KDE.directory > ${WRKSRC}/KDE.directory - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/simple-editor/GMenuSimpleEditor/menutreemodel.py - -post-install: - @${INSTALL_DATA} ${WRKSRC}/layout/applications.menu \ - ${PREFIX}/etc/xdg/menus/gnome-applications.menu - @${INSTALL_DATA} ${WRKSRC}/KDE.directory \ - ${PREFIX}/share/desktop-directories - -.include <bsd.port.mk> diff --git a/x11/gnome-menus/distinfo b/x11/gnome-menus/distinfo deleted file mode 100644 index 565c10d6f..000000000 --- a/x11/gnome-menus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-menus-2.26.0.tar.bz2) = 55fd07e67d8334de2e03e4e23c011452 -SHA256 (gnome2/gnome-menus-2.26.0.tar.bz2) = 84a97b6d74b14e27888a0f54759e570cb701400c5b176471871bc08a6acafb15 -SIZE (gnome2/gnome-menus-2.26.0.tar.bz2) = 460779 diff --git a/x11/gnome-menus/files/KDE.directory b/x11/gnome-menus/files/KDE.directory deleted file mode 100644 index d8cacb750..000000000 --- a/x11/gnome-menus/files/KDE.directory +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Name=KDE -Comment=Some comment about KDE menu -Icon=/usr/local/share/icons/default.kde/48x48/apps/kmenu.png -Type=Directory diff --git a/x11/gnome-menus/files/patch-Makefile.in b/x11/gnome-menus/files/patch-Makefile.in deleted file mode 100644 index 621e0233c..000000000 --- a/x11/gnome-menus/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Mon Jul 24 15:57:52 2006 -+++ Makefile.in Mon Jul 24 15:58:05 2006 -@@ -244,7 +244,7 @@ sharedstatedir = @sharedstatedir@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - NULL = --@HAVE_PYTHON_TRUE@PYTHON_SUBDIRS = python simple-editor -+@HAVE_PYTHON_TRUE@PYTHON_SUBDIRS = python - ALL_SUBDIRS = \ - po \ - libmenu \ diff --git a/x11/gnome-menus/files/patch-layout::applications.menu b/x11/gnome-menus/files/patch-layout::applications.menu deleted file mode 100644 index 116dad13f..000000000 --- a/x11/gnome-menus/files/patch-layout::applications.menu +++ /dev/null @@ -1,302 +0,0 @@ ---- layout/applications.menu.orig 2008-04-21 15:49:29.000000000 -0400 -+++ layout/applications.menu 2008-04-28 14:51:24.000000000 -0400 -@@ -6,9 +6,8 @@ - <Name>Applications</Name> - <Directory>X-GNOME-Menu-Applications.directory</Directory> - -- <!-- Scan legacy dirs first, as later items take priority --> -- <KDELegacyDirs/> -- <LegacyDir>/etc/X11/applnk</LegacyDir> -+ <!-- Scan legacy dirs first, as later items take priority -+ <LegacyDir>/etc/X11/applnk</LegacyDir> --> - <LegacyDir>/usr/share/gnome/apps</LegacyDir> - - <!-- Read standard .directory and .desktop file locations --> -@@ -31,6 +30,8 @@ - applications here --> - <Not><Category>Accessibility</Category></Not> - <Not><Category>System</Category></Not> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Accessories --> -@@ -43,6 +44,8 @@ - <And> - <Category>Accessibility</Category> - <Not><Category>Settings</Category></Not> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Accessibility --> -@@ -54,6 +57,8 @@ - <Include> - <And> - <Category>Development</Category> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - <Filename>emacs.desktop</Filename> - </Include> -@@ -66,6 +71,8 @@ - <Include> - <And> - <Category>Education</Category> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Education --> -@@ -77,6 +84,8 @@ - <Include> - <And> - <Category>Game</Category> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Games --> -@@ -88,6 +97,8 @@ - <Include> - <And> - <Category>Graphics</Category> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Graphics --> -@@ -99,6 +110,8 @@ - <Include> - <And> - <Category>Network</Category> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Internet --> -@@ -110,6 +123,8 @@ - <Include> - <And> - <Category>AudioVideo</Category> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Multimedia --> -@@ -121,6 +136,8 @@ - <Include> - <And> - <Category>Office</Category> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Office --> -@@ -133,6 +150,8 @@ - <And> - <Category>System</Category> - <Not><Category>Settings</Category></Not> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End System Tools --> -@@ -147,8 +166,197 @@ - <Not><Category>Core</Category></Not> - <Not><Category>Settings</Category></Not> - <Not><Category>Screensaver</Category></Not> -+ <Not><Category>Qt</Category></Not> -+ <Not><Category>KDE</Category></Not> - </And> - </Include> - </Menu> <!-- End Other --> - -+ <!-- Read in overrides and child menus from applications-merged/ --> -+ <DefaultMergeDirs/> -+ -+ <!-- KDE --> -+ <Menu> -+ <KDELegacyDirs/> -+ <Name>KDE</Name> -+ <Directory>KDE.directory</Directory> -+ -+ <!-- KAccessories submenu --> -+ <Menu> -+ <Name>Accessories</Name> -+ <Directory>Accessories.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Utility</Category> -+ <Not> -+ <Category>System</Category> -+ </Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KAccessories --> -+ -+ <!-- KAccessibility submenu --> -+ <Menu> -+ <Name>Accessibility</Name> -+ <Directory>Accessibility.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Accessibility</Category> -+ <Not> -+ <Category>Settings</Category> -+ </Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KAccessibility --> -+ -+ <!-- KDevelopment Tools --> -+ <Menu> -+ <Name>Development</Name> -+ <Directory>Development.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Development</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KDevelopment Tools --> -+ -+ <!-- KEducation --> -+ <Menu> -+ <Name>Education</Name> -+ <Directory>Education.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Education</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KEducation --> -+ -+ <!-- KGames --> -+ <Menu> -+ <Name>Games</Name> -+ <Directory>Games.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Game</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KGames --> -+ -+ <!-- KGraphics --> -+ <Menu> -+ <Name>Graphics</Name> -+ <Directory>Graphics.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Graphics</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KGraphics --> -+ -+ <!-- KInternet --> -+ <Menu> -+ <Name>Internet</Name> -+ <Directory>Internet.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Network</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KInternet --> -+ -+ <!-- KMultimedia --> -+ <Menu> -+ <Name>Multimedia</Name> -+ <Directory>Multimedia.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>AudioVideo</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KMultimedia --> -+ -+ <!-- KOffice --> -+ <Menu> -+ <Name>Office</Name> -+ <Directory>Office.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Or> -+ <Category>Office</Category> -+ </Or> -+ </And> -+ </Include> -+ </Menu><!-- End KOffice --> -+ -+ <!-- KSystem Tools--> -+ <Menu> -+ <Name>System</Name> -+ <Directory>System-Tools.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>System</Category> -+ <Not><Category>Settings</Category></Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KSystem Tools --> -+ -+ <!-- KOther --> -+ <Menu> -+ <Name>Other</Name> -+ <Directory>Other.directory</Directory> -+ <OnlyUnallocated/> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Application</Category> -+ <Not><Category>Core</Category></Not> -+ <Not><Category>Settings</Category></Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KOther --> -+ </Menu> <!-- KDE --> -+ - </Menu> <!-- End Applications --> diff --git a/x11/gnome-menus/files/patch-simple-editor_GMenuSimpleEditor_menutreemodel.py b/x11/gnome-menus/files/patch-simple-editor_GMenuSimpleEditor_menutreemodel.py deleted file mode 100644 index b134a5817..000000000 --- a/x11/gnome-menus/files/patch-simple-editor_GMenuSimpleEditor_menutreemodel.py +++ /dev/null @@ -1,20 +0,0 @@ ---- simple-editor/GMenuSimpleEditor/menutreemodel.py.orig Mon Apr 11 05:36:04 2005 -+++ simple-editor/GMenuSimpleEditor/menutreemodel.py Tue Sep 6 11:04:46 2005 -@@ -29,7 +29,7 @@ - if os.environ.has_key ("XDG_CONFIG_DIRS"): - conf_dirs = os.environ["XDG_CONFIG_DIRS"] - if not conf_dirs: -- conf_dirs = "/etc/xdg" -+ conf_dirs = "%%LOCALBASE%%/etc/xdg" - - for conf_dir in conf_dirs.split (":"): - menu_file_path = os.path.join (conf_dir, "menus", menu_file) -@@ -51,7 +51,7 @@ - if os.environ.has_key ("XDG_DATA_DIRS"): - data_dirs = os.environ["XDG_DATA_DIRS"] - if not data_dirs: -- data_dirs = "/usr/local/share/:/usr/share/" -+ data_dirs = "%%LOCALBASE%%/share/" - - for data_dir in data_dirs.split (":"): - retval = load_icon_from_path (os.path.join (data_dir, "pixmaps", icon_value)) diff --git a/x11/gnome-menus/pkg-descr b/x11/gnome-menus/pkg-descr deleted file mode 100644 index 7b27b4e2e..000000000 --- a/x11/gnome-menus/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -This package is free software and is part of the -GNOME project. - -The package contains an implementation of the draft "Desktop -Menu Specification" from freedesktop.org: - - http://www.freedesktop.org/Standards/menu-spec - -Also contained here are the GNOME menu layout configuration -files, .directory files and assorted menu related utility programs. - --- gnome-menus README - -WWW: http://www.freedesktop.org/Standards/menu-spec diff --git a/x11/gnome-menus/pkg-plist b/x11/gnome-menus/pkg-plist deleted file mode 100644 index 9c9e270ed..000000000 --- a/x11/gnome-menus/pkg-plist +++ /dev/null @@ -1,189 +0,0 @@ -etc/xdg/menus/gnome-applications.menu -etc/xdg/menus/settings.menu -include/gnome-menus/gmenu-tree.h -lib/libgnome-menu.a -lib/libgnome-menu.la -lib/libgnome-menu.so -lib/libgnome-menu.so.2 -%%PYTHON_SITELIBDIR%%/gmenu.a -%%PYTHON_SITELIBDIR%%/gmenu.la -%%PYTHON_SITELIBDIR%%/gmenu.so -libdata/pkgconfig/libgnome-menu.pc -share/desktop-directories/AudioVideo.directory -share/desktop-directories/Development.directory -share/desktop-directories/Education.directory -share/desktop-directories/Game.directory -share/desktop-directories/Graphics.directory -share/desktop-directories/Hardware.directory -share/desktop-directories/InternetAndNetwork.directory -share/desktop-directories/KDE.directory -share/desktop-directories/LookAndFeel.directory -share/desktop-directories/Network.directory -share/desktop-directories/Office.directory -share/desktop-directories/Personal.directory -share/desktop-directories/Settings-System.directory -share/desktop-directories/Settings.directory -share/desktop-directories/System-Tools.directory -share/desktop-directories/System.directory -share/desktop-directories/Utility-Accessibility.directory -share/desktop-directories/Utility.directory -share/desktop-directories/X-GNOME-Menu-Applications.directory -share/desktop-directories/X-GNOME-Menu-System.directory -share/desktop-directories/X-GNOME-Other.directory -share/gnome-menus/examples/gnome-menus-ls.py -share/locale/af/LC_MESSAGES/gnome-menus.mo -share/locale/ar/LC_MESSAGES/gnome-menus.mo -share/locale/as/LC_MESSAGES/gnome-menus.mo -share/locale/ast/LC_MESSAGES/gnome-menus.mo -share/locale/be/LC_MESSAGES/gnome-menus.mo -share/locale/be@latin/LC_MESSAGES/gnome-menus.mo -share/locale/bg/LC_MESSAGES/gnome-menus.mo -share/locale/bn/LC_MESSAGES/gnome-menus.mo -share/locale/bn_IN/LC_MESSAGES/gnome-menus.mo -share/locale/br/LC_MESSAGES/gnome-menus.mo -share/locale/ca/LC_MESSAGES/gnome-menus.mo -share/locale/crh/LC_MESSAGES/gnome-menus.mo -share/locale/cs/LC_MESSAGES/gnome-menus.mo -share/locale/cy/LC_MESSAGES/gnome-menus.mo -share/locale/da/LC_MESSAGES/gnome-menus.mo -share/locale/de/LC_MESSAGES/gnome-menus.mo -share/locale/dz/LC_MESSAGES/gnome-menus.mo -share/locale/el/LC_MESSAGES/gnome-menus.mo -share/locale/en_CA/LC_MESSAGES/gnome-menus.mo -share/locale/en_GB/LC_MESSAGES/gnome-menus.mo -share/locale/eo/LC_MESSAGES/gnome-menus.mo -share/locale/es/LC_MESSAGES/gnome-menus.mo -share/locale/et/LC_MESSAGES/gnome-menus.mo -share/locale/eu/LC_MESSAGES/gnome-menus.mo -share/locale/fa/LC_MESSAGES/gnome-menus.mo -share/locale/fi/LC_MESSAGES/gnome-menus.mo -share/locale/fr/LC_MESSAGES/gnome-menus.mo -share/locale/fur/LC_MESSAGES/gnome-menus.mo -share/locale/ga/LC_MESSAGES/gnome-menus.mo -share/locale/gl/LC_MESSAGES/gnome-menus.mo -share/locale/gn/LC_MESSAGES/gnome-menus.mo -share/locale/gu/LC_MESSAGES/gnome-menus.mo -share/locale/ha/LC_MESSAGES/gnome-menus.mo -share/locale/he/LC_MESSAGES/gnome-menus.mo -share/locale/hi/LC_MESSAGES/gnome-menus.mo -share/locale/hr/LC_MESSAGES/gnome-menus.mo -share/locale/hu/LC_MESSAGES/gnome-menus.mo -share/locale/hy/LC_MESSAGES/gnome-menus.mo -share/locale/id/LC_MESSAGES/gnome-menus.mo -share/locale/ig/LC_MESSAGES/gnome-menus.mo -share/locale/io/LC_MESSAGES/gnome-menus.mo -share/locale/is/LC_MESSAGES/gnome-menus.mo -share/locale/it/LC_MESSAGES/gnome-menus.mo -share/locale/ja/LC_MESSAGES/gnome-menus.mo -share/locale/ka/LC_MESSAGES/gnome-menus.mo -share/locale/kk/LC_MESSAGES/gnome-menus.mo -share/locale/kn/LC_MESSAGES/gnome-menus.mo -share/locale/ko/LC_MESSAGES/gnome-menus.mo -share/locale/ku/LC_MESSAGES/gnome-menus.mo -share/locale/ky/LC_MESSAGES/gnome-menus.mo -share/locale/lt/LC_MESSAGES/gnome-menus.mo -share/locale/lv/LC_MESSAGES/gnome-menus.mo -share/locale/mai/LC_MESSAGES/gnome-menus.mo -share/locale/mg/LC_MESSAGES/gnome-menus.mo -share/locale/mk/LC_MESSAGES/gnome-menus.mo -share/locale/ml/LC_MESSAGES/gnome-menus.mo -share/locale/mn/LC_MESSAGES/gnome-menus.mo -share/locale/mr/LC_MESSAGES/gnome-menus.mo -share/locale/ms/LC_MESSAGES/gnome-menus.mo -share/locale/nb/LC_MESSAGES/gnome-menus.mo -share/locale/ne/LC_MESSAGES/gnome-menus.mo -share/locale/nl/LC_MESSAGES/gnome-menus.mo -share/locale/nn/LC_MESSAGES/gnome-menus.mo -share/locale/oc/LC_MESSAGES/gnome-menus.mo -share/locale/or/LC_MESSAGES/gnome-menus.mo -share/locale/pa/LC_MESSAGES/gnome-menus.mo -share/locale/pl/LC_MESSAGES/gnome-menus.mo -share/locale/ps/LC_MESSAGES/gnome-menus.mo -share/locale/pt/LC_MESSAGES/gnome-menus.mo -share/locale/pt_BR/LC_MESSAGES/gnome-menus.mo -share/locale/ro/LC_MESSAGES/gnome-menus.mo -share/locale/ru/LC_MESSAGES/gnome-menus.mo -share/locale/rw/LC_MESSAGES/gnome-menus.mo -share/locale/si/LC_MESSAGES/gnome-menus.mo -share/locale/sk/LC_MESSAGES/gnome-menus.mo -share/locale/sl/LC_MESSAGES/gnome-menus.mo -share/locale/sq/LC_MESSAGES/gnome-menus.mo -share/locale/sr/LC_MESSAGES/gnome-menus.mo -share/locale/sr@latin/LC_MESSAGES/gnome-menus.mo -share/locale/sv/LC_MESSAGES/gnome-menus.mo -share/locale/ta/LC_MESSAGES/gnome-menus.mo -share/locale/te/LC_MESSAGES/gnome-menus.mo -share/locale/th/LC_MESSAGES/gnome-menus.mo -share/locale/tr/LC_MESSAGES/gnome-menus.mo -share/locale/ug/LC_MESSAGES/gnome-menus.mo -share/locale/uk/LC_MESSAGES/gnome-menus.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-menus.mo -share/locale/vi/LC_MESSAGES/gnome-menus.mo -share/locale/xh/LC_MESSAGES/gnome-menus.mo -share/locale/yo/LC_MESSAGES/gnome-menus.mo -share/locale/zh_CN/LC_MESSAGES/gnome-menus.mo -share/locale/zh_HK/LC_MESSAGES/gnome-menus.mo -share/locale/zh_TW/LC_MESSAGES/gnome-menus.mo -@dirrm share/gnome-menus/examples -@dirrm share/gnome-menus -@dirrmtry share/desktop-directories -@dirrm include/gnome-menus -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yo/LC_MESSAGES -@dirrmtry share/locale/yo -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/io/LC_MESSAGES -@dirrmtry share/locale/io -@dirrmtry share/locale/ig/LC_MESSAGES -@dirrmtry share/locale/ig -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/ha/LC_MESSAGES -@dirrmtry share/locale/ha -@dirrmtry share/locale/gn/LC_MESSAGES -@dirrmtry share/locale/gn -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry etc/xdg/menus diff --git a/x11/gnome-panel/Makefile b/x11/gnome-panel/Makefile deleted file mode 100644 index b8210c4b3..000000000 --- a/x11/gnome-panel/Makefile +++ /dev/null @@ -1,78 +0,0 @@ -# New ports collection makefile for: gnomepanel -# Date created: 27 April 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-panel/Makefile,v 1.198 2009/03/05 06:12:19 marcus Exp $ -# - -PORTNAME= gnome-panel -PORTVERSION= 2.26.0 -PORTREVISION?= 0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Panel component for the GNOME 2 Desktop - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -LIB_DEPENDS= gweather.1:${PORTSDIR}/net/libgweather \ - polkit-gnome.0:${PORTSDIR}/sysutils/policykit-gnome - -USE_GETTEXT= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -INSTALLS_ICONS= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomedesktop librsvg2 \ - libwnck gnomemenus gnomedocutils ltverhack referencehack -WANT_GNOME= yes -GNOME_DESKTOP_VERSION=2 -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --with-kde-datadir=${LOCALBASE}/share \ - --with-kde-docdir=${LOCALBASE}/share/doc \ - --disable-network-manager \ - --enable-polkit -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-panel.1 -GCONF_SCHEMAS= clock.schemas fish.schemas \ - panel-compatibility.schemas panel-general.schemas \ - panel-global.schemas panel-object.schemas \ - panel-toplevel.schemas window-list.schemas \ - workspace-switcher.schemas - -OPTIONS= EVOLUTION "use the Evolution calendar if installed" on - -.if defined(PACKAGE_BUILDING) -.undef WITHOUT_GNOME -WITH_GNOME= yes -.endif - -.include <bsd.port.pre.mk> - -.if defined(WITH_EVOLUTION) && ${HAVE_GNOME:Mevolutiondataserver}!="" -USE_GNOME+= evolutiondataserver -CONFIGURE_ARGS+=--enable-eds -.else -CONFIGURE_ARGS+=--disable-eds -.endif - -post-patch: - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -n 10 ${REINPLACE_CMD} -e \ - 's|"applications.menu"|"gnome-applications.menu"|' - @${REINPLACE_CMD} -e 's|xsltproc -o| xsltproc --nonet -o|g' \ - ${WRKSRC}/help/clock/Makefile.in \ - ${WRKSRC}/help/fish/Makefile.in \ - ${WRKSRC}/help/window-list/Makefile.in \ - ${WRKSRC}/help/workspace-switcher/Makefile.in - -.include <bsd.port.post.mk> - -.endif diff --git a/x11/gnome-panel/distinfo b/x11/gnome-panel/distinfo deleted file mode 100644 index 3b6a87d52..000000000 --- a/x11/gnome-panel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-panel-2.26.0.tar.bz2) = 27965de9b12952b22b7e232af6acb0de -SHA256 (gnome2/gnome-panel-2.26.0.tar.bz2) = e8e21b008d4afcebfc3241d0f91dd2dcc0b171b16f5675fc1b7ed699e79b56f3 -SIZE (gnome2/gnome-panel-2.26.0.tar.bz2) = 3421179 diff --git a/x11/gnome-panel/files/patch-applets_clock_clock-location.c b/x11/gnome-panel/files/patch-applets_clock_clock-location.c deleted file mode 100644 index aa25ac2fc..000000000 --- a/x11/gnome-panel/files/patch-applets_clock_clock-location.c +++ /dev/null @@ -1,11 +0,0 @@ ---- applets/clock/clock-location.c.orig 2008-04-07 17:17:51.000000000 -0400 -+++ applets/clock/clock-location.c 2008-04-07 22:54:31.000000000 -0400 -@@ -27,6 +27,8 @@ - #include "clock-marshallers.h" - #include "set-timezone.h" - -+#define daylight 1 -+ - G_DEFINE_TYPE (ClockLocation, clock_location, G_TYPE_OBJECT) - - typedef struct { diff --git a/x11/gnome-panel/files/patch-applets_clock_clock.c b/x11/gnome-panel/files/patch-applets_clock_clock.c deleted file mode 100644 index 5acc58b40..000000000 --- a/x11/gnome-panel/files/patch-applets_clock_clock.c +++ /dev/null @@ -1,11 +0,0 @@ ---- applets/clock/clock.c.orig 2008-02-26 14:17:49.000000000 +0100 -+++ applets/clock/clock.c 2008-02-26 18:01:17.000000000 +0100 -@@ -84,6 +84,8 @@ - - #define FALLBACK_CONFIG_TOOL "time-admin" - -+#define daylight 1 -+ - static const char *clock_config_tools [] = { - CLOCK_TIME_UTILITY, - FALLBACK_CONFIG_TOOL diff --git a/x11/gnome-panel/files/patch-config.h.in b/x11/gnome-panel/files/patch-config.h.in deleted file mode 100644 index 8a59166a5..000000000 --- a/x11/gnome-panel/files/patch-config.h.in +++ /dev/null @@ -1,11 +0,0 @@ ---- config.h.in.orig Thu Jan 2 19:50:41 2003 -+++ config.h.in Mon Jan 6 13:11:12 2003 -@@ -96,6 +96,8 @@ - /* Define to 1 if you have the <stdlib.h> header file. */ - #undef HAVE_STDLIB_H - -+#undef HAVE_LANGINFO_H -+ - /* Define to 1 if you have the <strings.h> header file. */ - #undef HAVE_STRINGS_H - diff --git a/x11/gnome-panel/files/patch-configure b/x11/gnome-panel/files/patch-configure deleted file mode 100644 index 732f3a860..000000000 --- a/x11/gnome-panel/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed Jan 14 15:54:42 2004 -+++ configure Wed Jan 14 15:55:13 2004 -@@ -5536,7 +5536,7 @@ - - - for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ -- inttypes.h stdint.h unistd.h -+ inttypes.h stdint.h unistd.h langinfo.h - do - as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` - echo "$as_me:$LINENO: checking for $ac_header" >&5 diff --git a/x11/gnome-panel/files/patch-po_ja.po b/x11/gnome-panel/files/patch-po_ja.po deleted file mode 100644 index 5a71e3919..000000000 --- a/x11/gnome-panel/files/patch-po_ja.po +++ /dev/null @@ -1,20 +0,0 @@ ---- po/ja.po.orig 2007-08-13 19:37:02.000000000 -0400 -+++ po/ja.po 2007-08-14 17:00:06.000000000 -0400 -@@ -97,7 +97,7 @@ msgstr "%k:%M" - #. * possible. - #: ../applets/clock/calendar-window.c:234 - msgid "%b %d" --msgstr "%b%eæ—¥" -+msgstr "%B%eæ—¥" - - #: ../applets/clock/calendar-window.c:742 - msgid "_Tasks" -@@ -138,7 +138,7 @@ msgstr "%k:%M:%S" - #. - #: ../applets/clock/clock.c:369 - msgid "%a %b %e" --msgstr "%b%eæ—¥ (%a)" -+msgstr "%B%eæ—¥ (%a)" - - #. translators: reverse the order of these arguments - #. * if the time should come before the diff --git a/x11/gnome-panel/files/patch-po_ko.po b/x11/gnome-panel/files/patch-po_ko.po deleted file mode 100644 index 7de508a0e..000000000 --- a/x11/gnome-panel/files/patch-po_ko.po +++ /dev/null @@ -1,29 +0,0 @@ ---- po/ko.po.orig 2008-02-26 18:15:58.000000000 +0100 -+++ po/ko.po 2008-02-26 18:16:31.000000000 +0100 -@@ -95,7 +95,7 @@ msgstr "%H:%M" - #. * possible. - #: ../applets/clock/calendar-window.c:250 - msgid "%b %d" --msgstr "%b %eì¼" -+msgstr "%B %eì¼" - - #: ../applets/clock/calendar-window.c:765 - msgid "Tasks" -@@ -146,7 +146,7 @@ msgstr "%H:%M:%S" - #. - #: ../applets/clock/clock.c:443 - msgid "%a %b %e" --msgstr "%b %eì¼ (%a)" -+msgstr "%B %eì¼ (%a)" - - #. translators: reverse the order of these arguments - #. * if the time should come before the -@@ -207,7 +207,7 @@ msgstr "%p %I:%M" - - #: ../applets/clock/clock.c:1590 - msgid "%A, %B %d %Y" --msgstr "%Yë…„ %b %eì¼ %A" -+msgstr "%Yë…„ %B %eì¼ %A" - - #: ../applets/clock/clock.c:1665 - #, c-format diff --git a/x11/gnome-panel/pkg-descr b/x11/gnome-panel/pkg-descr deleted file mode 100644 index 263044b5e..000000000 --- a/x11/gnome-panel/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This drives the GNOME 2 panel. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-panel/pkg-plist b/x11/gnome-panel/pkg-plist deleted file mode 100644 index 9c17f80b1..000000000 --- a/x11/gnome-panel/pkg-plist +++ /dev/null @@ -1,734 +0,0 @@ -bin/gnome-desktop-item-edit -bin/gnome-panel -bin/panel-test-applets -etc/dbus-1/system.d/org.gnome.ClockApplet.Mechanism.conf -@unexec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --unload %D/etc/gconf/schemas/panel-default-setup.entries /apps/panel > /dev/null || /usr/bin/true -@unexec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --unload %D/etc/gconf/schemas/panel-default-setup.entries > /dev/null || /usr/bin/true -etc/gconf/schemas/panel-default-setup.entries -@exec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --load %D/etc/gconf/schemas/panel-default-setup.entries > /dev/null || /usr/bin/true -@exec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --load %D/etc/gconf/schemas/panel-default-setup.entries /apps/panel > /dev/null || /usr/bin/true -include/panel-2.0/GNOME_Panel.h -include/panel-2.0/panel-applet-enums.h -include/panel-2.0/panel-applet-gconf.h -include/panel-2.0/panel-applet.h -lib/libpanel-applet-2.a -lib/libpanel-applet-2.la -lib/libpanel-applet-2.so -lib/libpanel-applet-2.so.0 -libdata/bonobo/servers/GNOME_ClockApplet_Factory.server -libdata/bonobo/servers/GNOME_FishApplet_Factory.server -libdata/bonobo/servers/GNOME_NotificationAreaApplet.server -libdata/bonobo/servers/GNOME_Wncklet_Factory.server -libdata/pkgconfig/libpanelapplet-2.0.pc -libexec/clock-applet -libexec/fish-applet-2 -libexec/gnome-clock-applet-mechanism -libexec/notification-area-applet -libexec/wnck-applet -share/PolicyKit/policy/org.gnome.clockapplet.mechanism.policy -share/applications/gnome-panel.desktop -share/dbus-1/system-services/org.gnome.ClockApplet.Mechanism.service -share/gnome-2.0/ui/GNOME_ClockApplet.xml -share/gnome-2.0/ui/GNOME_FishApplet.xml -share/gnome-2.0/ui/GNOME_NotificationAreaApplet.xml -share/gnome-2.0/ui/GNOME_Panel_Popup.xml -share/gnome-2.0/ui/GNOME_ShowDesktopApplet.xml -share/gnome-2.0/ui/GNOME_WindowListApplet.xml -share/gnome-2.0/ui/GNOME_WindowMenuApplet.xml -share/gnome-2.0/ui/GNOME_WorkspaceSwitcherApplet.xml -%%DATADIR%%/glade/clock.glade -%%DATADIR%%/glade/fish.glade -%%DATADIR%%/glade/panel-properties-dialog.glade -%%DATADIR%%/glade/panel-run-dialog.glade -%%DATADIR%%/glade/panel-test-applets.glade -%%DATADIR%%/glade/window-list.glade -%%DATADIR%%/glade/workspace-switcher.glade -%%DATADIR%%/pixmaps/clock-calendar-icon.png -%%DATADIR%%/pixmaps/clock-face-large.svg -%%DATADIR%%/pixmaps/clock-face-small-day.svg -%%DATADIR%%/pixmaps/clock-face-small-evening.svg -%%DATADIR%%/pixmaps/clock-face-small-morning.svg -%%DATADIR%%/pixmaps/clock-face-small-night.svg -%%DATADIR%%/pixmaps/clock-face-small.svg -%%DATADIR%%/pixmaps/clock-map-location-current.png -%%DATADIR%%/pixmaps/clock-map-location-hilight.png -%%DATADIR%%/pixmaps/clock-map-location-marker.png -%%DATADIR%%/pixmaps/clock-map.png -%%DATADIR%%/pixmaps/fishanim.png -%%DATADIR%%/pixmaps/footguy.png -%%DATADIR%%/pixmaps/gnome-gegl2-2.png -%%DATADIR%%/pixmaps/gnome-gegl2.png -%%DATADIR%%/pixmaps/monkey.png -%%DATADIR%%/pixmaps/oldwanda.png -%%DATADIR%%/pixmaps/wanda.png -%%DATADIR%%/pixmaps/world_map-960.png -share/gnome-panelrc -share/gnome/help/clock/C/clock.xml -share/gnome/help/clock/C/figures/clock_applet.png -share/gnome/help/clock/C/legal.xml -share/gnome/help/clock/ar/clock.xml -share/gnome/help/clock/ar/figures/clock_applet.png -share/gnome/help/clock/ar/legal.xml -share/gnome/help/clock/ca/clock.xml -share/gnome/help/clock/ca/figures/clock_applet.png -share/gnome/help/clock/ca/legal.xml -share/gnome/help/clock/cs/clock.xml -share/gnome/help/clock/cs/figures/clock_applet.png -share/gnome/help/clock/cs/legal.xml -share/gnome/help/clock/de/clock.xml -share/gnome/help/clock/de/figures/clock_applet.png -share/gnome/help/clock/de/legal.xml -share/gnome/help/clock/el/clock.xml -share/gnome/help/clock/el/figures/clock_applet.png -share/gnome/help/clock/el/legal.xml -share/gnome/help/clock/en_GB/clock.xml -share/gnome/help/clock/en_GB/figures/clock_applet.png -share/gnome/help/clock/en_GB/legal.xml -share/gnome/help/clock/es/clock.xml -share/gnome/help/clock/es/figures/clock_applet.png -share/gnome/help/clock/es/legal.xml -share/gnome/help/clock/eu/clock.xml -share/gnome/help/clock/eu/figures/clock_applet.png -share/gnome/help/clock/eu/legal.xml -share/gnome/help/clock/fi/clock.xml -share/gnome/help/clock/fi/figures/clock_applet.png -share/gnome/help/clock/fi/legal.xml -share/gnome/help/clock/fr/clock.xml -share/gnome/help/clock/fr/figures/clock_applet.png -share/gnome/help/clock/fr/legal.xml -share/gnome/help/clock/it/clock.xml -share/gnome/help/clock/it/figures/clock_applet.png -share/gnome/help/clock/it/legal.xml -share/gnome/help/clock/ja/clock.xml -share/gnome/help/clock/ja/figures/clock_applet.png -share/gnome/help/clock/ja/legal.xml -share/gnome/help/clock/ko/clock.xml -share/gnome/help/clock/ko/figures/clock_applet.png -share/gnome/help/clock/ko/legal.xml -share/gnome/help/clock/nl/clock.xml -share/gnome/help/clock/nl/figures/clock_applet.png -share/gnome/help/clock/nl/legal.xml -share/gnome/help/clock/oc/clock.xml -share/gnome/help/clock/oc/figures/clock_applet.png -share/gnome/help/clock/oc/legal.xml -share/gnome/help/clock/pa/clock.xml -share/gnome/help/clock/pa/figures/clock_applet.png -share/gnome/help/clock/pa/legal.xml -share/gnome/help/clock/pt_BR/clock.xml -share/gnome/help/clock/pt_BR/figures/clock_applet.png -share/gnome/help/clock/pt_BR/legal.xml -share/gnome/help/clock/ru/clock.xml -share/gnome/help/clock/ru/figures/clock_applet.png -share/gnome/help/clock/ru/legal.xml -share/gnome/help/clock/sr/clock.xml -share/gnome/help/clock/sr/figures/clock_applet.png -share/gnome/help/clock/sr/legal.xml -share/gnome/help/clock/sv/clock.xml -share/gnome/help/clock/sv/figures/clock_applet.png -share/gnome/help/clock/sv/legal.xml -share/gnome/help/clock/th/clock.xml -share/gnome/help/clock/th/figures/clock_applet.png -share/gnome/help/clock/th/legal.xml -share/gnome/help/clock/uk/clock.xml -share/gnome/help/clock/uk/figures/clock_applet.png -share/gnome/help/clock/uk/legal.xml -share/gnome/help/clock/zh_CN/clock.xml -share/gnome/help/clock/zh_CN/figures/clock_applet.png -share/gnome/help/clock/zh_CN/legal.xml -share/gnome/help/clock/zh_TW/clock.xml -share/gnome/help/clock/zh_TW/figures/clock_applet.png -share/gnome/help/clock/zh_TW/legal.xml -share/gnome/help/fish-applet-2/ja/figures/fish_applet.png -share/gnome/help/fish-applet-2/ja/fish-applet-2.xml -share/gnome/help/fish-applet-2/ja/legal.xml -share/gnome/help/fish-applet-2/zh_CN/figures/fish_applet.png -share/gnome/help/fish-applet-2/zh_CN/figures/fish_settings.png -share/gnome/help/fish-applet-2/zh_CN/fish-applet-2.xml -share/gnome/help/fish-applet-2/zh_CN/legal.xml -share/gnome/help/fish-applet-2/zh_TW/figures/fish_applet.png -share/gnome/help/fish-applet-2/zh_TW/figures/fish_settings.png -share/gnome/help/fish-applet-2/zh_TW/fish-applet-2.xml -share/gnome/help/fish-applet-2/zh_TW/legal.xml -share/gnome/help/fish/C/figures/fish_applet.png -share/gnome/help/fish/C/fish.xml -share/gnome/help/fish/C/legal.xml -share/gnome/help/fish/ca/figures/fish_applet.png -share/gnome/help/fish/ca/fish.xml -share/gnome/help/fish/ca/legal.xml -share/gnome/help/fish/de/figures/fish_applet.png -share/gnome/help/fish/de/fish.xml -share/gnome/help/fish/de/legal.xml -share/gnome/help/fish/el/figures/fish_applet.png -share/gnome/help/fish/el/fish.xml -share/gnome/help/fish/el/legal.xml -share/gnome/help/fish/en_GB/figures/fish_applet.png -share/gnome/help/fish/en_GB/fish.xml -share/gnome/help/fish/en_GB/legal.xml -share/gnome/help/fish/es/figures/fish_applet.png -share/gnome/help/fish/es/fish.xml -share/gnome/help/fish/es/legal.xml -share/gnome/help/fish/eu/figures/fish_applet.png -share/gnome/help/fish/eu/fish.xml -share/gnome/help/fish/eu/legal.xml -share/gnome/help/fish/fi/figures/fish_applet.png -share/gnome/help/fish/fi/fish.xml -share/gnome/help/fish/fi/legal.xml -share/gnome/help/fish/fr/figures/fish_applet.png -share/gnome/help/fish/fr/fish.xml -share/gnome/help/fish/fr/legal.xml -share/gnome/help/fish/it/figures/fish_applet.png -share/gnome/help/fish/it/fish.xml -share/gnome/help/fish/it/legal.xml -share/gnome/help/fish/ko/figures/fish_applet.png -share/gnome/help/fish/ko/fish.xml -share/gnome/help/fish/ko/legal.xml -share/gnome/help/fish/oc/figures/fish_applet.png -share/gnome/help/fish/oc/fish.xml -share/gnome/help/fish/oc/legal.xml -share/gnome/help/fish/ru/figures/fish_applet.png -share/gnome/help/fish/ru/fish.xml -share/gnome/help/fish/ru/legal.xml -share/gnome/help/fish/sv/figures/fish_applet.png -share/gnome/help/fish/sv/fish.xml -share/gnome/help/fish/sv/legal.xml -share/gnome/help/fish/th/figures/fish_applet.png -share/gnome/help/fish/th/fish.xml -share/gnome/help/fish/th/legal.xml -share/gnome/help/fish/uk/figures/fish_applet.png -share/gnome/help/fish/uk/fish.xml -share/gnome/help/fish/uk/legal.xml -share/gnome/help/window-list/C/window-list.xml -share/gnome/help/window-list/ar/window-list.xml -share/gnome/help/window-list/ca/window-list.xml -share/gnome/help/window-list/cs/window-list.xml -share/gnome/help/window-list/da/window-list.xml -share/gnome/help/window-list/de/window-list.xml -share/gnome/help/window-list/el/window-list.xml -share/gnome/help/window-list/en_GB/window-list.xml -share/gnome/help/window-list/es/window-list.xml -share/gnome/help/window-list/eu/window-list.xml -share/gnome/help/window-list/fi/window-list.xml -share/gnome/help/window-list/fr/window-list.xml -share/gnome/help/window-list/it/window-list.xml -share/gnome/help/window-list/ja/figures/window_list_applet.png -share/gnome/help/window-list/ja/figures/window_list_group_applet.png -share/gnome/help/window-list/ja/legal.xml -share/gnome/help/window-list/ja/window-list.xml -share/gnome/help/window-list/ko/window-list.xml -share/gnome/help/window-list/oc/window-list.xml -share/gnome/help/window-list/pa/window-list.xml -share/gnome/help/window-list/pt_BR/window-list.xml -share/gnome/help/window-list/ru/window-list.xml -share/gnome/help/window-list/sv/window-list.xml -share/gnome/help/window-list/uk/window-list.xml -share/gnome/help/window-list/zh_CN/window-list.xml -share/gnome/help/window-list/zh_TW/figures/window_list_applet.png -share/gnome/help/window-list/zh_TW/figures/window_list_group.png -share/gnome/help/window-list/zh_TW/figures/window_list_group_applet.png -share/gnome/help/window-list/zh_TW/legal.xml -share/gnome/help/window-list/zh_TW/window-list.xml -share/gnome/help/workspace-switcher/C/workspace-switcher.xml -share/gnome/help/workspace-switcher/ar/workspace-switcher.xml -share/gnome/help/workspace-switcher/ca/workspace-switcher.xml -share/gnome/help/workspace-switcher/cs/workspace-switcher.xml -share/gnome/help/workspace-switcher/da/workspace-switcher.xml -share/gnome/help/workspace-switcher/de/workspace-switcher.xml -share/gnome/help/workspace-switcher/el/workspace-switcher.xml -share/gnome/help/workspace-switcher/en_GB/workspace-switcher.xml -share/gnome/help/workspace-switcher/es/workspace-switcher.xml -share/gnome/help/workspace-switcher/eu/workspace-switcher.xml -share/gnome/help/workspace-switcher/fi/workspace-switcher.xml -share/gnome/help/workspace-switcher/fr/workspace-switcher.xml -share/gnome/help/workspace-switcher/it/workspace-switcher.xml -share/gnome/help/workspace-switcher/ja/figures/workspace_switcher_applet.png -share/gnome/help/workspace-switcher/ja/legal.xml -share/gnome/help/workspace-switcher/ja/workspace-switcher.xml -share/gnome/help/workspace-switcher/ko/workspace-switcher.xml -share/gnome/help/workspace-switcher/nl/workspace-switcher.xml -share/gnome/help/workspace-switcher/oc/workspace-switcher.xml -share/gnome/help/workspace-switcher/pa/workspace-switcher.xml -share/gnome/help/workspace-switcher/pt_BR/workspace-switcher.xml -share/gnome/help/workspace-switcher/ru/workspace-switcher.xml -share/gnome/help/workspace-switcher/sv/workspace-switcher.xml -share/gnome/help/workspace-switcher/uk/workspace-switcher.xml -share/gnome/help/workspace-switcher/vi/workspace-switcher.xml -share/gnome/help/workspace-switcher/zh_CN/figures/workspace_switcher_applet.png -share/gnome/help/workspace-switcher/zh_CN/figures/workspacelist_applet.png -share/gnome/help/workspace-switcher/zh_CN/legal.xml -share/gnome/help/workspace-switcher/zh_CN/workspace-switcher.xml -share/gnome/help/workspace-switcher/zh_TW/figures/workspace_switcher_applet.png -share/gnome/help/workspace-switcher/zh_TW/figures/workspacelist_applet.png -share/gnome/help/workspace-switcher/zh_TW/legal.xml -share/gnome/help/workspace-switcher/zh_TW/workspace-switcher.xml -share/icons/hicolor/16x16/apps/gnome-panel-clock.png -share/icons/hicolor/16x16/apps/gnome-panel-drawer.png -share/icons/hicolor/16x16/apps/gnome-panel-fish.png -share/icons/hicolor/16x16/apps/gnome-panel-force-quit.png -share/icons/hicolor/16x16/apps/gnome-panel-launcher.png -share/icons/hicolor/16x16/apps/gnome-panel-notification-area.png -share/icons/hicolor/16x16/apps/gnome-panel-separator.png -share/icons/hicolor/16x16/apps/gnome-panel-window-list.png -share/icons/hicolor/16x16/apps/gnome-panel-window-menu.png -share/icons/hicolor/16x16/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/16x16/apps/gnome-panel.png -share/icons/hicolor/22x22/apps/gnome-panel-clock.png -share/icons/hicolor/22x22/apps/gnome-panel-drawer.png -share/icons/hicolor/22x22/apps/gnome-panel-fish.png -share/icons/hicolor/22x22/apps/gnome-panel-force-quit.png -share/icons/hicolor/22x22/apps/gnome-panel-launcher.png -share/icons/hicolor/22x22/apps/gnome-panel-notification-area.png -share/icons/hicolor/22x22/apps/gnome-panel-separator.png -share/icons/hicolor/22x22/apps/gnome-panel-window-list.png -share/icons/hicolor/22x22/apps/gnome-panel-window-menu.png -share/icons/hicolor/22x22/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/22x22/apps/gnome-panel.png -share/icons/hicolor/24x24/apps/gnome-panel-clock.png -share/icons/hicolor/24x24/apps/gnome-panel-drawer.png -share/icons/hicolor/24x24/apps/gnome-panel-fish.png -share/icons/hicolor/24x24/apps/gnome-panel-force-quit.png -share/icons/hicolor/24x24/apps/gnome-panel-launcher.png -share/icons/hicolor/24x24/apps/gnome-panel-notification-area.png -share/icons/hicolor/24x24/apps/gnome-panel-separator.png -share/icons/hicolor/24x24/apps/gnome-panel-window-list.png -share/icons/hicolor/24x24/apps/gnome-panel-window-menu.png -share/icons/hicolor/24x24/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/24x24/apps/gnome-panel.png -share/icons/hicolor/32x32/apps/gnome-panel-clock.png -share/icons/hicolor/32x32/apps/gnome-panel-drawer.png -share/icons/hicolor/32x32/apps/gnome-panel-fish.png -share/icons/hicolor/32x32/apps/gnome-panel-force-quit.png -share/icons/hicolor/32x32/apps/gnome-panel-launcher.png -share/icons/hicolor/32x32/apps/gnome-panel-notification-area.png -share/icons/hicolor/32x32/apps/gnome-panel-separator.png -share/icons/hicolor/32x32/apps/gnome-panel-window-list.png -share/icons/hicolor/32x32/apps/gnome-panel-window-menu.png -share/icons/hicolor/32x32/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/32x32/apps/gnome-panel.png -share/icons/hicolor/48x48/apps/gnome-panel.png -share/icons/hicolor/scalable/apps/gnome-panel-clock.svg -share/icons/hicolor/scalable/apps/gnome-panel-drawer.svg -share/icons/hicolor/scalable/apps/gnome-panel-fish.svg -share/icons/hicolor/scalable/apps/gnome-panel-force-quit.svg -share/icons/hicolor/scalable/apps/gnome-panel-launcher.svg -share/icons/hicolor/scalable/apps/gnome-panel-notification-area.svg -share/icons/hicolor/scalable/apps/gnome-panel-separator.svg -share/icons/hicolor/scalable/apps/gnome-panel-window-list.svg -share/icons/hicolor/scalable/apps/gnome-panel-window-menu.svg -share/icons/hicolor/scalable/apps/gnome-panel-workspace-switcher.svg -share/icons/hicolor/scalable/apps/gnome-panel.svg -share/idl/gnome-panel-2.0/GNOME_Panel.idl -share/locale/af/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/am/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/as/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ast/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/az/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/be/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/br/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ca@valencia/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/crh/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/da/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/de/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/el/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/eo/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/es/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/et/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/fur/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ha/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/he/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/id/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ig/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/is/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/it/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ky/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/la/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/li/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mai/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nso/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/or/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ps/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/si/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sr@ije/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/te/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/th/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/uz/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/yi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/yo/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zu/LC_MESSAGES/gnome-panel-2.0.mo -share/omf/clock/clock-C.omf -share/omf/clock/clock-ar.omf -share/omf/clock/clock-ca.omf -share/omf/clock/clock-cs.omf -share/omf/clock/clock-de.omf -share/omf/clock/clock-el.omf -share/omf/clock/clock-en_GB.omf -share/omf/clock/clock-es.omf -share/omf/clock/clock-eu.omf -share/omf/clock/clock-fi.omf -share/omf/clock/clock-fr.omf -share/omf/clock/clock-it.omf -share/omf/clock/clock-ja.omf -share/omf/clock/clock-ko.omf -share/omf/clock/clock-nl.omf -share/omf/clock/clock-oc.omf -share/omf/clock/clock-pa.omf -share/omf/clock/clock-pt_BR.omf -share/omf/clock/clock-ru.omf -share/omf/clock/clock-sr.omf -share/omf/clock/clock-sv.omf -share/omf/clock/clock-th.omf -share/omf/clock/clock-uk.omf -share/omf/clock/clock-zh_CN.omf -share/omf/clock/clock-zh_TW.omf -share/omf/fish/fish-C.omf -share/omf/fish/fish-ca.omf -share/omf/fish/fish-de.omf -share/omf/fish/fish-el.omf -share/omf/fish/fish-en_GB.omf -share/omf/fish/fish-es.omf -share/omf/fish/fish-eu.omf -share/omf/fish/fish-fi.omf -share/omf/fish/fish-fr.omf -share/omf/fish/fish-it.omf -share/omf/fish/fish-ko.omf -share/omf/fish/fish-oc.omf -share/omf/fish/fish-ru.omf -share/omf/fish/fish-sv.omf -share/omf/fish/fish-th.omf -share/omf/fish/fish-uk.omf -share/omf/gnome-panel/fish-applet-2-ja.omf -share/omf/gnome-panel/fish-applet-2-zh_CN.omf -share/omf/gnome-panel/fish-applet-2-zh_TW.omf -share/omf/gnome-panel/window-list-ja.omf -share/omf/gnome-panel/window-list-zh_TW.omf -share/omf/gnome-panel/workspace-switcher-ja.omf -share/omf/gnome-panel/workspace-switcher-zh_CN.omf -share/omf/gnome-panel/workspace-switcher-zh_TW.omf -share/omf/window-list/window-list-C.omf -share/omf/window-list/window-list-ar.omf -share/omf/window-list/window-list-ca.omf -share/omf/window-list/window-list-cs.omf -share/omf/window-list/window-list-da.omf -share/omf/window-list/window-list-de.omf -share/omf/window-list/window-list-el.omf -share/omf/window-list/window-list-en_GB.omf -share/omf/window-list/window-list-es.omf -share/omf/window-list/window-list-eu.omf -share/omf/window-list/window-list-fi.omf -share/omf/window-list/window-list-fr.omf -share/omf/window-list/window-list-it.omf -share/omf/window-list/window-list-ko.omf -share/omf/window-list/window-list-oc.omf -share/omf/window-list/window-list-pa.omf -share/omf/window-list/window-list-pt_BR.omf -share/omf/window-list/window-list-ru.omf -share/omf/window-list/window-list-sv.omf -share/omf/window-list/window-list-uk.omf -share/omf/window-list/window-list-zh_CN.omf -share/omf/workspace-switcher/workspace-switcher-C.omf -share/omf/workspace-switcher/workspace-switcher-ar.omf -share/omf/workspace-switcher/workspace-switcher-ca.omf -share/omf/workspace-switcher/workspace-switcher-cs.omf -share/omf/workspace-switcher/workspace-switcher-da.omf -share/omf/workspace-switcher/workspace-switcher-de.omf -share/omf/workspace-switcher/workspace-switcher-el.omf -share/omf/workspace-switcher/workspace-switcher-en_GB.omf -share/omf/workspace-switcher/workspace-switcher-es.omf -share/omf/workspace-switcher/workspace-switcher-eu.omf -share/omf/workspace-switcher/workspace-switcher-fi.omf -share/omf/workspace-switcher/workspace-switcher-fr.omf -share/omf/workspace-switcher/workspace-switcher-it.omf -share/omf/workspace-switcher/workspace-switcher-ko.omf -share/omf/workspace-switcher/workspace-switcher-nl.omf -share/omf/workspace-switcher/workspace-switcher-oc.omf -share/omf/workspace-switcher/workspace-switcher-pa.omf -share/omf/workspace-switcher/workspace-switcher-pt_BR.omf -share/omf/workspace-switcher/workspace-switcher-ru.omf -share/omf/workspace-switcher/workspace-switcher-sv.omf -share/omf/workspace-switcher/workspace-switcher-uk.omf -share/omf/workspace-switcher/workspace-switcher-vi.omf -@dirrm share/omf/workspace-switcher -@dirrm share/omf/window-list -@dirrm share/omf/gnome-panel -@dirrm share/omf/fish -@dirrm share/omf/clock -@dirrm share/idl/gnome-panel-2.0 -@dirrm share/gnome/help/workspace-switcher/zh_TW/figures -@dirrm share/gnome/help/workspace-switcher/zh_TW -@dirrm share/gnome/help/workspace-switcher/zh_CN/figures -@dirrm share/gnome/help/workspace-switcher/zh_CN -@dirrm share/gnome/help/workspace-switcher/vi -@dirrm share/gnome/help/workspace-switcher/uk -@dirrm share/gnome/help/workspace-switcher/sv -@dirrm share/gnome/help/workspace-switcher/ru -@dirrm share/gnome/help/workspace-switcher/pt_BR -@dirrm share/gnome/help/workspace-switcher/pa -@dirrm share/gnome/help/workspace-switcher/oc -@dirrm share/gnome/help/workspace-switcher/nl -@dirrm share/gnome/help/workspace-switcher/ko -@dirrm share/gnome/help/workspace-switcher/ja/figures -@dirrm share/gnome/help/workspace-switcher/ja -@dirrm share/gnome/help/workspace-switcher/it -@dirrm share/gnome/help/workspace-switcher/fr -@dirrm share/gnome/help/workspace-switcher/fi -@dirrm share/gnome/help/workspace-switcher/eu -@dirrm share/gnome/help/workspace-switcher/es -@dirrm share/gnome/help/workspace-switcher/en_GB -@dirrm share/gnome/help/workspace-switcher/el -@dirrm share/gnome/help/workspace-switcher/de -@dirrm share/gnome/help/workspace-switcher/da -@dirrm share/gnome/help/workspace-switcher/cs -@dirrm share/gnome/help/workspace-switcher/ca -@dirrm share/gnome/help/workspace-switcher/ar -@dirrm share/gnome/help/workspace-switcher/C -@dirrm share/gnome/help/workspace-switcher -@dirrm share/gnome/help/window-list/zh_TW/figures -@dirrm share/gnome/help/window-list/zh_TW -@dirrm share/gnome/help/window-list/zh_CN -@dirrm share/gnome/help/window-list/uk -@dirrm share/gnome/help/window-list/sv -@dirrm share/gnome/help/window-list/ru -@dirrm share/gnome/help/window-list/pt_BR -@dirrm share/gnome/help/window-list/pa -@dirrm share/gnome/help/window-list/oc -@dirrm share/gnome/help/window-list/ko -@dirrm share/gnome/help/window-list/ja/figures -@dirrm share/gnome/help/window-list/ja -@dirrm share/gnome/help/window-list/it -@dirrm share/gnome/help/window-list/fr -@dirrm share/gnome/help/window-list/fi -@dirrm share/gnome/help/window-list/eu -@dirrm share/gnome/help/window-list/es -@dirrm share/gnome/help/window-list/en_GB -@dirrm share/gnome/help/window-list/el -@dirrm share/gnome/help/window-list/de -@dirrm share/gnome/help/window-list/da -@dirrm share/gnome/help/window-list/cs -@dirrm share/gnome/help/window-list/ca -@dirrm share/gnome/help/window-list/ar -@dirrm share/gnome/help/window-list/C -@dirrm share/gnome/help/window-list -@dirrm share/gnome/help/fish/uk/figures -@dirrm share/gnome/help/fish/uk -@dirrm share/gnome/help/fish/th/figures -@dirrm share/gnome/help/fish/th -@dirrm share/gnome/help/fish/sv/figures -@dirrm share/gnome/help/fish/sv -@dirrm share/gnome/help/fish/ru/figures -@dirrm share/gnome/help/fish/ru -@dirrm share/gnome/help/fish/oc/figures -@dirrm share/gnome/help/fish/oc -@dirrm share/gnome/help/fish/ko/figures -@dirrm share/gnome/help/fish/ko -@dirrm share/gnome/help/fish/it/figures -@dirrm share/gnome/help/fish/it -@dirrm share/gnome/help/fish/fr/figures -@dirrm share/gnome/help/fish/fr -@dirrm share/gnome/help/fish/fi/figures -@dirrm share/gnome/help/fish/fi -@dirrm share/gnome/help/fish/eu/figures -@dirrm share/gnome/help/fish/eu -@dirrm share/gnome/help/fish/es/figures -@dirrm share/gnome/help/fish/es -@dirrm share/gnome/help/fish/en_GB/figures -@dirrm share/gnome/help/fish/en_GB -@dirrm share/gnome/help/fish/el/figures -@dirrm share/gnome/help/fish/el -@dirrm share/gnome/help/fish/de/figures -@dirrm share/gnome/help/fish/de -@dirrm share/gnome/help/fish/ca/figures -@dirrm share/gnome/help/fish/ca -@dirrm share/gnome/help/fish/C/figures -@dirrm share/gnome/help/fish/C -@dirrm share/gnome/help/fish-applet-2/zh_TW/figures -@dirrm share/gnome/help/fish-applet-2/zh_TW -@dirrm share/gnome/help/fish-applet-2/zh_CN/figures -@dirrm share/gnome/help/fish-applet-2/zh_CN -@dirrm share/gnome/help/fish-applet-2/ja/figures -@dirrm share/gnome/help/fish-applet-2/ja -@dirrm share/gnome/help/fish-applet-2 -@dirrm share/gnome/help/fish -@dirrm share/gnome/help/clock/zh_TW/figures -@dirrm share/gnome/help/clock/zh_TW -@dirrm share/gnome/help/clock/zh_CN/figures -@dirrm share/gnome/help/clock/zh_CN -@dirrm share/gnome/help/clock/uk/figures -@dirrm share/gnome/help/clock/uk -@dirrm share/gnome/help/clock/th/figures -@dirrm share/gnome/help/clock/th -@dirrm share/gnome/help/clock/sv/figures -@dirrm share/gnome/help/clock/sv -@dirrm share/gnome/help/clock/sr/figures -@dirrm share/gnome/help/clock/sr -@dirrm share/gnome/help/clock/ru/figures -@dirrm share/gnome/help/clock/ru -@dirrm share/gnome/help/clock/pt_BR/figures -@dirrm share/gnome/help/clock/pt_BR -@dirrm share/gnome/help/clock/pa/figures -@dirrm share/gnome/help/clock/pa -@dirrm share/gnome/help/clock/oc/figures -@dirrm share/gnome/help/clock/oc -@dirrm share/gnome/help/clock/nl/figures -@dirrm share/gnome/help/clock/nl -@dirrm share/gnome/help/clock/ko/figures -@dirrm share/gnome/help/clock/ko -@dirrm share/gnome/help/clock/ja/figures -@dirrm share/gnome/help/clock/ja -@dirrm share/gnome/help/clock/it/figures -@dirrm share/gnome/help/clock/it -@dirrm share/gnome/help/clock/fr/figures -@dirrm share/gnome/help/clock/fr -@dirrm share/gnome/help/clock/fi/figures -@dirrm share/gnome/help/clock/fi -@dirrm share/gnome/help/clock/eu/figures -@dirrm share/gnome/help/clock/eu -@dirrm share/gnome/help/clock/es/figures -@dirrm share/gnome/help/clock/es -@dirrm share/gnome/help/clock/en_GB/figures -@dirrm share/gnome/help/clock/en_GB -@dirrm share/gnome/help/clock/el/figures -@dirrm share/gnome/help/clock/el -@dirrm share/gnome/help/clock/de/figures -@dirrm share/gnome/help/clock/de -@dirrm share/gnome/help/clock/cs/figures -@dirrm share/gnome/help/clock/cs -@dirrm share/gnome/help/clock/ca/figures -@dirrm share/gnome/help/clock/ca -@dirrm share/gnome/help/clock/ar/figures -@dirrm share/gnome/help/clock/ar -@dirrm share/gnome/help/clock/C/figures -@dirrm share/gnome/help/clock/C -@dirrm share/gnome/help/clock -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm include/panel-2.0 -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yo/LC_MESSAGES -@dirrmtry share/locale/yo -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/la/LC_MESSAGES -@dirrmtry share/locale/la -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ig/LC_MESSAGES -@dirrmtry share/locale/ig -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/ha/LC_MESSAGES -@dirrmtry share/locale/ha -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-screensaver/Makefile b/x11/gnome-screensaver/Makefile deleted file mode 100644 index 114698d20..000000000 --- a/x11/gnome-screensaver/Makefile +++ /dev/null @@ -1,99 +0,0 @@ -# New ports collection makefile for: gnome-screensaver -# Date created: 09 June 2005 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-screensaver/Makefile,v 1.105 2009/03/10 06:55:41 marcus Exp $ -# - -PORTNAME= gnome-screensaver -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME screen saver and locker - -LIB_DEPENDS= notify.1:${PORTSDIR}/devel/libnotify -RUN_DEPENDS= xscreensaver-gl-helper:${PORTSDIR}/x11/xscreensaver-gnome-hacks - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -USE_XORG= xtst xxf86vm -USE_GNOME= gnomeprefix gnomehack intlhack gnomemenus libgnomekbd \ - gnomedesktop -CONFIGURE_ARGS= --with-gdm-config=${LOCALBASE}/etc/gdm/custom.conf \ - --with-xscreensaverdir=${XSCREENSAVER_DIR} \ - --with-xscreensaverhackdir=${LOCALBASE}/bin/xscreensaver-hacks -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gnome-screensaver.schemas -MAN1= gnome-screensaver-command.1 gnome-screensaver-preferences.1 \ - gnome-screensaver.1 - -PLIST= ${WRKDIR}/pkg-plist -SUB_FILES+= gnome-screensaver.pam - -XSCREENSAVER_DIR= ${LOCALBASE}/share/xscreensaver/config -SCREENSAVER_DIR= share/applications/screensavers - -XSCREENSAVER_EXCLUDE= "(popsquares.xml)" - -OPTIONS= PAM "Pluggable Authentication Module support" on \ - KEYRING "Enable GnomeKeyring integration (needs PAM)" on - -.include <bsd.port.pre.mk> - -.if defined(WITH_PAM) -RUN_DEPENDS+= pam_helper:${PORTSDIR}/security/pam_helper -CONFIGURE_ARGS+= --enable-authentication-scheme=helper \ - --with-passwd-helper=${LOCALBASE}/bin/pam_helper -PLIST_SUB+= PAM="" -.else -CONFIGURE_ARGS+= --disable-pam -PLIST_SUB+= PAM="@comment " -.endif - -.if defined(WITH_KEYRING) && defined(WITH_PAM) -SUB_LIST+= PAM_KEYRING= -RUN_DEPENDS+= ${LOCALBASE}/lib/pam_gnome_keyring.so:${PORTSDIR}/security/gnome-keyring -.else -SUB_LIST+= PAM_KEYRING=\# -.endif - -pre-everything:: -.if defined(WITHOUT_PAM) && defined(WITH_KEYRING) - @${ECHO_MSG} "Keyring integration is disabled because it needs PAM." -.endif - -post-patch: -.if defined(WITH_PAM) - @${REINPLACE_CMD} -e 's|/etc/pam.d|${PREFIX}/etc/pam.d|g' \ - ${WRKSRC}/src/gs-auth-pam.c -.endif - -pre-install: - @${CAT} ${.CURDIR}/pkg-plist > ${PLIST} - @cd ${XSCREENSAVER_DIR} && ${FIND} -s * -maxdepth 1 -type f -name "*.xml" | \ - ${GREP} -Ev ${XSCREENSAVER_EXCLUDE} | \ - ${SED} -e 's:^:${SCREENSAVER_DIR}/:' | \ - ${SED} -e 's:[.]xml$$:.desktop:' >> ${PLIST} - @${ECHO_CMD} @dirrm ${SCREENSAVER_DIR} >> ${PLIST} - -post-install: - ${CHOWN} root ${PREFIX}/libexec/gnome-screensaver-dialog - ${CHMOD} +s ${PREFIX}/libexec/gnome-screensaver-dialog - ${MKDIR} ${PREFIX}/${SCREENSAVER_DIR} - cd ${PREFIX}/${SCREENSAVER_DIR} && \ - ${FIND} -s ${XSCREENSAVER_DIR} -maxdepth 1 -type f -name "*.xml" | \ - ${GREP} -Ev ${XSCREENSAVER_EXCLUDE} | \ - ${XARGS} ${WRKSRC}/data/migrate-xscreensaver-config.sh -.if defined(WITH_PAM) - ${INSTALL_DATA} ${WRKDIR}/gnome-screensaver.pam ${PREFIX}/etc/pam.d/gnome-screensaver -.endif - -.include <bsd.port.post.mk> diff --git a/x11/gnome-screensaver/distinfo b/x11/gnome-screensaver/distinfo deleted file mode 100644 index 8bd268f47..000000000 --- a/x11/gnome-screensaver/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-screensaver-2.26.0.tar.bz2) = f9c5144defc80991b18c653c029001d6 -SHA256 (gnome2/gnome-screensaver-2.26.0.tar.bz2) = cb2fb89feaed0706291278d386839c0b5a850eba58ad989942eff0fc806646b6 -SIZE (gnome2/gnome-screensaver-2.26.0.tar.bz2) = 2044980 diff --git a/x11/gnome-screensaver/files/gnome-screensaver.pam.in b/x11/gnome-screensaver/files/gnome-screensaver.pam.in deleted file mode 100644 index c2f8394ff..000000000 --- a/x11/gnome-screensaver/files/gnome-screensaver.pam.in +++ /dev/null @@ -1,3 +0,0 @@ -auth include system -%%PAM_KEYRING%%auth optional %%LOCALBASE%%/lib/pam_gnome_keyring.so -account include system diff --git a/x11/gnome-screensaver/files/patch-data_Makefile.in b/x11/gnome-screensaver/files/patch-data_Makefile.in deleted file mode 100644 index a474e9ef2..000000000 --- a/x11/gnome-screensaver/files/patch-data_Makefile.in +++ /dev/null @@ -1,73 +0,0 @@ ---- data/Makefile.in.orig Mon Nov 7 05:37:01 2005 -+++ data/Makefile.in Mon Nov 7 05:37:38 2005 -@@ -737,38 +737,38 @@ - @GCONF_SCHEMAS_INSTALL_FALSE@install-data-local: - - install-data-hook: -- @system=`uname`; \ -- if test -f /usr/include/security/pam_appl.h; then \ -- if test '!' -d $(DESTDIR)$(PAM_PREFIX)/pam.d; then \ -- $(mkinstalldirs) $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -- chmod 755 $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -- fi; \ -- if test $$system = Linux; then \ -- if test '!' -f $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; then \ -- $(INSTALL_DATA) gnome-screensaver $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; \ -- fi; \ -- if test "x$(PAM_PREFIX)" != "x/etc/pam.d"; then \ -- echo "***" ; \ -- echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -- echo "*** Pluggable Authentication Modules (PAM). However, you may need to" ; \ -- echo "*** manually install $(PAM_PREFIX)/pam.d/gnome-screensaver" ; \ -- echo "*** to /etc/pam.d/gnome-screensaver. Otherwise, unlocking might" ; \ -- echo "*** not work." ; \ -- echo "***" ; \ -- echo "*** Note: If you are using SuSE/Novell you may have to modify this file." ; \ -- echo "***" ; \ -- fi; \ -- fi; \ -- if test $$system = SunOS; then \ -- echo "***" ; \ -- echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -- echo "*** Pluggable Authentication Modules (PAM). However, you" ; \ -- echo "*** need to manually add authentication for gnome-screensaver in" ; \ -- echo "*** $(PAM_PREFIX)/pam.conf or /etc/pam.conf." ; \ -- echo "*** Otherwise, unlocking might not work." ; \ -- echo "***" ; \ -- fi; \ -- fi -+# @system=`uname`; \ -+# if test -f /usr/include/security/pam_appl.h; then \ -+# if test '!' -d $(DESTDIR)$(PAM_PREFIX)/pam.d; then \ -+# $(mkinstalldirs) $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -+# chmod 755 $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -+# fi; \ -+# if test $$system = Linux; then \ -+# if test '!' -f $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; then \ -+# $(INSTALL_DATA) gnome-screensaver $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; \ -+# fi; \ -+# if test "x$(PAM_PREFIX)" != "x/etc/pam.d"; then \ -+# echo "***" ; \ -+# echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -+# echo "*** Pluggable Authentication Modules (PAM). However, you may need to" ; \ -+# echo "*** manually install $(PAM_PREFIX)/pam.d/gnome-screensaver" ; \ -+# echo "*** to /etc/pam.d/gnome-screensaver. Otherwise, unlocking might" ; \ -+# echo "*** not work." ; \ -+# echo "***" ; \ -+# echo "*** Note: If you are using SuSE/Novell you may have to modify this file." ; \ -+# echo "***" ; \ -+# fi; \ -+# fi; \ -+# if test $$system = SunOS; then \ -+# echo "***" ; \ -+# echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -+# echo "*** Pluggable Authentication Modules (PAM). However, you" ; \ -+# echo "*** need to manually add authentication for gnome-screensaver in" ; \ -+# echo "*** $(PAM_PREFIX)/pam.conf or /etc/pam.conf." ; \ -+# echo "*** Otherwise, unlocking might not work." ; \ -+# echo "***" ; \ -+# fi; \ -+# fi - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. - .NOEXPORT: diff --git a/x11/gnome-screensaver/files/patch-src_gs-job.c b/x11/gnome-screensaver/files/patch-src_gs-job.c deleted file mode 100644 index 39e303d27..000000000 --- a/x11/gnome-screensaver/files/patch-src_gs-job.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/gs-job.c.orig Wed Sep 7 09:23:59 2005 -+++ src/gs-job.c Mon Sep 12 13:24:11 2005 -@@ -29,7 +29,8 @@ - #include <sys/wait.h> - #include <errno.h> - --#if defined(HAVE_SETPRIORITY) && defined(PRIO_PROCESS) -+#if defined(HAVE_SETPRIORITY) -+#include <sys/time.h> - #include <sys/resource.h> - #endif - diff --git a/x11/gnome-screensaver/pkg-descr b/x11/gnome-screensaver/pkg-descr deleted file mode 100644 index 96af92f11..000000000 --- a/x11/gnome-screensaver/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Gnome-screensaver is GNOME-based screen saver and locker that aims to have -simple, sane, secure defaults and be well integrated with the desktop. -It is designed to support: - - * the ability to lock down configuration settings - * translation into other languages - * user switching diff --git a/x11/gnome-screensaver/pkg-plist b/x11/gnome-screensaver/pkg-plist deleted file mode 100644 index 97557b557..000000000 --- a/x11/gnome-screensaver/pkg-plist +++ /dev/null @@ -1,136 +0,0 @@ -bin/gnome-screensaver -bin/gnome-screensaver-command -bin/gnome-screensaver-preferences -%%PAM%%etc/pam.d/gnome-screensaver -etc/xdg/menus/gnome-screensavers.menu -libdata/pkgconfig/gnome-screensaver.pc -libexec/gnome-screensaver-dialog -libexec/gnome-screensaver-gl-helper -libexec/gnome-screensaver/floaters -libexec/gnome-screensaver/popsquares -libexec/gnome-screensaver/slideshow -share/applications/gnome-screensaver-preferences.desktop -share/applications/screensavers/cosmos-slideshow.desktop -share/applications/screensavers/footlogo-floaters.desktop -share/applications/screensavers/personal-slideshow.desktop -share/applications/screensavers/popsquares.desktop -share/desktop-directories/gnome-screensaver.directory -%%DATADIR%%/gnome-screensaver-preferences.glade -%%DATADIR%%/lock-dialog-default.glade -share/locale/ar/LC_MESSAGES/gnome-screensaver.mo -share/locale/as/LC_MESSAGES/gnome-screensaver.mo -share/locale/ast/LC_MESSAGES/gnome-screensaver.mo -share/locale/be/LC_MESSAGES/gnome-screensaver.mo -share/locale/be@latin/LC_MESSAGES/gnome-screensaver.mo -share/locale/bg/LC_MESSAGES/gnome-screensaver.mo -share/locale/bn/LC_MESSAGES/gnome-screensaver.mo -share/locale/bn_IN/LC_MESSAGES/gnome-screensaver.mo -share/locale/ca/LC_MESSAGES/gnome-screensaver.mo -share/locale/cs/LC_MESSAGES/gnome-screensaver.mo -share/locale/cy/LC_MESSAGES/gnome-screensaver.mo -share/locale/da/LC_MESSAGES/gnome-screensaver.mo -share/locale/de/LC_MESSAGES/gnome-screensaver.mo -share/locale/dz/LC_MESSAGES/gnome-screensaver.mo -share/locale/el/LC_MESSAGES/gnome-screensaver.mo -share/locale/en_CA/LC_MESSAGES/gnome-screensaver.mo -share/locale/en_GB/LC_MESSAGES/gnome-screensaver.mo -share/locale/es/LC_MESSAGES/gnome-screensaver.mo -share/locale/et/LC_MESSAGES/gnome-screensaver.mo -share/locale/eu/LC_MESSAGES/gnome-screensaver.mo -share/locale/fa/LC_MESSAGES/gnome-screensaver.mo -share/locale/fi/LC_MESSAGES/gnome-screensaver.mo -share/locale/fr/LC_MESSAGES/gnome-screensaver.mo -share/locale/ga/LC_MESSAGES/gnome-screensaver.mo -share/locale/gl/LC_MESSAGES/gnome-screensaver.mo -share/locale/gu/LC_MESSAGES/gnome-screensaver.mo -share/locale/he/LC_MESSAGES/gnome-screensaver.mo -share/locale/hi/LC_MESSAGES/gnome-screensaver.mo -share/locale/hr/LC_MESSAGES/gnome-screensaver.mo -share/locale/hu/LC_MESSAGES/gnome-screensaver.mo -share/locale/id/LC_MESSAGES/gnome-screensaver.mo -share/locale/is/LC_MESSAGES/gnome-screensaver.mo -share/locale/it/LC_MESSAGES/gnome-screensaver.mo -share/locale/ja/LC_MESSAGES/gnome-screensaver.mo -share/locale/ka/LC_MESSAGES/gnome-screensaver.mo -share/locale/kn/LC_MESSAGES/gnome-screensaver.mo -share/locale/ko/LC_MESSAGES/gnome-screensaver.mo -share/locale/ku/LC_MESSAGES/gnome-screensaver.mo -share/locale/lt/LC_MESSAGES/gnome-screensaver.mo -share/locale/lv/LC_MESSAGES/gnome-screensaver.mo -share/locale/mg/LC_MESSAGES/gnome-screensaver.mo -share/locale/mk/LC_MESSAGES/gnome-screensaver.mo -share/locale/ml/LC_MESSAGES/gnome-screensaver.mo -share/locale/mn/LC_MESSAGES/gnome-screensaver.mo -share/locale/mr/LC_MESSAGES/gnome-screensaver.mo -share/locale/nb/LC_MESSAGES/gnome-screensaver.mo -share/locale/ne/LC_MESSAGES/gnome-screensaver.mo -share/locale/nl/LC_MESSAGES/gnome-screensaver.mo -share/locale/nn/LC_MESSAGES/gnome-screensaver.mo -share/locale/oc/LC_MESSAGES/gnome-screensaver.mo -share/locale/or/LC_MESSAGES/gnome-screensaver.mo -share/locale/pa/LC_MESSAGES/gnome-screensaver.mo -share/locale/pl/LC_MESSAGES/gnome-screensaver.mo -share/locale/ps/LC_MESSAGES/gnome-screensaver.mo -share/locale/pt/LC_MESSAGES/gnome-screensaver.mo -share/locale/pt_BR/LC_MESSAGES/gnome-screensaver.mo -share/locale/ro/LC_MESSAGES/gnome-screensaver.mo -share/locale/ru/LC_MESSAGES/gnome-screensaver.mo -share/locale/si/LC_MESSAGES/gnome-screensaver.mo -share/locale/sk/LC_MESSAGES/gnome-screensaver.mo -share/locale/sl/LC_MESSAGES/gnome-screensaver.mo -share/locale/sq/LC_MESSAGES/gnome-screensaver.mo -share/locale/sr/LC_MESSAGES/gnome-screensaver.mo -share/locale/sr@latin/LC_MESSAGES/gnome-screensaver.mo -share/locale/sv/LC_MESSAGES/gnome-screensaver.mo -share/locale/ta/LC_MESSAGES/gnome-screensaver.mo -share/locale/te/LC_MESSAGES/gnome-screensaver.mo -share/locale/th/LC_MESSAGES/gnome-screensaver.mo -share/locale/tr/LC_MESSAGES/gnome-screensaver.mo -share/locale/uk/LC_MESSAGES/gnome-screensaver.mo -share/locale/vi/LC_MESSAGES/gnome-screensaver.mo -share/locale/zh_CN/LC_MESSAGES/gnome-screensaver.mo -share/locale/zh_HK/LC_MESSAGES/gnome-screensaver.mo -share/locale/zh_TW/LC_MESSAGES/gnome-screensaver.mo -share/pixmaps/backgrounds/cosmos/cloud.jpg -share/pixmaps/backgrounds/cosmos/comet.jpg -share/pixmaps/backgrounds/cosmos/earth-horizon.jpg -share/pixmaps/backgrounds/cosmos/earthrise.jpg -share/pixmaps/backgrounds/cosmos/galaxy-ngc3370.jpg -share/pixmaps/backgrounds/cosmos/helix-nebula.jpg -share/pixmaps/backgrounds/cosmos/jupiter.jpg -share/pixmaps/backgrounds/cosmos/sombrero.jpg -share/pixmaps/backgrounds/cosmos/whirlpool.jpg -share/pixmaps/gnome-logo-white.svg -@dirrm share/pixmaps/backgrounds/cosmos -@dirrmtry share/pixmaps/backgrounds -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm libexec/gnome-screensaver -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-session/Makefile b/x11/gnome-session/Makefile deleted file mode 100644 index 4b30a839c..000000000 --- a/x11/gnome-session/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# New ports collection makefile for: gnomesession -# Date created: 08 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-session/Makefile,v 1.168 2009/03/09 20:08:47 marcus Exp $ -# - -PORTNAME= gnome-session -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME \ - http://www.marcuscom.com/downloads/:local -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - ${SPLASHES}:local -DIST_SUBDIR= gnome2 -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Session component for the GNOME 2 desktop - -BUILD_DEPENDS= ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon -LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - gnome-keyring.0:${PORTSDIR}/security/gnome-keyring \ - notify.1:${PORTSDIR}/devel/libnotify \ - execinfo:${PORTSDIR}/devel/libexecinfo -RUN_DEPENDS= ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon \ - ${LOCALBASE}/bin/xdpyinfo:${PORTSDIR}/x11/xdpyinfo - -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_BZIP2= yes -USE_XORG= xau xrandr -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui -GNOME_DESKTOP_VERSION=2 -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-docbook-docs -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-session.1 gnome-wm.1 session-properties.1 \ - gnome-session-save.1 -MAN5= default.session.5 -GCONF_SCHEMAS= gnome-session.schemas - -SPLASHES= freebsd-splashes-gnome-2.18_1.tar - -post-extract: - cd ${WRKDIR} && ${TAR} -xf ${DISTDIR}/${DIST_SUBDIR}/${SPLASHES} - -post-install: - ${INSTALL_DATA} ${WRKSRC}/data/gnome-splash.png \ - ${PREFIX}/share/pixmaps/splash/original-gnome-splash.png -# ${INSTALL_DATA} ${WRKDIR}/freebsd-splashes-gnome-2.12/domix-splash-2.12.png \ -# ${PREFIX}/share/pixmaps/splash/gnome-splash.png -.for splash in MaMBaNgGaoX-2.12.png adamw-piggy-2.12.png adamw-trophy-2.12.png andreas-slogan-2.12.png andreas-splash-2.12.png domix-splash-2.12.png domix-splash2-2.12.png mumija-2.12.png mumija2-2.12.png mumija3-2.12.png tremulant-2.12.png tremulant-blood-2.12.png tremulant-brushed-metal-2.12.png franz-splash_218.png adamw-bat-2.18.jpg adamw-conky-2.18.png adamw-cow-2.18.png adamw-mouth-2.18.png adamw-swing-2.18.png - ${INSTALL_DATA} ${WRKDIR}/freebsd-splashes-gnome-2.18/${splash} \ - ${PREFIX}/share/pixmaps/splash -.endfor - -.include <bsd.port.mk> diff --git a/x11/gnome-session/distinfo b/x11/gnome-session/distinfo deleted file mode 100644 index ec640615b..000000000 --- a/x11/gnome-session/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (gnome2/gnome-session-2.26.0.tar.bz2) = e17dbce7446b3e42fac2b1cea7dedffd -SHA256 (gnome2/gnome-session-2.26.0.tar.bz2) = 0a161c419718b83e18200fe51e7e5f827b9b72a5ef055782c8c896c550a7881b -SIZE (gnome2/gnome-session-2.26.0.tar.bz2) = 829541 -MD5 (gnome2/freebsd-splashes-gnome-2.18_1.tar) = 80eb8c52fcf9fe977e0bf8ed48b85fe5 -SHA256 (gnome2/freebsd-splashes-gnome-2.18_1.tar) = fcca0f6eb759a4ef0211ecd61340f84ce8ad4d7493f725ac8613724faadbb508 -SIZE (gnome2/freebsd-splashes-gnome-2.18_1.tar) = 1630720 diff --git a/x11/gnome-session/files/patch-gnome-session_Makefile.in b/x11/gnome-session/files/patch-gnome-session_Makefile.in deleted file mode 100644 index 7febc702d..000000000 --- a/x11/gnome-session/files/patch-gnome-session_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- gnome-session/Makefile.in.orig 2009-02-21 19:46:07.000000000 +0100 -+++ gnome-session/Makefile.in 2009-02-21 19:46:57.000000000 +0100 -@@ -317,6 +317,7 @@ - - gnome_session_LDADD = \ - libgsmutil.la \ -+ -lexecinfo \ - $(top_builddir)/egg/libeggdesktopfile.la \ - $(SM_LIBS) \ - $(ICE_LIBS) \ diff --git a/x11/gnome-session/files/patch-gnome-session_gsm-autostart-app.c b/x11/gnome-session/files/patch-gnome-session_gsm-autostart-app.c deleted file mode 100644 index 3044f1b89..000000000 --- a/x11/gnome-session/files/patch-gnome-session_gsm-autostart-app.c +++ /dev/null @@ -1,10 +0,0 @@ ---- gnome-session/gsm-autostart-app.c.orig 2008-08-20 14:18:52.000000000 -0400 -+++ gnome-session/gsm-autostart-app.c 2008-08-20 14:19:02.000000000 -0400 -@@ -25,6 +25,7 @@ - #include <string.h> - #include <sys/wait.h> - #include <errno.h> -+#include <signal.h> - - #include <glib.h> - #include <gio/gio.h> diff --git a/x11/gnome-session/pkg-descr b/x11/gnome-session/pkg-descr deleted file mode 100644 index ee3e0826e..000000000 --- a/x11/gnome-session/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This provides session management for the GNOME 2 desktop, and -provides the tools used to start the desktop. - -WWW: http://www.gnome.org diff --git a/x11/gnome-session/pkg-plist b/x11/gnome-session/pkg-plist deleted file mode 100644 index 0f34e4d46..000000000 --- a/x11/gnome-session/pkg-plist +++ /dev/null @@ -1,193 +0,0 @@ -bin/gnome-session -bin/gnome-session-properties -bin/gnome-session-save -bin/gnome-wm -etc/xdg/autostart/at-spi-registryd-wrapper.desktop -etc/xdg/autostart/gnome-settings-daemon-helper.desktop -lib/gnome-session/helpers/at-spi-registryd-wrapper -lib/gnome-session/helpers/gnome-session-splash -lib/gnome-session/helpers/gnome-settings-daemon-helper -share/applications/session-properties.desktop -%%DATADIR%%/gsm-inhibit-dialog.glade -%%DATADIR%%/session-properties.glade -share/gnome/autostart/gnome-session-splash.desktop -share/icons/hicolor/16x16/apps/session-properties.png -share/icons/hicolor/22x22/apps/session-properties.png -share/icons/hicolor/24x24/apps/session-properties.png -share/icons/hicolor/32x32/apps/session-properties.png -share/icons/hicolor/48x48/apps/session-properties.png -share/icons/hicolor/scalable/apps/session-properties.svg -share/locale/af/LC_MESSAGES/gnome-session-2.0.mo -share/locale/am/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-session-2.0.mo -share/locale/as/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ast/LC_MESSAGES/gnome-session-2.0.mo -share/locale/az/LC_MESSAGES/gnome-session-2.0.mo -share/locale/be/LC_MESSAGES/gnome-session-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-session-2.0.mo -share/locale/crh/LC_MESSAGES/gnome-session-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-session-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-session-2.0.mo -share/locale/da/LC_MESSAGES/gnome-session-2.0.mo -share/locale/de/LC_MESSAGES/gnome-session-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-session-2.0.mo -share/locale/el/LC_MESSAGES/gnome-session-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-session-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-session-2.0.mo -share/locale/eo/LC_MESSAGES/gnome-session-2.0.mo -share/locale/es/LC_MESSAGES/gnome-session-2.0.mo -share/locale/et/LC_MESSAGES/gnome-session-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-session-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-session-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/fur/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-session-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ha/LC_MESSAGES/gnome-session-2.0.mo -share/locale/he/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-session-2.0.mo -share/locale/id/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ig/LC_MESSAGES/gnome-session-2.0.mo -share/locale/is/LC_MESSAGES/gnome-session-2.0.mo -share/locale/it/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-session-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-session-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-session-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nso/LC_MESSAGES/gnome-session-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-session-2.0.mo -share/locale/or/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ps/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-session-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-session-2.0.mo -share/locale/si/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sr@latin/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-session-2.0.mo -share/locale/te/LC_MESSAGES/gnome-session-2.0.mo -share/locale/th/LC_MESSAGES/gnome-session-2.0.mo -share/locale/tk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/uz/LC_MESSAGES/gnome-session-2.0.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-session-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-session-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-session-2.0.mo -share/locale/yo/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zu/LC_MESSAGES/gnome-session-2.0.mo -share/pixmaps/splash/MaMBaNgGaoX-2.12.png -share/pixmaps/splash/adamw-bat-2.18.jpg -share/pixmaps/splash/adamw-conky-2.18.png -share/pixmaps/splash/adamw-cow-2.18.png -share/pixmaps/splash/adamw-mouth-2.18.png -share/pixmaps/splash/adamw-piggy-2.12.png -share/pixmaps/splash/adamw-swing-2.18.png -share/pixmaps/splash/adamw-trophy-2.12.png -share/pixmaps/splash/andreas-slogan-2.12.png -share/pixmaps/splash/andreas-splash-2.12.png -share/pixmaps/splash/domix-splash-2.12.png -share/pixmaps/splash/domix-splash2-2.12.png -share/pixmaps/splash/franz-splash_218.png -share/pixmaps/splash/gnome-splash.png -share/pixmaps/splash/mumija-2.12.png -share/pixmaps/splash/mumija2-2.12.png -share/pixmaps/splash/mumija3-2.12.png -share/pixmaps/splash/original-gnome-splash.png -share/pixmaps/splash/tremulant-2.12.png -share/pixmaps/splash/tremulant-blood-2.12.png -share/pixmaps/splash/tremulant-brushed-metal-2.12.png -share/xsessions/gnome.desktop -@dirrmtry share/xsessions -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm lib/gnome-session/helpers -@dirrm lib/gnome-session -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yo/LC_MESSAGES -@dirrmtry share/locale/yo -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ig/LC_MESSAGES -@dirrmtry share/locale/ig -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/ha/LC_MESSAGES -@dirrmtry share/locale/ha -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-swallow/Makefile b/x11/gnome-swallow/Makefile deleted file mode 100644 index 79fdeb2e5..000000000 --- a/x11/gnome-swallow/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: gnome-swallow -# Date created: 16 April 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnome-swallow -PORTVERSION= 1.2 -PORTREVISION= 6 -CATEGORIES= x11 gnome -MASTER_SITES= http://interreality.org/~tetron/technology/swallow/ - -MAINTAINER= marcus@FreeBSD.org -COMMENT= Applet that swallows any X11 application into the GNOME 2 panel - -USE_XORG= x11 -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack gnomepanel -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" - -post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' \ - ${WRKSRC}/GNOME_Swallow.server - -.include <bsd.port.mk> diff --git a/x11/gnome-swallow/distinfo b/x11/gnome-swallow/distinfo deleted file mode 100644 index 4642b9c5b..000000000 --- a/x11/gnome-swallow/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome-swallow-1.2.tar.gz) = 9a278a8b5031957f7ca4f5f99044ba8e -SHA256 (gnome-swallow-1.2.tar.gz) = 09df0782e216591d1bff90e50b894242fa135f577f3502223e57734dc304afc8 -SIZE (gnome-swallow-1.2.tar.gz) = 90732 diff --git a/x11/gnome-swallow/files/patch-GNOME_Swallow.server b/x11/gnome-swallow/files/patch-GNOME_Swallow.server deleted file mode 100644 index 1f99ad2a6..000000000 --- a/x11/gnome-swallow/files/patch-GNOME_Swallow.server +++ /dev/null @@ -1,17 +0,0 @@ ---- GNOME_Swallow.server.orig Wed Apr 16 03:13:17 2003 -+++ GNOME_Swallow.server Wed Apr 16 03:13:30 2003 -@@ -1,6 +1,6 @@ - <oaf_info> - <oaf_server iid="OAFIID:GNOME_Swallow_Factory" type="exe" -- location="/usr/lib/gnome-panel/gnome_swallow"> -+ location="%%PREFIX%%/lib/gnome-panel/gnome_swallow"> - - <oaf_attribute name="repo_ids" type="stringv"> - <item value="IDL:Bonobo/GenericFactory:1.0"/> -@@ -23,4 +23,4 @@ - <oaf_attribute name="panel:category" type="string" value="Utility"/> - <oaf_attribute name="panel:icon" type="string" value="gnome-applets.png"/> - </oaf_server> --</oaf_info> -\ No newline at end of file -+</oaf_info> diff --git a/x11/gnome-swallow/files/patch-Makefile.in b/x11/gnome-swallow/files/patch-Makefile.in deleted file mode 100644 index e8914f324..000000000 --- a/x11/gnome-swallow/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Wed Apr 16 03:11:46 2003 -+++ Makefile.in Wed Apr 16 03:11:57 2003 -@@ -103,7 +103,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - paneldir = $(prefix)/lib/gnome-panel --serversdir = $(prefix)/lib/bonobo/servers -+serversdir = $(prefix)/libdata/bonobo/servers - docdir = $(prefix)/share/doc/gnome-swallow - - dist_doc_DATA = README diff --git a/x11/gnome-swallow/files/patch-gnome-swallow.c b/x11/gnome-swallow/files/patch-gnome-swallow.c deleted file mode 100644 index 49b5b5c1f..000000000 --- a/x11/gnome-swallow/files/patch-gnome-swallow.c +++ /dev/null @@ -1,41 +0,0 @@ ---- gnome-swallow.c.orig Fri Sep 12 00:21:55 2003 -+++ gnome-swallow.c Sun Apr 24 00:28:34 2005 -@@ -1,3 +1,5 @@ -+#include <sys/types.h> -+#include <sys/time.h> - #include <string.h> - #include <stdio.h> - #include <signal.h> -@@ -55,7 +57,7 @@ gboolean swallow(char* wantedWindow, Dis - - XSync (display, FALSE); - -- gettimeofday(&tv); -+ gettimeofday(&tv, NULL); - now = start = (double)tv.tv_sec + ((double)tv.tv_usec / 1000000.0); - - while (ready == FALSE && now < (start + 10.0)) -@@ -131,7 +133,7 @@ gboolean swallow(char* wantedWindow, Dis - fprintf(stderr,"Loop"); - gtk_main_iteration_do(FALSE); - -- gettimeofday(&tv); -+ gettimeofday(&tv, NULL); - now = (double)tv.tv_sec + ((double)tv.tv_usec / 1000000.0); - } - -@@ -249,13 +251,13 @@ void exitProgram(GtkWidget* w, gpointer - void forkApplet(struct AppletConfigure* ap) - { - if(ap->pid > -1) { -+ int s; - /* Kill the old process and wait for it to die (if the process - is already dead then it will be a zombie anyway). - */ - kill(ap->pid, SIGTERM); - sleep(1); - kill(ap->pid, SIGKILL); -- int s; - waitpid(ap->pid, &s, WNOHANG); - } - diff --git a/x11/gnome-swallow/pkg-descr b/x11/gnome-swallow/pkg-descr deleted file mode 100644 index 94f04f35c..000000000 --- a/x11/gnome-swallow/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Gnome-swallow is a pseudo-applet that allows one to swallow any X11 -application into the GNOME 2 panel. This restores the functionality that -used to exist in GNOME 1.x. - -WWW: http://interreality.org/~tetron/technology/swallow/ diff --git a/x11/gnome-swallow/pkg-plist b/x11/gnome-swallow/pkg-plist deleted file mode 100644 index cf195d120..000000000 --- a/x11/gnome-swallow/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -lib/gnome-panel/gnome_swallow -libdata/bonobo/servers/GNOME_Swallow.server -share/doc/gnome-swallow/README -@dirrm share/doc/gnome-swallow -@dirrm lib/gnome-panel diff --git a/x11/gnome-terminal/Makefile b/x11/gnome-terminal/Makefile deleted file mode 100644 index 63b1850bd..000000000 --- a/x11/gnome-terminal/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: gnometerminal -# Date created: 1 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-terminal/Makefile,v 1.115 2009/02/24 19:55:36 kwm Exp $ -# - -PORTNAME= gnome-terminal -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Terminal component for the GNOME 2 Desktop - -USE_GETTEXT= yes -USE_BZIP2= yes -INSTALLS_OMF= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui vte gnomedocutils -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gnome-terminal.schemas - -.include <bsd.port.mk> diff --git a/x11/gnome-terminal/distinfo b/x11/gnome-terminal/distinfo deleted file mode 100644 index 799156506..000000000 --- a/x11/gnome-terminal/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-terminal-2.26.0.tar.bz2) = 013e51a2c4dd7dde5db49587952065ae -SHA256 (gnome2/gnome-terminal-2.26.0.tar.bz2) = ea99c8eba63d348514cc0042f0f3c7df3e03498aa316a9458bed1cd2f0efb6ce -SIZE (gnome2/gnome-terminal-2.26.0.tar.bz2) = 1969827 diff --git a/x11/gnome-terminal/pkg-descr b/x11/gnome-terminal/pkg-descr deleted file mode 100644 index 1193c30f7..000000000 --- a/x11/gnome-terminal/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Default terminal emulator for the GNOME 2.0 Desktop. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-terminal/pkg-plist b/x11/gnome-terminal/pkg-plist deleted file mode 100644 index 8db648f54..000000000 --- a/x11/gnome-terminal/pkg-plist +++ /dev/null @@ -1,252 +0,0 @@ -bin/gnome-terminal -share/applications/gnome-terminal.desktop -%%DATADIR%%/encodings-dialog.ui -%%DATADIR%%/keybinding-editor.ui -%%DATADIR%%/profile-manager.ui -%%DATADIR%%/profile-new-dialog.ui -%%DATADIR%%/profile-preferences.ui -%%DATADIR%%/skey-challenge.ui -%%DATADIR%%/terminal.about -%%DATADIR%%/terminal.xml -share/gnome/help/gnome-terminal/C/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/C/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/C/gnome-terminal.xml -share/gnome/help/gnome-terminal/C/legal.xml -share/gnome/help/gnome-terminal/bg/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/bg/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/bg/gnome-terminal.xml -share/gnome/help/gnome-terminal/bg/legal.xml -share/gnome/help/gnome-terminal/ca/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ca/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ca/gnome-terminal.xml -share/gnome/help/gnome-terminal/cs/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/cs/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/cs/gnome-terminal.xml -share/gnome/help/gnome-terminal/da/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/da/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/da/gnome-terminal.xml -share/gnome/help/gnome-terminal/de/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/de/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/de/gnome-terminal.xml -share/gnome/help/gnome-terminal/es/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/es/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/es/gnome-terminal.xml -share/gnome/help/gnome-terminal/fr/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/fr/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/fr/gnome-terminal.xml -share/gnome/help/gnome-terminal/it/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/it/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/it/gnome-terminal.xml -share/gnome/help/gnome-terminal/ja/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ja/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ja/gnome-terminal.xml -share/gnome/help/gnome-terminal/ja/legal.xml -share/gnome/help/gnome-terminal/ko/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ko/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ko/gnome-terminal.xml -share/gnome/help/gnome-terminal/oc/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/oc/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/oc/gnome-terminal.xml -share/gnome/help/gnome-terminal/pt_BR/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/pt_BR/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/pt_BR/gnome-terminal.xml -share/gnome/help/gnome-terminal/ro/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ro/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ro/gnome-terminal.xml -share/gnome/help/gnome-terminal/ro/legal.xml -share/gnome/help/gnome-terminal/ru/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ru/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ru/gnome-terminal.xml -share/gnome/help/gnome-terminal/sv/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/sv/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/sv/gnome-terminal.xml -share/gnome/help/gnome-terminal/uk/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/uk/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/uk/gnome-terminal.xml -share/gnome/help/gnome-terminal/zh_CN/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/zh_CN/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/zh_CN/gnome-terminal.xml -share/gnome/help/gnome-terminal/zh_CN/legal.xml -share/gnome/help/gnome-terminal/zh_TW/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/zh_TW/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/zh_TW/gnome-terminal.xml -share/gnome/help/gnome-terminal/zh_TW/legal.xml -share/locale/am/LC_MESSAGES/gnome-terminal.mo -share/locale/ar/LC_MESSAGES/gnome-terminal.mo -share/locale/as/LC_MESSAGES/gnome-terminal.mo -share/locale/ast/LC_MESSAGES/gnome-terminal.mo -share/locale/az/LC_MESSAGES/gnome-terminal.mo -share/locale/be/LC_MESSAGES/gnome-terminal.mo -share/locale/be@latin/LC_MESSAGES/gnome-terminal.mo -share/locale/bg/LC_MESSAGES/gnome-terminal.mo -share/locale/bn_IN/LC_MESSAGES/gnome-terminal.mo -share/locale/bs/LC_MESSAGES/gnome-terminal.mo -share/locale/ca/LC_MESSAGES/gnome-terminal.mo -share/locale/cs/LC_MESSAGES/gnome-terminal.mo -share/locale/da/LC_MESSAGES/gnome-terminal.mo -share/locale/de/LC_MESSAGES/gnome-terminal.mo -share/locale/dz/LC_MESSAGES/gnome-terminal.mo -share/locale/el/LC_MESSAGES/gnome-terminal.mo -share/locale/en_CA/LC_MESSAGES/gnome-terminal.mo -share/locale/en_GB/LC_MESSAGES/gnome-terminal.mo -share/locale/es/LC_MESSAGES/gnome-terminal.mo -share/locale/et/LC_MESSAGES/gnome-terminal.mo -share/locale/eu/LC_MESSAGES/gnome-terminal.mo -share/locale/fa/LC_MESSAGES/gnome-terminal.mo -share/locale/fi/LC_MESSAGES/gnome-terminal.mo -share/locale/fr/LC_MESSAGES/gnome-terminal.mo -share/locale/fur/LC_MESSAGES/gnome-terminal.mo -share/locale/ga/LC_MESSAGES/gnome-terminal.mo -share/locale/gl/LC_MESSAGES/gnome-terminal.mo -share/locale/gu/LC_MESSAGES/gnome-terminal.mo -share/locale/he/LC_MESSAGES/gnome-terminal.mo -share/locale/hi/LC_MESSAGES/gnome-terminal.mo -share/locale/hr/LC_MESSAGES/gnome-terminal.mo -share/locale/hu/LC_MESSAGES/gnome-terminal.mo -share/locale/hy/LC_MESSAGES/gnome-terminal.mo -share/locale/it/LC_MESSAGES/gnome-terminal.mo -share/locale/ja/LC_MESSAGES/gnome-terminal.mo -share/locale/ka/LC_MESSAGES/gnome-terminal.mo -share/locale/kn/LC_MESSAGES/gnome-terminal.mo -share/locale/ko/LC_MESSAGES/gnome-terminal.mo -share/locale/ku/LC_MESSAGES/gnome-terminal.mo -share/locale/lt/LC_MESSAGES/gnome-terminal.mo -share/locale/lv/LC_MESSAGES/gnome-terminal.mo -share/locale/mai/LC_MESSAGES/gnome-terminal.mo -share/locale/mg/LC_MESSAGES/gnome-terminal.mo -share/locale/mk/LC_MESSAGES/gnome-terminal.mo -share/locale/ml/LC_MESSAGES/gnome-terminal.mo -share/locale/mn/LC_MESSAGES/gnome-terminal.mo -share/locale/mr/LC_MESSAGES/gnome-terminal.mo -share/locale/ms/LC_MESSAGES/gnome-terminal.mo -share/locale/nb/LC_MESSAGES/gnome-terminal.mo -share/locale/ne/LC_MESSAGES/gnome-terminal.mo -share/locale/nl/LC_MESSAGES/gnome-terminal.mo -share/locale/nn/LC_MESSAGES/gnome-terminal.mo -share/locale/oc/LC_MESSAGES/gnome-terminal.mo -share/locale/or/LC_MESSAGES/gnome-terminal.mo -share/locale/pa/LC_MESSAGES/gnome-terminal.mo -share/locale/pl/LC_MESSAGES/gnome-terminal.mo -share/locale/ps/LC_MESSAGES/gnome-terminal.mo -share/locale/pt/LC_MESSAGES/gnome-terminal.mo -share/locale/pt_BR/LC_MESSAGES/gnome-terminal.mo -share/locale/ro/LC_MESSAGES/gnome-terminal.mo -share/locale/ru/LC_MESSAGES/gnome-terminal.mo -share/locale/rw/LC_MESSAGES/gnome-terminal.mo -share/locale/si/LC_MESSAGES/gnome-terminal.mo -share/locale/sk/LC_MESSAGES/gnome-terminal.mo -share/locale/sl/LC_MESSAGES/gnome-terminal.mo -share/locale/sq/LC_MESSAGES/gnome-terminal.mo -share/locale/sr/LC_MESSAGES/gnome-terminal.mo -share/locale/sr@latin/LC_MESSAGES/gnome-terminal.mo -share/locale/sv/LC_MESSAGES/gnome-terminal.mo -share/locale/ta/LC_MESSAGES/gnome-terminal.mo -share/locale/te/LC_MESSAGES/gnome-terminal.mo -share/locale/th/LC_MESSAGES/gnome-terminal.mo -share/locale/tr/LC_MESSAGES/gnome-terminal.mo -share/locale/uk/LC_MESSAGES/gnome-terminal.mo -share/locale/vi/LC_MESSAGES/gnome-terminal.mo -share/locale/wa/LC_MESSAGES/gnome-terminal.mo -share/locale/xh/LC_MESSAGES/gnome-terminal.mo -share/locale/zh_CN/LC_MESSAGES/gnome-terminal.mo -share/locale/zh_HK/LC_MESSAGES/gnome-terminal.mo -share/locale/zh_TW/LC_MESSAGES/gnome-terminal.mo -share/omf/gnome-terminal/gnome-terminal-C.omf -share/omf/gnome-terminal/gnome-terminal-bg.omf -share/omf/gnome-terminal/gnome-terminal-ca.omf -share/omf/gnome-terminal/gnome-terminal-cs.omf -share/omf/gnome-terminal/gnome-terminal-da.omf -share/omf/gnome-terminal/gnome-terminal-de.omf -share/omf/gnome-terminal/gnome-terminal-es.omf -share/omf/gnome-terminal/gnome-terminal-fr.omf -share/omf/gnome-terminal/gnome-terminal-it.omf -share/omf/gnome-terminal/gnome-terminal-ja.omf -share/omf/gnome-terminal/gnome-terminal-ko.omf -share/omf/gnome-terminal/gnome-terminal-oc.omf -share/omf/gnome-terminal/gnome-terminal-pt_BR.omf -share/omf/gnome-terminal/gnome-terminal-ro.omf -share/omf/gnome-terminal/gnome-terminal-ru.omf -share/omf/gnome-terminal/gnome-terminal-sv.omf -share/omf/gnome-terminal/gnome-terminal-uk.omf -share/omf/gnome-terminal/gnome-terminal-zh_CN.omf -share/omf/gnome-terminal/gnome-terminal-zh_TW.omf -@dirrm share/omf/gnome-terminal -@dirrm share/gnome/help/gnome-terminal/zh_TW/figures -@dirrm share/gnome/help/gnome-terminal/zh_TW -@dirrm share/gnome/help/gnome-terminal/zh_CN/figures -@dirrm share/gnome/help/gnome-terminal/zh_CN -@dirrm share/gnome/help/gnome-terminal/uk/figures -@dirrm share/gnome/help/gnome-terminal/uk -@dirrm share/gnome/help/gnome-terminal/sv/figures -@dirrm share/gnome/help/gnome-terminal/sv -@dirrm share/gnome/help/gnome-terminal/ru/figures -@dirrm share/gnome/help/gnome-terminal/ru -@dirrm share/gnome/help/gnome-terminal/ro/figures -@dirrm share/gnome/help/gnome-terminal/ro -@dirrm share/gnome/help/gnome-terminal/pt_BR/figures -@dirrm share/gnome/help/gnome-terminal/pt_BR -@dirrm share/gnome/help/gnome-terminal/oc/figures -@dirrm share/gnome/help/gnome-terminal/oc -@dirrm share/gnome/help/gnome-terminal/ko/figures -@dirrm share/gnome/help/gnome-terminal/ko -@dirrm share/gnome/help/gnome-terminal/ja/figures -@dirrm share/gnome/help/gnome-terminal/ja -@dirrm share/gnome/help/gnome-terminal/it/figures -@dirrm share/gnome/help/gnome-terminal/it -@dirrm share/gnome/help/gnome-terminal/fr/figures -@dirrm share/gnome/help/gnome-terminal/fr -@dirrm share/gnome/help/gnome-terminal/es/figures -@dirrm share/gnome/help/gnome-terminal/es -@dirrm share/gnome/help/gnome-terminal/de/figures -@dirrm share/gnome/help/gnome-terminal/de -@dirrm share/gnome/help/gnome-terminal/da/figures -@dirrm share/gnome/help/gnome-terminal/da -@dirrm share/gnome/help/gnome-terminal/cs/figures -@dirrm share/gnome/help/gnome-terminal/cs -@dirrm share/gnome/help/gnome-terminal/ca/figures -@dirrm share/gnome/help/gnome-terminal/ca -@dirrm share/gnome/help/gnome-terminal/bg/figures -@dirrm share/gnome/help/gnome-terminal/bg -@dirrm share/gnome/help/gnome-terminal/C/figures -@dirrm share/gnome/help/gnome-terminal/C -@dirrm share/gnome/help/gnome-terminal -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome2/Makefile b/x11/gnome2/Makefile deleted file mode 100644 index c4de0b6c5..000000000 --- a/x11/gnome2/Makefile +++ /dev/null @@ -1,113 +0,0 @@ -# New ports collection makefile for: gnome2 -# Date created: 21 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome2/Makefile,v 1.263 2009/03/05 08:12:27 marcus Exp $ -# - -PORTNAME= gnome2 -PORTVERSION= 2.26.0 -PORTREVISION?= 0 -CATEGORIES?= x11 gnome -MASTER_SITES= # empty -DISTFILES= # empty -EXTRACT_ONLY= # empty - -MAINTAINER= gnome@FreeBSD.org -COMMENT?= The "meta-port" for the GNOME 2 integrated X11 desktop - -RUN_DEPENDS?= ${LOCALBASE}/libexec/gweather-applet-2:${PORTSDIR}/x11/gnome-applets \ - gnome-audio-profiles-properties:${PORTSDIR}/audio/gnome-media \ - gnome-dictionary:${PORTSDIR}/deskutils/gnome-utils \ - eog:${PORTSDIR}/graphics/eog \ - gconf-editor:${PORTSDIR}/sysutils/gconf-editor \ - gnect:${PORTSDIR}/games/gnome-games \ - gedit:${PORTSDIR}/editors/gedit \ - gnome-terminal:${PORTSDIR}/x11/gnome-terminal \ - gnome-session:${PORTSDIR}/x11/gnome-session \ - bug-buddy:${PORTSDIR}/devel/bug-buddy \ - gnome-system-monitor:${PORTSDIR}/sysutils/gnome-system-monitor \ - nautilus:${PORTSDIR}/x11-fm/nautilus \ - ${LOCALBASE}/sbin/gdm:${PORTSDIR}/x11/gdm \ - ${LOCALBASE}/share/gnome/help/user-guide/C/user-guide.xml:${PORTSDIR}/misc/gnome-user-docs \ - ${LOCALBASE}/share/sounds/question.wav:${PORTSDIR}/audio/gnome-audio \ - ${LOCALBASE}/libdata/pkgconfig/libgail-gnome.pc:${PORTSDIR}/x11-toolkits/libgail-gnome \ - file-roller:${PORTSDIR}/archivers/file-roller \ - ${LOCALBASE}/share/themes/HighContrast/gtk-2.0/gtkrc:${PORTSDIR}/x11-themes/gnome-themes \ - gok:${PORTSDIR}/accessibility/gok \ - gcalctool:${PORTSDIR}/math/gcalctool \ - ${LOCALBASE}/lib/X11/fonts/bitstream-vera/Vera.ttf:${PORTSDIR}/x11-fonts/bitstream-vera \ - ${LOCALBASE}/libexec/gnome-netstatus-applet:${PORTSDIR}/net/gnome-netstatus \ - dasher:${PORTSDIR}/accessibility/dasher \ - evolution:${PORTSDIR}/mail/evolution \ - ${LOCALBASE}/libexec/evolution-webcal:${PORTSDIR}/www/evolution-webcal \ - network-admin:${PORTSDIR}/sysutils/gnome-system-tools \ - vino-passwd:${PORTSDIR}/net/vino \ - exchange-connector-setup-2.26:${PORTSDIR}/mail/evolution-exchange \ - ${LOCALBASE}/lib/gstreamer-0.10/.gstreamer-plugins-core.keep:${PORTSDIR}/multimedia/gstreamer-plugins-core \ - ${LOCALBASE}/lib/gstreamer-0.10/libgstgconfelements.so:${PORTSDIR}/devel/gstreamer-plugins-gconf \ - totem:${PORTSDIR}/multimedia/totem \ - gnome-control-center:${PORTSDIR}/sysutils/gnome-control-center \ - ${LOCALBASE}/share/gnome-background-properties/gnome-nature.xml:${PORTSDIR}/x11-themes/gnome-backgrounds \ - evince:${PORTSDIR}/graphics/evince \ - alacarte:${PORTSDIR}/deskutils/alacarte \ - gnome-power-manager:${PORTSDIR}/sysutils/gnome-power-manager \ - orca:${PORTSDIR}/accessibility/orca \ - gnome-mount:${PORTSDIR}/sysutils/gnome-mount \ - ${LOCALBASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon \ - seahorse-agent:${PORTSDIR}/security/seahorse-plugins \ - mousetweaks:${PORTSDIR}/accessibility/mousetweaks \ - ${LOCALBASE}/share/hal/fdi/information/10freedesktop/10-camera-ptp.fdi:${PORTSDIR}/sysutils/hal-info \ - ${LOCALBASE}/share/sounds/freedesktop/index.theme:${PORTSDIR}/audio/freedesktop-sound-theme - -NO_BUILD= yes - -.if !defined(GNOME_SLAVE) -USE_PYTHON= yes -.endif - -.if !defined(GNOME_SLAVE) || ${.CURDIR:T}=="gnome2-lite" -OPTIONS= XSCREENSAVER "Use xscreensaver as screen saver app" off -.endif - -do-install: # empty - -.include <bsd.port.pre.mk> - -.if !defined(GNOME_SLAVE) -.if (${ARCH}!="sparc64" || ${OSVERSION} >= 601101) && ${ARCH}!="ia64" -RUN_DEPENDS+= yelp:${PORTSDIR}/x11/yelp \ - epiphany:${PORTSDIR}/www/epiphany -.endif -.if ${.CURDIR:T}!="gnome2-lite" -RUN_DEPENDS+= empathy:${PORTSDIR}/net-im/empathy \ - cheese:${PORTSDIR}/multimedia/cheese \ - gucharmap:${PORTSDIR}/deskutils/gucharmap \ - sound-juicer:${PORTSDIR}/audio/sound-juicer \ - zenity:${PORTSDIR}/x11/zenity \ - gnome-nettool:${PORTSDIR}/net/gnome-nettool \ - swfdec-player:${PORTSDIR}/multimedia/swfdec-gnome \ - vinagre:${PORTSDIR}/net/vinagre \ - brasero:${PORTSDIR}/sysutils/brasero \ - gnome-file-share-properties:${PORTSDIR}/www/gnome-user-share \ - ${LOCALBASE}/lib/deskbar-applet/deskbar-applet:${PORTSDIR}/deskutils/deskbar-applet \ - ${LOCALBASE}/lib/hamster-applet/hamster-applet:${PORTSDIR}/deskutils/hamster-applet -.if ${ARCH} == "i386" -#RUN_DEPENDS+= tomboy:${PORTSDIR}/deskutils/tomboy -.endif -.if ${OSVERSION}>=600000 -RUN_DEPENDS+= ekiga:${PORTSDIR}/net/ekiga -.endif -.endif -.endif - -.if ${.CURDIR}==${MASTERDIR} || ${.CURDIR:T}=="gnome2-lite" -.if defined(WITH_XSCREENSAVER) -RUN_DEPENDS+= ${LOCALBASE}/share/applications/xscreensaver-properties.desktop:${PORTSDIR}/x11/xscreensaver-gnome -.else -RUN_DEPENDS+= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver -.endif -.endif - -.include <bsd.port.post.mk> diff --git a/x11/gnome2/pkg-descr b/x11/gnome2/pkg-descr deleted file mode 100644 index a7051fc7b..000000000 --- a/x11/gnome2/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -GNU Network Object Model Environment - -This metaport installs the entire GNOME 2 desktop, including -the the most common user applications. Other popular GNOME -applications can be installed from the other GNOME 2 metaports: - - * x11/gnome2-fifth-toe - * x11/gnome2-power-tools - * editors/gnome2-office - * devel/gnome2-hacker-tools - -WWW: http://www.FreeBSD.org/gnome/ diff --git a/x11/gnome2/pkg-message b/x11/gnome2/pkg-message deleted file mode 100644 index d8f296a70..000000000 --- a/x11/gnome2/pkg-message +++ /dev/null @@ -1,8 +0,0 @@ -************************************************************************** -Congratulations! GNOME 2 has been successfully installed on your system. -For help on starting it up, as well as answers to common questions, and -some known issues, please see the FreeBSD GNOME homepage at: - - http://www.FreeBSD.org/gnome/ - -************************************************************************** diff --git a/x11/gnome2/pkg-plist b/x11/gnome2/pkg-plist deleted file mode 100644 index 549a621fe..000000000 --- a/x11/gnome2/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -@comment this plist intentionally left empty diff --git a/x11/libgnome/Makefile b/x11/libgnome/Makefile deleted file mode 100644 index 4f64e08ae..000000000 --- a/x11/libgnome/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# New ports collection makefile for: libgnome -# Date created: 17 June 1998 -# Whom: Yukihiro Nakai <Nakai@technologist.com> -# -# $FreeBSD$ -# $MCom: ports/x11/libgnome/Makefile,v 1.125 2009/03/08 17:12:50 marcus Exp $ -# - -PORTNAME= libgnome -PORTVERSION= 2.26.0 -PORTREVISION?= 0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Libraries for GNOME, a GNU desktop environment - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian - -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack esound libbonobo \ - gnomevfs2 ltverhack referencehack -USE_BISON= build -USE_XORG= xpm -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -SUB_FILES= pkg-deinstall - -MAN7= gnome-options.7 - -GCONF_SCHEMAS= desktop_gnome_accessibility_keyboard.schemas \ - desktop_gnome_accessibility_startup.schemas \ - desktop_gnome_applications_at_mobility.schemas \ - desktop_gnome_applications_at_visual.schemas \ - desktop_gnome_applications_browser.schemas \ - desktop_gnome_applications_office.schemas \ - desktop_gnome_applications_terminal.schemas \ - desktop_gnome_applications_window_manager.schemas \ - desktop_gnome_background.schemas \ - desktop_gnome_file_views.schemas \ - desktop_gnome_interface.schemas \ - desktop_gnome_lockdown.schemas \ - desktop_gnome_peripherals_keyboard.schemas \ - desktop_gnome_peripherals_mouse.schemas \ - desktop_gnome_sound.schemas \ - desktop_gnome_thumbnail_cache.schemas \ - desktop_gnome_thumbnailers.schemas \ - desktop_gnome_typing_break.schemas - -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/libgnome/libgnome-2.0.pc.in - @${REINPLACE_CMD} -e '/^$$/d' ${WRKSRC}/po/POTFILES.in - -.include <bsd.port.mk> - -.endif diff --git a/x11/libgnome/distinfo b/x11/libgnome/distinfo deleted file mode 100644 index 9490458f3..000000000 --- a/x11/libgnome/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnome-2.26.0.tar.bz2) = a5634fe9ddc54bbb726cbaaa35abc0b9 -SHA256 (gnome2/libgnome-2.26.0.tar.bz2) = 2ef0287ab19fd34a7d20bc8beef86bb22db13cfc414367cb48e6121b8163e318 -SIZE (gnome2/libgnome-2.26.0.tar.bz2) = 1414016 diff --git a/x11/libgnome/files/patch-libgnome::Makefile.in b/x11/libgnome/files/patch-libgnome::Makefile.in deleted file mode 100644 index efac650ba..000000000 --- a/x11/libgnome/files/patch-libgnome::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- libgnome/Makefile.in.orig Tue May 29 22:16:13 2007 -+++ libgnome/Makefile.in Tue May 29 22:16:58 2007 -@@ -280,6 +280,8 @@ - LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@ - libgnomeincludedir = $(includedir)/libgnome-2.0/libgnome - INCLUDES = \ -+ -DPREFIX=\""$(PREFIX)"\" \ -+ -DLOCALBASE=\""$(LOCALBASE)"\" \ - -I.. \ - -I$(srcdir)/.. \ - $(WARN_CFLAGS) \ diff --git a/x11/libgnome/files/patch-libgnome_gnome-util.c b/x11/libgnome/files/patch-libgnome_gnome-util.c deleted file mode 100644 index 1a7e49a84..000000000 --- a/x11/libgnome/files/patch-libgnome_gnome-util.c +++ /dev/null @@ -1,19 +0,0 @@ ---- libgnome/gnome-util.c.orig Mon Jul 10 15:25:22 2006 -+++ libgnome/gnome-util.c Mon Jul 10 15:25:55 2006 -@@ -79,11 +79,11 @@ - const char shells [][14] = { - /* Note that on some systems shells can also - * be installed in /usr/bin */ -- "/bin/bash", "/usr/bin/bash", -- "/bin/zsh", "/usr/bin/zsh", -- "/bin/tcsh", "/usr/bin/tcsh", -- "/bin/ksh", "/usr/bin/ksh", -- "/bin/csh", "/bin/sh" -+ LOCALBASE "/bin/bash", -+ LOCALBASE "/bin/zsh", -+ LOCALBASE "/bin/ksh", -+ 0 -+ - }; - - if (geteuid () == getuid () && diff --git a/x11/libgnome/files/patch-libgnome_libgnome-2.0.pc.in b/x11/libgnome/files/patch-libgnome_libgnome-2.0.pc.in deleted file mode 100644 index 8d376a4b8..000000000 --- a/x11/libgnome/files/patch-libgnome_libgnome-2.0.pc.in +++ /dev/null @@ -1,9 +0,0 @@ ---- libgnome/libgnome-2.0.pc.in.orig Mon Apr 18 16:54:21 2005 -+++ libgnome/libgnome-2.0.pc.in Mon Apr 18 16:54:41 2005 -@@ -8,5 +8,5 @@ - Description: libgnome - Requires: glib-2.0 ORBit-2.0 libbonobo-2.0 gconf-2.0 gnome-vfs-2.0 - Version: @VERSION@ --Libs: -L${libdir} -lgnome-2 -lpopt -+Libs: -L${libdir} -L%%LOCALBASE%%/lib -lgnome-2 -lpopt - Cflags: -I${includedir}/libgnome-2.0 diff --git a/x11/libgnome/files/pkg-deinstall.in b/x11/libgnome/files/pkg-deinstall.in deleted file mode 100644 index d67f3a53d..000000000 --- a/x11/libgnome/files/pkg-deinstall.in +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# $MCom: ports/x11/libgnome/files/pkg-deinstall.in,v 1.19 2009/03/08 17:12:50 marcus Exp $ -# -# Restore gconf keys of gnomevfs2. - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -SCHEMAS=%%LOCALBASE%%/etc/gconf/schemas/desktop_default_applications.schemas - -if [ -f ${SCHEMAS} ]; then - env GCONF_CONFIG_SOURCE=xml::%%LOCALBASE%%/etc/gconf/gconf.xml.defaults \ - %%LOCALBASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \ - > /dev/null || /usr/bin/true -fi - -exit 0 diff --git a/x11/libgnome/pkg-descr b/x11/libgnome/pkg-descr deleted file mode 100644 index b78aaf2cc..000000000 --- a/x11/libgnome/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -LibGnome provides the non-GUI backend for the GNOME environment. - -WWW: http://www.gnome.org/ diff --git a/x11/libgnome/pkg-plist b/x11/libgnome/pkg-plist deleted file mode 100644 index b948e7525..000000000 --- a/x11/libgnome/pkg-plist +++ /dev/null @@ -1,159 +0,0 @@ -bin/gnome-open -etc/sound/events/gnome-2.soundlist -etc/sound/events/gtk-events-2.soundlist -include/libgnome-2.0/libgnome/gnome-config.h -include/libgnome-2.0/libgnome/gnome-exec.h -include/libgnome-2.0/libgnome/gnome-gconf.h -include/libgnome-2.0/libgnome/gnome-help.h -include/libgnome-2.0/libgnome/gnome-i18n.h -include/libgnome-2.0/libgnome/gnome-init.h -include/libgnome-2.0/libgnome/gnome-macros.h -include/libgnome-2.0/libgnome/gnome-program.h -include/libgnome-2.0/libgnome/gnome-score.h -include/libgnome-2.0/libgnome/gnome-sound.h -include/libgnome-2.0/libgnome/gnome-triggers.h -include/libgnome-2.0/libgnome/gnome-url.h -include/libgnome-2.0/libgnome/gnome-util.h -include/libgnome-2.0/libgnome/libgnome.h -include/libgnome-2.0/libgnome/libgnometypebuiltins.h -lib/bonobo/monikers/libmoniker_extra_2.a -lib/bonobo/monikers/libmoniker_extra_2.la -lib/bonobo/monikers/libmoniker_extra_2.so -lib/libgnome-2.a -lib/libgnome-2.la -lib/libgnome-2.so -lib/libgnome-2.so.0 -libdata/bonobo/servers/GNOME_Moniker_std.server -libdata/pkgconfig/libgnome-2.0.pc -share/gnome-background-properties/gnome-default.xml -share/locale/am/LC_MESSAGES/libgnome-2.0.mo -share/locale/ar/LC_MESSAGES/libgnome-2.0.mo -share/locale/as/LC_MESSAGES/libgnome-2.0.mo -share/locale/ast/LC_MESSAGES/libgnome-2.0.mo -share/locale/az/LC_MESSAGES/libgnome-2.0.mo -share/locale/be/LC_MESSAGES/libgnome-2.0.mo -share/locale/bg/LC_MESSAGES/libgnome-2.0.mo -share/locale/bn/LC_MESSAGES/libgnome-2.0.mo -share/locale/bn_IN/LC_MESSAGES/libgnome-2.0.mo -share/locale/bs/LC_MESSAGES/libgnome-2.0.mo -share/locale/ca/LC_MESSAGES/libgnome-2.0.mo -share/locale/crh/LC_MESSAGES/libgnome-2.0.mo -share/locale/cs/LC_MESSAGES/libgnome-2.0.mo -share/locale/cy/LC_MESSAGES/libgnome-2.0.mo -share/locale/da/LC_MESSAGES/libgnome-2.0.mo -share/locale/de/LC_MESSAGES/libgnome-2.0.mo -share/locale/dz/LC_MESSAGES/libgnome-2.0.mo -share/locale/el/LC_MESSAGES/libgnome-2.0.mo -share/locale/en_CA/LC_MESSAGES/libgnome-2.0.mo -share/locale/en_GB/LC_MESSAGES/libgnome-2.0.mo -share/locale/eo/LC_MESSAGES/libgnome-2.0.mo -share/locale/es/LC_MESSAGES/libgnome-2.0.mo -share/locale/et/LC_MESSAGES/libgnome-2.0.mo -share/locale/eu/LC_MESSAGES/libgnome-2.0.mo -share/locale/fa/LC_MESSAGES/libgnome-2.0.mo -share/locale/fi/LC_MESSAGES/libgnome-2.0.mo -share/locale/fr/LC_MESSAGES/libgnome-2.0.mo -share/locale/fur/LC_MESSAGES/libgnome-2.0.mo -share/locale/ga/LC_MESSAGES/libgnome-2.0.mo -share/locale/gl/LC_MESSAGES/libgnome-2.0.mo -share/locale/gu/LC_MESSAGES/libgnome-2.0.mo -share/locale/he/LC_MESSAGES/libgnome-2.0.mo -share/locale/hi/LC_MESSAGES/libgnome-2.0.mo -share/locale/hr/LC_MESSAGES/libgnome-2.0.mo -share/locale/hu/LC_MESSAGES/libgnome-2.0.mo -share/locale/id/LC_MESSAGES/libgnome-2.0.mo -share/locale/is/LC_MESSAGES/libgnome-2.0.mo -share/locale/it/LC_MESSAGES/libgnome-2.0.mo -share/locale/ja/LC_MESSAGES/libgnome-2.0.mo -share/locale/ka/LC_MESSAGES/libgnome-2.0.mo -share/locale/ko/LC_MESSAGES/libgnome-2.0.mo -share/locale/ku/LC_MESSAGES/libgnome-2.0.mo -share/locale/lt/LC_MESSAGES/libgnome-2.0.mo -share/locale/lv/LC_MESSAGES/libgnome-2.0.mo -share/locale/mai/LC_MESSAGES/libgnome-2.0.mo -share/locale/mg/LC_MESSAGES/libgnome-2.0.mo -share/locale/mk/LC_MESSAGES/libgnome-2.0.mo -share/locale/ml/LC_MESSAGES/libgnome-2.0.mo -share/locale/mn/LC_MESSAGES/libgnome-2.0.mo -share/locale/mr/LC_MESSAGES/libgnome-2.0.mo -share/locale/ms/LC_MESSAGES/libgnome-2.0.mo -share/locale/nb/LC_MESSAGES/libgnome-2.0.mo -share/locale/ne/LC_MESSAGES/libgnome-2.0.mo -share/locale/nl/LC_MESSAGES/libgnome-2.0.mo -share/locale/nn/LC_MESSAGES/libgnome-2.0.mo -share/locale/oc/LC_MESSAGES/libgnome-2.0.mo -share/locale/or/LC_MESSAGES/libgnome-2.0.mo -share/locale/pa/LC_MESSAGES/libgnome-2.0.mo -share/locale/pl/LC_MESSAGES/libgnome-2.0.mo -share/locale/pt/LC_MESSAGES/libgnome-2.0.mo -share/locale/pt_BR/LC_MESSAGES/libgnome-2.0.mo -share/locale/ro/LC_MESSAGES/libgnome-2.0.mo -share/locale/ru/LC_MESSAGES/libgnome-2.0.mo -share/locale/rw/LC_MESSAGES/libgnome-2.0.mo -share/locale/si/LC_MESSAGES/libgnome-2.0.mo -share/locale/sk/LC_MESSAGES/libgnome-2.0.mo -share/locale/sl/LC_MESSAGES/libgnome-2.0.mo -share/locale/sq/LC_MESSAGES/libgnome-2.0.mo -share/locale/sr/LC_MESSAGES/libgnome-2.0.mo -share/locale/sr@latin/LC_MESSAGES/libgnome-2.0.mo -share/locale/sr@ije/LC_MESSAGES/libgnome-2.0.mo -share/locale/sv/LC_MESSAGES/libgnome-2.0.mo -share/locale/ta/LC_MESSAGES/libgnome-2.0.mo -share/locale/te/LC_MESSAGES/libgnome-2.0.mo -share/locale/th/LC_MESSAGES/libgnome-2.0.mo -share/locale/tr/LC_MESSAGES/libgnome-2.0.mo -share/locale/tt/LC_MESSAGES/libgnome-2.0.mo -share/locale/uk/LC_MESSAGES/libgnome-2.0.mo -share/locale/vi/LC_MESSAGES/libgnome-2.0.mo -share/locale/wa/LC_MESSAGES/libgnome-2.0.mo -share/locale/xh/LC_MESSAGES/libgnome-2.0.mo -share/locale/yi/LC_MESSAGES/libgnome-2.0.mo -share/locale/zh_CN/LC_MESSAGES/libgnome-2.0.mo -share/locale/zh_HK/LC_MESSAGES/libgnome-2.0.mo -share/locale/zh_TW/LC_MESSAGES/libgnome-2.0.mo -share/pixmaps/backgrounds/gnome/background-default.jpg -@dirrmtry share/pixmaps/backgrounds/gnome -@dirrmtry share/pixmaps/backgrounds -@dirrmtry share/gnome-background-properties -@dirrm include/libgnome-2.0/libgnome -@dirrm include/libgnome-2.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/libgnomekbd/Makefile b/x11/libgnomekbd/Makefile deleted file mode 100644 index 332899e71..000000000 --- a/x11/libgnomekbd/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: libgnomekbd -# Date created: 2006-11-07 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/libgnomekbd/Makefile,v 1.28 2009/02/28 06:34:38 marcus Exp $ -# - -PORTNAME= libgnomekbd -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME keyboard shared library - -LIB_DEPENDS= xklavier.12:${PORTSDIR}/x11/libxklavier \ - dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib - -USE_BZIP2= yes -USE_GNOME= gnomeprefix gnomehack ltverhack gconf2 libglade2 -USE_AUTOTOOLS= libtool:15 -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_GMAKE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= desktop_gnome_peripherals_keyboard_xkb.schemas - -post-patch: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|-Werror||g' - -.include <bsd.port.mk> diff --git a/x11/libgnomekbd/distinfo b/x11/libgnomekbd/distinfo deleted file mode 100644 index 1d9ecc89c..000000000 --- a/x11/libgnomekbd/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomekbd-2.26.0.tar.bz2) = aee58c088c4fd980e1bf813ea813c156 -SHA256 (gnome2/libgnomekbd-2.26.0.tar.bz2) = 26a53552f3eaeda8d386e31622ba605944eb97dfe5ffa834dc0708761811364f -SIZE (gnome2/libgnomekbd-2.26.0.tar.bz2) = 413560 diff --git a/x11/libgnomekbd/pkg-descr b/x11/libgnomekbd/pkg-descr deleted file mode 100644 index a4b625c78..000000000 --- a/x11/libgnomekbd/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -GNOME keyboard shared library diff --git a/x11/libgnomekbd/pkg-plist b/x11/libgnomekbd/pkg-plist deleted file mode 100644 index cd3c2506f..000000000 --- a/x11/libgnomekbd/pkg-plist +++ /dev/null @@ -1,98 +0,0 @@ -bin/gkbd-indicator-plugins-capplet -include/libgnomekbd/gkbd-desktop-config.h -include/libgnomekbd/gkbd-indicator-config.h -include/libgnomekbd/gkbd-indicator-plugin.h -include/libgnomekbd/gkbd-indicator.h -include/libgnomekbd/gkbd-keyboard-config.h -include/libgnomekbd/gkbd-keyboard-drawing.h -include/libgnomekbd/gkbd-util.h -lib/libgnomekbd.a -lib/libgnomekbd.la -lib/libgnomekbd.so -lib/libgnomekbd.so.3 -lib/libgnomekbdui.a -lib/libgnomekbdui.la -lib/libgnomekbdui.so -lib/libgnomekbdui.so.3 -libdata/pkgconfig/libgnomekbd.pc -libdata/pkgconfig/libgnomekbdui.pc -share/applications/gkbd-indicator-plugins-capplet.desktop -%%DATADIR%%/glade/gkbd-indicator-plugins.glade -share/locale/ar/LC_MESSAGES/libgnomekbd.mo -share/locale/be@latin/LC_MESSAGES/libgnomekbd.mo -share/locale/bg/LC_MESSAGES/libgnomekbd.mo -share/locale/bn_IN/LC_MESSAGES/libgnomekbd.mo -share/locale/ca/LC_MESSAGES/libgnomekbd.mo -share/locale/cs/LC_MESSAGES/libgnomekbd.mo -share/locale/da/LC_MESSAGES/libgnomekbd.mo -share/locale/de/LC_MESSAGES/libgnomekbd.mo -share/locale/dz/LC_MESSAGES/libgnomekbd.mo -share/locale/el/LC_MESSAGES/libgnomekbd.mo -share/locale/en_GB/LC_MESSAGES/libgnomekbd.mo -share/locale/es/LC_MESSAGES/libgnomekbd.mo -share/locale/et/LC_MESSAGES/libgnomekbd.mo -share/locale/eu/LC_MESSAGES/libgnomekbd.mo -share/locale/fi/LC_MESSAGES/libgnomekbd.mo -share/locale/fr/LC_MESSAGES/libgnomekbd.mo -share/locale/gl/LC_MESSAGES/libgnomekbd.mo -share/locale/gu/LC_MESSAGES/libgnomekbd.mo -share/locale/he/LC_MESSAGES/libgnomekbd.mo -share/locale/hi/LC_MESSAGES/libgnomekbd.mo -share/locale/hu/LC_MESSAGES/libgnomekbd.mo -share/locale/it/LC_MESSAGES/libgnomekbd.mo -share/locale/ja/LC_MESSAGES/libgnomekbd.mo -share/locale/ka/LC_MESSAGES/libgnomekbd.mo -share/locale/ko/LC_MESSAGES/libgnomekbd.mo -share/locale/lt/LC_MESSAGES/libgnomekbd.mo -share/locale/lv/LC_MESSAGES/libgnomekbd.mo -share/locale/mk/LC_MESSAGES/libgnomekbd.mo -share/locale/ml/LC_MESSAGES/libgnomekbd.mo -share/locale/mr/LC_MESSAGES/libgnomekbd.mo -share/locale/nb/LC_MESSAGES/libgnomekbd.mo -share/locale/nl/LC_MESSAGES/libgnomekbd.mo -share/locale/nn/LC_MESSAGES/libgnomekbd.mo -share/locale/oc/LC_MESSAGES/libgnomekbd.mo -share/locale/or/LC_MESSAGES/libgnomekbd.mo -share/locale/pa/LC_MESSAGES/libgnomekbd.mo -share/locale/pl/LC_MESSAGES/libgnomekbd.mo -share/locale/pt/LC_MESSAGES/libgnomekbd.mo -share/locale/pt_BR/LC_MESSAGES/libgnomekbd.mo -share/locale/ro/LC_MESSAGES/libgnomekbd.mo -share/locale/ru/LC_MESSAGES/libgnomekbd.mo -share/locale/si/LC_MESSAGES/libgnomekbd.mo -share/locale/sl/LC_MESSAGES/libgnomekbd.mo -share/locale/sq/LC_MESSAGES/libgnomekbd.mo -share/locale/sr/LC_MESSAGES/libgnomekbd.mo -share/locale/sr@latin/LC_MESSAGES/libgnomekbd.mo -share/locale/sv/LC_MESSAGES/libgnomekbd.mo -share/locale/ta/LC_MESSAGES/libgnomekbd.mo -share/locale/te/LC_MESSAGES/libgnomekbd.mo -share/locale/th/LC_MESSAGES/libgnomekbd.mo -share/locale/tr/LC_MESSAGES/libgnomekbd.mo -share/locale/uk/LC_MESSAGES/libgnomekbd.mo -share/locale/vi/LC_MESSAGES/libgnomekbd.mo -share/locale/zh_CN/LC_MESSAGES/libgnomekbd.mo -share/locale/zh_HK/LC_MESSAGES/libgnomekbd.mo -share/locale/zh_TW/LC_MESSAGES/libgnomekbd.mo -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrm include/libgnomekbd -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/x11/libgnomemm26/Makefile b/x11/libgnomemm26/Makefile deleted file mode 100644 index 447b83055..000000000 --- a/x11/libgnomemm26/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: libgnomemm -# Date created: 22 May 2003 -# Whom: Alexander Nedotsukov <bland@mail.ru> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= libgnomemm -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libgnome library - -LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -LATEST_LINK= libgnomemm26 - -USE_BZIP2= yes -USE_XORG= xext -USE_GMAKE= yes -USE_GNOME= gnomehack libgnome -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" - -.include <bsd.port.mk> diff --git a/x11/libgnomemm26/distinfo b/x11/libgnomemm26/distinfo deleted file mode 100644 index 6bcc74052..000000000 --- a/x11/libgnomemm26/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomemm-2.26.0.tar.bz2) = 4801c2b60d73b08ea01fe79aafc678df -SHA256 (gnome2/libgnomemm-2.26.0.tar.bz2) = aa8072914c53dc7b04c3eca904768a04fff8fa7f207568fe78a0a09865651e08 -SIZE (gnome2/libgnomemm-2.26.0.tar.bz2) = 299697 diff --git a/x11/libgnomemm26/pkg-descr b/x11/libgnomemm26/pkg-descr deleted file mode 100644 index 02e98740a..000000000 --- a/x11/libgnomemm26/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a set of thin C++ wrappers for libgnome library. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/x11/libgnomemm26/pkg-plist b/x11/libgnomemm26/pkg-plist deleted file mode 100644 index 4f553eb76..000000000 --- a/x11/libgnomemm26/pkg-plist +++ /dev/null @@ -1,24 +0,0 @@ -include/libgnomemm-%%API_VERSION%%/libgnomemm.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/init.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/main.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/moduleinfo.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/private/main_p.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/private/moduleinfo_p.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/private/program_p.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/program.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/wrap_init.h -lib/libgnomemm-%%VERSION%%.a -lib/libgnomemm-%%VERSION%%.la -lib/libgnomemm-%%VERSION%%.so -lib/libgnomemm-%%VERSION%%.so.1 -lib/libgnomemm-%%API_VERSION%%/include/libgnomemmconfig.h -lib/libgnomemm-%%API_VERSION%%/proc/m4/convert.m4 -lib/libgnomemm-%%API_VERSION%%/proc/m4/convert_libgnomemm.m4 -libdata/pkgconfig/libgnomemm-%%API_VERSION%%.pc -@dirrm lib/libgnomemm-%%API_VERSION%%/proc/m4 -@dirrm lib/libgnomemm-%%API_VERSION%%/proc -@dirrm lib/libgnomemm-%%API_VERSION%%/include -@dirrm lib/libgnomemm-%%API_VERSION%% -@dirrm include/libgnomemm-%%API_VERSION%%/libgnomemm/private -@dirrm include/libgnomemm-%%API_VERSION%%/libgnomemm -@dirrm include/libgnomemm-%%API_VERSION%% diff --git a/x11/libxklavier/Makefile b/x11/libxklavier/Makefile deleted file mode 100644 index dca9f5949..000000000 --- a/x11/libxklavier/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: libxklavier -# Date created: 31 May 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/libxklavier/Makefile,v 1.45 2008/09/07 00:58:39 marcus Exp $ -# - -PORTNAME= libxklavier -PORTVERSION= 3.9 -PORTEPOCH= 1 -CATEGORIES= x11 gnome -MASTER_SITES= SF -MASTER_SITE_SUBDIR= gswitchit - -MAINTAINER= gnome@FreeBSD.org -COMMENT= An utility library to make XKB stuff easier - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes -RUN_DEPENDS= xkbcomp:${PORTSDIR}/x11/xkbcomp \ - ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes - -USE_XORG= x11 xkbfile -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack libxml2 glib20 ltverhack:12 -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CPPFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS= --disable-doxygen \ - --with-xkb-base=${LOCALBASE}/share/X11/xkb \ - --with-xkb-bin-base=${LOCALBASE}/bin \ - --with-xmodmap-base=${LOCALBASE}/share/xmodmap \ - --disable-gtk-doc \ - --with-html-dir=${GNOME_HTML_DIR} -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib" - -PLIST_SUB= VERSION=${PORTVERSION} - -post-patch: - @${REINPLACE_CMD} -e 's|== "yes|= "yes|g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/x11/libxklavier/distinfo b/x11/libxklavier/distinfo deleted file mode 100644 index b5b0fc861..000000000 --- a/x11/libxklavier/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libxklavier-3.9.tar.bz2) = c8ff3ba6daf899be7ec2a626894852b9 -SHA256 (libxklavier-3.9.tar.bz2) = 462a4e427f201a23de194f824dce70c84867464956f2f6c8dd4a5e07f1f4a554 -SIZE (libxklavier-3.9.tar.bz2) = 339409 diff --git a/x11/libxklavier/files/patch-libxklavier_xklavier_props.c b/x11/libxklavier/files/patch-libxklavier_xklavier_props.c deleted file mode 100644 index a56ec7896..000000000 --- a/x11/libxklavier/files/patch-libxklavier_xklavier_props.c +++ /dev/null @@ -1,15 +0,0 @@ ---- libxklavier/xklavier_props.c.orig Sun Apr 16 20:51:36 2006 -+++ libxklavier/xklavier_props.c Tue Jun 13 00:11:24 2006 -@@ -355,10 +355,8 @@ xkl_config_rec_get_from_root_window_prop - --varlen); - var[varlen] = '\0'; - /* Resize the original layout */ -- ((char *) -- g_realloc(*layout, -- laylen + 1))[laylen] = -- '\0'; -+ *layout = g_realloc(*layout, laylen + 1); -+ (*layout)[laylen] = '\0'; - } - } - layout++; diff --git a/x11/libxklavier/pkg-descr b/x11/libxklavier/pkg-descr deleted file mode 100644 index d5000e3ad..000000000 --- a/x11/libxklavier/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Libxklavier is a utility to simplify setting and changing -keyboard layouts. - -WWW: http://gswitchit.sourceforge.net/ diff --git a/x11/libxklavier/pkg-plist b/x11/libxklavier/pkg-plist deleted file mode 100644 index 98b556575..000000000 --- a/x11/libxklavier/pkg-plist +++ /dev/null @@ -1,29 +0,0 @@ -include/libxklavier/xkl_config_item.h -include/libxklavier/xkl_config_rec.h -include/libxklavier/xkl_config_registry.h -include/libxklavier/xkl_engine.h -include/libxklavier/xkl_engine_marshal.h -include/libxklavier/xklavier.h -lib/libxklavier.a -lib/libxklavier.la -lib/libxklavier.so -lib/libxklavier.so.12 -libdata/pkgconfig/libxklavier.pc -%%DOCSDIR%%/XklConfigItem.html -%%DOCSDIR%%/XklConfigRec.html -%%DOCSDIR%%/XklConfigRegistry.html -%%DOCSDIR%%/XklEngine.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/libxklavier-xklavier.html -%%DOCSDIR%%/libxklavier.devhelp -%%DOCSDIR%%/libxklavier.devhelp2 -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -@dirrm %%DOCSDIR%% -@dirrm include/libxklavier diff --git a/x11/workrave/Makefile b/x11/workrave/Makefile deleted file mode 100644 index e8aee92ca..000000000 --- a/x11/workrave/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# New ports collection makefile for: workrave -# Date created: 15 Jul 2003 -# Whom: Koop Mast <einekoai@chello.nl> -# -# $FreeBSD$ -# - -PORTNAME= workrave -PORTVERSION= 1.8.5 -PORTREVISION= 4 -CATEGORIES= x11 gnome -MASTER_SITES= SF - -MAINTAINER= garga@FreeBSD.org -COMMENT= A Gnome RSI prevention tool - -OPTIONS= GNOME "Build with Gnome support" on \ - NETWORK "Build with network support" on - -USE_XORG= x11 xmu -USE_GMAKE= yes -MAKE_JOBS_SAFE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gconf2 intltool -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0`" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - LIBS="`pkg-config --libs libgnomeui-2.0`" -CONFIGURE_ARGS= --enable-gconf - -.include <bsd.port.pre.mk> - -.if defined(WITH_GNOME) -LIB_DEPENDS+= gnomeuimm-2.6.1:${PORTSDIR}/x11-toolkits/libgnomeuimm26 -USE_GNOME+= gnomepanel -PLIST_SUB+= GNOME="" -.else -LIB_DEPENDS+= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -CONFIGURE_ARGS+=--disable-gnome -PLIST_SUB+= GNOME="@comment " -.endif - -.if defined(WITH_NETWORK) -LIB_DEPENDS+= gnet-2.0.0:${PORTSDIR}/net/gnet2 -.else -CONFIGURE_ARGS+=--disable-distribution -.endif - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|#include <sigc++\/compatibility\.h>||g ; \ - s|SigC::Signal|sigc::signal|g ; \ - s|SigC::slot_class|sigc::mem_fun|g ; \ - s|SigC::Connection|sigc::connection|g ; \ - s|SigC::Slot|sigc::slot|g ; \ - s|SigC::Object|sigc::trackable|g ; \ - s|SigC::slot|sigc::mem_fun|g' \ - ${WRKSRC}/frontend/gtkmm/src/*.* \ - ${WRKSRC}/frontend/plugin/*/gtkmm/src/*.* - -.include <bsd.port.post.mk> diff --git a/x11/workrave/distinfo b/x11/workrave/distinfo deleted file mode 100644 index cc32715a1..000000000 --- a/x11/workrave/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (workrave-1.8.5.tar.gz) = 3df48ab5600256fadc11a976f15bcc7a -SHA256 (workrave-1.8.5.tar.gz) = 4a2f8f16f015fcec4446953421c8e12cdb41391a6da0e63d04d17b30534a0c56 -SIZE (workrave-1.8.5.tar.gz) = 1940651 diff --git a/x11/workrave/files/patch-frontend__common__src__System.cc b/x11/workrave/files/patch-frontend__common__src__System.cc deleted file mode 100644 index 08aaad5de..000000000 --- a/x11/workrave/files/patch-frontend__common__src__System.cc +++ /dev/null @@ -1,10 +0,0 @@ ---- frontend/common/src/System.cc.orig 2007-09-28 13:18:31.000000000 -0300 -+++ frontend/common/src/System.cc 2007-09-28 13:18:48.000000000 -0300 -@@ -28,6 +28,7 @@ - #include <stdio.h> - #include <string.h> - #include <strings.h> -+#include <sys/wait.h> - - #include "System.hh" - #include "debug.hh" diff --git a/x11/workrave/pkg-descr b/x11/workrave/pkg-descr deleted file mode 100644 index 938a81799..000000000 --- a/x11/workrave/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Workrave is a program that assists in the recovery and prevention of -Repetitive Strain Injury (RSI). The program frequently alerts you to -take micro-pauses, rest breaks and restricts you to your daily limit. -These can be customized and it stops the counter when you stop. - -The program can be run distributed on one or more PCs. All connected -PCs share the same timing information. When you switch computers, you -will still be asked to pause on time. - -WWW: http://www.workrave.org/ diff --git a/x11/workrave/pkg-plist b/x11/workrave/pkg-plist deleted file mode 100644 index c4f656043..000000000 --- a/x11/workrave/pkg-plist +++ /dev/null @@ -1,90 +0,0 @@ -bin/workrave -etc/sound/events/workrave.soundlist -%%GNOME%%libdata/bonobo/servers/Workrave-Applet.server -%%GNOME%%libdata/bonobo/servers/Workrave-Control.server -%%GNOME%%libexec/workrave-applet -%%GNOME%%share/gnome-2.0/ui/GNOME_WorkraveApplet.xml -share/pixmaps/workrave/workrave-icon-huge.png -share/sounds/workrave/break-ignored.wav -share/sounds/workrave/break-prelude.wav -share/sounds/workrave/daily-limit.wav -share/sounds/workrave/exercise-ended.wav -share/sounds/workrave/exercises-ended.wav -share/sounds/workrave/micro-break-ended.wav -share/sounds/workrave/micro-break-started.wav -share/sounds/workrave/rest-break-ended.wav -share/sounds/workrave/rest-break-started.wav -share/workrave/exercises/backward-shoulder-stretch.png -share/workrave/exercises/chair-pushup-1.png -share/workrave/exercises/chair-pushup-2.png -share/workrave/exercises/depth-focus-1.png -share/workrave/exercises/depth-focus-2.png -share/workrave/exercises/exercises.xml -share/workrave/exercises/eye-darkness.png -share/workrave/exercises/finger-stretch-1.png -share/workrave/exercises/finger-stretch-2.png -share/workrave/exercises/fist-roll-1.png -share/workrave/exercises/fist-roll-2.png -share/workrave/exercises/monitor-border-1.png -share/workrave/exercises/monitor-border-2.png -share/workrave/exercises/monitor-border-3.png -share/workrave/exercises/monitor-border-4.png -share/workrave/exercises/neck-tilt-stretch-1.png -share/workrave/exercises/neck-tilt-stretch-2.png -share/workrave/exercises/rotate-arm.png -share/workrave/exercises/shoulder-arm-stretch.png -share/workrave/exercises/turn-head-1.png -share/workrave/exercises/turn-head-2.png -share/workrave/exercises/wrist-lower-arm-desk-stretch-1.png -share/workrave/images/daily-limit.png -share/workrave/images/display.png -share/workrave/images/lock.png -share/workrave/images/micro-break.png -share/workrave/images/monitoring.png -share/workrave/images/network.png -share/workrave/images/prelude-hint-sad.png -share/workrave/images/prelude-hint.png -share/workrave/images/rest-break.png -share/workrave/images/shutdown.png -share/workrave/images/time.png -share/workrave/images/timer-daily.png -share/workrave/images/timer-micro-break.png -share/workrave/images/timer-rest-break.png -share/workrave/images/workrave-icon-huge.png -share/workrave/images/workrave-icon-large.png -share/workrave/images/workrave-icon-medium.png -share/workrave/images/workrave-icon-small.png -share/workrave/images/workrave-quiet-icon-medium.png -share/workrave/images/workrave-suspended-icon-medium.png -share/workrave/images/workrave.png -%%NLS%%share/locale/bg/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/ca/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/cs/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/da/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/de/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/el/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/eo/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/es/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/eu/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/fr/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/he/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/hu/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/it/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/ja/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/lt/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/nl/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/no/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/pl/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/ru/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/sk/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/sl/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/sv/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/tr/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/workrave.mo -@dirrm share/workrave/images -@dirrm share/workrave/exercises -@dirrm share/workrave -@dirrm share/sounds/workrave -@dirrm share/pixmaps/workrave diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile deleted file mode 100644 index e7ab5f538..000000000 --- a/x11/yelp/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: yelp -# Date created: 18 May 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/yelp/Makefile,v 1.132 2009/03/17 23:34:16 kwm Exp $ -# - -PORTNAME= yelp -PORTVERSION= 2.26.0 -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 \ - rarian.0:${PORTSDIR}/textproc/rarian - -USE_GECKO= firefox libxul -USE_GETTEXT= yes -USE_BZIP2= yes -USE_XORG= ice -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui gnomedocutils -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-gecko=${GECKO} \ - --with-gecko-home=${LOCALBASE}/lib/${GECKO} -MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias" - -GCONF_SCHEMAS= yelp.schemas - -.include <bsd.port.mk> diff --git a/x11/yelp/distinfo b/x11/yelp/distinfo deleted file mode 100644 index adc47cac8..000000000 --- a/x11/yelp/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/yelp-2.26.0.tar.bz2) = 3413fd051c5ecbfe98819a8fb4ac83dd -SHA256 (gnome2/yelp-2.26.0.tar.bz2) = 0c5a91a206b26ef714e9929404f1711caadcee481299566011b4ae4232d151d0 -SIZE (gnome2/yelp-2.26.0.tar.bz2) = 1021362 diff --git a/x11/yelp/files/patch-src_yelp-gecko-utils.cpp b/x11/yelp/files/patch-src_yelp-gecko-utils.cpp deleted file mode 100644 index 2c4d781ee..000000000 --- a/x11/yelp/files/patch-src_yelp-gecko-utils.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- src/yelp-gecko-utils.cpp.orig 2009-03-29 23:21:59.000000000 -0400 -+++ src/yelp-gecko-utils.cpp 2009-03-29 23:25:48.000000000 -0400 -@@ -28,8 +28,10 @@ - #include <nsStringAPI.h> - - #ifdef HAVE_GECKO_1_9 -+#ifdef XPCOM_GLUE - #include <gtkmozembed_glue.cpp> - #endif -+#endif - - #include <gtkmozembed.h> - #include <gtkmozembed_internal.h> diff --git a/x11/yelp/pkg-descr b/x11/yelp/pkg-descr deleted file mode 100644 index d38af5629..000000000 --- a/x11/yelp/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Yelp is a help browser for GNOME 2.0 that displays GNOME -help documents, info pages, manpages, and more. - -WWW: http://www.gnome.org/ diff --git a/x11/yelp/pkg-plist b/x11/yelp/pkg-plist deleted file mode 100644 index 23e7fa35e..000000000 --- a/x11/yelp/pkg-plist +++ /dev/null @@ -1,185 +0,0 @@ -bin/gnome-help -bin/yelp -share/applications/yelp.desktop -share/icons/hicolor/192x192/apps/yelp-icon-big.png -share/locale/af/LC_MESSAGES/yelp.mo -share/locale/am/LC_MESSAGES/yelp.mo -share/locale/ar/LC_MESSAGES/yelp.mo -share/locale/as/LC_MESSAGES/yelp.mo -share/locale/ast/LC_MESSAGES/yelp.mo -share/locale/az/LC_MESSAGES/yelp.mo -share/locale/be/LC_MESSAGES/yelp.mo -share/locale/be@latin/LC_MESSAGES/yelp.mo -share/locale/bg/LC_MESSAGES/yelp.mo -share/locale/bn/LC_MESSAGES/yelp.mo -share/locale/bn_IN/LC_MESSAGES/yelp.mo -share/locale/br/LC_MESSAGES/yelp.mo -share/locale/bs/LC_MESSAGES/yelp.mo -share/locale/ca/LC_MESSAGES/yelp.mo -share/locale/cs/LC_MESSAGES/yelp.mo -share/locale/cy/LC_MESSAGES/yelp.mo -share/locale/da/LC_MESSAGES/yelp.mo -share/locale/de/LC_MESSAGES/yelp.mo -share/locale/dz/LC_MESSAGES/yelp.mo -share/locale/el/LC_MESSAGES/yelp.mo -share/locale/en_CA/LC_MESSAGES/yelp.mo -share/locale/en_GB/LC_MESSAGES/yelp.mo -share/locale/eo/LC_MESSAGES/yelp.mo -share/locale/es/LC_MESSAGES/yelp.mo -share/locale/et/LC_MESSAGES/yelp.mo -share/locale/eu/LC_MESSAGES/yelp.mo -share/locale/fa/LC_MESSAGES/yelp.mo -share/locale/fi/LC_MESSAGES/yelp.mo -share/locale/fr/LC_MESSAGES/yelp.mo -share/locale/fur/LC_MESSAGES/yelp.mo -share/locale/ga/LC_MESSAGES/yelp.mo -share/locale/gl/LC_MESSAGES/yelp.mo -share/locale/gu/LC_MESSAGES/yelp.mo -share/locale/he/LC_MESSAGES/yelp.mo -share/locale/hi/LC_MESSAGES/yelp.mo -share/locale/hr/LC_MESSAGES/yelp.mo -share/locale/hu/LC_MESSAGES/yelp.mo -share/locale/id/LC_MESSAGES/yelp.mo -share/locale/is/LC_MESSAGES/yelp.mo -share/locale/it/LC_MESSAGES/yelp.mo -share/locale/ja/LC_MESSAGES/yelp.mo -share/locale/ka/LC_MESSAGES/yelp.mo -share/locale/kn/LC_MESSAGES/yelp.mo -share/locale/ko/LC_MESSAGES/yelp.mo -share/locale/ks/LC_MESSAGES/yelp.mo -share/locale/ku/LC_MESSAGES/yelp.mo -share/locale/ky/LC_MESSAGES/yelp.mo -share/locale/la/LC_MESSAGES/yelp.mo -share/locale/li/LC_MESSAGES/yelp.mo -share/locale/lt/LC_MESSAGES/yelp.mo -share/locale/lv/LC_MESSAGES/yelp.mo -share/locale/mai/LC_MESSAGES/yelp.mo -share/locale/mg/LC_MESSAGES/yelp.mo -share/locale/mk/LC_MESSAGES/yelp.mo -share/locale/ml/LC_MESSAGES/yelp.mo -share/locale/mn/LC_MESSAGES/yelp.mo -share/locale/mr/LC_MESSAGES/yelp.mo -share/locale/ms/LC_MESSAGES/yelp.mo -share/locale/nb/LC_MESSAGES/yelp.mo -share/locale/nds@NFE/LC_MESSAGES/yelp.mo -share/locale/ne/LC_MESSAGES/yelp.mo -share/locale/nl/LC_MESSAGES/yelp.mo -share/locale/nn/LC_MESSAGES/yelp.mo -share/locale/nso/LC_MESSAGES/yelp.mo -share/locale/oc/LC_MESSAGES/yelp.mo -share/locale/or/LC_MESSAGES/yelp.mo -share/locale/pa/LC_MESSAGES/yelp.mo -share/locale/pl/LC_MESSAGES/yelp.mo -share/locale/ps/LC_MESSAGES/yelp.mo -share/locale/pt/LC_MESSAGES/yelp.mo -share/locale/pt_BR/LC_MESSAGES/yelp.mo -share/locale/ro/LC_MESSAGES/yelp.mo -share/locale/ru/LC_MESSAGES/yelp.mo -share/locale/rw/LC_MESSAGES/yelp.mo -share/locale/si/LC_MESSAGES/yelp.mo -share/locale/sk/LC_MESSAGES/yelp.mo -share/locale/sl/LC_MESSAGES/yelp.mo -share/locale/sq/LC_MESSAGES/yelp.mo -share/locale/sr/LC_MESSAGES/yelp.mo -share/locale/sr@latin/LC_MESSAGES/yelp.mo -share/locale/sv/LC_MESSAGES/yelp.mo -share/locale/ta/LC_MESSAGES/yelp.mo -share/locale/te/LC_MESSAGES/yelp.mo -share/locale/tg/LC_MESSAGES/yelp.mo -share/locale/th/LC_MESSAGES/yelp.mo -share/locale/tr/LC_MESSAGES/yelp.mo -share/locale/ug/LC_MESSAGES/yelp.mo -share/locale/uk/LC_MESSAGES/yelp.mo -share/locale/uz/LC_MESSAGES/yelp.mo -share/locale/uz@cyrillic/LC_MESSAGES/yelp.mo -share/locale/vi/LC_MESSAGES/yelp.mo -share/locale/wa/LC_MESSAGES/yelp.mo -share/locale/xh/LC_MESSAGES/yelp.mo -share/locale/zh_CN/LC_MESSAGES/yelp.mo -share/locale/zh_HK/LC_MESSAGES/yelp.mo -share/locale/zh_TW/LC_MESSAGES/yelp.mo -share/locale/zu/LC_MESSAGES/yelp.mo -%%DATADIR%%/default.css -%%DATADIR%%/icons/yelp-icon-caution.png -%%DATADIR%%/icons/yelp-icon-important.png -%%DATADIR%%/icons/yelp-icon-note.png -%%DATADIR%%/icons/yelp-icon-tip.png -%%DATADIR%%/icons/yelp-icon-warning.png -%%DATADIR%%/icons/yelp-watermark-blockquote-00AB.png -%%DATADIR%%/icons/yelp-watermark-blockquote-00BB.png -%%DATADIR%%/icons/yelp-watermark-blockquote-201C.png -%%DATADIR%%/icons/yelp-watermark-blockquote-201D.png -%%DATADIR%%/icons/yelp-watermark-blockquote-201E.png -%%DATADIR%%/important_docs.xml -%%DATADIR%%/info.xml -%%DATADIR%%/man.xml -%%DATADIR%%/scrollkeeper.xml -%%DATADIR%%/toc.xml -%%DATADIR%%/ui/yelp-search-ui.xml -%%DATADIR%%/ui/yelp-ui.xml -%%DATADIR%%/ui/yelp.glade -%%DATADIR%%/xslt/db-title.xsl -%%DATADIR%%/xslt/db2html.xsl -%%DATADIR%%/xslt/info2html.xsl -%%DATADIR%%/xslt/man2html.xsl -%%DATADIR%%/xslt/search2html.xsl -%%DATADIR%%/xslt/toc2html.xsl -%%DATADIR%%/xslt/yelp-common.xsl -%%DATADIR%%/yelp.js -@dirrm %%DATADIR%%/xslt -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/nds@NFE/LC_MESSAGES -@dirrmtry share/locale/nds@NFE -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/la/LC_MESSAGES -@dirrmtry share/locale/la -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ks/LC_MESSAGES -@dirrmtry share/locale/ks -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/zenity/Makefile b/x11/zenity/Makefile deleted file mode 100644 index ab8e9e5ce..000000000 --- a/x11/zenity/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: zenity -# Date created: 01 Mar 2003 -# Whom: Franz Klammer <klammer@webonaut.com> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= zenity -PORTVERSION= 2.26.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Display GNOME dialogs from the command line - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian - -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack libgnomecanvas gnomedocutils intlhack -USE_BZIP2= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" - -MAN1= zenity.1 - -CONFLICTS= gtkada-1.2.* - -OPTIONS= NOTIFY "Enable libnotify support" on - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_NOTIFY) -LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify -CONFIGURE_ARGS+= --enable-libnotify -.else -CONFIGURE_ARGS+= --disable-libnotify -.endif - -.include <bsd.port.post.mk> diff --git a/x11/zenity/distinfo b/x11/zenity/distinfo deleted file mode 100644 index 8da51c4de..000000000 --- a/x11/zenity/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/zenity-2.26.0.tar.bz2) = 6660ce6dac0a6ca495a0e954cb6b40a2 -SHA256 (gnome2/zenity-2.26.0.tar.bz2) = fc619215ca90cab48efae7bdf524d1de690b75832f07f3cbcb6d5c3910d402a1 -SIZE (gnome2/zenity-2.26.0.tar.bz2) = 2454415 diff --git a/x11/zenity/pkg-descr b/x11/zenity/pkg-descr deleted file mode 100644 index 384c19680..000000000 --- a/x11/zenity/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Zenity allows dialog boxes to be created and displayed from the -commandline. This provides a simple way to create a GUI for -a shell script. diff --git a/x11/zenity/pkg-plist b/x11/zenity/pkg-plist deleted file mode 100644 index 1c49882ff..000000000 --- a/x11/zenity/pkg-plist +++ /dev/null @@ -1,315 +0,0 @@ -bin/gdialog -bin/zenity -share/gnome/help/zenity/C/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/C/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/C/figures/zenity-error-screenshot.png -share/gnome/help/zenity/C/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/C/figures/zenity-information-screenshot.png -share/gnome/help/zenity/C/figures/zenity-list-screenshot.png -share/gnome/help/zenity/C/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/C/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/C/figures/zenity-question-screenshot.png -share/gnome/help/zenity/C/figures/zenity-text-screenshot.png -share/gnome/help/zenity/C/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/C/legal.xml -share/gnome/help/zenity/C/zenity.xml -share/gnome/help/zenity/bg/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-error-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-information-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-list-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-question-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-text-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/bg/zenity.xml -share/gnome/help/zenity/de/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/de/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/de/figures/zenity-error-screenshot.png -share/gnome/help/zenity/de/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/de/figures/zenity-information-screenshot.png -share/gnome/help/zenity/de/figures/zenity-list-screenshot.png -share/gnome/help/zenity/de/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/de/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/de/figures/zenity-question-screenshot.png -share/gnome/help/zenity/de/figures/zenity-text-screenshot.png -share/gnome/help/zenity/de/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/de/zenity.xml -share/gnome/help/zenity/en_GB/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-error-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-information-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-list-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-question-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-text-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/en_GB/zenity.xml -share/gnome/help/zenity/es/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/es/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/es/figures/zenity-error-screenshot.png -share/gnome/help/zenity/es/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/es/figures/zenity-information-screenshot.png -share/gnome/help/zenity/es/figures/zenity-list-screenshot.png -share/gnome/help/zenity/es/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/es/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/es/figures/zenity-question-screenshot.png -share/gnome/help/zenity/es/figures/zenity-text-screenshot.png -share/gnome/help/zenity/es/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/es/zenity.xml -share/gnome/help/zenity/eu/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-error-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-information-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-list-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-question-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-text-screenshot.png -share/gnome/help/zenity/eu/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/eu/zenity.xml -share/gnome/help/zenity/fi/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-error-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-information-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-list-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-question-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-text-screenshot.png -share/gnome/help/zenity/fi/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/fi/zenity.xml -share/gnome/help/zenity/fr/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-error-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-information-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-list-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-question-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-text-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/fr/zenity.xml -share/gnome/help/zenity/oc/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-error-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-information-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-list-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-question-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-text-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/oc/zenity.xml -share/gnome/help/zenity/ru/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-error-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-information-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-list-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-question-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-text-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/ru/zenity.xml -share/gnome/help/zenity/sv/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-error-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-information-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-list-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-question-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-text-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/sv/zenity.xml -share/gnome/help/zenity/uk/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-error-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-information-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-list-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-question-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-text-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/uk/zenity.xml -share/locale/am/LC_MESSAGES/zenity.mo -share/locale/ar/LC_MESSAGES/zenity.mo -share/locale/as/LC_MESSAGES/zenity.mo -share/locale/az/LC_MESSAGES/zenity.mo -share/locale/be/LC_MESSAGES/zenity.mo -share/locale/be@latin/LC_MESSAGES/zenity.mo -share/locale/bg/LC_MESSAGES/zenity.mo -share/locale/bn/LC_MESSAGES/zenity.mo -share/locale/bn_IN/LC_MESSAGES/zenity.mo -share/locale/bs/LC_MESSAGES/zenity.mo -share/locale/ca/LC_MESSAGES/zenity.mo -share/locale/cs/LC_MESSAGES/zenity.mo -share/locale/cy/LC_MESSAGES/zenity.mo -share/locale/da/LC_MESSAGES/zenity.mo -share/locale/de/LC_MESSAGES/zenity.mo -share/locale/dz/LC_MESSAGES/zenity.mo -share/locale/el/LC_MESSAGES/zenity.mo -share/locale/en_CA/LC_MESSAGES/zenity.mo -share/locale/en_GB/LC_MESSAGES/zenity.mo -share/locale/es/LC_MESSAGES/zenity.mo -share/locale/et/LC_MESSAGES/zenity.mo -share/locale/eu/LC_MESSAGES/zenity.mo -share/locale/fa/LC_MESSAGES/zenity.mo -share/locale/fi/LC_MESSAGES/zenity.mo -share/locale/fr/LC_MESSAGES/zenity.mo -share/locale/ga/LC_MESSAGES/zenity.mo -share/locale/gl/LC_MESSAGES/zenity.mo -share/locale/gu/LC_MESSAGES/zenity.mo -share/locale/he/LC_MESSAGES/zenity.mo -share/locale/hi/LC_MESSAGES/zenity.mo -share/locale/hr/LC_MESSAGES/zenity.mo -share/locale/hu/LC_MESSAGES/zenity.mo -share/locale/id/LC_MESSAGES/zenity.mo -share/locale/is/LC_MESSAGES/zenity.mo -share/locale/it/LC_MESSAGES/zenity.mo -share/locale/ja/LC_MESSAGES/zenity.mo -share/locale/ka/LC_MESSAGES/zenity.mo -share/locale/kn/LC_MESSAGES/zenity.mo -share/locale/ko/LC_MESSAGES/zenity.mo -share/locale/ku/LC_MESSAGES/zenity.mo -share/locale/lt/LC_MESSAGES/zenity.mo -share/locale/lv/LC_MESSAGES/zenity.mo -share/locale/mg/LC_MESSAGES/zenity.mo -share/locale/mi/LC_MESSAGES/zenity.mo -share/locale/mk/LC_MESSAGES/zenity.mo -share/locale/ml/LC_MESSAGES/zenity.mo -share/locale/mn/LC_MESSAGES/zenity.mo -share/locale/mr/LC_MESSAGES/zenity.mo -share/locale/ms/LC_MESSAGES/zenity.mo -share/locale/nb/LC_MESSAGES/zenity.mo -share/locale/ne/LC_MESSAGES/zenity.mo -share/locale/nl/LC_MESSAGES/zenity.mo -share/locale/nn/LC_MESSAGES/zenity.mo -share/locale/oc/LC_MESSAGES/zenity.mo -share/locale/or/LC_MESSAGES/zenity.mo -share/locale/pa/LC_MESSAGES/zenity.mo -share/locale/pl/LC_MESSAGES/zenity.mo -share/locale/ps/LC_MESSAGES/zenity.mo -share/locale/pt/LC_MESSAGES/zenity.mo -share/locale/pt_BR/LC_MESSAGES/zenity.mo -share/locale/ro/LC_MESSAGES/zenity.mo -share/locale/ru/LC_MESSAGES/zenity.mo -share/locale/rw/LC_MESSAGES/zenity.mo -share/locale/si/LC_MESSAGES/zenity.mo -share/locale/sk/LC_MESSAGES/zenity.mo -share/locale/sl/LC_MESSAGES/zenity.mo -share/locale/sq/LC_MESSAGES/zenity.mo -share/locale/sr/LC_MESSAGES/zenity.mo -share/locale/sr@latin/LC_MESSAGES/zenity.mo -share/locale/sv/LC_MESSAGES/zenity.mo -share/locale/ta/LC_MESSAGES/zenity.mo -share/locale/te/LC_MESSAGES/zenity.mo -share/locale/th/LC_MESSAGES/zenity.mo -share/locale/tr/LC_MESSAGES/zenity.mo -share/locale/ug/LC_MESSAGES/zenity.mo -share/locale/uk/LC_MESSAGES/zenity.mo -share/locale/vi/LC_MESSAGES/zenity.mo -share/locale/xh/LC_MESSAGES/zenity.mo -share/locale/zh_CN/LC_MESSAGES/zenity.mo -share/locale/zh_HK/LC_MESSAGES/zenity.mo -share/locale/zh_TW/LC_MESSAGES/zenity.mo -share/omf/zenity/zenity-C.omf -share/omf/zenity/zenity-bg.omf -share/omf/zenity/zenity-de.omf -share/omf/zenity/zenity-en_GB.omf -share/omf/zenity/zenity-es.omf -share/omf/zenity/zenity-eu.omf -share/omf/zenity/zenity-fi.omf -share/omf/zenity/zenity-fr.omf -share/omf/zenity/zenity-oc.omf -share/omf/zenity/zenity-ru.omf -share/omf/zenity/zenity-sv.omf -share/omf/zenity/zenity-uk.omf -%%DATADIR%%/clothes/gnome-tshirt.png -%%DATADIR%%/clothes/hawaii-shirt.png -%%DATADIR%%/clothes/monk.png -%%DATADIR%%/clothes/sunglasses.png -%%DATADIR%%/clothes/surfboard.png -%%DATADIR%%/zenity-calendar.png -%%DATADIR%%/zenity-entry.png -%%DATADIR%%/zenity-file.png -%%DATADIR%%/zenity-list.png -%%DATADIR%%/zenity-notification.png -%%DATADIR%%/zenity-progress.png -%%DATADIR%%/zenity-scale.png -%%DATADIR%%/zenity-text.png -%%DATADIR%%/zenity.glade -%%DATADIR%%/zenity.png -@dirrm %%DATADIR%%/clothes -@dirrm %%DATADIR%% -@dirrm share/omf/zenity -@dirrm share/gnome/help/zenity/uk/figures -@dirrm share/gnome/help/zenity/uk -@dirrm share/gnome/help/zenity/sv/figures -@dirrm share/gnome/help/zenity/sv -@dirrm share/gnome/help/zenity/ru/figures -@dirrm share/gnome/help/zenity/ru -@dirrm share/gnome/help/zenity/oc/figures -@dirrm share/gnome/help/zenity/oc -@dirrm share/gnome/help/zenity/fr/figures -@dirrm share/gnome/help/zenity/fr -@dirrm share/gnome/help/zenity/fi/figures -@dirrm share/gnome/help/zenity/fi -@dirrm share/gnome/help/zenity/eu/figures -@dirrm share/gnome/help/zenity/eu -@dirrm share/gnome/help/zenity/es/figures -@dirrm share/gnome/help/zenity/es -@dirrm share/gnome/help/zenity/en_GB/figures -@dirrm share/gnome/help/zenity/en_GB -@dirrm share/gnome/help/zenity/de/figures -@dirrm share/gnome/help/zenity/de -@dirrm share/gnome/help/zenity/bg/figures -@dirrm share/gnome/help/zenity/bg -@dirrm share/gnome/help/zenity/C/figures -@dirrm share/gnome/help/zenity/C -@dirrm share/gnome/help/zenity -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as |