blob: 22628ab70f7ef47e967e03368c0afeaad4c7dd32 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/ufed/ufed-0.33.ebuild,v 1.3 2003/08/13 00:21:10 tester Exp $
DESCRIPTION="Gentoo Linux USE flags editor"
HOMEPAGE="http://www.gentoo.org"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc hppa arm alpha amd64"
IUSE=""
RDEPEND="dev-lang/perl
dev-util/dialog
dev-perl/TermReadKey"
DEPEND=""
S="${WORKDIR}/${P}"
src_install() {
#--- start of fixes
#the man bit is because of a bug I made in the tarball
mv ${S}/docs/ufed.8 ${S}
#remove CVS dirs for the moment
find ${S} -name CVS -xtype d -exec rm -rf \{} \; 2>/dev/null
#--- end of fixes
newsbin ufed.pl ufed
doman ufed.8
dodoc COPYING ChangeLog
}
|