View | Details | Raw Unified | Return to bug 122090
Collapse All | Expand All

(-)/usr/home/akosela/downloads/bpkg-1.7.3/Makefile (-2 / +2 lines)
Lines 2-14 Link Here
2
# Date created:				24 June 2007
2
# Date created:				24 June 2007
3
# Whom:					Andy Kosela <andy.kosela@gmail.com>
3
# Whom:					Andy Kosela <andy.kosela@gmail.com>
4
#
4
#
5
# $FreeBSD: ports/ports-mgmt/bpkg/Makefile,v 1.12 2008/03/03 16:41:38 bsam Exp $
5
# $FreeBSD$
6
#
6
#
7
# This port is self contained in the files directory.
7
# This port is self contained in the files directory.
8
#
8
#
9
9
10
PORTNAME=	bpkg
10
PORTNAME=	bpkg
11
PORTVERSION=	1.7.2
11
PORTVERSION=	1.7.3
12
CATEGORIES=	ports-mgmt
12
CATEGORIES=	ports-mgmt
13
MASTER_SITES=	# none
13
MASTER_SITES=	# none
14
DISTFILES=	# none
14
DISTFILES=	# none
(-)/usr/home/akosela/downloads/bpkg-1.7.3/files/bpkg.sh.in (-4 / +3 lines)
Lines 1-5 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
# $FreeBSD: ports/ports-mgmt/bpkg/files/bpkg.sh.in,v 1.11 2008/03/03 16:41:38 bsam Exp $
2
# $FreeBSD$
3
3
4
#  Copyright (c) 2007 Andy Kosela <andy.kosela@gmail.com>
4
#  Copyright (c) 2007 Andy Kosela <andy.kosela@gmail.com>
5
#  All rights reserved.
5
#  All rights reserved.
Lines 701-709 Link Here
701
701
702
	pkg_install=`pkg_info -xoQ $pkg | cut -d: -f1 | awk '{ORS=" " ; print}'`
702
	pkg_install=`pkg_info -xoQ $pkg | cut -d: -f1 | awk '{ORS=" " ; print}'`
703
	echo "Creating backup package(s) "$pkg_install"in /usr/obj/"
703
	echo "Creating backup package(s) "$pkg_install"in /usr/obj/"
704
	for e in `pkg_info -xoq $pkg`; do
704
	e=`pkg_info -xoQ $pkg | cut -d: -f1`
705
		cd /usr/obj/ && pkg_create -xb $e
705
	cd /usr/obj/ && pkg_create -xb $e 1>/dev/null 2>&1
706
	done
707
	echo "Done."
706
	echo "Done."
708
	exit 0
707
	exit 0
709
}	
708
}	

Return to bug 122090