warvox: stable version 1.0.1, tested on x86

This commit is contained in:
Anton Bolshakov 2011-01-08 03:41:57 +00:00
parent cc2bcf5ff2
commit eec5bc07c9
2 changed files with 42 additions and 0 deletions

View file

@ -1,2 +1,4 @@
AUX warvox-launcher 156 RMD160 3e99950a8af854573de141c8fb4f291ea02e83ff SHA1 bca5eaa42818cda67f1c22d92acc3f76c8b828e7 SHA256 97fb87e9d6349850e7b4033f29b1a073a7ed8818936c10bad05e4ca1255c7257
DIST warvox-1.0.1.tar.gz 4334804 RMD160 cfae9029884bd1113c370785ff52478a727e0b2b SHA1 46ee5d922214c33a4e82d8335dbe01eacf3ec2cb SHA256 577a06c57fefc61e873547b2c105c41905ce219df56bfa96c353cf94c2b14d7a
EBUILD warvox-1.0.1.ebuild 1021 RMD160 230f3b73947682302a4c42dc65fb0d6b5467ec4b SHA1 158e1ded4497cd874e4f4c5f9bb860e85b6a2939 SHA256 cfe226fd5161223dc794e19c29fcff44680d00ca5fd608ce93f57cd96bf05810
EBUILD warvox-9999.ebuild 913 RMD160 0073769679a6ae7541210691a61bbce851dcbbc0 SHA1 35abeedb9217ac721f624a6bdeea7959e7fc1cda SHA256 887c6ed0d57128c19ea41050617dac8e9816562fa570287d494f58a85e0f2e0e

View file

@ -0,0 +1,40 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit eutils
DESCRIPTION="VoIP war dialing suite of tools"
HOMEPAGE="http://warvox.org"
SRC_URI="http://warvox.org/releases/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="http"
#build-essential libiaxclient-dev sox lame ruby ruby-dev rake rubygems libopenssl-ruby
#libreadline-ruby libsqlite3-ruby gnuplot
#DEPEND="net-libs/libiaxclient[video]
DEPEND="dev-ruby/rake"
RDEPEND="net-misc/iaxclient
media-sound/sox
media-sound/lame
dev-ruby/sqlite3-ruby
dev-python/gnuplot-py
http? ( www-servers/mongrel )"
src_install() {
DESTDIR="${D}" emake install || die "install failed"
dodir /opt/$PN
cp -r {bin,data,docs,etc,lib,web} "${D}"/opt/$PN/
# I know the permissions are ugly, but that's what hdm himself
# recommends Oo
chmod 644 "${D}"/opt/$PN/web/config/session.key
chmod 666 "${D}"/opt/$PN/web/log/production.log
dobin "${FILESDIR}"/warvox-launcher
}