summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-09-09 07:44:55 +0000
committerLukc <lukc@upyum.com>2010-09-09 07:44:55 +0000
commit3550969e10c9f7cdf8556d950fa300a9e5c441c6 (patch)
tree2e8f125f3b577b60f7b1c80a0c040b8930919ec9
parent11d5f4f5e1d8bdf338ca9efbf6df88f75ce6f344 (diff)
downloadports-3550969e10c9f7cdf8556d950fa300a9e5c441c6.tar.gz
ports-3550969e10c9f7cdf8556d950fa300a9e5c441c6.tar.bz2
ports-3550969e10c9f7cdf8556d950fa300a9e5c441c6.tar.xz
ports-3550969e10c9f7cdf8556d950fa300a9e5c441c6.zip
pkgutils port added.
-rw-r--r--pkgutils/.footprint21
-rw-r--r--pkgutils/.md5sum1
-rw-r--r--pkgutils/.sha256sum1
-rw-r--r--pkgutils/Pkgfile19
4 files changed, 42 insertions, 0 deletions
diff --git a/pkgutils/.footprint b/pkgutils/.footprint
new file mode 100644
index 0000000..675aac2
--- /dev/null
+++ b/pkgutils/.footprint
@@ -0,0 +1,21 @@
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/pkgadd.conf
+-rw-r--r-- root/root etc/pkgmk.conf
+-rw-r--r-- root/root etc/rejmerge.conf
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/pkgadd
+lrwxrwxrwx root/root usr/bin/pkginfo -> pkgadd
+-rwxr-xr-x root/root usr/bin/pkgmk
+lrwxrwxrwx root/root usr/bin/pkgrm -> pkgadd
+-rwxr-xr-x root/root usr/bin/rejmerge
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/pkgmk.conf.5.gz
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/pkgadd.8.gz
+-rw-r--r-- root/root usr/share/man/man8/pkginfo.8.gz
+-rw-r--r-- root/root usr/share/man/man8/pkgmk.8.gz
+-rw-r--r-- root/root usr/share/man/man8/pkgrm.8.gz
+-rw-r--r-- root/root usr/share/man/man8/rejmerge.8.gz
diff --git a/pkgutils/.md5sum b/pkgutils/.md5sum
new file mode 100644
index 0000000..d90906f
--- /dev/null
+++ b/pkgutils/.md5sum
@@ -0,0 +1 @@
+6cdd43fce5e8da4d4256e24e24c6556f pkgutils-5.35.1.tar.gz
diff --git a/pkgutils/.sha256sum b/pkgutils/.sha256sum
new file mode 100644
index 0000000..5036381
--- /dev/null
+++ b/pkgutils/.sha256sum
@@ -0,0 +1 @@
+8ecf3ff4e88c44418e28902ee01de7e4933c8c60023221c80425053d82a428b9 pkgutils-5.35.1.tar.gz
diff --git a/pkgutils/Pkgfile b/pkgutils/Pkgfile
new file mode 100644
index 0000000..74d4c15
--- /dev/null
+++ b/pkgutils/Pkgfile
@@ -0,0 +1,19 @@
+description="A set of utilities to manage software packages"
+packager="CRUX System Team (SMTP: core-ports AT crux DOT nu)"
+maintainer="Lukc (XMPP/SMTP: lukc AT upyum DOT com)"
+url=http://www.fukt.bsnet.se/~per/pkgutils/
+depends=(libarchive)
+
+name=pkgutils
+version=5.35.1
+release=1
+source=(http://crux.nu/files/$name-$version.tar.gz)
+build ()
+{
+ cd $name-$version;
+ make DESTDIR=$PKG install
+ if [[ "$mandir" != "/usr/man" ]]; then
+ mkdir -p $PKG/${mandir%/*}
+ mv $PKG/usr/man $PKG/$mandir
+ fi
+}