summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-05-10 16:06:16 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-05-10 16:06:16 +0000
commit9d104e8b3c93a9eb4666a19206dd8b98d8c1f9a9 (patch)
treeded9f16e44d832748f03576e706c76a31763cf8b /dev-util
parentRemove old (diff)
downloadgentoo-2-9d104e8b3c93a9eb4666a19206dd8b98d8c1f9a9.tar.gz
gentoo-2-9d104e8b3c93a9eb4666a19206dd8b98d8c1f9a9.tar.bz2
gentoo-2-9d104e8b3c93a9eb4666a19206dd8b98d8c1f9a9.zip
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/lafilefixer/ChangeLog7
-rw-r--r--dev-util/lafilefixer/lafilefixer-0.0.1.ebuild45
2 files changed, 5 insertions, 47 deletions
diff --git a/dev-util/lafilefixer/ChangeLog b/dev-util/lafilefixer/ChangeLog
index 7802599b6844..40c553b4e0bf 100644
--- a/dev-util/lafilefixer/ChangeLog
+++ b/dev-util/lafilefixer/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/lafilefixer
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/lafilefixer/ChangeLog,v 1.20 2011/11/27 00:01:35 vapier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/lafilefixer/ChangeLog,v 1.21 2012/05/10 16:06:16 ago Exp $
+
+ 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -lafilefixer-0.0.1.ebuild:
+ Remove old
27 Nov 2011; Mike Frysinger <vapier@gentoo.org> lafilefixer-0.5.ebuild:
Add m68k love #267148 by Peter Alfredsen.
diff --git a/dev-util/lafilefixer/lafilefixer-0.0.1.ebuild b/dev-util/lafilefixer/lafilefixer-0.0.1.ebuild
deleted file mode 100644
index a9d72958df0f..000000000000
--- a/dev-util/lafilefixer/lafilefixer-0.0.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/lafilefixer/lafilefixer-0.0.1.ebuild,v 1.3 2009/04/26 15:38:18 armin76 Exp $
-
-EAPI=2
-
-DESCRIPTION="Utility to fix your .la files"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI=""
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-DEPEND=""
-RDEPEND=">=app-shells/bash-3.1
- sys-apps/grep
- sys-apps/coreutils
- sys-apps/sed"
-
-S=""
-
-src_unpack() { : ; }
-src_prepare() { : ; }
-src_configure() { : ; }
-src_unpack() { : ; }
-src_install() { newbin "${FILESDIR}/${P}" ${PN} ; }
-
-pkg_postinst() {
- elog "This simple utility will fix your .la files to not point to other .la files."
- elog "This is desirable because it will ensure your packages are not broken when"
- elog ".la files are removed from other packages."
- elog "The utility is for now quite simple and only accepts a delimited list of"
- elog ".la files."
- elog ""
- elog "Patches are accepted."
- elog ""
- elog "If you want to fix all your .la files, something like this will work:"
- elog 'lafilefixer $(find /usr/lib* -name '*.la' -type f)'
- elog "NOTE: If you have kde installed, you may want to add /usr/kde/*/lib* to the"
- elog "list of directories to search for .la files:"
- elog 'lafilefixer $(find /usr/lib* /usr/kde/*/lib* -name '*.la' -type f)'
- elog ""
- elog "Verify that all your .la files are fixed with revdep-rebuild from"
- elog "app-portage/gentoolkit"
-}