Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/lzma-utils/files: lzma-nocxx.sh
Date: Sat, 10 May 2008 08:35:13
Message-Id: E1JukXt-0000mG-3S@stork.gentoo.org
1 vapier 08/05/10 08:35:09
2
3 Added: lzma-nocxx.sh
4 Log:
5 If building with USE=nocxx, neuter lzma-utils to only provide decompressor #220899 by Ulrich Müller.
6 (Portage version: 2.2_pre5)
7
8 Revision Changes Path
9 1.1 app-arch/lzma-utils/files/lzma-nocxx.sh
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma-utils/files/lzma-nocxx.sh?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/lzma-utils/files/lzma-nocxx.sh?rev=1.1&content-type=text/plain
13
14 Index: lzma-nocxx.sh
15 ===================================================================
16 #!/bin/sh
17
18 if [ "$1" = "-dc" ] ; then
19 shift
20 cat "$@" | lzmadec
21 else
22 (
23 echo "You've built lzma-utils without C++ support."
24 echo "If you want lzma support, rebuild with C++ support."
25 ) 1>&2
26 exit 1
27 fi
28
29
30
31 --
32 gentoo-commits@l.g.o mailing list