blob: fc6884c639f1df45b3b29804fa7ecdebab6d7c1e (
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
30
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi-scripts/libquvi-scripts-0.9.20131130.ebuild,v 1.5 2014/03/04 20:41:24 vincent Exp $
EAPI=5
DESCRIPTION="Embedded lua scripts for libquvi"
HOMEPAGE="http://quvi.sourceforge.net/"
SRC_URI="mirror://sourceforge/quvi/${P}.tar.xz"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm ~hppa ~mips x86"
IUSE="offensive"
RDEPEND=">=dev-lua/LuaBitOp-1.0.1
>=dev-lua/luaexpat-1.2.0
>=dev-lua/luajson-1.1.1
>=dev-lua/luasocket-2.0.2"
DEPEND="app-arch/xz-utils
virtual/pkgconfig"
# tests fetch data from live websites
RESTRICT="test"
src_configure() {
econf \
$(use_with offensive nsfw) \
--with-manual
}
|