blob: 65199c1fd71b9d2c31847fb4c817c31abeb64d82 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_musicindex/mod_musicindex-1.2.5.ebuild,v 1.1 2009/09/18 15:57:59 hollow Exp $
EAPI="2"
inherit apache-module
DESCRIPTION="mod_musicindex allows nice displaying of directories containing music files"
HOMEPAGE="http://www.parisc-linux.org/~varenet/musicindex/"
SRC_URI="http://www.parisc-linux.org/~varenet/musicindex/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+mp3 +mp4 +flac +vorbis"
DEPEND="mp3? ( media-libs/libmad )
mp4? ( media-libs/libmp4v2 )
flac? ( media-libs/flac )
vorbis? ( media-libs/liboggz )"
RDEPEND="${DEPENDS}"
APACHE2_MOD_CONF="50_${PN}"
APACHE2_MOD_DEFINE="MUSICINDEX"
DOCFILES="AUTHORS BUGS ChangeLog README UPGRADING"
need_apache2
src_configure() {
econf \
$(use_enable mp3) \
$(use_enable mp4) \
$(use_enable flac) \
$(use_enable vorbis) \
|| die "econf failed"
}
src_compile() {
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake failed"
apache-module_src_install
}
|