DragonFly BSD
DragonFly users List (threaded) for 2010-08
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

Re: Abnormal termination of greeter - cause is libX11 version


From: Pierre Abbat <phma@xxxxxxxxxxxxx>
Date: Mon, 2 Aug 2010 21:32:36 -0400

On Monday 02 August 2010 17:48:23 Sascha Wildner wrote:
> Try "git branch -a".

That appears to have worked. Here's my modified Makefile.

Pierre
-- 
When a barnacle settles down, its brain disintegrates.
Já não percebe nada, já não percebe nada.
# Makefile.pkgsrc - installed as /usr/pkgsrc/Makefile
#
# Provides simple targets to download and maintain /usr/pkgsrc.
#
# $DragonFly: src/etc/Makefile.usr,v 1.8 2008/09/03 10:38:55 hasso Exp $

pkgsrcver = pkgsrc-2010Q1

help all:
	@echo "HELP:"
	@echo ""
. if exists(${.CURDIR}/pkgsrc/.git)
. if exists(${.CURDIR}/pkgsrc/Makefile)
	@echo "    make pkgsrc-update       - update your pkgsrc repo from the net"
. else
	@echo "    make pkgsrc-checkout     - initial checkout of your pre-packaged"
	@echo "                               pkgsrc repo."
	@echo "    make pkgsrc-update       - update your pkgsrc repo from the net"
	@echo "                               after the initial checkout."
. endif
. else
	@echo "    make pkgsrc-create       - fetch initial pkgsrc repo from the net"
	@echo "    make pkgsrc-update       - update your pkgsrc repo from the net"
. endif
	@echo ""
. if exists(${.CURDIR}/src/.git)
. if exists(${.CURDIR}/src/Makefile)
	@echo "    make src-update          - update your src repo from the net"
. else
	@echo "    make src-checkout        - initial checkout of your pre-packaged src repo"
	@echo "    make src-update          - update your src repo from the net"
	@echo "                               after the initial checkout."
. endif
. else
	@echo "    make src-create          - fetch initial src repo from the net"
	@echo "    make src-update          - update your src repo from the net"
. endif
	@echo ""
. if exists(${.CURDIR}/src-sys.tgz)
	@echo "    make release-sys-extract - extract the pre-packaged sys-only sources"
. endif
	@echo ""
	@echo "If automating please feel free to run git pull's from cron."
	@echo "We prefer once a day but you can run them more often if you"
	@echo "desire."
	@echo ""
	@echo "If you have a repo previously maintained via CVS you should"
	@echo "rm -rf it (save any local modifications) and then use the"
	@echo "make src-create and/or make pkgsrc-create to set up the initial"
	@echo "git repo."

pkgsrc-create:
	@echo "If problems occur you may have to rm -rf pkgsrc and try again."
	@echo ""
	mkdir -p ${.CURDIR}/pkgsrc
	cd ${.CURDIR}/pkgsrc && git init
	cd ${.CURDIR}/pkgsrc && \
		git remote add origin git://git.dragonflybsd.org/pkgsrc.git
	cd ${.CURDIR}/pkgsrc && git fetch origin
	cd ${.CURDIR}/pkgsrc && git branch $(pkgsrcver) origin/$(pkgsrcver)
	cd ${.CURDIR}/pkgsrc && git checkout $(pkgsrcver)
	cd ${.CURDIR}/pkgsrc && git pull

pkgsrc-checkout:
	cd ${.CURDIR}/pkgsrc && git checkout $(pkgsrcver)

pkgsrc-update:
	cd ${.CURDIR}/pkgsrc && git pull

src-create:
	@echo "If problems occur you may have to rm -rf src and try again."
	@echo ""
	mkdir -p ${.CURDIR}/src
	cd ${.CURDIR}/src && git init
	cd ${.CURDIR}/src && \
		git remote add origin git://git.dragonflybsd.org/dragonfly.git
	cd ${.CURDIR}/src && git fetch origin
	cd ${.CURDIR}/src && git branch master origin/master
	cd ${.CURDIR}/src && git checkout master
	cd ${.CURDIR}/src && git pull

src-checkout:
	cd ${.CURDIR}/src && git checkout master

src-update:
	cd ${.CURDIR}/src && git pull

release-sys-extract:
	cd ${.CURDIR} && tar xvpzf src-sys.tgz



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]