blob: 0e43384d2b714a1c36fbc36f5c9830ff5454e9f3 (
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
41
42
43
44
45
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild,v 1.14 2004/04/16 20:06:29 randy Exp $
S=${WORKDIR}/${P}
DESCRIPTION="extracts urls from text and will send them to another app"
SRC_URI="ftp://gd.tuwien.ac.at/infosys/mail/mutt/contrib/${P}.tar.gz"
HOMEPAGE="http://www.mutt.org"
DEPEND=">=sys-libs/ncurses-5.2"
RDEPEND=">=sys-libs/ncurses-5.2"
KEYWORDS="x86 ppc sparc alpha s390"
LICENSE="GPL-2"
SLOT="0"
src_compile() {
epatch ${FILESDIR}/no-trailing-newline.patch
./configure \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--prefix=/usr \
--sysconfdir=/etc \
--host=${CHOST} || die "Configure Failed"
emake || die "Parallel Make Failed"
}
src_install () {
dodir /usr/share/man/man1
make infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man \
prefix=${D}/usr \
sysconfdir=${D}/etc \
install || die "Installation Failed"
dodoc README INSTALL ChangeLog AUTHORS COPYING sample.urlview
dobin url_handler.sh
}
pkg_postinst() {
einfo "There is a sample.urlview in /usr/share/doc/${P}"
einfo "You can also customize /usr/bin/url_handler.sh"
}
|