blob: f8124257d14a96e614ddad7c9f7046df645acc17 (
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
35
36
37
38
39
40
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/gpasman/gpasman-1.9.3.ebuild,v 1.2 2006/02/10 22:23:53 nelchael Exp $
inherit eutils autotools
DESCRIPTION="Gpasman: GTK Password manager"
SRC_URI="http://gpasman.sourceforge.net/files/${P}.tar.gz"
HOMEPAGE="http://gpasman.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc -sparc ~x86"
IUSE=""
DEPEND="=x11-libs/gtk+-2*"
src_unpack() {
unpack "${A}"
epatch "${FILESDIR}/${P}-gentoo.patch"
cd "${S}"
intltoolize --copy --force
eautoreconf
intltoolize --copy --force # YES! Twice
eaclocal
}
src_install() {
# Broken Makefile, so fix it:
sed -i -e 's/@install_sh@/install/' po/Makefile
# Install:
make DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog AUTHORS README NEWS
}
|