blob: c658f6ebf788310b540e2535d78fbd4cb2f5cb2b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="LUA 5.0 plugins for Verlihub"
HOMEPAGE="http://www.verlihub-project.org"
SRC_URI="mirror://sourceforge/verlihub/${PN}-${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 x86-fbsd x86"
DEPEND="net-p2p/verlihub
dev-lang/lua"
S=${WORKDIR}/lua
src_unpack() {
unpack "${PN}-${PV}.tar.gz"
cd "${S}"
}
src_compile() {
#econf || die
./configure
emake || die "Make failed for problems or bugs please visit http://forums.verlihub-project.org/"
}
src_install() {
make DESTDIR=${D} install || die
}
pkg_postinst() {
einfo "LUA 5.1.x is now installed, please run it using !onplug lua or!plugin /usr/local/lib/liblua_pi.so"
ewarn "Do NOT report bugs to Gentoo's bugzilla"
einfo "Please report all bugs to http://forums.verlihubproject.org"
einfo "Verlihub-project team"
}
|