diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-doc/doxygen/files/doxygen-1.5.6-prefix-misc-alt.patch | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-doc/doxygen/files/doxygen-1.5.6-prefix-misc-alt.patch')
-rw-r--r-- | app-doc/doxygen/files/doxygen-1.5.6-prefix-misc-alt.patch | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/app-doc/doxygen/files/doxygen-1.5.6-prefix-misc-alt.patch b/app-doc/doxygen/files/doxygen-1.5.6-prefix-misc-alt.patch new file mode 100644 index 000000000000..04d69e84f808 --- /dev/null +++ b/app-doc/doxygen/files/doxygen-1.5.6-prefix-misc-alt.patch @@ -0,0 +1,78 @@ +* make sure we always look for tools in the path, no "do it yourself paths" + +--- configure ++++ configure +@@ -169,21 +169,12 @@ + ;; + Darwin:*) + f_platform=macosx-c++ +- if test "$f_insttool" = NO; then +- f_insttool=/usr/bin/install +- fi + ;; + FreeBSD:*) + f_platform=freebsd-g++ +- if test "$f_insttool" = NO; then +- f_insttool=/usr/bin/install +- fi + ;; + HP-UX:*) + f_platform=hpux-g++ +- if test "$f_insttool" = NO; then +- f_insttool=/usr/bin/install +- fi + ;; + IRIX64:*) + f_platform=irix-64 +@@ -214,9 +205,6 @@ + ;; + SunOS:5*) + f_platform=solaris-g++ +- if test "$f_insttool" = NO; then +- f_insttool=/usr/bin/install +- fi + ;; + ULTRIX:*) + f_platform=ultrix-g++ +@@ -311,8 +299,8 @@ + + echo -n " Checking for GNU make tool... " + if test "$f_make" = NO; then +- make_names="gmake make" +- make_dirs="$bin_dirs /usr/bin /usr/local/bin /bin /sbin" ++ make_names="make" ++ make_dirs="$bin_dirs" + make_prog=NO + for i in $make_names; do + for j in $make_dirs; do +@@ -338,8 +326,8 @@ + + echo -n " Checking for GNU install tool... " + if test "$f_insttool" = NO; then +- install_names="ginstall install" +- install_dirs="$bin_dirs /usr/bin /usr/local/bin /bin /sbin /usr/ucb" ++ install_names="install" ++ install_dirs="$bin_dirs" + install_prog=NO + install_found=NO + for i in $install_names; do +@@ -397,7 +385,7 @@ + echo -n " Checking for perl... " + if test "$f_perl" = NO; then + perl_names="perl perl5" +- perl_dirs="$bin_dirs /usr/bin /usr/local/bin /bin /sbin" ++ perl_dirs="$bin_dirs" + perl_prog=NO + perl_found=NO + for i in $perl_names; do +@@ -550,10 +538,6 @@ + cat >> .tmakeconfig <<EOF + TMAKE_LFLAGS += -non_shared + EOF +- elif test "$f_platform" = "solaris-cc"; then +- cat >> .tmakeconfig <<EOF +- TMAKE_LFLAGS += -Bstatic +-EOF + elif test "$f_platform" = "hpux-cc"; then + cat >> .tmakeconfig <<EOF + TMAKE_LFLAGS += -noshared |