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/burncenter | |
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/burncenter')
-rw-r--r-- | app-cdr/burncenter/Manifest | 1 | ||||
-rw-r--r-- | app-cdr/burncenter/burncenter-3.2.1.ebuild | 35 | ||||
-rw-r--r-- | app-cdr/burncenter/metadata.xml | 10 |
3 files changed, 46 insertions, 0 deletions
diff --git a/app-cdr/burncenter/Manifest b/app-cdr/burncenter/Manifest new file mode 100644 index 000000000000..e4375bbb3acf --- /dev/null +++ b/app-cdr/burncenter/Manifest @@ -0,0 +1 @@ +DIST burncenter-3.2.1.tar.gz 15630 SHA256 87d784db99c3e9eb4d3e5b5612d81116e035a348680f22263c0db65fe10ba20a SHA512 61c5c8f520acba1138bb039127439e7919e9d8dc77e39bb547e0fb6d25b595cfd23cca77b0040293ced494d13f02a1cf12fb3be97ae1ed7b73b7b22fd1ed2cce WHIRLPOOL 9dd968ae85af99879471a5fd8a19248e66f193c635843a6c42af961cd807a87281df6ab83dfd1f81397c3c30199c19e00824deebd6c0096f572d73f8f6f40f7f diff --git a/app-cdr/burncenter/burncenter-3.2.1.ebuild b/app-cdr/burncenter/burncenter-3.2.1.ebuild new file mode 100644 index 000000000000..c93b43073859 --- /dev/null +++ b/app-cdr/burncenter/burncenter-3.2.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="A Perl module and a collection of easy-to-use text based interfaces to the UNIX CD burning tools" +HOMEPAGE="http://alx14.free.fr/burncenter/" +SRC_URI="http://alx14.free.fr/burncenter/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ppc x86" +IUSE="vorbis" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + virtual/cdrtools + media-sound/mpg123 + vorbis? ( + >=media-sound/vorbis-tools-1.0_rc2 + >=media-sound/oggtst-0.0 )" + +src_compile() { + # Nothing to do. + true +} + +src_install() { + local modulePath=$(perl -V:installprivlib | perl -p -e "s/^.*?='(.*?)';/\$1/") + dobin burncenter + dobin bcbatch + insinto ${modulePath} + doins Burncenter.pm + + dodoc DEVELOP-FRONTENDS README TODO +} diff --git a/app-cdr/burncenter/metadata.xml b/app-cdr/burncenter/metadata.xml new file mode 100644 index 000000000000..39c34fb79ef0 --- /dev/null +++ b/app-cdr/burncenter/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>media-optical</herd> +<longdescription> + Burncenter is a very easy-to-use text-based interface to cd-burning tools + under UNIX (cdrecord, cdda2wav, mkisofs). Burncenter 3.x is a Perl module + (Burncenter.pm) and a collection of frontends for this module. +</longdescription> +</pkgmetadata> |