From 68257d47628200560ca53bf8f9ba37fd31f1c7ed Mon Sep 17 00:00:00 2001 From: Hannah Date: Sat, 2 Jan 2016 13:44:37 -0800 Subject: [PATCH] stripped binaries in diffutils and make recipes and created debug packages --- sys-apps/diffutils/diffutils-3.3.recipe | 9 +++++++-- sys-devel/make/make-3.82.recipe | 7 +++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/sys-apps/diffutils/diffutils-3.3.recipe b/sys-apps/diffutils/diffutils-3.3.recipe index e05674295..35f367ee1 100644 --- a/sys-apps/diffutils/diffutils-3.3.recipe +++ b/sys-apps/diffutils/diffutils-3.3.recipe @@ -18,7 +18,7 @@ COPYRIGHT="1992-2013 Free Software Foundation, Inc." HOMEPAGE="http://www.gnu.org/software/diffutils/" SOURCE_URI="http://ftp.gnu.org/pub/gnu/diffutils/diffutils-3.3.tar.xz" CHECKSUM_SHA256="a25e89a8ab65fded1731e4186be1bb25cda967834b6df973599cdcd5abdfc19c" -REVISION="2" +REVISION="3" ARCHITECTURES="x86 x86_gcc2 x86_64" PROVIDES=" @@ -44,6 +44,11 @@ BUILD_PREREQUIRES=" PATCHES="diffutils-3.3.patchset" +defineDebugInfoPackage diffutils \ + $binDir/cmp \ + $binDir/diff \ + $binDir/diff3 \ + $binDir/sdiff BUILD() { @@ -54,7 +59,7 @@ BUILD() INSTALL() { - make install + make install-strip rm $libDir/charset.alias } diff --git a/sys-devel/make/make-3.82.recipe b/sys-devel/make/make-3.82.recipe index ff4be35b6..a77ab246f 100644 --- a/sys-devel/make/make-3.82.recipe +++ b/sys-devel/make/make-3.82.recipe @@ -8,7 +8,7 @@ that it is possible to use Make to build and install the program." HOMEPAGE="http://www.gnu.org/software/make/" COPYRIGHT="1988-2010 Free Software Foundation, Inc." LICENSE="GNU GPL v3" -REVISION="5" +REVISION="6" SOURCE_URI="http://ftp.gnu.org/pub/gnu/make/make-3.82.tar.bz2" CHECKSUM_SHA256="e2c1a73f179c40c71e2fe8abf8a8a0688b8499538512984da4a76958d0402966" PATCHES="make-3.82.patch" @@ -34,6 +34,9 @@ BUILD_PREREQUIRES=" cmd:grep " +defineDebugInfoPackage make \ + $binDir/make + BUILD() { libtoolize --force --copy --install @@ -44,5 +47,5 @@ BUILD() INSTALL() { - ./make install + ./make install-strip }