blob: f1a4bb1491ed1edd825bb5947a6cf62e9845d4a1 (
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
|
# Copyright 2002 moto kawasaki <kawasaki@kawasaki3.org>
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/apel/apel-2002.06.21.0106.ebuild,v 1.3 2002/06/29 03:12:36 george Exp $
Name=`echo ${P} | sed -e 's#\.##g'`
A="${Name}.tar.gz"
S="${WORKDIR}/${Name}"
DESCRIPTION="A Portable Emacs Library -- apel"
SRC_URI="ftp://ftp.m17n.org/pub/mule/apel/snapshots/${A}"
HOMEPAGE="http://www.m17n.org/apel/"
DEPEND=">=app-editors/emacs-20.4"
RDEPEND="${DEPEND}"
SLOT="0"
LICENSE="GPL-2"
src_compile() {
cd ${S};
make || die
}
src_install() {
make PREFIX=${D}/usr install || die
dodoc ChangeLog README* APEL* EMU-ELS
}
|