summaryrefslogtreecommitdiffstats
path: root/base/sysvinit
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:14:02 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:14:02 +0200
commitd52ca1c7ced65fcb7cb0e1a2309a8047a506df10 (patch)
tree62a1ec372046b9b87ba9c5c7478addc7de3928a8 /base/sysvinit
parentf614f9450cc1a28874ff8612726fd066a6c93bac (diff)
downloadnutyx-extra-d52ca1c7ced65fcb7cb0e1a2309a8047a506df10.tar.gz
nutyx-extra-d52ca1c7ced65fcb7cb0e1a2309a8047a506df10.tar.bz2
nutyx-extra-d52ca1c7ced65fcb7cb0e1a2309a8047a506df10.tar.xz
nutyx-extra-d52ca1c7ced65fcb7cb0e1a2309a8047a506df10.zip
Ajout de sysvinit#2.86-2
Diffstat (limited to 'base/sysvinit')
-rw-r--r--base/sysvinit/.footprint44
-rw-r--r--base/sysvinit/.md5sum1
-rwxr-xr-xbase/sysvinit/Pkgfile22
3 files changed, 67 insertions, 0 deletions
diff --git a/base/sysvinit/.footprint b/base/sysvinit/.footprint
new file mode 100644
index 000000000..952edd103
--- /dev/null
+++ b/base/sysvinit/.footprint
@@ -0,0 +1,44 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/mountpoint
+lrwxrwxrwx root/root bin/pidof -> ../sbin/killall5
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/bootlogd
+-rwxr-xr-x root/root sbin/halt
+-rwxr-xr-x root/root sbin/init
+-rwxr-xr-x root/root sbin/killall5
+lrwxrwxrwx root/root sbin/poweroff -> halt
+lrwxrwxrwx root/root sbin/reboot -> halt
+-rwxr-xr-x root/root sbin/runlevel
+-rwxr-xr-x root/root sbin/shutdown
+-rwxr-xr-x root/root sbin/sulogin
+lrwxrwxrwx root/root sbin/telinit -> init
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/last
+lrwxrwxrwx root/root usr/bin/lastb -> last
+-rwxr-xr-x root/root usr/bin/mesg
+-rwxr-xr-x root/root usr/bin/utmpdump
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/initreq.h
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/last.1.gz
+-rw-r--r-- root/root usr/share/man/man1/lastb.1.gz
+-rw-r--r-- root/root usr/share/man/man1/mesg.1.gz
+-rw-r--r-- root/root usr/share/man/man1/mountpoint.1.gz
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/initscript.5.gz
+-rw-r--r-- root/root usr/share/man/man5/inittab.5.gz
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/bootlogd.8.gz
+-rw-r--r-- root/root usr/share/man/man8/halt.8.gz
+-rw-r--r-- root/root usr/share/man/man8/init.8.gz
+-rw-r--r-- root/root usr/share/man/man8/killall5.8.gz
+-rw-r--r-- root/root usr/share/man/man8/pidof.8.gz
+-rw-r--r-- root/root usr/share/man/man8/poweroff.8.gz
+-rw-r--r-- root/root usr/share/man/man8/reboot.8.gz
+-rw-r--r-- root/root usr/share/man/man8/runlevel.8.gz
+-rw-r--r-- root/root usr/share/man/man8/shutdown.8.gz
+-rw-r--r-- root/root usr/share/man/man8/sulogin.8.gz
+-rw-r--r-- root/root usr/share/man/man8/telinit.8.gz
diff --git a/base/sysvinit/.md5sum b/base/sysvinit/.md5sum
new file mode 100644
index 000000000..bb266a7ea
--- /dev/null
+++ b/base/sysvinit/.md5sum
@@ -0,0 +1 @@
+7d5d61c026122ab791ac04c8a84db967 sysvinit-2.86.tar.gz
diff --git a/base/sysvinit/Pkgfile b/base/sysvinit/Pkgfile
new file mode 100755
index 000000000..1c12f14f5
--- /dev/null
+++ b/base/sysvinit/Pkgfile
@@ -0,0 +1,22 @@
+# Description: Le système d'initialisation du système V de Linux
+# URL: ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=sysvinit
+version=2.86
+release=2
+source=(ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/$name-$version.tar.gz)
+
+build() {
+cd $name-$version
+
+sed -i 's@Sending processes@& configured via /etc/inittab@g' \
+ src/init.c
+sed -i -e 's/utmpdump wall/utmpdump/' \
+ -e 's/mountpoint.1 wall.1/mountpoint.1/' src/Makefile
+make -C src
+mkdir -p $PKG/{sbin,bin,usr/{bin,include,share/man/man{1,5,8}}}
+make -C src ROOT=$PKG install
+}