File: ssbd-0.10.ebuild

package info (click to toggle)
ssbd 0.10-10
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 784 kB
  • ctags: 250
  • sloc: sh: 3,538; ansic: 1,817; makefile: 116; perl: 24
file content (28 lines) | stat: -rw-r--r-- 594 bytes parent folder | download | duplicates (4)
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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Author: Florian Evers <florian-evers@gmx.de>
# $Header: $

inherit eutils
 
DESCRIPTION="SSB daemon (voice keyer)"
HOMEPAGE="http://tucnak.nagano.cz/tucnak1en.html"
SRC_URI="http://tucnak.nagano.cz/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="virtual/libc
        media-libs/libsndfile"
RESTRICT="nomirror"

src_compile() {
        econf || die "econf failed"
        emake || die "emake failed"
}

src_install() {
        make DESTDIR=${D} install || die
}