diff options
author | dinoex <dinoex@FreeBSD.org> | 2011-11-24 14:00:08 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2011-11-24 14:00:08 +0800 |
commit | 989892b5e8c73765de6ef49c6a5a91ab4bd7eff4 (patch) | |
tree | f7118331a5ab9410dd59978a2ecd96e1252aa9f4 /graphics/gimageview | |
parent | e75edda405aaef090ff32d6cf97d8db95b4e430a (diff) | |
download | freebsd-ports-gnome-989892b5e8c73765de6ef49c6a5a91ab4bd7eff4.tar.gz freebsd-ports-gnome-989892b5e8c73765de6ef49c6a5a91ab4bd7eff4.tar.zst freebsd-ports-gnome-989892b5e8c73765de6ef49c6a5a91ab4bd7eff4.zip |
- explicit option WITH_IMLIB
Ths eliminates autodetections problems
Feature safe: yes
Diffstat (limited to 'graphics/gimageview')
-rw-r--r-- | graphics/gimageview/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/gimageview/Makefile b/graphics/gimageview/Makefile index 8bcb2631eb6f..194dc355ccf5 100644 --- a/graphics/gimageview/Makefile +++ b/graphics/gimageview/Makefile @@ -30,7 +30,8 @@ OPTIONS= SPLASH "Show splash on startup" on \ LIBRSVG2 "Build with librsvg-2 support" on \ LIBEXIF "Build with libexif support" on \ MPLAYER "Build with Mplayer support" on \ - LIBXINE "Build with Xine support" off + LIBXINE "Build with Xine support" off \ + IMLIB "Build with imlib instead of gdk-pixbuf" off USE_GNOME= gtk20 USE_XORG= xinerama ice @@ -51,10 +52,9 @@ CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .endif -.if ${HAVE_GNOME:Mimlib}!="" +.if defined(WITH_IMLIB) USE_GNOME+= imlib PKGNAMESUFFIX= -imlib -WITH_IMLIB= yes CONFIGURE_ARGS+= --disable-gdk-pixbuf .endif |