summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2010-06-15 11:39:10 +0000
committerJustin Lecher <jlec@gentoo.org>2010-06-15 11:39:10 +0000
commitd9612cc941b7abb2c579567f235c6d80da4461b4 (patch)
treefda8db85c6d8aadd0609674306bdc6073f2cbd53 /app-misc/realpath/files
parentFix building with >= GTK+ 2.20 wrt #324101 by Helmut Jarausch. (diff)
downloadgentoo-2-d9612cc941b7abb2c579567f235c6d80da4461b4.tar.gz
gentoo-2-d9612cc941b7abb2c579567f235c6d80da4461b4.tar.bz2
gentoo-2-d9612cc941b7abb2c579567f235c6d80da4461b4.zip
QA, imported prefix changes
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/realpath/files')
-rw-r--r--app-misc/realpath/files/realpath-1.15-prefix.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/app-misc/realpath/files/realpath-1.15-prefix.patch b/app-misc/realpath/files/realpath-1.15-prefix.patch
new file mode 100644
index 000000000000..480425b2dfe6
--- /dev/null
+++ b/app-misc/realpath/files/realpath-1.15-prefix.patch
@@ -0,0 +1,41 @@
+* <grobian@gentoo.org>: /bin/sh is no good (on e.g. Solaris) same for perl
+
+--- common.mk
++++ common.mk
+@@ -8,16 +8,17 @@
+
+ override PACKAGE := realpath
+
+-PATH := /usr/bin:/usr/sbin:/bin:/sbin:$(PATH)
++#PATH := /usr/bin:/usr/sbin:/bin:/sbin:$(PATH)
++SHELL := @GENTOO_PORTAGE_EPREFIX@/bin/bash
+
+ # build abstraction
+-install_file := install -p -o root -g root -m 644
+-install_script := install -p -o root -g root -m 755
+-install_dir := install -d -o root -g root -m 755
++install_file := install -p -m 644
++install_script := install -p -m 755
++install_dir := install -d -m 755
+ install_link := ln -sf
+ compress := gzip -9f
+
+-prefix := /usr
++prefix := @GENTOO_PORTAGE_EPREFIX@/usr
+ etcdir := /etc/$(PACKAGE)
+ bindir := $(prefix)/bin
+ sbindir := $(prefix)/sbin
+@@ -33,11 +34,11 @@
+ webcgidir := $(prefix)/lib/cgi-bin
+ applicationsdir := $(prefix)/share/applications
+
+-PERL := /usr/bin/perl
++PERL := @GENTOO_PORTAGE_EPREFIX@/usr/bin/perl
+ CC ?= gcc
+ CFLAGS += -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -DVERSION='"$(VERSION)"' -DPACKAGE='"$(PACKAGE)"' -DLOCALEDIR='"$(nlsdir)"'
+ LDFLAGS +=
+-LIBS :=
++LIBS +=
+
+ ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0