diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-04-05 12:29:39 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-04-05 12:29:39 +0000 |
commit | 0270b7b73a9ac7db91f898dffc557ea9670e10c4 (patch) | |
tree | ed9fcef0b849b088d3a6a1c4162a66a62cd3227d /kde-base/kdvi | |
parent | remove the -1 argument from enewgroup, fixing bug #87940 by Dmitri Vassilenko... (diff) | |
download | gentoo-2-0270b7b73a9ac7db91f898dffc557ea9670e10c4.tar.gz gentoo-2-0270b7b73a9ac7db91f898dffc557ea9670e10c4.tar.bz2 gentoo-2-0270b7b73a9ac7db91f898dffc557ea9670e10c4.zip |
Remove old files.
(Portage version: 2.0.51.19)
Diffstat (limited to 'kde-base/kdvi')
-rw-r--r-- | kde-base/kdvi/files/kdvi-configure-check-freetype.diff | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/kde-base/kdvi/files/kdvi-configure-check-freetype.diff b/kde-base/kdvi/files/kdvi-configure-check-freetype.diff deleted file mode 100644 index 69b2ceb52f6c..000000000000 --- a/kde-base/kdvi/files/kdvi-configure-check-freetype.diff +++ /dev/null @@ -1,37 +0,0 @@ ---- kdvi/configure.in.in.orig 2005-01-03 22:14:17.196708168 +0200 -+++ kdvi/configure.in.in 2005-01-03 22:14:46.062319928 +0200 -@@ -23,3 +23,34 @@ - - AC_CHECK_HEADERS(sys/types.h sys/params.h limits.h) - -+# Check for freetype2 -+KDE_FIND_PATH(freetype-config, FREETYPE_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin],) -+ -+if test -n "$FREETYPE_CONFIG"; then -+ vers=`$FREETYPE_CONFIG --version 2>/dev/null | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` -+ if test -n "$vers" && test "$vers" -ge 8000002 -+ then -+ LIBFREETYPE_LIBS="`$FREETYPE_CONFIG --libs`" -+ FREETYPE_RPATH= -+ for args in $LIBFREETYPE_LIBS; do -+ case $args in -+ -L*) -+ FREETYPE_RPATH="$FREETYPE_RPATH $args" -+ ;; -+ esac -+ done -+ FREETYPE_RPATH=`echo $FREETYPE_RPATH | sed -e "s/-L/-R/g"` -+ LIBFREETYPE_CFLAGS="`$FREETYPE_CONFIG --cflags`" -+ -+ AC_DEFINE_UNQUOTED(HAVE_FREETYPE, 1, [Defines if your system has the freetype library]) -+ fi -+fi -+ -+AC_SUBST(LIBFREETYPE_LIBS) -+AC_SUBST(LIBFREETYPE_CFLAGS) -+AC_SUBST(FREETYPE_RPATH) -+ -+if test -z "$LIBFREETYPE_LIBS"; then -+ DO_NOT_COMPILE="$DO_NOT_COMPILE kdvi" -+fi -+ |