diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-05-31 06:48:43 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-05-31 06:48:43 +0000 |
commit | 2d8bfe77e93669d69691a126b666d7c6d5204ff3 (patch) | |
tree | 418caa842c8f1cf6706956ae4245ac63a6d6542c /media-libs/imlib/files | |
parent | Masking imlib-0.9.15 for testing. (diff) | |
download | historical-2d8bfe77e93669d69691a126b666d7c6d5204ff3.tar.gz historical-2d8bfe77e93669d69691a126b666d7c6d5204ff3.tar.bz2 historical-2d8bfe77e93669d69691a126b666d7c6d5204ff3.zip |
New release: 0.9.15 with a new patch to make gtk dependency optional. See bug #40453.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'media-libs/imlib/files')
-rw-r--r-- | media-libs/imlib/files/digest-imlib-1.9.15 | 1 | ||||
-rw-r--r-- | media-libs/imlib/files/imlib-1.9.15-gdk_flag.patch | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/media-libs/imlib/files/digest-imlib-1.9.15 b/media-libs/imlib/files/digest-imlib-1.9.15 new file mode 100644 index 000000000000..2088f3c8127c --- /dev/null +++ b/media-libs/imlib/files/digest-imlib-1.9.15 @@ -0,0 +1 @@ +MD5 7db987e6c52e4daf70d7d0f471238eae imlib-1.9.15.tar.bz2 683242 diff --git a/media-libs/imlib/files/imlib-1.9.15-gdk_flag.patch b/media-libs/imlib/files/imlib-1.9.15-gdk_flag.patch new file mode 100644 index 000000000000..8ca134f9a3a7 --- /dev/null +++ b/media-libs/imlib/files/imlib-1.9.15-gdk_flag.patch @@ -0,0 +1,29 @@ +--- configure.in.old 2004-08-26 15:19:09.404502200 +0200 ++++ configure.in 2004-08-26 15:40:08.283123560 +0200 +@@ -17,11 +17,26 @@ + dnl incase it is broken for example. + AC_ARG_ENABLE(shm, [ --enable-shm support shared memory if available [default=yes]], echo $enable_shm, enable_shm="yes") + ++AC_ARG_ENABLE(gdk, [ --enable-gdk enable gdk_imlib compilation [default=yes]],[ ++ if test x$enableval = xyes; then ++ disable_gdk="no" ++ else ++ disable_gdk="yes" ++ fi],disable_gdk=no) ++ ++if test x$disable_gdk = xno; then ++ AC_MSG_RESULT(no) ++ + AM_PATH_GTK(1.2.1,[ + GDK_IMLIB="gdk_imlib utils"],[ + GDK_IMLIB="" + AC_MSG_WARN([*** gdk_imlib will not be built ***])]) + ++else ++ AC_MSG_RESULT(yes) ++ GDK_IMLIB="" ++fi ++ + AC_MSG_CHECKING(whether to build gmodulized imlib) + + AC_ARG_ENABLE(modules, [ --disable-modules Disables dynamic module loading],[ |