From 84f32bba4d4c3c286842e5e5b9a6885f1ac4cdfb Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Thu, 13 Jan 2011 14:23:07 -0500 Subject: [PATCH] Removed docs from iputils pkgbuild, they always fail --- core/iputils/PKGBUILD | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/core/iputils/PKGBUILD b/core/iputils/PKGBUILD index 326324c86..affc5f66a 100644 --- a/core/iputils/PKGBUILD +++ b/core/iputils/PKGBUILD @@ -1,6 +1,7 @@ # $Id: PKGBUILD 82625 2010-06-15 04:22:56Z allan $ # Maintainer: Aaron Griffin +# PlugApps: removed building docs for iputils, it never works for us plugrel=1 pkgname=iputils @@ -40,18 +41,18 @@ build() # good god, these docs are a pain # special thanks to Michael(tm) Smith - http://people.w3.org/mike/ # from #docbook on freenode.org for figuring this out - cd doc - for file in *.sgml; do - xf=${file/.sgml/.xml} - osx -xlower -xno-nl-in-tag $file > $xf || true - sed -i "s|\(.*\), \(.*\)|\1, \2|g" $xf - xsltproc /usr/share/xml/docbook/xsl-stylesheets-1.75.2/manpages/docbook.xsl $xf - done + #cd doc + #for file in *.sgml; do + # xf=${file/.sgml/.xml} + # osx -xlower -xno-nl-in-tag $file > $xf || true + # sed -i "s|\(.*\), \(.*\)|\1, \2|g" $xf + # xsltproc /usr/share/xml/docbook/xsl-stylesheets-1.75.2/manpages/docbook.xsl $xf + #done - mkdir -p $pkgdir/usr/share/man/man8 - install -m644 arping.8 clockdiff.8 ping.8 ping6.8 rarpd.8 rdisc.8 \ - tftpd.8 tracepath.8 tracepath6.8 traceroute6.8 \ - $pkgdir/usr/share/man/man8/ + #mkdir -p $pkgdir/usr/share/man/man8 + #install -m644 arping.8 clockdiff.8 ping.8 ping6.8 rarpd.8 rdisc.8 \ + # tftpd.8 tracepath.8 tracepath6.8 traceroute6.8 \ + # $pkgdir/usr/share/man/man8/ # build traceroute # this is combined in this package because it's awkward as a separate package @@ -59,5 +60,5 @@ build() patch -Np1 -i ../permission-fix.patch || return 1 ./configure --prefix=/usr --sbindir=/bin --mandir=/usr/share/man make CFLAGS="${CFLAGS} -Ilinux-include/" || return 1 - make DESTDIR=${pkgdir} install install-man + make DESTDIR=${pkgdir} install #install-man }