summaryrefslogtreecommitdiff
blob: ebb9052d240c0e3c2d2e6ce2e390c14f431a5879 (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
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ryan Tolboom <ryan@gentoo.org>
# /space/gentoo/cvsroot/gentoo-x86/media-sound/gom/gom-0.29.103.ebuild,v 1.3 2001/08/11 03:50:11 drobbins Exp

S=${WORKDIR}/${P}
DESCRIPTION="Console Mixer Program for OSS"
SRC_URI="http://www.Fh-Worms.DE./~inf222/code/c/gom/released/${P}.tar.gz"
HOMEPAGE="http://www.fh-worms.de/~inf222"

DEPEND=">=sys-libs/ncurses-5.2"

src_compile() {

    try ./configure --prefix=/usr --mandir=/usr/share/man
    try make CFLAGS="${CFLAGS}"

}

src_install () {

    try make DESTDIR=${D} install
    dodoc NEWS ChangeLog README
    docinto examples
    dodoc README 
    docinto examples/default
    dodoc examples/default/*
    docinto examples/standard
    dodoc examples/standard/*
    docinto examples/two-mixers
    dodoc examples/two-mixers/*

}