blob: 6ca2307b8b47d6ce81ecf3a8c03cf243c8883d4b (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/modplugxmms/modplugxmms-2.03.ebuild,v 1.7 2004/06/24 23:32:44 agriffis Exp $
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="XMMS plugin for MOD-like music files"
SRC_URI="mirror://sourceforge/modplug-xmms/${P}.tar.gz"
HOMEPAGE="http://modplug-xmms.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND=">=media-sound/xmms-1.2.5-r1"
src_install () {
einstall \
plugindir=${D}/usr/lib/xmms/Input || die
dodoc AUTHORS COPYING ChangeLog INSTALL README TODO
}
pkg_postinst() {
einfo "Open XMMS, go to options->preferences->I/O plugins."
einfo "If \"MikMod Player\" is listed under \"Input Plugins\", click on"
einfo "it and UNcheck \"Enable Plugin\"."
einfo "(If you don't disable MikMod, it will play mods instead of ModPlug.)"
}
|