blob: 99cc241f5b43ba74e3aa4b904becfe0968c5c5a9 (
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.31.ebuild,v 1.1 2003/04/29 06:17:01 fava 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"
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 docs/* ChangeLog
}
|