diff options
author | Wout Mertens <wmertens@gentoo.org> | 2002-05-11 00:58:36 +0000 |
---|---|---|
committer | Wout Mertens <wmertens@gentoo.org> | 2002-05-11 00:58:36 +0000 |
commit | 3c3803fe1d550b3a8f5c0a3929aa341f0a1fe8d8 (patch) | |
tree | 252c18d5f92de1ddaa32b6c3af7723a4101fd3ad /sys-apps/fxload/fxload-20020411.ebuild | |
parent | New kernel config, leaner & meaner (diff) | |
download | gentoo-2-3c3803fe1d550b3a8f5c0a3929aa341f0a1fe8d8.tar.gz gentoo-2-3c3803fe1d550b3a8f5c0a3929aa341f0a1fe8d8.tar.bz2 gentoo-2-3c3803fe1d550b3a8f5c0a3929aa341f0a1fe8d8.zip |
Initial release
Diffstat (limited to 'sys-apps/fxload/fxload-20020411.ebuild')
-rw-r--r-- | sys-apps/fxload/fxload-20020411.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-apps/fxload/fxload-20020411.ebuild b/sys-apps/fxload/fxload-20020411.ebuild new file mode 100644 index 000000000000..d587cf9dccbe --- /dev/null +++ b/sys-apps/fxload/fxload-20020411.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fxload/fxload-20020411.ebuild,v 1.1 2002/05/11 00:58:36 wmertens Exp $ + +# source maintainers named it fxload-YYYY_MM_DD instead of fxload-YYYYMMDD +OLDP="$P" +P=`echo $P|sed 's/-\(....\)\(..\)\(..\)/-\1_\2_\3/'` +S=${WORKDIR}/${P} +DESCRIPTION="USB firmware uploader" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/linux-hotplug/fxload-2002_04_11.tar.gz" +HOMEPAGE="http://linux-hotplug.sourceforge.net" + +# fxload needs pcimodules utility provided by pcitutils-2.1.9-r1 +DEPEND="virtual/glibc + sys-apps/hotplug" + +src_compile() { + + # compile fxload program + make || die + +} + +src_install () { + + make install prefix=${D} + +} |