summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorsibelle <lesibel@free.fr>2010-02-27 22:19:40 +0100
committersibelle <lesibel@free.fr>2010-02-27 22:19:40 +0100
commit466934a7f2bd48b5ca7fe8112d17840811b2aa1e (patch)
tree7330e1a99e9650f54283ecec35ff8a82ed67455b /base
parenteb24bf1956c5b691b756e78ab5433d51c36ef3b3 (diff)
parentf4bea1514ecf9029ca00036d089458cebfebfd21 (diff)
downloadnutyx-extra-466934a7f2bd48b5ca7fe8112d17840811b2aa1e.tar.gz
nutyx-extra-466934a7f2bd48b5ca7fe8112d17840811b2aa1e.tar.bz2
nutyx-extra-466934a7f2bd48b5ca7fe8112d17840811b2aa1e.tar.xz
nutyx-extra-466934a7f2bd48b5ca7fe8112d17840811b2aa1e.zip
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'base')
-rw-r--r--base/kqemu/.footprint5
-rw-r--r--base/kqemu/.md5sum1
-rw-r--r--base/kqemu/Pkgfile18
-rw-r--r--base/mailx/.footprint12
-rw-r--r--base/mailx/.md5sum1
-rwxr-xr-xbase/mailx/Pkgfile26
6 files changed, 63 insertions, 0 deletions
diff --git a/base/kqemu/.footprint b/base/kqemu/.footprint
new file mode 100644
index 000000000..e7c138921
--- /dev/null
+++ b/base/kqemu/.footprint
@@ -0,0 +1,5 @@
+drwxr-xr-x root/root lib/
+drwxr-xr-x root/root lib/modules/
+drwxr-xr-x root/root lib/modules/<kernel-version>/
+drwxr-xr-x root/root lib/modules/<kernel-version>/misc/
+-rw-r--r-- root/root lib/modules/<kernel-version>/misc/kqemu.ko
diff --git a/base/kqemu/.md5sum b/base/kqemu/.md5sum
new file mode 100644
index 000000000..99be8eaf7
--- /dev/null
+++ b/base/kqemu/.md5sum
@@ -0,0 +1 @@
+d738d8ca7332211ab716ec3213d82ee1 kqemu-1.4.0pre1.tar.gz
diff --git a/base/kqemu/Pkgfile b/base/kqemu/Pkgfile
new file mode 100644
index 000000000..9062e1602
--- /dev/null
+++ b/base/kqemu/Pkgfile
@@ -0,0 +1,18 @@
+# Description: module pour Emulateur libre qemu
+# URL: http://www.qemu.org/
+# Maintainer: NuTyX coreteam
+# Packager: guy
+
+name=kqemu
+version=1.4.0pre1
+release=1
+source=(http://wiki.qemu.org/download/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure
+ make
+# make DESTDIR=$PKG install
+ mkdir -p $PKG/lib/modules/`uname -r`/misc
+ cp kqemu.ko $PKG/lib/modules/`uname -r`/misc
+}
diff --git a/base/mailx/.footprint b/base/mailx/.footprint
new file mode 100644
index 000000000..ac683bb73
--- /dev/null
+++ b/base/mailx/.footprint
@@ -0,0 +1,12 @@
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/nail.rc
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+lrwxrwxrwx root/root usr/bin/Mail -> mailx
+lrwxrwxrwx root/root usr/bin/mail -> mailx
+-rwxr-xr-x root/root usr/bin/mailx
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+lrwxrwxrwx root/root usr/share/man/man1/mail.1.gz -> mailx.1.gz
+-rw-r--r-- root/root usr/share/man/man1/mailx.1.gz
diff --git a/base/mailx/.md5sum b/base/mailx/.md5sum
new file mode 100644
index 000000000..41257bd79
--- /dev/null
+++ b/base/mailx/.md5sum
@@ -0,0 +1 @@
+0c93759e34200eb56a0e7c464680a54a mailx-12.4.tar.bz2
diff --git a/base/mailx/Pkgfile b/base/mailx/Pkgfile
new file mode 100755
index 000000000..63fc06b64
--- /dev/null
+++ b/base/mailx/Pkgfile
@@ -0,0 +1,26 @@
+# Description: Client de messagerie electronique
+# URL: http://nail.sourceforge.net/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: openssl
+
+name=mailx
+version=12.4
+release=1
+source=( http://downloads.sourceforge.net/heirloom/$name-$version.tar.bz2)
+
+
+build() {
+ cd $name-$version
+ make install \
+ PREFIX=/usr \
+ MANDIR=/usr/share/man \
+ SENDMAIL=/usr/sbin/sendmail \
+ MAILSPOOL=/var/spool/mail \
+ UCBINSTALL=/usr/bin/install \
+ DESTDIR=$PKG
+
+ ln -s mailx $PKG/usr/bin/Mail
+ ln -s mailx $PKG/usr/bin/mail
+ ln -s mailx.1 $PKG/usr/share/man/man1/mail.1
+}