| 1 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-nntp/slrnconf/slrnconf-0.8.4.ebuild,v 1.3 2005/10/30 02:29:50 weeve Exp $
|
| 4 |
|
| 5 |
DESCRIPTION="slrnconf is a graphical configuration utility for the newsreader slrn"
|
| 6 |
HOMEPAGE="http://home.arcor.de/kaffeetisch/slrnconf.html"
|
| 7 |
SRC_URI="http://home.arcor.de/kaffeetisch/downloads/${P}.tar.bz2"
|
| 8 |
|
| 9 |
LICENSE="GPL-2"
|
| 10 |
SLOT="0"
|
| 11 |
KEYWORDS="~amd64 ~ppc x86"
|
| 12 |
IUSE=""
|
| 13 |
|
| 14 |
RDEPEND="dev-lang/perl
|
| 15 |
dev-perl/gtk2-perl
|
| 16 |
dev-perl/Parse-RecDescent
|
| 17 |
net-nntp/slrn"
|
| 18 |
DEPEND="${RDEPEND}
|
| 19 |
>=sys-apps/sed-4"
|
| 20 |
|
| 21 |
src_unpack() {
|
| 22 |
unpack ${A}
|
| 23 |
|
| 24 |
sed -i -e 's/^install: all$/install:/' ${S}/Makefile
|
| 25 |
}
|
| 26 |
|
| 27 |
src_compile() {
|
| 28 |
make PREFIX=/usr || die "make failed"
|
| 29 |
}
|
| 30 |
|
| 31 |
src_install() {
|
| 32 |
make PREFIX=${D}/usr install || die "make install failed"
|
| 33 |
}
|