diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2006-10-31 09:08:29 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2006-10-31 09:08:29 +0000 |
commit | 791210a7babca44192cdef7bbcdc3efec3bdca7e (patch) | |
tree | 951799e47feb20bd6cb43eba9ae099ea1ef64d01 | |
parent | 8e7a15f2311c69de99558dcee9c9bf427e2dc1e1 (diff) | |
download | ports-791210a7babca44192cdef7bbcdc3efec3bdca7e.tar.gz ports-791210a7babca44192cdef7bbcdc3efec3bdca7e.zip |
Notes
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/gnome_subr/Makefile | 22 | ||||
-rw-r--r-- | sysutils/gnome_subr/files/gnome.subr | 9 | ||||
-rw-r--r-- | sysutils/gnome_subr/pkg-descr | 3 |
4 files changed, 35 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 0e35329fec54..3feb79c0df4f 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -237,6 +237,7 @@ SUBDIR += gnome-system-monitor SUBDIR += gnome-system-tools SUBDIR += gnome-volume-manager + SUBDIR += gnome_subr SUBDIR += gnomebaker SUBDIR += gnomefind SUBDIR += gpart diff --git a/sysutils/gnome_subr/Makefile b/sysutils/gnome_subr/Makefile new file mode 100644 index 000000000000..ead0947229b9 --- /dev/null +++ b/sysutils/gnome_subr/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: gnome_subr +# Date created: 31 Oct 2006 +# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gnome_subr +PORTVERSION= 1.0 +CATEGORIES= sysutils +DISTFILES= + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Common startup and shutdown subroutines used by GNOME scripts + +NO_BUILD= yes +PLIST_FILES= etc/gnome.subr + +do-install: + ${INSTALL_DATA} ${FILESDIR}/gnome.subr ${PREFIX}/etc + +.include <bsd.port.mk> diff --git a/sysutils/gnome_subr/files/gnome.subr b/sysutils/gnome_subr/files/gnome.subr new file mode 100644 index 000000000000..5d0be138efbc --- /dev/null +++ b/sysutils/gnome_subr/files/gnome.subr @@ -0,0 +1,9 @@ +# $FreeBSD$ + +# Add the following to /etc/rc.conf to start GNOME services (dbus, +# hald, gdm, and so on) at boot time: +# +# gnome_enable="YES" +# + +gnome_enable=${gnome_enable-"NO"} diff --git a/sysutils/gnome_subr/pkg-descr b/sysutils/gnome_subr/pkg-descr new file mode 100644 index 000000000000..b8b66eb918f6 --- /dev/null +++ b/sysutils/gnome_subr/pkg-descr @@ -0,0 +1,3 @@ +Common startup and shutdown subroutines used by GNOME scripts. + +WWW: http://www.FreeBSD.org/gnome/ |