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/gogglesmm: initial commit
Package-Manager: portage-2.3.1
- Loading branch information
Showing
3 changed files
with
60 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST gogglesmm-1.1.0.tar.gz 1396485 SHA256 60d2f1dc0cd1d5f7e5d50d7ca1423091f463c35b573c6b2226be34060513b916 SHA512 6d78fdd23167c2ddbb24c10c6639fab68643c4cf5f621ee650f7ab243bcff50732aa306279a7869b51e7242908c72cd0e7e379317138d2bf8683f094e355f3cd WHIRLPOOL 768cbe2f6d585de693c787396ce85080f2f75008a33c63a322e1b1eddf7d55ac0e0e66c71e6583ffc63df34b5776c016bf9d4842286db79724458257a11fd9d2 |
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,44 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit cmake-utils | ||
|
||
DESCRIPTION="Fast and light music player" | ||
HOMEPAGE="http://gogglesmm.github.io/" | ||
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="+dbus +flac +mad +vorbis +ogg +opus +aac +pulseaudio +opengl nls" | ||
|
||
RDEPEND="x11-libs/fox:= | ||
x11-libs/libSM | ||
x11-libs/libICE | ||
dev-db/sqlite | ||
media-libs/taglib | ||
dev-libs/expat | ||
dev-libs/libgcrypt:= | ||
dbus? ( sys-apps/dbus ) | ||
flac? ( media-libs/flac ) | ||
mad? ( media-libs/libmad ) | ||
vorbis? ( media-libs/libvorbis ) | ||
ogg? ( media-libs/libogg ) | ||
opus? ( media-libs/opus ) | ||
aac? ( media-libs/faad2 ) | ||
pulseaudio? ( media-sound/pulseaudio ) | ||
opengl? ( media-libs/libepoxy virtual/glu )" | ||
DEPEND="dev-util/cmake ${RDEPEND}" | ||
|
||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DWITH_DBUS="$(usex dbus)" | ||
-DWITH_OPENGL="$(usex opengl)" | ||
-DWITH_NLS="$(usex nls)" | ||
) | ||
cmake-utils_src_configure | ||
} |
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,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Jason A. Donenfeld</name> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo Sound project</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">gogglesmm/gogglesmm</remote-id> | ||
</upstream> | ||
</pkgmetadata> |