diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2007-09-22 18:20:50 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2007-09-22 18:20:50 +0000 |
commit | 98d9068fc69b7ca64aee19a7dc72065506aea8c1 (patch) | |
tree | 80cfbb51d95b5f6af9f48230072ff2d04d895e9f /app-crypt/xca/files | |
parent | Stable on ppc wrt bug 189292 (diff) | |
download | gentoo-2-98d9068fc69b7ca64aee19a7dc72065506aea8c1.tar.gz gentoo-2-98d9068fc69b7ca64aee19a7dc72065506aea8c1.tar.bz2 gentoo-2-98d9068fc69b7ca64aee19a7dc72065506aea8c1.zip |
Version bump, bug#192938
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-crypt/xca/files')
-rw-r--r-- | app-crypt/xca/files/digest-xca-0.6.4 | 3 | ||||
-rw-r--r-- | app-crypt/xca/files/xca-0.6.4-build.patch | 34 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app-crypt/xca/files/digest-xca-0.6.4 b/app-crypt/xca/files/digest-xca-0.6.4 new file mode 100644 index 000000000000..51d9938f73d2 --- /dev/null +++ b/app-crypt/xca/files/digest-xca-0.6.4 @@ -0,0 +1,3 @@ +MD5 f805a2e094436f976c7a4cda5980027e xca-0.6.4.tar.gz 266574 +RMD160 15f8253bf2d80aac9053f52c189dabf5b73a5d6a xca-0.6.4.tar.gz 266574 +SHA256 63e5992d461cbea38fb5433c989ee1cc73d7dac5162e57d6e70a7735d9f80ed4 xca-0.6.4.tar.gz 266574 diff --git a/app-crypt/xca/files/xca-0.6.4-build.patch b/app-crypt/xca/files/xca-0.6.4-build.patch new file mode 100644 index 000000000000..c1292b46a990 --- /dev/null +++ b/app-crypt/xca/files/xca-0.6.4-build.patch @@ -0,0 +1,34 @@ +--- xca-0.6.4/configure 2007-08-13 20:55:50.000000000 +0200 ++++ xca-0.6.4.new/configure 2007-09-18 14:23:10.000000000 +0200 +@@ -103,17 +103,19 @@ + # check for libs + search_lib() { + for dir in ${DIRS}; do ++for subdir in "" ${subdirs}; do + for dbn in $@; do + for suffix in so dylib obj a; do + for lib in lib out; do +- if test -r "${dir}/${lib}/lib${dbn}.${suffix}"; then +- add_lib "${dir}/${lib}" "${dbn}" "${suffix}" +- echo "Found: lib${dbn}.${suffix} at ${dir}/${lib}" ++ if test -r "${dir}/${lib}/${subdir}/lib${dbn}.${suffix}"; then ++ add_lib "${dir}/${lib}/${subdir}" "${dbn}" "${suffix}" ++ echo "Found: lib${dbn}.${suffix} at ${dir}/${lib}/${subdir}" + return 0 + fi + done + done + done ++done + done + return 1 + } +@@ -123,7 +125,7 @@ + ######################### QT + subdirs="/qt /qt4" + search_includes Qt/qobject.h || err "The QT Library headerfiles were not found. Set QTDIR appropriately." +-subdirs="/qt/Qt /qt4/Qt" ++subdirs="/qt/Qt /qt4/Qt /qt4" + search_includes qobject.h || err "The QT Library headerfiles were not found. Set QTDIR appropriately." + search_lib QtGui4 QtGui || err "The QT library was not found." + search_lib c_r || true |