From 8cdf0c463cf11e2c5ef81e7da916e1c4edaa0910 Mon Sep 17 00:00:00 2001 From: marcus Date: Wed, 24 Nov 2004 01:43:51 +0000 Subject: Update to 1.1.0. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3119 df743ca5-7f9a-e211-a948-0013205c9059 --- sysutils/gnome-system-tools/Makefile | 48 ++++ sysutils/gnome-system-tools/distinfo | 2 + .../files/patch-backends_replace.pl.in | 34 +++ .../files/patch-backends_service-list.pl.in | 10 + sysutils/gnome-system-tools/files/patch-configure | 11 + sysutils/gnome-system-tools/pkg-descr | 10 + sysutils/gnome-system-tools/pkg-plist | 261 +++++++++++++++++++++ 7 files changed, 376 insertions(+) create mode 100644 sysutils/gnome-system-tools/Makefile create mode 100644 sysutils/gnome-system-tools/distinfo create mode 100644 sysutils/gnome-system-tools/files/patch-backends_replace.pl.in create mode 100644 sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in create mode 100644 sysutils/gnome-system-tools/files/patch-configure create mode 100644 sysutils/gnome-system-tools/pkg-descr create mode 100644 sysutils/gnome-system-tools/pkg-plist (limited to 'sysutils/gnome-system-tools') diff --git a/sysutils/gnome-system-tools/Makefile b/sysutils/gnome-system-tools/Makefile new file mode 100644 index 000000000..c590a9f4f --- /dev/null +++ b/sysutils/gnome-system-tools/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: gnomesystemtools +# Date created: 17 May 2004 +# Whom: Adam Weinberger +# +# $FreeBSD: ports/sysutils/gnomesystemtools/Makefile,v 1.11 2004/11/07 22:24:26 marcus Exp $ +# + +PORTNAME= gnomesystemtools +PORTVERSION= 1.1.0 +CATEGORIES= sysutils gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/gnome-system-tools/1.1 +DISTNAME= gnome-system-tools-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Tools to configure workstations + +USE_BZIP2= yes +USE_GMAKE= yes +USE_PERL5= yes +USE_X_PREFIX= yes +USE_GNOME= gnomehack gnomeprefix gnometarget intlhack libgnomeui +USE_LIBTOOL_VER=15 +INSTALLS_OMF= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-boot + +GCONF_SCHEMAS= gnome-system-tools.schemas + +.include + +.if ${OSVERSION} > 500000 +CONFIGURE_ARGS+= --enable-services +PLIST_SUB+= SERVICES="" +.else +CONFIGURE_ARGS+= --disable-services +PLIST_SUB+= SERVICES="@comment " +.endif + +.if ${PERL_LEVEL} < 500600 +post-configure: + @${FIND} ${WRKSRC}/backends \( -name "*.pl" -or -name "*-conf" \) | \ + ${XARGS} ${REINPLACE_CMD} -e 's|@scriptsdir|[@]scriptsdir|g' +.endif + +.include diff --git a/sysutils/gnome-system-tools/distinfo b/sysutils/gnome-system-tools/distinfo new file mode 100644 index 000000000..cb4564fa2 --- /dev/null +++ b/sysutils/gnome-system-tools/distinfo @@ -0,0 +1,2 @@ +MD5 (gnome2/gnome-system-tools-1.1.0.tar.bz2) = a42bf8d4fa2d49fe2408ea756406b48b +SIZE (gnome2/gnome-system-tools-1.1.0.tar.bz2) = 2817929 diff --git a/sysutils/gnome-system-tools/files/patch-backends_replace.pl.in b/sysutils/gnome-system-tools/files/patch-backends_replace.pl.in new file mode 100644 index 000000000..7f7cce28e --- /dev/null +++ b/sysutils/gnome-system-tools/files/patch-backends_replace.pl.in @@ -0,0 +1,34 @@ +--- backends/replace.pl.in.orig Fri Oct 22 02:41:56 2004 ++++ backends/replace.pl.in Fri Oct 22 02:42:48 2004 +@@ -1113,19 +1113,19 @@ + + return -1 if (!&gst_replace_interfaces_iface_stanza_locate ($buff, \$line_no, $iface)); + +- delete $$buff[$line_no]; ++ splice @{$buff},$line_no,1; + $line_no ++; + + while (&gst_replace_interfaces_get_next_option ($buff, \$line_no) != -1) + { +- delete $$buff[$line_no]; ++ splice @{$buff},$line_no,1; + $line_no ++; + } + + $line_no = 0; + if (&gst_replace_interfaces_auto_stanza_locate ($buff, \$line_no, $iface)) + { +- delete $$buff[$line_no]; ++ splice @{$buff},$line_no,1; + } + + &gst_file_buffer_clean ($buff); +@@ -1663,7 +1663,7 @@ + } + else + { +- delete $$buff[$i]; ++ splice @{$buff},$i,1; + } + } + } diff --git a/sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in b/sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in new file mode 100644 index 000000000..16861791c --- /dev/null +++ b/sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in @@ -0,0 +1,10 @@ +--- backends/service-list.pl.in.orig Sun Sep 19 13:20:02 2004 ++++ backends/service-list.pl.in Sun Sep 19 13:20:10 2004 +@@ -225,6 +225,7 @@ + "atm3\.sh", + "ccd", + "cleanvar", ++ "cleartmp", + "devdb", + "devfs", + "dhclient", diff --git a/sysutils/gnome-system-tools/files/patch-configure b/sysutils/gnome-system-tools/files/patch-configure new file mode 100644 index 000000000..b854cde3a --- /dev/null +++ b/sysutils/gnome-system-tools/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Wed May 26 12:02:51 2004 ++++ configure Wed May 26 12:03:23 2004 +@@ -22623,7 +22623,7 @@ + GST_CFLAGS="$GST_DEPENDS_CFLAGS $GST_CRACK_LIB_CFLAGS $GST_DEPRECATED_FLAGS" + + GST_TOOL_LIBS="$GST_LIBS -lutil \$(top_builddir)/src/common/libsetuptool.a" +-GST_TOOL_CFLAGS="$GST_CFLAGS -I\$(top_srcdir)/src/common" ++GST_TOOL_CFLAGS="-I\$(top_srcdir)/src/common $GST_CFLAGS" + + GST_TOOL_CLEANFILES="\$(desktop) \$(desktop).in" + GST_TOOL_EXTRA_DIST="\$(toolpixmaps) \$(desktop).in.in" diff --git a/sysutils/gnome-system-tools/pkg-descr b/sysutils/gnome-system-tools/pkg-descr new file mode 100644 index 000000000..b0b69e539 --- /dev/null +++ b/sysutils/gnome-system-tools/pkg-descr @@ -0,0 +1,10 @@ +Various tools to assist in administration and configuration of a workstation. +Included are tools to: + + * Administer user and group accounts + * Change the date, time, and time zone + * Set up and configure network interfaces + * Modify bootloader settings + * Start, stop, and modify system services + +WWW: http://www.gnome.org/projects/gst/ diff --git a/sysutils/gnome-system-tools/pkg-plist b/sysutils/gnome-system-tools/pkg-plist new file mode 100644 index 000000000..a29c31d7e --- /dev/null +++ b/sysutils/gnome-system-tools/pkg-plist @@ -0,0 +1,261 @@ +bin/disks-admin +bin/network-admin +%%SERVICES%%bin/services-admin +bin/shares-admin +bin/time-admin +bin/users-admin +etc/X11/sysconfig/disks.desktop +etc/X11/sysconfig/network.desktop +%%SERVICES%%etc/X11/sysconfig/services.desktop +etc/X11/sysconfig/shares.desktop +etc/X11/sysconfig/time.desktop +etc/X11/sysconfig/users.desktop +lib/bonobo/libgst-shares-component.so +libdata/bonobo/servers/GST_Shares_Component.server +libdata/pkgconfig/gnome-system-tools.pc +libdata/pkgconfig/system-tools-backends.pc +share/gnome-system-tools/interfaces/boot.glade +share/gnome-system-tools/interfaces/common.glade +share/gnome-system-tools/interfaces/disks.glade +share/gnome-system-tools/interfaces/network.glade +share/gnome-system-tools/interfaces/services.glade +share/gnome-system-tools/interfaces/shares.glade +share/gnome-system-tools/interfaces/time.glade +share/gnome-system-tools/interfaces/users.glade +share/gnome-system-tools/pixmaps/16_ethernet.xpm +share/gnome-system-tools/pixmaps/16_loopback.xpm +share/gnome-system-tools/pixmaps/16_plip.xpm +share/gnome-system-tools/pixmaps/16_ppp.xpm +share/gnome-system-tools/pixmaps/black_panther.png +share/gnome-system-tools/pixmaps/boot.png +share/gnome-system-tools/pixmaps/computer.png +share/gnome-system-tools/pixmaps/conectiva.png +share/gnome-system-tools/pixmaps/connection-ethernet.png +share/gnome-system-tools/pixmaps/connection-modem.png +share/gnome-system-tools/pixmaps/debian.png +share/gnome-system-tools/pixmaps/disks.png +share/gnome-system-tools/pixmaps/fedora.png +share/gnome-system-tools/pixmaps/freebsd.png +share/gnome-system-tools/pixmaps/gentoo.png +share/gnome-system-tools/pixmaps/gnome-dev-cdrom-data.png +share/gnome-system-tools/pixmaps/gnome-dev-cdrom-mixed.png +share/gnome-system-tools/pixmaps/irda-16.png +share/gnome-system-tools/pixmaps/irda-48.png +share/gnome-system-tools/pixmaps/mandrake.png +share/gnome-system-tools/pixmaps/nameresolution.png +share/gnome-system-tools/pixmaps/nameresolution_alias.png +share/gnome-system-tools/pixmaps/nameresolution_id.png +share/gnome-system-tools/pixmaps/network.png +share/gnome-system-tools/pixmaps/openna.png +share/gnome-system-tools/pixmaps/pld.png +share/gnome-system-tools/pixmaps/plip-48.png +share/gnome-system-tools/pixmaps/ppp.png +share/gnome-system-tools/pixmaps/reading.png +share/gnome-system-tools/pixmaps/redhat.png +share/gnome-system-tools/pixmaps/server.png +share/gnome-system-tools/pixmaps/services.png +share/gnome-system-tools/pixmaps/settings.png +share/gnome-system-tools/pixmaps/shares.png +share/gnome-system-tools/pixmaps/slackware.png +share/gnome-system-tools/pixmaps/specifix.png +share/gnome-system-tools/pixmaps/suse.png +share/gnome-system-tools/pixmaps/talk-userlist.png +share/gnome-system-tools/pixmaps/time.png +share/gnome-system-tools/pixmaps/timezone.png +share/gnome-system-tools/pixmaps/turbolinux.png +share/gnome-system-tools/pixmaps/unsupported-distro.png +share/gnome-system-tools/pixmaps/users-groups.png +share/gnome-system-tools/pixmaps/users.png +share/gnome-system-tools/pixmaps/vine.png +share/gnome-system-tools/pixmaps/wavelan-16.png +share/gnome-system-tools/pixmaps/wavelan-48.png +share/gnome-system-tools/pixmaps/world_map-960.png +share/gnome/applications/disks.desktop +share/gnome/applications/network.desktop +%%SERVICES%%share/gnome/applications/services.desktop +share/gnome/applications/shares.desktop +share/gnome/applications/time.desktop +share/gnome/applications/users.desktop +share/gnome/help/boot-admin/C/boot-admin.xml +share/gnome/help/boot-admin/C/figures/boot-tool.png +share/gnome/help/boot-admin/C/legal.xml +share/gnome/help/network-admin/C/figures/network-tool.png +share/gnome/help/network-admin/C/legal.xml +share/gnome/help/network-admin/C/network-admin.xml +share/gnome/help/services-admin/C/figures/service-properties.png +share/gnome/help/services-admin/C/figures/services-tool.png +share/gnome/help/services-admin/C/legal.xml +share/gnome/help/services-admin/C/services-admin.xml +share/gnome/help/time-admin/C/figures/time-map.png +share/gnome/help/time-admin/C/figures/time-servers.png +share/gnome/help/time-admin/C/figures/time-tool.png +share/gnome/help/time-admin/C/legal.xml +share/gnome/help/time-admin/C/time-admin.xml +share/gnome/help/users-admin/C/figures/users-tool.png +share/gnome/help/users-admin/C/legal.xml +share/gnome/help/users-admin/C/users-admin.xml +share/gnome/omf/gnome-system-tools/boot-admin-C.omf +share/gnome/omf/gnome-system-tools/network-admin-C.omf +share/gnome/omf/gnome-system-tools/services-admin-C.omf +share/gnome/omf/gnome-system-tools/time-admin-C.omf +share/gnome/omf/gnome-system-tools/users-admin-C.omf +share/locale/am/LC_MESSAGES/gnome-system-tools.mo +share/locale/ar/LC_MESSAGES/gnome-system-tools.mo +share/locale/ar/LC_MESSAGES/setup-tools-backends.mo +share/locale/az/LC_MESSAGES/gnome-system-tools.mo +share/locale/az/LC_MESSAGES/setup-tools-backends.mo +share/locale/bg/LC_MESSAGES/gnome-system-tools.mo +share/locale/bg/LC_MESSAGES/setup-tools-backends.mo +share/locale/bn/LC_MESSAGES/setup-tools-backends.mo +share/locale/bn/LC_MESSAGES/gnome-system-tools.mo +share/locale/bs/LC_MESSAGES/setup-tools-backends.mo +share/locale/ca/LC_MESSAGES/gnome-system-tools.mo +share/locale/ca/LC_MESSAGES/setup-tools-backends.mo +share/locale/cs/LC_MESSAGES/gnome-system-tools.mo +share/locale/cs/LC_MESSAGES/setup-tools-backends.mo +share/locale/da/LC_MESSAGES/gnome-system-tools.mo +share/locale/da/LC_MESSAGES/setup-tools-backends.mo +share/locale/de/LC_MESSAGES/gnome-system-tools.mo +share/locale/de/LC_MESSAGES/setup-tools-backends.mo +share/locale/el/LC_MESSAGES/gnome-system-tools.mo +share/locale/el/LC_MESSAGES/setup-tools-backends.mo +share/locale/en_CA/LC_MESSAGES/gnome-system-tools.mo +share/locale/en_CA/LC_MESSAGES/setup-tools-backends.mo +share/locale/en_GB/LC_MESSAGES/gnome-system-tools.mo +share/locale/en_GB/LC_MESSAGES/setup-tools-backends.mo +share/locale/es/LC_MESSAGES/gnome-system-tools.mo +share/locale/es/LC_MESSAGES/setup-tools-backends.mo +share/locale/et/LC_MESSAGES/gnome-system-tools.mo +share/locale/eu/LC_MESSAGES/gnome-system-tools.mo +share/locale/eu/LC_MESSAGES/setup-tools-backends.mo +share/locale/fi/LC_MESSAGES/gnome-system-tools.mo +share/locale/fi/LC_MESSAGES/setup-tools-backends.mo +share/locale/fr/LC_MESSAGES/gnome-system-tools.mo +share/locale/ga/LC_MESSAGES/gnome-system-tools.mo +share/locale/gl/LC_MESSAGES/gnome-system-tools.mo +share/locale/gu/LC_MESSAGES/setup-tools-backends.mo +share/locale/gu/LC_MESSAGES/gnome-system-tools.mo +share/locale/hr/LC_MESSAGES/gnome-system-tools.mo +share/locale/hr/LC_MESSAGES/setup-tools-backends.mo +share/locale/hu/LC_MESSAGES/gnome-system-tools.mo +share/locale/id/LC_MESSAGES/gnome-system-tools.mo +share/locale/id/LC_MESSAGES/setup-tools-backends.mo +share/locale/it/LC_MESSAGES/gnome-system-tools.mo +share/locale/it/LC_MESSAGES/setup-tools-backends.mo +share/locale/ja/LC_MESSAGES/gnome-system-tools.mo +share/locale/ja/LC_MESSAGES/setup-tools-backends.mo +share/locale/ko/LC_MESSAGES/gnome-system-tools.mo +share/locale/ko/LC_MESSAGES/setup-tools-backends.mo +share/locale/lt/LC_MESSAGES/gnome-system-tools.mo +share/locale/lt/LC_MESSAGES/setup-tools-backends.mo +share/locale/lv/LC_MESSAGES/gnome-system-tools.mo +share/locale/mk/LC_MESSAGES/gnome-system-tools.mo +share/locale/ml/LC_MESSAGES/gnome-system-tools.mo +share/locale/mn/LC_MESSAGES/gnome-system-tools.mo +share/locale/ms/LC_MESSAGES/gnome-system-tools.mo +share/locale/ms/LC_MESSAGES/setup-tools-backends.mo +share/locale/nb/LC_MESSAGES/setup-tools-backends.mo +share/locale/nl/LC_MESSAGES/gnome-system-tools.mo +share/locale/nl/LC_MESSAGES/setup-tools-backends.mo +share/locale/nn/LC_MESSAGES/gnome-system-tools.mo +share/locale/no/LC_MESSAGES/gnome-system-tools.mo +share/locale/no/LC_MESSAGES/setup-tools-backends.mo +share/locale/pa/LC_MESSAGES/setup-tools-backends.mo +share/locale/pa/LC_MESSAGES/gnome-system-tools.mo +share/locale/pl/LC_MESSAGES/gnome-system-tools.mo +share/locale/pl/LC_MESSAGES/setup-tools-backends.mo +share/locale/pt/LC_MESSAGES/gnome-system-tools.mo +share/locale/pt/LC_MESSAGES/setup-tools-backends.mo +share/locale/pt_BR/LC_MESSAGES/gnome-system-tools.mo +share/locale/pt_BR/LC_MESSAGES/setup-tools-backends.mo +share/locale/ro/LC_MESSAGES/gnome-system-tools.mo +share/locale/ro/LC_MESSAGES/setup-tools-backends.mo +share/locale/ru/LC_MESSAGES/gnome-system-tools.mo +share/locale/sk/LC_MESSAGES/gnome-system-tools.mo +share/locale/sk/LC_MESSAGES/setup-tools-backends.mo +share/locale/sq/LC_MESSAGES/gnome-system-tools.mo +share/locale/sq/LC_MESSAGES/setup-tools-backends.mo +share/locale/sr/LC_MESSAGES/gnome-system-tools.mo +share/locale/sr/LC_MESSAGES/setup-tools-backends.mo +share/locale/sr@Latn/LC_MESSAGES/gnome-system-tools.mo +share/locale/sr@Latn/LC_MESSAGES/setup-tools-backends.mo +share/locale/sv/LC_MESSAGES/gnome-system-tools.mo +share/locale/sv/LC_MESSAGES/setup-tools-backends.mo +share/locale/ta/LC_MESSAGES/gnome-system-tools.mo +share/locale/ta/LC_MESSAGES/setup-tools-backends.mo +share/locale/tr/LC_MESSAGES/gnome-system-tools.mo +share/locale/tr/LC_MESSAGES/setup-tools-backends.mo +share/locale/uk/LC_MESSAGES/gnome-system-tools.mo +share/locale/uk/LC_MESSAGES/setup-tools-backends.mo +share/locale/vi/LC_MESSAGES/gnome-system-tools.mo +share/locale/wa/LC_MESSAGES/gnome-system-tools.mo +share/locale/zh_CN/LC_MESSAGES/gnome-system-tools.mo +share/locale/zh_CN/LC_MESSAGES/setup-tools-backends.mo +share/locale/zh_TW/LC_MESSAGES/gnome-system-tools.mo +share/locale/zh_TW/LC_MESSAGES/setup-tools-backends.mo +share/setup-tool-backends/files/debian_ipchains +share/setup-tool-backends/scripts/boot-conf +share/setup-tool-backends/scripts/boot-grub.pl +share/setup-tool-backends/scripts/boot-lilo.pl +share/setup-tool-backends/scripts/boot-yaboot.pl +share/setup-tool-backends/scripts/boot.pl +share/setup-tool-backends/scripts/debug.pl +share/setup-tool-backends/scripts/dhcpd-conf +share/setup-tool-backends/scripts/dhcpd.pl +share/setup-tool-backends/scripts/disks-conf +share/setup-tool-backends/scripts/display-conf +share/setup-tool-backends/scripts/file.pl +share/setup-tool-backends/scripts/filesys.pl +share/setup-tool-backends/scripts/font-conf +share/setup-tool-backends/scripts/font.pl +share/setup-tool-backends/scripts/general.pl +share/setup-tool-backends/scripts/guess_system.sh +share/setup-tool-backends/scripts/internetsharing-conf +share/setup-tool-backends/scripts/ishare.pl +share/setup-tool-backends/scripts/media.pl +share/setup-tool-backends/scripts/memory-conf +share/setup-tool-backends/scripts/mouse-conf +share/setup-tool-backends/scripts/network-conf +share/setup-tool-backends/scripts/network.pl +share/setup-tool-backends/scripts/package-conf +share/setup-tool-backends/scripts/parse.pl +share/setup-tool-backends/scripts/partition.pl +share/setup-tool-backends/scripts/platform.pl +share/setup-tool-backends/scripts/print-conf +share/setup-tool-backends/scripts/print.pl +share/setup-tool-backends/scripts/replace.pl +share/setup-tool-backends/scripts/report.pl +share/setup-tool-backends/scripts/service-list.pl +share/setup-tool-backends/scripts/service.pl +share/setup-tool-backends/scripts/services-conf +share/setup-tool-backends/scripts/share.pl +share/setup-tool-backends/scripts/shares-conf +share/setup-tool-backends/scripts/time-conf +share/setup-tool-backends/scripts/tokenizer.pl +share/setup-tool-backends/scripts/type1inst +share/setup-tool-backends/scripts/users-conf +share/setup-tool-backends/scripts/util.pl +share/setup-tool-backends/scripts/x.pl +share/setup-tool-backends/scripts/xml.pl +@dirrm share/setup-tool-backends/scripts +@dirrm share/setup-tool-backends/files +@dirrm share/setup-tool-backends +@dirrm share/gnome/omf/gnome-system-tools +@dirrm share/gnome/help/users-admin/C/figures +@dirrm share/gnome/help/users-admin/C +@dirrm share/gnome/help/users-admin +@dirrm share/gnome/help/time-admin/C/figures +@dirrm share/gnome/help/time-admin/C +@dirrm share/gnome/help/time-admin +@dirrm share/gnome/help/services-admin/C/figures +@dirrm share/gnome/help/services-admin/C +@dirrm share/gnome/help/services-admin +@dirrm share/gnome/help/network-admin/C/figures +@dirrm share/gnome/help/network-admin/C +@dirrm share/gnome/help/network-admin +@dirrm share/gnome/help/boot-admin/C/figures +@dirrm share/gnome/help/boot-admin/C +@dirrm share/gnome/help/boot-admin +@dirrm share/gnome-system-tools/pixmaps +@dirrm share/gnome-system-tools/interfaces +@dirrm share/gnome-system-tools -- cgit v1.2.3