forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-sound/mpdas: version bump to 0.4.0
Package-Manager: portage-2.2.20.1
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
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 | ||
DIST mpdas-0.4.0.tar.gz 15113 SHA256 7b30a9cde19175bddb6b898a78d225242330dbceaca4932f87c5a016141af650 SHA512 0e5643cc2c690b05477b64e8f1761332d53e17809d61ec5ec17ab41f4f0b7b2d6b4013d3b946d3289f02f470b4afef1df8206bd0fab61345cd8431bb2c66742f WHIRLPOOL ca4c13d6d6d75d64d5b43571c22968924510f7302c2bc44264c923dedfcbe010241684262b4befdbc6689fbb17b72aff7ea2a47115664c2e9f0388070d1a27ae |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}" | ||
} |