diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-cdr/disc-cover | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-cdr/disc-cover')
-rw-r--r-- | app-cdr/disc-cover/Manifest | 1 | ||||
-rw-r--r-- | app-cdr/disc-cover/disc-cover-1.5.6.ebuild | 30 | ||||
-rw-r--r-- | app-cdr/disc-cover/metadata.xml | 15 |
3 files changed, 46 insertions, 0 deletions
diff --git a/app-cdr/disc-cover/Manifest b/app-cdr/disc-cover/Manifest new file mode 100644 index 000000000000..89ebfb0acd08 --- /dev/null +++ b/app-cdr/disc-cover/Manifest @@ -0,0 +1 @@ +DIST disc-cover-1.5.6.tar.gz 52749 SHA256 037a181e3ee76f4b25d9a391c1d32481d6f0d5049b53d623c98bc0dbcd519d22 SHA512 ac00eeda8da63312afa16fdd4d12d160c651dc44aa44e769b92cad1dd9ddb10f123e8fc64e14853302455047ec86582fa9de423ccacd32912a078d2a21cb0d8c WHIRLPOOL 5ccb7b670a759ef57fc664bb15a97505bf07389063502fd0c6800b2b42d6cb9b3bd65d82a653b4d34c43dcb7e26446656b73698970c42b4128a98a1a745e0fa8 diff --git a/app-cdr/disc-cover/disc-cover-1.5.6.ebuild b/app-cdr/disc-cover/disc-cover-1.5.6.ebuild new file mode 100644 index 000000000000..b572b4ed184d --- /dev/null +++ b/app-cdr/disc-cover/disc-cover-1.5.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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="cdrom" + +SLOT="0" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + virtual/latex-base + cdrom? ( dev-perl/Audio-CD-disc-cover )" + +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/* +} diff --git a/app-cdr/disc-cover/metadata.xml b/app-cdr/disc-cover/metadata.xml new file mode 100644 index 000000000000..e9db3533b7bf --- /dev/null +++ b/app-cdr/disc-cover/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>media-optical</herd> + <longdescription> + This is the disc-cover CLI only. For the web application, + see www-apps/disc-cover. These two packages are tightly + bound by the fact that they come from the same source package. + That's why the web application ebuild is manually slotted to 0. + </longdescription> + <use> + <flag name='cdrom'>Enable audio CD support. This is not needed to make + www-apps/disc-cover work.</flag> + </use> +</pkgmetadata> |