summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-10-06 02:02:39 +0000
committerMike Frysinger <vapier@gentoo.org>2005-10-06 02:02:39 +0000
commit5f78eafa9b57fc09c78188fb322dd75e9d0e3042 (patch)
tree8cdf3c2238c282813fc8a344934727e30481b8bf /sys-apps/initng/initng-9999.ebuild
parentold (diff)
downloadgentoo-2-5f78eafa9b57fc09c78188fb322dd75e9d0e3042.tar.gz
gentoo-2-5f78eafa9b57fc09c78188fb322dd75e9d0e3042.tar.bz2
gentoo-2-5f78eafa9b57fc09c78188fb322dd75e9d0e3042.zip
Version bump #108172 by Erdroh Moshan and delete scripts that are installed by other packages #108179 by Henrique Ferreiro.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-apps/initng/initng-9999.ebuild')
-rw-r--r--sys-apps/initng/initng-9999.ebuild9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys-apps/initng/initng-9999.ebuild b/sys-apps/initng/initng-9999.ebuild
index efa7f75d929b..23a50ca0e3db 100644
--- a/sys-apps/initng/initng-9999.ebuild
+++ b/sys-apps/initng/initng-9999.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/initng/initng-9999.ebuild,v 1.2 2005/09/21 23:39:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/initng/initng-9999.ebuild,v 1.3 2005/10/06 02:02:39 vapier Exp $
ESVN_REPO_URI="http://svn.initng.thinktux.net/initng"
ESVN_PROJECT="initng"
@@ -20,9 +20,6 @@ S=${WORKDIR}/${PN}
src_unpack() {
subversion_src_unpack
./autogen.sh || die "autogen failed"
- sed -i \
- -e '/CFLAGS=.*ALL_CFLAGS/s|.*|:;|' \
- configure || die "sed configure"
}
src_compile() {
@@ -36,6 +33,10 @@ src_compile() {
src_install() {
make install DESTDIR="${D}" || die
+ # Dont need libtool linker scripts, so punt em
+ find "${D}" -name '*.la' -exec rm {} \;
+ # other packages install these
+ rm -f "${D}"/sbin/{ifplugd,wpa_cli}.action
dodoc README FAQ AUTHORS ChangeLog NEWS TEMPLATE_HEADER TODO
}