diff options
author | Martin Matuska <mm@FreeBSD.org> | 2011-02-26 21:25:04 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2011-02-26 21:25:04 +0000 |
commit | 902bd6db1151955ecbf43fdacd0051b561279c13 (patch) | |
tree | d936f66d0a4732877540a50f0919cce84ba23272 /sysutils/debootstrap | |
parent | 7b8c36db2c4dac88a0b031f403efc24325184927 (diff) | |
download | ports-902bd6db1151955ecbf43fdacd0051b561279c13.tar.gz ports-902bd6db1151955ecbf43fdacd0051b561279c13.zip |
Notes
Diffstat (limited to 'sysutils/debootstrap')
-rw-r--r-- | sysutils/debootstrap/Makefile | 38 | ||||
-rw-r--r-- | sysutils/debootstrap/distinfo | 2 | ||||
-rw-r--r-- | sysutils/debootstrap/files/patch-Makefile | 40 | ||||
-rw-r--r-- | sysutils/debootstrap/files/patch-debootstrap | 11 | ||||
-rw-r--r-- | sysutils/debootstrap/files/patch-functions | 50 | ||||
-rw-r--r-- | sysutils/debootstrap/pkg-descr | 9 | ||||
-rw-r--r-- | sysutils/debootstrap/pkg-plist | 35 |
7 files changed, 185 insertions, 0 deletions
diff --git a/sysutils/debootstrap/Makefile b/sysutils/debootstrap/Makefile new file mode 100644 index 000000000000..1487ff9b0b84 --- /dev/null +++ b/sysutils/debootstrap/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: debootstrap +# Date created: 2011-02-26 +# Whom: Martin Matuska <mm@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= debootstrap +PORTVERSION= 1.0.28 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_DEBIAN} +MASTER_SITE_SUBDIR= pool/main/d/${PORTNAME} +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= mm@FreeBSD.org +COMMENT= Install Debian base system into a directory + +RUN_DEPENDS= ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget + +WRKSRC= ${WRKDIR}/${PORTNAME} +NO_BUILD= yes +USE_GMAKE= yes +MAKE_ARGS= DESTDIR="${PREFIX}" + +MAN8= debootstrap.8 + +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= Debian GNU/kFreeBSD available only for i386 and amd64 + +post-patch: + @${REINPLACE_CMD} -e 's,/usr/share,${PREFIX}/share,g' \ + ${WRKSRC}/debootstrap + +post-install: + @${INSTALL_MAN} ${WRKSRC}/debootstrap.8 \ + ${MAN8PREFIX}/man/man8/debootstrap.8 + +.include <bsd.port.mk> diff --git a/sysutils/debootstrap/distinfo b/sysutils/debootstrap/distinfo new file mode 100644 index 000000000000..abc76b7cf89c --- /dev/null +++ b/sysutils/debootstrap/distinfo @@ -0,0 +1,2 @@ +SHA256 (debootstrap_1.0.28.tar.gz) = e01dd19e1f364fa5b7130e1fbec67b930576885e3c79d74223b203c5e6fc1a95 +SIZE (debootstrap_1.0.28.tar.gz) = 54832 diff --git a/sysutils/debootstrap/files/patch-Makefile b/sysutils/debootstrap/files/patch-Makefile new file mode 100644 index 000000000000..e76aff95799e --- /dev/null +++ b/sysutils/debootstrap/files/patch-Makefile @@ -0,0 +1,40 @@ +--- Makefile.orig 2011-01-20 23:53:15.000000000 +0100 ++++ Makefile 2011-02-26 21:33:51.766311773 +0100 +@@ -3,31 +3,23 @@ + + MAKEDEV := /sbin/MAKEDEV + +-ifneq ($(shell uname),GNU) +-all: devices.tar.gz +-else + all: +-endif + + clean: + rm -f devices.tar.gz + rm -rf dev + +-DSDIR=$(DESTDIR)/usr/share/debootstrap ++DSDIR=$(PREFIX)/share/debootstrap + install: + mkdir -p $(DSDIR)/scripts +- mkdir -p $(DESTDIR)/usr/sbin ++ mkdir -p $(PREFIX)/sbin + + cp -a scripts/* $(DSDIR)/scripts/ +- install -o root -g root -m 0644 functions $(DSDIR)/ ++ install -o root -g wheel -m 0644 functions $(DSDIR)/ + +- sed 's/@VERSION@/$(VERSION)/g' debootstrap >$(DESTDIR)/usr/sbin/debootstrap +- chown root:root $(DESTDIR)/usr/sbin/debootstrap +- chmod 0755 $(DESTDIR)/usr/sbin/debootstrap +- +-ifneq ($(shell uname),GNU) +- install -o root -g root -m 0644 devices.tar.gz $(DSDIR)/ +-endif ++ sed 's/@VERSION@/$(VERSION)/g' debootstrap >$(PREFIX)/sbin/debootstrap ++ chown root:wheel $(PREFIX)/sbin/debootstrap ++ chmod 0755 $(PREFIX)/sbin/debootstrap + + devices.tar.gz: + rm -rf dev diff --git a/sysutils/debootstrap/files/patch-debootstrap b/sysutils/debootstrap/files/patch-debootstrap new file mode 100644 index 000000000000..98f20a269ed5 --- /dev/null +++ b/sysutils/debootstrap/files/patch-debootstrap @@ -0,0 +1,11 @@ +--- debootstrap.orig 2011-02-26 21:36:23.197635062 +0100 ++++ debootstrap 2011-02-26 21:50:23.274213717 +0100 +@@ -384,6 +384,8 @@ + + if [ "$ARCH" != "" ]; then + true ++elif [ "`uname -s`" = "FreeBSD" ]; then ++ ARCH=kfreebsd-`/sbin/sysctl -n hw.machine_arch` + elif [ -x /usr/bin/dpkg ] && \ + /usr/bin/dpkg --print-architecture >/dev/null 2>&1; then + ARCH=`/usr/bin/dpkg --print-architecture` diff --git a/sysutils/debootstrap/files/patch-functions b/sysutils/debootstrap/files/patch-functions new file mode 100644 index 000000000000..0bd37d537641 --- /dev/null +++ b/sysutils/debootstrap/files/patch-functions @@ -0,0 +1,50 @@ +--- functions.orig 2011-02-22 01:25:08.000000000 +0100 ++++ functions 2011-02-26 21:46:35.811100782 +0100 +@@ -232,7 +232,11 @@ + # args: dest checksum size + local expchecksum="$2" + local expsize="$3" +- relchecksum=`sha${SHA_SIZE}sum < "$1" | sed 's/ .*$//'` ++ if [ "`uname -s`" = "FreeBSD" ]; then ++ relchecksum=`sha${SHA_SIZE} < "$1"` ++ else ++ relchecksum=`sha${SHA_SIZE}sum < "$1" | sed 's/ .*$//'` ++ fi + relsize=`wc -c < "$1"` + if [ "$expsize" -ne "$relsize" ] || [ "$expchecksum" != "$relchecksum" ]; then + return 1 +@@ -510,9 +514,9 @@ + local i= + if [ "$normi" != "" ]; then + i="$normi" +- elif [ -x /bin/bunzip2 ] && [ "$bz2i" != "" ]; then ++ elif [ -x /bin/bunzip2 -o -x /usr/bin/bunzip2 ] && [ "$bz2i" != "" ]; then + i="$bz2i" +- elif [ -x /bin/gunzip ] && [ "$gzi" != "" ]; then ++ elif [ -x /bin/gunzip -o -x /usr/bin/gunzip ] && [ "$gzi" != "" ]; then + i="$gzi" + fi + if [ "$i" != "" ]; then +@@ -538,11 +542,11 @@ + ext="$ext $normi ." + i="$normi" + fi +- if [ -x /bin/bunzip2 ] && [ "$bz2i" != "" ]; then ++ if [ -x /bin/bunzip2 -o -x /usr/bin/bunzip2 ] && [ "$bz2i" != "" ]; then + ext="$ext $bz2i bz2" + i="${i:-$bz2i}" + fi +- if [ -x /bin/gunzip ] && [ "$gzi" != "" ]; then ++ if [ -x /bin/gunzip -o -x /usr/bin/gunzip ] && [ "$gzi" != "" ]; then + ext="$ext $gzi gz" + i="${i:-$gzi}" + fi +@@ -676,7 +680,7 @@ + for c in $COMPONENTS; do + local path="dists/$SUITE/$c/binary-$ARCH/Packages" + local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m" "$path")" +- if [ -x /bin/gunzip ] && get "$m/${path}.gz" "${pkgdest}.gz"; then ++ if [ -x /bin/gunzip -o -x /usr/bin/gunzip ] && get "$m/${path}.gz" "${pkgdest}.gz"; then + rm -f "$pkgdest" + gunzip "$pkgdest.gz" + elif get "$m/$path" "$pkgdest"; then diff --git a/sysutils/debootstrap/pkg-descr b/sysutils/debootstrap/pkg-descr new file mode 100644 index 000000000000..e85a1f4f29fb --- /dev/null +++ b/sysutils/debootstrap/pkg-descr @@ -0,0 +1,9 @@ +debootstrap is a tool which will install a Debian base system into +a subdirectory of another, already installed system. It doesn't require an +installation CD, just access to a Debian repository. + +In FreeBSD, you can use debootstrap to install Debian GNU/kFreeBSD into +a subdirectory of your existing FreeBSD installation (i386 or amd64) +and then run Debian GNU/kFreeBSD (i386 or amd64) in a jail or chroot. + +WWW: http://wiki.debian.org/Debootstrap diff --git a/sysutils/debootstrap/pkg-plist b/sysutils/debootstrap/pkg-plist new file mode 100644 index 000000000000..ced246fc883f --- /dev/null +++ b/sysutils/debootstrap/pkg-plist @@ -0,0 +1,35 @@ +sbin/debootstrap +share/debootstrap/functions +share/debootstrap/scripts/sarge +share/debootstrap/scripts/sid +share/debootstrap/scripts/hoary.buildd +share/debootstrap/scripts/hardy +share/debootstrap/scripts/intrepid +share/debootstrap/scripts/etch +share/debootstrap/scripts/woody +share/debootstrap/scripts/sarge.buildd +share/debootstrap/scripts/unstable +share/debootstrap/scripts/karmic +share/debootstrap/scripts/etch-m68k +share/debootstrap/scripts/hoary +share/debootstrap/scripts/potato +share/debootstrap/scripts/warty.buildd +share/debootstrap/scripts/lenny +share/debootstrap/scripts/maverick +share/debootstrap/scripts/stable +share/debootstrap/scripts/dapper +share/debootstrap/scripts/testing +share/debootstrap/scripts/feisty +share/debootstrap/scripts/sarge.fakechroot +share/debootstrap/scripts/breezy +share/debootstrap/scripts/squeeze +share/debootstrap/scripts/warty +share/debootstrap/scripts/jaunty +share/debootstrap/scripts/gutsy +share/debootstrap/scripts/lucid +share/debootstrap/scripts/natty +share/debootstrap/scripts/woody.buildd +share/debootstrap/scripts/edgy +share/debootstrap/scripts/wheezy +@dirrm share/debootstrap/scripts +@dirrm share/debootstrap |