summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 10:49:10 +0100
committerLukc <lukc@upyum.com>2010-12-12 10:49:10 +0100
commite40057b9b76c02e6ad6d1e149a778d218abcae5d (patch)
tree98e97a208cc73abd0fe82214a88faae751bc7f53
parent7ba69bf95c98dd3f77600b794ba0a679de02c580 (diff)
downloaddevel-e40057b9b76c02e6ad6d1e149a778d218abcae5d.tar.gz
devel-e40057b9b76c02e6ad6d1e149a778d218abcae5d.tar.bz2
devel-e40057b9b76c02e6ad6d1e149a778d218abcae5d.tar.xz
devel-e40057b9b76c02e6ad6d1e149a778d218abcae5d.zip
Recette de ports ajoutée.
-rw-r--r--ports/.footprint14
-rw-r--r--ports/.md5sum5
-rw-r--r--ports/.sha256sum5
-rw-r--r--ports/Pkgfile23
-rw-r--r--ports/Pkgfile.old21
-rw-r--r--ports/contrib.rsync.inactive3
-rw-r--r--ports/core.rsync3
-rw-r--r--ports/opt.rsync3
-rw-r--r--ports/xorg.rsync3
9 files changed, 80 insertions, 0 deletions
diff --git a/ports/.footprint b/ports/.footprint
new file mode 100644
index 0000000..93d112f
--- /dev/null
+++ b/ports/.footprint
@@ -0,0 +1,14 @@
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/ports/
+-rw-r--r-- root/root etc/ports/contrib.rsync.inactive
+-rw-r--r-- root/root etc/ports/core.rsync
+drwxr-xr-x root/root etc/ports/drivers/
+-rw-r--r-- root/root etc/ports/opt.rsync
+-rw-r--r-- root/root etc/ports/xorg.rsync
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/ports
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man8/
+-rw-r--r-- root/root usr/man/man8/ports.8.bz2
+drwxr-xr-x root/root usr/ports/
diff --git a/ports/.md5sum b/ports/.md5sum
new file mode 100644
index 0000000..891ea32
--- /dev/null
+++ b/ports/.md5sum
@@ -0,0 +1,5 @@
+c79603d71569837b6848c5cb320c44bd contrib.rsync.inactive
+b77a6e0dd97a45652de03bd3a82a416f core.rsync
+03246f47123cd2342ddfaf4c44fa9c89 opt.rsync
+1f178e2bb1beab9782993931c9832280 ports-1.5.tar.gz
+320d50cc72759a55097b1b2d4c40da9a xorg.rsync
diff --git a/ports/.sha256sum b/ports/.sha256sum
new file mode 100644
index 0000000..e9bfef5
--- /dev/null
+++ b/ports/.sha256sum
@@ -0,0 +1,5 @@
+fd206980cd57223fc2090b78d8387c7a653c4c288ee7a0cb20218d9c9c86a128 contrib.rsync.inactive
+1c675c00e9950e10bb90d825d04403fe314bec61fb63ff07587881cfd4bed1e4 core.rsync
+073d0c0daf7eb12c580ebcdb0168ce849a0131449bb12715853aa72c569ce1bd opt.rsync
+4360d5c96ccfa2cadf084307df418d1e86c60afe775e29c036b518f6b2d6c156 ports-1.5.tar.gz
+fa134691400b017ec42f5a0e77e29faa8e20bb4bcd8d55fb484cbd8767681fb0 xorg.rsync
diff --git a/ports/Pkgfile b/ports/Pkgfile
new file mode 100644
index 0000000..917a20e
--- /dev/null
+++ b/ports/Pkgfile
@@ -0,0 +1,23 @@
+description="CRUX ports system tools."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
+url="http://crux.nu"
+depends=()
+
+# FIXME: These ports files are for Crux’s repositories… not ours.
+# FIXME: We should use git/httpup instead of rsync, for these files…
+
+name=ports
+version=1.5
+release=10
+source=(http://crux.nu/files/tools/$name/$name-$version.tar.gz core.rsync opt.rsync xorg.rsync contrib.rsync.inactive)
+build ()
+{
+ cd $name-$version;
+ make;
+ make DESTDIR=$PKG install;
+ install -m 0644 ../core.rsync $PKG/etc/ports/core.rsync;
+ install -m 0644 ../opt.rsync $PKG/etc/ports/opt.rsync;
+ install -m 0644 ../xorg.rsync $PKG/etc/ports/xorg.rsync;
+ install -m 0644 ../contrib.rsync.inactive $PKG/etc/ports/contrib.rsync.inactive
+}
diff --git a/ports/Pkgfile.old b/ports/Pkgfile.old
new file mode 100644
index 0000000..cb47299
--- /dev/null
+++ b/ports/Pkgfile.old
@@ -0,0 +1,21 @@
+# Description: CRUX ports system tools
+# URL: http://crux.nu
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+
+name=ports
+version=1.5
+release=10
+source=(http://crux.nu/files/tools/ports/$name-$version.tar.gz \
+ core.rsync opt.rsync xorg.rsync contrib.rsync.inactive)
+
+build () {
+ cd $name-$version
+ make
+ make DESTDIR=$PKG install
+
+ install -m 0644 ../core.rsync $PKG/etc/ports/core.rsync
+ install -m 0644 ../opt.rsync $PKG/etc/ports/opt.rsync
+ install -m 0644 ../xorg.rsync $PKG/etc/ports/xorg.rsync
+ install -m 0644 ../contrib.rsync.inactive \
+ $PKG/etc/ports/contrib.rsync.inactive
+}
diff --git a/ports/contrib.rsync.inactive b/ports/contrib.rsync.inactive
new file mode 100644
index 0000000..e84298f
--- /dev/null
+++ b/ports/contrib.rsync.inactive
@@ -0,0 +1,3 @@
+host=crux.nu
+collection=ports/crux-2.7/contrib/
+destination=/usr/ports/contrib
diff --git a/ports/core.rsync b/ports/core.rsync
new file mode 100644
index 0000000..60540cf
--- /dev/null
+++ b/ports/core.rsync
@@ -0,0 +1,3 @@
+host=crux.nu
+collection=ports/crux-2.7/core/
+destination=/usr/ports/core
diff --git a/ports/opt.rsync b/ports/opt.rsync
new file mode 100644
index 0000000..0723133
--- /dev/null
+++ b/ports/opt.rsync
@@ -0,0 +1,3 @@
+host=crux.nu
+collection=ports/crux-2.7/opt/
+destination=/usr/ports/opt
diff --git a/ports/xorg.rsync b/ports/xorg.rsync
new file mode 100644
index 0000000..88077aa
--- /dev/null
+++ b/ports/xorg.rsync
@@ -0,0 +1,3 @@
+host=crux.nu
+collection=ports/crux-2.7/xorg/
+destination=/usr/ports/xorg