summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-cdr/mybashburn
downloadgentoo-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/mybashburn')
-rw-r--r--app-cdr/mybashburn/Manifest1
-rw-r--r--app-cdr/mybashburn/metadata.xml11
-rw-r--r--app-cdr/mybashburn/mybashburn-1.0.2.ebuild35
3 files changed, 47 insertions, 0 deletions
diff --git a/app-cdr/mybashburn/Manifest b/app-cdr/mybashburn/Manifest
new file mode 100644
index 000000000000..e5a87d89629e
--- /dev/null
+++ b/app-cdr/mybashburn/Manifest
@@ -0,0 +1 @@
+DIST mybashburn-1.0.2.tar.bz2 75017 SHA256 058395728c295988c3d633f5a2a25224f25babea6117d4b35c26c7b7b93e0d6a SHA512 6bc8db179d10f7549838398098fd350e750655b3f2d9de91bec6806c4e30a066211209f86b6d805d909d9da94888b7483dd2b13ea2dbb44f83e0fb5f98f70bd3 WHIRLPOOL f5a2abe9f1b45a60b5399f5771d0f28fc7cc6f4b7fbfae5cf39a05fae40456527e8feb23a457dee355189df99dadbfe43bd7749676c12ad433fe6f323b15b111
diff --git a/app-cdr/mybashburn/metadata.xml b/app-cdr/mybashburn/metadata.xml
new file mode 100644
index 000000000000..e3262c6b7f10
--- /dev/null
+++ b/app-cdr/mybashburn/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>media-optical</herd>
+ <use>
+ <flag name="normalize">Add support for normalizing audio file volume levels</flag>
+ </use>
+ <upstream>
+ <remote-id type="sourceforge">mybashburn</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/app-cdr/mybashburn/mybashburn-1.0.2.ebuild b/app-cdr/mybashburn/mybashburn-1.0.2.ebuild
new file mode 100644
index 000000000000..ffd5ec38a35e
--- /dev/null
+++ b/app-cdr/mybashburn/mybashburn-1.0.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+DESCRIPTION="Command-line burning interface of data and music CDs and DVDs"
+HOMEPAGE="http://mybashburn.sourceforge.net/"
+SRC_URI="mirror://sourceforge/mybashburn/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="dvdr flac mp3 normalize vorbis"
+
+DEPEND=""
+RDEPEND="dev-util/dialog
+ app-cdr/cdrdao
+ app-cdr/cdrkit
+ virtual/eject
+ dvdr? ( app-cdr/dvd+rw-tools )
+ mp3? ( media-sound/lame
+ media-sound/mpg123 )
+ flac? ( media-libs/flac )
+ vorbis? ( media-sound/vorbis-tools )
+ normalize? ( media-sound/normalize )"
+
+RESTRICT="test"
+
+src_compile() {
+ sed -i 's/\/usr/usr/' "${S}"/Makefile
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed."
+ dodoc CREDITS ChangeLog FAQ HOWTO README TODO
+}