diff options
author | 2005-03-02 17:01:28 +0000 | |
---|---|---|
committer | 2005-03-02 17:01:28 +0000 | |
commit | d6bff4ec7064295b052be27dd315b76e330d5548 (patch) | |
tree | 551612f2f8e85e16de2ce0244032bdbc69b1572d /sys-apps/dmidecode/dmidecode-2.6.ebuild | |
parent | add ppc-macos keyword (diff) | |
download | historical-d6bff4ec7064295b052be27dd315b76e330d5548.tar.gz historical-d6bff4ec7064295b052be27dd315b76e330d5548.tar.bz2 historical-d6bff4ec7064295b052be27dd315b76e330d5548.zip |
Version bump, this one's for you genstef!
Package-Manager: portage-2.0.51.18
Diffstat (limited to 'sys-apps/dmidecode/dmidecode-2.6.ebuild')
-rw-r--r-- | sys-apps/dmidecode/dmidecode-2.6.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sys-apps/dmidecode/dmidecode-2.6.ebuild b/sys-apps/dmidecode/dmidecode-2.6.ebuild new file mode 100644 index 000000000000..2374b44b624d --- /dev/null +++ b/sys-apps/dmidecode/dmidecode-2.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmidecode/dmidecode-2.6.ebuild,v 1.1 2005/03/02 17:01:28 chainsaw Exp $ + +inherit flag-o-matic + +DESCRIPTION="DMI (Desktop Management Interface) table related utilities" +HOMEPAGE="http://www.nongnu.org/dmidecode/" +SRC_URI="http://savannah.nongnu.org/download/dmidecode/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" +IUSE="" + +DEPEND=">=sys-apps/sed-4" +RDEPEND="" + +src_unpack() { + unpack ${A} + cd ${S} + + use ia64 && append-flags -D__IA64__ + sed -i \ + -e "s:-O2:${CFLAGS}${ARCHFLAGS}:" \ + -e "s:man/man8:share/man/man8:g" \ + -e "s:/usr/local:${D}/usr:" \ + Makefile || die "manpage sed failed" +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dodir /usr/sbin /usr/share/man/man8 + make install || die "make install failed" + dodoc README AUTHORS CHANGELOG +} |