blob: a2176930381582358f738dd3e40eb1e0ee514898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A tool for calculating ogg-vorbis playing time"
HOMEPAGE="http://gnometoaster.rulez.org/"
SRC_URI="mirror://gentoo/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 hppa ppc ppc64 sparc x86"
RDEPEND="
media-libs/libao:=
media-libs/libvorbis:="
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}"
src_prepare() {
default
mv configure.{in,ac} || die
# upstream didn't use make dist to create the tarball,
# there are unbound symlinks inside it.
eautoreconf
}
|