diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:25:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:25:18 +0000 |
commit | ed8043484a2eee31dfd74b987fa80197286693e5 (patch) | |
tree | 72e8283ea65accfe8c39441501e9fa1bc0018938 /net-libs | |
parent | Changed econf||die to econf (diff) | |
download | gentoo-2-ed8043484a2eee31dfd74b987fa80197286693e5.tar.gz gentoo-2-ed8043484a2eee31dfd74b987fa80197286693e5.tar.bz2 gentoo-2-ed8043484a2eee31dfd74b987fa80197286693e5.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/openh323/openh323-1.9.3.ebuild | 46 |
1 files changed, 21 insertions, 25 deletions
diff --git a/net-libs/openh323/openh323-1.9.3.ebuild b/net-libs/openh323/openh323-1.9.3.ebuild index 6794838d9cbc..5716078f7537 100644 --- a/net-libs/openh323/openh323-1.9.3.ebuild +++ b/net-libs/openh323/openh323-1.9.3.ebuild @@ -1,21 +1,20 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.9.3.ebuild,v 1.2 2002/08/16 02:57:06 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.9.3.ebuild,v 1.3 2002/11/30 02:25:18 vapier Exp $ -S="${WORKDIR}/openh323" SRC_URI="http://www.openh323.org/bin/openh323_${PV}.tar.gz" HOMEPAGE="http://www.openh323.org" -DESCRIPTION="Open Source implementation of the ITU H.323 teleconferencing -protocol" - -DEPEND=">=dev-libs/pwlib-1.3.3" +DESCRIPTION="Open Source implementation of the ITU H.323 teleconferencing protocol" SLOT="0" LICENSE="MPL-1.1" KEYWORDS="x86 sparc sparc64" +DEPEND=">=dev-libs/pwlib-1.3.3" + +S="${WORKDIR}/${PN}" + src_compile() { - cd ${S} export PWLIBDIR=/usr/share/pwlib export OPENH323DIR=${S} echo $PWLIBDIR @@ -23,22 +22,19 @@ src_compile() { } src_install() { - mkdir -p ${D}/usr/lib - mkdir -p ${D}/usr/share/openh323 - cd ${S}/lib - mv lib* ${D}/usr/lib - cd ${S} - cp -a * ${D}/usr/share/openh323 - rm -rf ${D}/usr/share/openh323/make/CVS - rm -rf ${D}/usr/share/openh323/tools/CVS - rm -rf ${D}/usr/share/openh323/tools/asnparser/CVS - rm -rf ${D}/usr/share/openh323/src - rm -rf ${D}/usr/share/openh323/include/CVS - rm -rf ${D}/usr/share/openh323/include/ptlib/unix/CVS - rm -rf ${D}/usr/share/openh323/include/ptlib/CVS - - cd ${D}/usr/lib - ln -sf libh323_linux_x86_r.so.${PV} libopenh323.so + dodir /usr/lib /usr/share/openh323 + cd ${S}/lib + mv lib* ${D}/usr/lib + cd ${S} + cp -a * ${D}/usr/share/openh323 + rm -rf ${D}/usr/share/openh323/make/CVS + rm -rf ${D}/usr/share/openh323/tools/CVS + rm -rf ${D}/usr/share/openh323/tools/asnparser/CVS + rm -rf ${D}/usr/share/openh323/src + rm -rf ${D}/usr/share/openh323/include/CVS + rm -rf ${D}/usr/share/openh323/include/ptlib/unix/CVS + rm -rf ${D}/usr/share/openh323/include/ptlib/CVS + + cd ${D}/usr/lib + ln -sf libh323_linux_x86_r.so.${PV} libopenh323.so } - - |