#!/bin/bash
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-src/portage/bin/dolib,v 1.8 2004/10/10 10:07:20 carpaski Exp $

if [ -z "${CONF_LIBDIR}" ]; then
	# we need this to default to lib so that things dont break
	CONF_LIBDIR="lib"
fi
libdir="${D}${DESTTREE}/${CONF_LIBDIR}"

if [ ${#} -lt 1 ] ; then
	echo "${0}: at least one argument needed"
	exit 1
fi
if [ ! -d "${libdir}" ] ; then
	install -d "${libdir}"
fi

for x in "$@" ; do
	if [ -e "${x}" ] ; then
		if [ ! -L "${x}" ] ; then
			install ${LIBOPTIONS} "${x}" "${libdir}"
		else
			ln -s "$(readlink "${x}")" "${libdir}/${x}"
		fi
	else
		echo "${0}: ${x} does not exist"
	fi
done
