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 /media-sound/mpdas
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 'media-sound/mpdas')
-rw-r--r--media-sound/mpdas/Manifest3
-rw-r--r--media-sound/mpdas/files/mpdas.init22
-rw-r--r--media-sound/mpdas/metadata.xml9
-rw-r--r--media-sound/mpdas/mpdas-0.3.0-r1.ebuild38
-rw-r--r--media-sound/mpdas/mpdas-0.3.1.ebuild37
-rw-r--r--media-sound/mpdas/mpdas-0.3.2.ebuild37
6 files changed, 146 insertions, 0 deletions
diff --git a/media-sound/mpdas/Manifest b/media-sound/mpdas/Manifest
new file mode 100644
index 000000000000..2830db0c12bb
--- /dev/null
+++ b/media-sound/mpdas/Manifest
@@ -0,0 +1,3 @@
+DIST mpdas-0.3.0.tar.bz2 19219 SHA256 f6542196fa8dfba7cdcc07a95b8df71d03b40a436ea76bcc999f13185d262573 SHA512 782cae5d8a0707656397edd15a299b250129bc2e5e788a5788d06c7d034e56edc105e5ee6669b7bbecb00bd840fd426cf84c0f41502afd50d645cf7b4504784c WHIRLPOOL 083328bff77e935d30f1c97ca55d4081147707a4051ccf6649eb8166dc7a2db291dd36a5f5f0df6a583e542cec54a01a28dfedc04215cf825568960007d76cdb
+DIST mpdas-0.3.1.tar.bz2 13472 SHA256 eaf01afbeac02e6a2023fd05be81042eee94b30abd82667f2220b06955f52ab9 SHA512 26f1e91f6787cd937550e48c04f97a326145ef5b5ac017da86089cc18150f6123e4e233f1936e67240f0125dab0526a86855f2d990b07131c7c52649e2cfe939 WHIRLPOOL 7ff0cce030e5dbb8b792d2a2481051aa5ff376cd8f6b3cd3e75eae82181d1a8c0cd53f17ce5207f74ae9abf324d4e0a989603e5f4c2055783f985bfcd160924d
+DIST mpdas-0.3.2.tar.gz 14143 SHA256 145f85b29f7bd0b1b83d85c887fcf233ff463b31abb4767e7e289e1f9e7abb62 SHA512 b7bc6a78d9a531684a0b59d6e5b6b9701948d10650f567bfebd7eb408d4f22b8c5aed4ddd9b08968aca828ae59b22404bb19c552fc25cf50cdf8adbd7cd77771 WHIRLPOOL c3e7de844bc0ed06a9ef89bbe5b02f076cfb13883196811640f9d346fe31c4dc86567c032ce738df155858ae6254b37044abab703373eb5daa510939d86c8abf
diff --git a/media-sound/mpdas/files/mpdas.init b/media-sound/mpdas/files/mpdas.init
new file mode 100644
index 000000000000..96ebd6101705
--- /dev/null
+++ b/media-sound/mpdas/files/mpdas.init
@@ -0,0 +1,22 @@
+#!/sbin/runscript
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+depend() {
+ use net mpd
+}
+
+start() {
+ ebegin "Starting mpdas"
+ start-stop-daemon --background --start --exec /usr/bin/mpdas \
+ --make-pidfile --pidfile /run/mpdas.pid
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping mpdas"
+ start-stop-daemon --stop --exec /usr/bin/mpdas \
+ --pidfile /run/mpdas.pid
+ eend $?
+}
diff --git a/media-sound/mpdas/metadata.xml b/media-sound/mpdas/metadata.xml
new file mode 100644
index 000000000000..159a30662957
--- /dev/null
+++ b/media-sound/mpdas/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sound</herd>
+ <maintainer>
+ <email>angelos@gentoo.org</email>
+ <name>Christoph Mende</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/media-sound/mpdas/mpdas-0.3.0-r1.ebuild b/media-sound/mpdas/mpdas-0.3.0-r1.ebuild
new file mode 100644
index 000000000000..4d2c873a6f85
--- /dev/null
+++ b/media-sound/mpdas/mpdas-0.3.0-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit toolchain-funcs
+
+DESCRIPTION="An AudioScrobbler client for MPD written in C++"
+HOMEPAGE="http://50hz.ws/mpdas/"
+SRC_URI="http://50hz.ws/${PN}/${P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+RDEPEND="media-libs/libmpd
+ net-misc/curl"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_compile() {
+ tc-export CXX
+ emake CONFIG="/etc"
+}
+
+src_install() {
+ dobin ${PN}
+ doman ${PN}.1
+ newinitd "${FILESDIR}/${PN}.init" ${PN}
+ dodoc ChangeLog mpdasrc.example README
+}
+
+pkg_postinst() {
+ elog "For further configuration help consult the README in"
+ elog "${EPREFIX}/usr/share/doc/${PF}"
+}
diff --git a/media-sound/mpdas/mpdas-0.3.1.ebuild b/media-sound/mpdas/mpdas-0.3.1.ebuild
new file mode 100644
index 000000000000..4092d2536e10
--- /dev/null
+++ b/media-sound/mpdas/mpdas-0.3.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit toolchain-funcs
+
+DESCRIPTION="An AudioScrobbler client for MPD written in C++"
+HOMEPAGE="http://50hz.ws/mpdas/"
+SRC_URI="http://50hz.ws/${PN}/${P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-libs/libmpd
+ net-misc/curl"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_compile() {
+ tc-export CXX
+ emake CONFIG="/etc"
+}
+
+src_install() {
+ dobin ${PN}
+ doman ${PN}.1
+ newinitd "${FILESDIR}/${PN}.init" ${PN}
+ dodoc mpdasrc.example README
+}
+
+pkg_postinst() {
+ elog "For further configuration help consult the README in"
+ elog "${EPREFIX}/usr/share/doc/${PF}"
+}
diff --git a/media-sound/mpdas/mpdas-0.3.2.ebuild b/media-sound/mpdas/mpdas-0.3.2.ebuild
new file mode 100644
index 000000000000..e146896063f5
--- /dev/null
+++ b/media-sound/mpdas/mpdas-0.3.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit toolchain-funcs
+
+DESCRIPTION="An AudioScrobbler client for MPD written in C++"
+HOMEPAGE="http://50hz.ws/mpdas/"
+SRC_URI="http://50hz.ws/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+RDEPEND="media-libs/libmpd
+ net-misc/curl"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_compile() {
+ tc-export CXX
+ emake CONFIG="/etc"
+}
+
+src_install() {
+ dobin ${PN}
+ doman ${PN}.1
+ newinitd "${FILESDIR}/${PN}.init" ${PN}
+ dodoc mpdasrc.example README
+}
+
+pkg_postinst() {
+ elog "For further configuration help consult the README in"
+ elog "${EPREFIX}/usr/share/doc/${PF}"
+}