Magellan Linux

Contents of /trunk/core/ed/ed-1.1-r5.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12846 - (show annotations) (download)
Wed Jul 4 10:59:08 2012 UTC (11 years, 11 months ago) by niro
File size: 682 byte(s)
-marked stable
1 # $Id$
2
3 PNAME="ed"
4 PVER="1.1"
5 PBUILD="r5"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="Your basic line editor."
10 HOMEPAGE="http://www.gnu.org/software/ed/"
11
12 DEPEND=""
13 SDEPEND=">= sys-apps/texinfo-4"
14
15 SRCFILE="${PNAME}-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mtools mbuild
19
20 SRC_URI=(
21 gnu://${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd_gnu ${PNAME}"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30
31 ./configure --prefix=/usr --host=${CHOST} || die
32 mmake || die
33 }
34
35 src_install()
36 {
37 cd ${SRCDIR}
38
39 minstalldir /usr/share/man/man1 || die
40 minstall mandir=${BINDIR}/usr/share/man/man1 || die
41
42 minstalldocs ChangeLog COPYING NEWS POSIX README THANKS TODO || die
43 }