summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-06-16 21:28:23 +0000
committerMike Frysinger <vapier@gentoo.org>2008-06-16 21:28:23 +0000
commit21b4320172ad1012fc1b637b9b388a751af01add (patch)
tree0c0c90efd11f461813e3fe2e478c251ad0039b29 /sys-fs/sysfsutils
parentamd64 stable (diff)
downloadgentoo-2-21b4320172ad1012fc1b637b9b388a751af01add.tar.gz
gentoo-2-21b4320172ad1012fc1b637b9b388a751af01add.tar.bz2
gentoo-2-21b4320172ad1012fc1b637b9b388a751af01add.zip
old
(Portage version: 2.2_pre8/cvs/Linux 2.6.25 x86_64)
Diffstat (limited to 'sys-fs/sysfsutils')
-rw-r--r--sys-fs/sysfsutils/files/sysfsutils-1.0.0-dont-check-for-libsysfs.patch13
-rw-r--r--sys-fs/sysfsutils/files/sysfsutils-1.2.0-write-attribute.patch29
-rw-r--r--sys-fs/sysfsutils/sysfsutils-0.2.0.ebuild37
-rw-r--r--sys-fs/sysfsutils/sysfsutils-0.3.0.ebuild38
-rw-r--r--sys-fs/sysfsutils/sysfsutils-0.4.0.ebuild38
-rw-r--r--sys-fs/sysfsutils/sysfsutils-1.0.0.ebuild48
-rw-r--r--sys-fs/sysfsutils/sysfsutils-1.2.0-r1.ebuild30
-rw-r--r--sys-fs/sysfsutils/sysfsutils-1.2.0-r2.ebuild37
-rw-r--r--sys-fs/sysfsutils/sysfsutils-1.2.0-r3.ebuild44
-rw-r--r--sys-fs/sysfsutils/sysfsutils-1.2.0.ebuild23
-rw-r--r--sys-fs/sysfsutils/sysfsutils-1.3.0-r1.ebuild35
-rw-r--r--sys-fs/sysfsutils/sysfsutils-1.3.0.ebuild45
-rw-r--r--sys-fs/sysfsutils/sysfsutils-2.0.0.ebuild29
13 files changed, 0 insertions, 446 deletions
diff --git a/sys-fs/sysfsutils/files/sysfsutils-1.0.0-dont-check-for-libsysfs.patch b/sys-fs/sysfsutils/files/sysfsutils-1.0.0-dont-check-for-libsysfs.patch
deleted file mode 100644
index 00f942cbf7bb..000000000000
--- a/sys-fs/sysfsutils/files/sysfsutils-1.0.0-dont-check-for-libsysfs.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- sysfsutils-1.0.0/configure.ac.orig 2004-02-29 13:47:11.941676208 +0200
-+++ sysfsutils-1.0.0/configure.ac 2004-02-29 13:47:18.588665712 +0200
-@@ -13,10 +13,6 @@
- AC_PROG_RANLIB
- AC_PROG_AWK
-
--# Checks for libraries.
--# FIXME: Replace `main' with a function in `-lsysfs':
--AC_CHECK_LIB([sysfs], [sysfs_read_directory])
--
- # Checks for header files.
- AC_HEADER_DIRENT
- AC_HEADER_STDC
diff --git a/sys-fs/sysfsutils/files/sysfsutils-1.2.0-write-attribute.patch b/sys-fs/sysfsutils/files/sysfsutils-1.2.0-write-attribute.patch
deleted file mode 100644
index 447d90f5885e..000000000000
--- a/sys-fs/sysfsutils/files/sysfsutils-1.2.0-write-attribute.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Hi,
-
-int sysfs_write_attribute(struct sysfs_attribute *sysattr,
- const char *new_value, size_t len)
-
-has a problematic "feature": if the file is empty but readable, nothing gets
-written into it. The attached patch (untested) should fix it.
-
- Dominik
-
-
-The check which tests whether the value to be written into a sysfs attribute
-is already there should only trigger if the length of both strings is the
-same.
-
-Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
-
---- sysfsutils-1.2.0/lib/sysfs_dir.c.original 2005-02-21 08:10:33.000000000 +0100
-+++ sysfsutils-1.2.0/lib/sysfs_dir.c 2005-02-21 08:14:01.000000000 +0100
-@@ -194,7 +194,8 @@
- dprintf("Error reading attribute\n");
- return -1;
- }
-- if ((strncmp(sysattr->value, new_value, sysattr->len)) == 0) {
-+ if (((strncmp(sysattr->value, new_value, sysattr->len)) == 0)&&
-+ (len == sysattr->len)) {
- dprintf("Attr %s already has the requested value %s\n",
- sysattr->name, new_value);
- return 0;
diff --git a/sys-fs/sysfsutils/sysfsutils-0.2.0.ebuild b/sys-fs/sysfsutils/sysfsutils-0.2.0.ebuild
deleted file mode 100644
index 3df2c3fb3ffc..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-0.2.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-0.2.0.ebuild,v 1.7 2005/03/03 16:52:31 corsair Exp $
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${PN}-${PV//./_}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-S="${WORKDIR}/${PN}-${PV//./_}"
-
-src_compile() {
- econf || die "./configure failed"
-
- # Make sure we do not link with external libsysfs ..
- sed -i '/^LIBS/ s/-lsysfs//' cmd/Makefile
-
- emake || die
-}
-
-src_install() {
- einstall || die
-
- # We do not distribute this
- rm -f ${D}/usr/bin/dlist_test
-
- dodoc AUTHORS COPYING ChangeLog NEWS README TODO
- # FIXME: cmd/GPL and lib/LGPL do not exist - should we
- # then rather add them manually ?
- dodoc cmd/GPL lib/LGPL docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-0.3.0.ebuild b/sys-fs/sysfsutils/sysfsutils-0.3.0.ebuild
deleted file mode 100644
index 92192e9272ef..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-0.3.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-0.3.0.ebuild,v 1.6 2005/03/03 16:52:31 corsair Exp $
-
-inherit libtool
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-src_compile() {
- elibtoolize
- econf || die "./configure failed"
-
- # Make sure we do not link with external libsysfs ..
- sed -i '/^LIBS/ s/-lsysfs//' cmd/Makefile
-
- emake || die
-}
-
-src_install() {
- einstall includedir=${D}/usr/include/sysfs || die
-
- # We do not distribute this
- rm -f ${D}/usr/bin/dlist_test
-
- dodoc AUTHORS COPYING ChangeLog NEWS README TODO
- # FIXME: cmd/GPL and lib/LGPL do not exist - should we
- # then rather add them manually ?
- dodoc cmd/GPL lib/LGPL docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-0.4.0.ebuild b/sys-fs/sysfsutils/sysfsutils-0.4.0.ebuild
deleted file mode 100644
index 294d48914b02..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-0.4.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-0.4.0.ebuild,v 1.10 2005/03/03 16:52:31 corsair Exp $
-
-inherit libtool
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="x86 ppc hppa amd64 ~sparc"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-src_compile() {
- elibtoolize
- econf || die "./configure failed"
-
- # Make sure we do not link with external libsysfs ..
- sed -i '/^LIBS/ s/-lsysfs//' cmd/Makefile
-
- emake || die
-}
-
-src_install() {
- einstall includedir=${D}/usr/include/sysfs || die
-
- # We do not distribute this
- rm -f ${D}/usr/bin/dlist_test
-
- dodoc AUTHORS COPYING ChangeLog NEWS README TODO
- # FIXME: cmd/GPL and lib/LGPL do not exist - should we
- # then rather add them manually ?
- dodoc cmd/GPL lib/LGPL docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-1.0.0.ebuild b/sys-fs/sysfsutils/sysfsutils-1.0.0.ebuild
deleted file mode 100644
index 5bac9f15e3fb..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-1.0.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-1.0.0.ebuild,v 1.8 2007/01/05 09:17:19 flameeyes Exp $
-
-inherit eutils libtool
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~mips arm hppa ~amd64"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- # Make sure we do not link with external libsysfs ..
- epatch ${FILESDIR}/${P}-dont-check-for-libsysfs.patch
- aclocal
- autoconf
- automake
-
- elibtoolize
-}
-
-src_compile() {
-
- econf || die "./configure failed"
-
- emake || die
-}
-
-src_install() {
- einstall includedir=${D}/usr/include/sysfs || die
-
- # We do not distribute this
- rm -f ${D}/usr/bin/dlist_test
-
- dodoc AUTHORS ChangeLog NEWS README TODO
- # FIXME: cmd/GPL and lib/LGPL do not exist - should we
- # then rather add them manually ?
- dodoc cmd/GPL lib/LGPL docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-1.2.0-r1.ebuild b/sys-fs/sysfsutils/sysfsutils-1.2.0-r1.ebuild
deleted file mode 100644
index 896a8c8f12bb..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-1.2.0-r1.ebuild,v 1.1 2005/05/20 12:53:28 brix Exp $
-
-inherit eutils libtool
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- epatch ${FILESDIR}/${P}-write-attribute.patch
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- # We do not distribute this
- rm -f "${D}"/usr/bin/dlist_test
- dodoc AUTHORS ChangeLog NEWS README TODO docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-1.2.0-r2.ebuild b/sys-fs/sysfsutils/sysfsutils-1.2.0-r2.ebuild
deleted file mode 100644
index c2167fb48663..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-1.2.0-r2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-1.2.0-r2.ebuild,v 1.11 2005/08/29 18:15:40 gustavoz Exp $
-
-inherit eutils libtool
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-write-attribute.patch
-}
-
-src_compile() {
- econf --libdir=/$(get_libdir) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- # We do not distribute this
- rm -f "${D}"/usr/bin/dlist_test
- dodoc AUTHORS ChangeLog NEWS README TODO docs/libsysfs.txt
- dodir /usr/$(get_libdir)
- mv ${D}/$(get_libdir)/*a ${D}/usr/$(get_libdir)
- dosym /usr/$(get_libdir)/libsysfs.la /$(get_libdir)/libsysfs.la
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-1.2.0-r3.ebuild b/sys-fs/sysfsutils/sysfsutils-1.2.0-r3.ebuild
deleted file mode 100644
index 025102a3f7f4..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-1.2.0-r3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-1.2.0-r3.ebuild,v 1.3 2007/06/16 07:02:19 vapier Exp $
-
-inherit eutils libtool toolchain-funcs
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-write-attribute.patch
-}
-
-src_compile() {
- econf --libdir=/$(get_libdir) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- # We do not distribute this
- rm -f "${D}"/usr/bin/dlist_test
-
- # Move static libs to /usr/lib - no reason to have then in /lib
- dodir /usr/$(get_libdir)
- mv -f "${D}"/$(get_libdir)/*.a "${D}"/usr/$(get_libdir)/
- dosym ../../$(get_libdir)/libsysfs.la /usr/$(get_libdir)/libsysfs.la
- # We need a linker script in /usr/lib, else all apps just links against
- # the static library .. bug #4411
- gen_usr_ldscript libsysfs.so
-
- dodoc AUTHORS ChangeLog NEWS README TODO docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-1.2.0.ebuild b/sys-fs/sysfsutils/sysfsutils-1.2.0.ebuild
deleted file mode 100644
index b37423eeba57..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-1.2.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-1.2.0.ebuild,v 1.8 2005/04/15 03:57:49 vapier Exp $
-
-inherit eutils libtool
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ~ppc ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_install() {
- make DESTDIR="${D}" install || die
- # We do not distribute this
- rm -f "${D}"/usr/bin/dlist_test
- dodoc AUTHORS ChangeLog NEWS README TODO docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-1.3.0-r1.ebuild b/sys-fs/sysfsutils/sysfsutils-1.3.0-r1.ebuild
deleted file mode 100644
index 611502f91588..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-1.3.0-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-1.3.0-r1.ebuild,v 1.4 2006/11/13 20:21:25 vapier Exp $
-
-inherit toolchain-funcs libtool
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- elibtoolize
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc AUTHORS CREDITS ChangeLog NEWS README TODO docs/libsysfs.txt
-
- # We do not distribute this
- rm -f "${D}"/usr/bin/dlist_test
-
- # Move shared libs to /
- dodir /$(get_libdir)
- mv "${D}"/usr/$(get_libdir)/lib*.so* "${D}"/$(get_libdir)/ || die
- gen_usr_ldscript libsysfs.so
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-1.3.0.ebuild b/sys-fs/sysfsutils/sysfsutils-1.3.0.ebuild
deleted file mode 100644
index dd25260ac92a..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-1.3.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-1.3.0.ebuild,v 1.10 2007/06/16 07:02:19 vapier Exp $
-
-inherit eutils libtool toolchain-funcs
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE=
-
-DEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- elibtoolize
-}
-
-src_compile() {
- econf --libdir=/$(get_libdir) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- # We do not distribute this
- rm -f "${D}"/usr/bin/dlist_test
-
- # Move static libs to /usr/lib - no reason to have then in /lib
- dodir /usr/$(get_libdir)
- mv -f "${D}"/$(get_libdir)/*.a "${D}"/usr/$(get_libdir)/
- dosym ../../$(get_libdir)/libsysfs.la /usr/$(get_libdir)/libsysfs.la
- # We need a linker script in /usr/lib, else all apps just links against
- # the static library .. bug #4411
- gen_usr_ldscript libsysfs.so
-
- dodoc AUTHORS CREDITS ChangeLog NEWS README TODO docs/libsysfs.txt
-}
diff --git a/sys-fs/sysfsutils/sysfsutils-2.0.0.ebuild b/sys-fs/sysfsutils/sysfsutils-2.0.0.ebuild
deleted file mode 100644
index 90a6c8e3dec3..000000000000
--- a/sys-fs/sysfsutils/sysfsutils-2.0.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/sysfsutils/sysfsutils-2.0.0.ebuild,v 1.2 2006/11/13 20:21:25 vapier Exp $
-
-inherit toolchain-funcs
-
-DESCRIPTION="System Utilities Based on Sysfs"
-HOMEPAGE="http://linux-diag.sourceforge.net/Sysfsutils.html"
-SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS CREDITS ChangeLog NEWS README TODO docs/libsysfs.txt
-
- # We do not distribute this
- rm -f "${D}"/usr/bin/dlist_test
-
- # Move shared libs to /
- dodir /$(get_libdir)
- mv "${D}"/usr/$(get_libdir)/lib*.so* "${D}"/$(get_libdir)/ || die
- gen_usr_ldscript libsysfs.so
-}