From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 19EA01381F3 for ; Fri, 14 Jun 2013 21:46:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D60EE095A; Fri, 14 Jun 2013 21:46:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7B8CE095A for ; Fri, 14 Jun 2013 21:46:10 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ECB9333E4B6 for ; Fri, 14 Jun 2013 21:46:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9A7C5E5458 for ; Fri, 14 Jun 2013 21:46:08 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1371245294.c7baf3f20ce85c6b2f70b81dcb1b9b680f1b5d4f.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: sys-apps/apt/ X-VCS-Repository: proj/betagarden X-VCS-Files: sys-apps/apt/apt-0.9.8.2.ebuild X-VCS-Directories: sys-apps/apt/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: c7baf3f20ce85c6b2f70b81dcb1b9b680f1b5d4f X-VCS-Branch: master Date: Fri, 14 Jun 2013 21:46:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c0287860-7d3b-48fd-b8b1-689dca690f7d X-Archives-Hash: 5229a79829f8ccd6f044c1141f192e8f commit: c7baf3f20ce85c6b2f70b81dcb1b9b680f1b5d4f Author: Sebastian Pipping pipping org> AuthorDate: Fri Jun 14 21:28:14 2013 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Fri Jun 14 21:28:14 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=c7baf3f2 sys-apps/apt: 0.9.8.2 --- sys-apps/apt/apt-0.9.8.2.ebuild | 51 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/sys-apps/apt/apt-0.9.8.2.ebuild b/sys-apps/apt/apt-0.9.8.2.ebuild new file mode 100644 index 0000000..68d390d --- /dev/null +++ b/sys-apps/apt/apt-0.9.8.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" + +inherit multilib + +DESCRIPTION="Package manager known from the Debian Project" +HOMEPAGE="http://packages.debian.org/sid/apt" +SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="" # ~amd64 ~x86 +IUSE="" + +DEPEND="sys-devel/libtool" +RDEPEND="sys-apps/debian-archive-keyring" + +src_prepare() { + # Replace dead symlinks + for i in config.{guess,sub} ; do + rm buildlib/${i} || die + ln -s /usr/share/libtool/config/${i} buildlib/${i} || die + done + + # Prevent any doc compliation (due to current errors) TODO! + echo -e '%:\n\ttouch $@' > doc/makefile +} + +src_install() { + # Imitate Debian .dir file handling + for i in debian/*.dirs; do + sed "s|^|${D}/|" < "${i}" | xargs mkdir -p + done + + # Imitate Debian .install file handling + for i in debian/*.install{,.in}; do + while read line ; do + if [[ "${line}" == *' '* ]]; then + line="$(sed "s|/lib/@DEB_HOST_MULTIARCH@/|/$(get_libdir)/|" <<<"${line}")" + mkdir -p "$(sed "s|^.* |${D}/|" <<<"${line}"))" + install -v -D $(sed "s| | ${D}/|" <<<"${line}") + else + mkdir -p $(dirname ${line}) # potentially several directories + cp --parents -v ${line} "${D}"/ + fi + done < "${i}" + done +}