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 /media-sound/retrovol | |
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 'media-sound/retrovol')
-rw-r--r-- | media-sound/retrovol/Manifest | 1 | ||||
-rw-r--r-- | media-sound/retrovol/metadata.xml | 5 | ||||
-rw-r--r-- | media-sound/retrovol/retrovol-0.12.ebuild | 42 |
3 files changed, 48 insertions, 0 deletions
diff --git a/media-sound/retrovol/Manifest b/media-sound/retrovol/Manifest new file mode 100644 index 000000000000..46867a260d5b --- /dev/null +++ b/media-sound/retrovol/Manifest @@ -0,0 +1 @@ +DIST retrovol-0.12.tar.gz 202171 SHA256 f0360f43aef692060fa8d37c7e4d4e8f1d997895a2a93ebcf9e0fbb555b0c66c SHA512 9e485c9c8d086f53c4b0a736bf09fc74d7393014bdffcd50146c288c536e77334dcb224e47b26bc3abe09a4b1694625ab30e126036a7550f46f33a9cec405e81 WHIRLPOOL d7e0a27c569dfa97e771c3b83c58bda64b6e77765cd0112da02da808d5a101eb7566c7259c04121062e0a01e3b9b9e097ebd84e57c2a9c3dd6b5912b5e45ff7d diff --git a/media-sound/retrovol/metadata.xml b/media-sound/retrovol/metadata.xml new file mode 100644 index 000000000000..3bf6bcfeb512 --- /dev/null +++ b/media-sound/retrovol/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>sound</herd> +</pkgmetadata> diff --git a/media-sound/retrovol/retrovol-0.12.ebuild b/media-sound/retrovol/retrovol-0.12.ebuild new file mode 100644 index 000000000000..379ff2411efb --- /dev/null +++ b/media-sound/retrovol/retrovol-0.12.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 +PLOCALES="de fr" +inherit base l10n + +DESCRIPTION="Systemtray volume mixer applet from PuppyLinux" +HOMEPAGE="http://puppylinux.org/wikka/Retrovol" +SRC_URI="http://www.browserloadofcoolness.com/software/puppy/PETget/${P}.tar.gz" + +LICENSE="GPL-3 LGPL-3 public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND="x11-libs/gtk+:2" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +DOCS="ChangeLog README TODO" + +src_prepare() { + # Check for locales added/removed from previous version + l10n_find_plocales_changes "po" "" '.po' + + base_src_prepare +} + +src_configure() { + econf $(use_enable nls) +} + +pkg_postinst() { + echo + elog "You can find a sample configuration file at" + elog " ${ROOT%/}/usr/share/retrovol/dot.retrovolrc" + elog "To customize, copy it to ~/.retrovolrc and edit it as you like" + echo +} |