From 478ecb218807fe31fa270a7e1db32abacde37bab Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Wed, 8 Mar 2006 20:59:18 +0000 Subject: [PATCH] Update Makefiles to install genpkgindex svn path=/; revision=285 --- trunk/ChangeLog | 3 +++ trunk/Makefile | 4 ++-- trunk/src/genpkgindex/Makefile | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 trunk/src/genpkgindex/Makefile diff --git a/trunk/ChangeLog b/trunk/ChangeLog index 6f958b4..6dc6044 100644 --- a/trunk/ChangeLog +++ b/trunk/ChangeLog @@ -1,3 +1,6 @@ +2006-03-08 Paul Varner + * genpkgindex: Add binary package indexing utility. (Bug 82132) + 2006-03-01 Paul Varner * gentoolkit: Fix depends parsing to properly handle conjunction. (bug #123725). Thanks to tgl for the patch. diff --git a/trunk/Makefile b/trunk/Makefile index 19cc16b..2707c79 100644 --- a/trunk/Makefile +++ b/trunk/Makefile @@ -39,7 +39,7 @@ dist-gentoolkit-dev: dist-gentoolkit: mkdir -p release/gentoolkit-$(VERSION)$(RELEASE_TAG) rm -rf release/gentoolkit-$(VERSION)$(RELEASE_TAG)/ - for x in eclean equery etcat euse qpkg gentoolkit revdep-rebuild glsa-check; do \ + for x in eclean equery etcat euse qpkg gentoolkit revdep-rebuild glsa-check genpkgindex; do \ ( cd src/$$x ; make distdir=release/gentoolkit-$(VERSION)$(RELEASE_TAG) dist ) \ done cp Makefile AUTHORS README TODO COPYING NEWS ChangeLog release/gentoolkit-$(VERSION)$(RELEASE_TAG)/ @@ -65,7 +65,7 @@ install-gentoolkit: install -m 0644 AUTHORS ChangeLog COPYING NEWS README TODO $(docdir)/ install -m 0644 src/99gentoolkit-env $(sysconfdir)/env.d/ - for x in eclean equery etcat euse qpkg gentoolkit revdep-rebuild glsa-check ; do \ + for x in eclean equery etcat euse qpkg gentoolkit revdep-rebuild glsa-check genpkgindex; do \ ( cd src/$$x ; make DESTDIR=$(DESTDIR) install ) \ done diff --git a/trunk/src/genpkgindex/Makefile b/trunk/src/genpkgindex/Makefile new file mode 100644 index 0000000..3f15231 --- /dev/null +++ b/trunk/src/genpkgindex/Makefile @@ -0,0 +1,18 @@ +# Copyright 2004 Karl Trygve Kalleberg +# Copyright 2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# +# $Header$ + +include ../../makedefs.mak + +all: + echo "ABWONG (AB-wong vb.) To bounce cheerfully on a bed." + +dist: + mkdir -p ../../$(distdir)/src/genpkgindex + cp Makefile genpkgindex ../../$(distdir)/src/genpkgindex/ + +install: + install -d $(DESTDIR)/usr/lib/gentoolkit/bin/ + install -m 0755 genpkgindex $(DESTDIR)/usr/lib/gentoolkit/bin/ -- 2.26.2