blob: eca94c6f56b4f40a29fed9754e72f729eeba4e30 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/adiff/adiff-1.2.ebuild,v 1.2 2005/10/08 10:33:28 grobian Exp $
DESCRIPTION="wordwise diff"
HOMEPAGE="http://gentoo.org/~agriffis/adiff/"
SRC_URI="${HOMEPAGE}/${P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc-macos ~x86"
IUSE=""
DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}
sys-apps/diffutils"
S=${WORKDIR}
src_compile() {
pod2man --release=${PV} --center="${HOMEPAGE}" \
--date="2005-08-15" ${DISTDIR}/${P} ${PN}.1 || die
}
src_install() {
newbin ${DISTDIR}/${P} ${PN}
doman ${PN}.1
}
|