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 1F74658973 for ; Sat, 30 Jan 2016 15:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5369921C002; Sat, 30 Jan 2016 15:26:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 043EC21C002 for ; Sat, 30 Jan 2016 15:26:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CE150340817 for ; Sat, 30 Jan 2016 15:26:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8554C0 for ; Sat, 30 Jan 2016 15:26:32 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1454167586.8987d5ea887bb5b238ab2dd6bc426572b8059aca.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/disc-cover/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild X-VCS-Directories: app-cdr/disc-cover/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 8987d5ea887bb5b238ab2dd6bc426572b8059aca X-VCS-Branch: master Date: Sat, 30 Jan 2016 15:26:32 +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: ebe31363-7736-46d3-bbb5-3b4c7d579d2a X-Archives-Hash: ff3961fea4bb781c83a37999dda1fc9a commit: 8987d5ea887bb5b238ab2dd6bc426572b8059aca Author: Pacho Ramos gentoo org> AuthorDate: Sat Jan 30 15:23:54 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Jan 30 15:26:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8987d5ea app-cdr/disc-cover: Fix dependencies (#308851 by fabian) Package-Manager: portage-2.2.27 app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild b/app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild new file mode 100644 index 0000000..6e03347 --- /dev/null +++ b/app-cdr/disc-cover/disc-cover-1.5.6-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Creates CD-Covers via LaTeX by fetching cd-info from freedb.org or local file" +HOMEPAGE="http://www.vanhemert.co.uk/disc-cover.html" +SRC_URI="http://www.vanhemert.co.uk/files/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" +SLOT="0" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + dev-perl/Audio-CD-disc-cover + virtual/latex-base +" + +src_compile() { + pod2man disc-cover > disc-cover.1 || die +} + +src_install() { + dobin disc-cover + dodoc AUTHORS CHANGELOG TODO + doman disc-cover.1 + insinto /usr/share/${PN}/templates + doins templates/* +}