diff options
author | Damien Krotkine <dams@gentoo.org> | 2002-12-01 21:00:08 +0000 |
---|---|---|
committer | Damien Krotkine <dams@gentoo.org> | 2002-12-01 21:00:08 +0000 |
commit | 929f5f9ae99d52c3977c44c184e80b947d18d037 (patch) | |
tree | 4414719d1d50aefba2b2566edaace3e1184f8e45 /sys-libs/ldetect/ldetect-0.4.7.ebuild | |
parent | corrected typo (diff) | |
download | gentoo-2-929f5f9ae99d52c3977c44c184e80b947d18d037.tar.gz gentoo-2-929f5f9ae99d52c3977c44c184e80b947d18d037.tar.bz2 gentoo-2-929f5f9ae99d52c3977c44c184e80b947d18d037.zip |
correct version, typo
Diffstat (limited to 'sys-libs/ldetect/ldetect-0.4.7.ebuild')
-rw-r--r-- | sys-libs/ldetect/ldetect-0.4.7.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/sys-libs/ldetect/ldetect-0.4.7.ebuild b/sys-libs/ldetect/ldetect-0.4.7.ebuild new file mode 100644 index 000000000000..cc9860762b0d --- /dev/null +++ b/sys-libs/ldetect/ldetect-0.4.7.ebuild @@ -0,0 +1,61 @@ +# Copyright 2002 damien krotkine <dams@gentoo.org> +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldetect/ldetect-0.4.7.ebuild,v 1.1 2002/12/01 21:00:08 dams Exp $ + +ECVS_ANON="no" +ECVS_USER="anoncvs" +ECVS_SERVER="cvs.mandrakesoft.com:/cooker" +ECVS_MODULE="soft/ldetect" +ECVS_PASS="cvs" +ECVS_CVS_OPTIONS="-dP" + +#inherit perl-module +inherit cvs + +S=${WORKDIR}/${ECVS_MODULE} +DESCRIPTION="Light hardware detection library. The hardware device lists provided by this package are used as lookup table to get hardware autodetection" +HOMEPAGE="http://cvs.mandrakesoft.com/cgi-bin/cvsweb.cgi/soft/ldetect/" +SRC_URI="" + +SLOT="0" +LICENSE="GPL" +KEYWORDS="~x86" + +#DEPEND="${DEPEND} +# >=dev-lang/ocaml" + +#This patch may or may not be backwards compatible with perl-5.6.1 +#Add gaurd as necessary... + +#src_unpack() { +# echo " ***** pouet $PWD"; +# echo "filesdir : ${FILESDIR}" +# #unpack ${A} +# echo " pwd : $PWD" +# patch -p0 <${FILESDIR}/Common-1.0.4.patch || die +#} + +src_compile() { + cd ../../ldetect; + echo " ------- pwd : $PWD" + patch -p1 <${FILESDIR}/ldetect-0.4.7.patch || die + echo "compile in ${PWD}"; + make clean; + make + #perl-module_src_prep; + #perl-module_src_compile; +} + +src_install() { + cd ../../ldetect; + echo " ----------- install in ${PWD}" + make prefix=${D}/usr install +} + +src_prep() { + SRC_PREP="yes" + cd ../../perl-MDK-Common + echo "prep in ${PWD}"; +} + + |