blob: c0419016c47d3510929c0fca486e33f883a6f913 (
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
|
# Copyrigth 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-misc/gpasman/gpasman-1.3.0.ebuild,v 1.6 2002/08/14 23:44:15 murphy Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Gpasman: GTK Password manager"
# This is _NOT_ the offical download site, but the official site
# seems to not work (ever).
SRC_URI="http://gpasman.nl.linux.org/${P}.tar.gz"
HOMEPAGE="http://gpasman.nl.linux.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc sparc64"
DEPEND="=x11-libs/gtk+-1.2*"
RDEPEND="${DEPEND}"
src_compile() {
./configure --prefix=/usr || die "configure failed"
emake || die
}
src_install() {
mkdir -p ${D}/usr/bin
emake prefix=${D}/usr install
dodoc ChangeLog AUTHORS README BUGS NEWS
}
|