blob: 7f559c8fc2a4a64f7ddf72ca59f051950355ec6f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/psmix/psmix-2.ebuild,v 1.5 2003/02/13 13:17:49 vapier Exp $
MY_P=${P/-/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A GTK audio mixer that can save state and window position."
SRC_URI="http://www.geocities.com/pssoft7/${MY_P}.tgz"
HOMEPAGE="http://www.geocities.com/pssoft7/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="x11-libs/gtk+
sys-libs/gdbm"
src_compile() {
make clean
emake || die
}
src_install () {
dobin psmix2
}
|