diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-17 06:47:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-17 06:47:26 +0000 |
commit | 9ca58d996b73e5b6de45a9e22ac4ad1394ad4b9c (patch) | |
tree | 8652c82b99dd44fc7a174d808b4e8faf71895e5b /app-sci/lard | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | gentoo-2-9ca58d996b73e5b6de45a9e22ac4ad1394ad4b9c.tar.gz gentoo-2-9ca58d996b73e5b6de45a9e22ac4ad1394ad4b9c.tar.bz2 gentoo-2-9ca58d996b73e5b6de45a9e22ac4ad1394ad4b9c.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'app-sci/lard')
-rw-r--r-- | app-sci/lard/lard-2.0.14.ebuild | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/app-sci/lard/lard-2.0.14.ebuild b/app-sci/lard/lard-2.0.14.ebuild index dc3284bd6415..dbdcf83d1d88 100644 --- a/app-sci/lard/lard-2.0.14.ebuild +++ b/app-sci/lard/lard-2.0.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/lard/lard-2.0.14.ebuild,v 1.1 2002/10/30 08:00:38 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/lard/lard-2.0.14.ebuild,v 1.2 2002/11/17 06:45:12 vapier Exp $ DESCRIPTION="Language for Asynchronous Research and Development. Used to describe and simulate asynchronous circuits" HOMEPAGE="http://www.cs.man.ac.uk/amulet/projects/lard/" @@ -22,32 +22,27 @@ DEPEND="sys-devel/flex sys-devel/perl dev-tcltk/bwidget" -S=${WORKDIR}/${P} - src_unpack() { unpack ${A} ; cd ${S} patch -p1 < ${FILESDIR}/lard-2.0.14-configure.patch || die } src_compile() { - econf --libdir=/usr/lib/lard || die "./configure failed" - - emake || die + econf --libdir=/usr/lib/lard + emake || die "emake failed" } -src_install () { - make DESTDIR=${D} install - +src_install() { + make DESTDIR=${D} install || die "install failed" + dodoc AUTHORS COPYING NEWS README - - mkdir -p ${D}/usr/share/doc/${PF}/demos + + dodir /usr/share/doc/${PF}/demos cp -R ${WORKDIR}/lard-demos-2.0.12/* ${D}/usr/share/doc/${PF}/demos cd ${WORKDIR}/lard-doc find . -name "*.doc *.cgi" -exec rm {} \; mkdir -p ${D}/usr/share/doc/${PF}/html cp -R * ${D}/usr/share/doc/${PF}/html cd ${WORKDIR} - sed -e "s:\$exec_prefix:#\$exec_prefix:g" ${D}/usr/bin/lcd > lcd.1 - cp lcd.1 ${D}/usr/bin/lcd + dosed "s:\$exec_prefix:#\$exec_prefix:g" /usr/bin/lcd } - |