blob: 65eb68a07132467153fc069352dfce8923bcd283 (
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.2 2002/06/26 02:06:10 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=""
src_compile() {
cd ${S};
make || die
}
src_install() {
make PREFIX=${D}/usr install || die
dodoc ChangeLog README* APEL* EMU-ELS
}
|