blob: e760d6a86dda87ea687584c7e9607a2722aedb2e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/dog/dog-1.7-r2.ebuild,v 1.2 2005/06/28 14:06:16 ka0ttic Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Dog is better than cat"
HOMEPAGE="http://jl.photodex.com/dog/"
SRC_URI="http://jl.photodex.com/dog/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc-macos ~ppc64 ~sparc x86"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch ${FILESDIR}/${P}-check-ctime.diff
epatch ${FILESDIR}/${PV}-manpage-touchup.patch
epatch ${FILESDIR}/${P}-64bit-goodness.patch
sed -i \
-e 's/^CFLAGS/#CFLAGS/' \
-e "s/gcc/$(tc-getCC)/" \
Makefile || die "sed Makefile failed"
}
src_install() {
dobin dog || die
doman dog.1
dodoc README AUTHORS
}
|