Update to 2.6.3. New theme engines and stuff for GTK+ 2.6.
This commit is contained in:
parent
ec73f555e3
commit
893e01e3f9
@ -1,11 +1,12 @@
|
||||
# $OpenBSD: Makefile,v 1.6 2004/12/17 15:18:33 alek Exp $
|
||||
# $OpenBSD: Makefile,v 1.7 2005/05/24 21:30:27 marcm Exp $
|
||||
|
||||
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
||||
|
||||
COMMENT= "collection of theme engines for GTK+2"
|
||||
|
||||
DISTNAME= gtk-engines-2.2.0
|
||||
PKGNAME= gtk-engines2-2.2.0
|
||||
VERSION= 2.6.3
|
||||
DISTNAME= gtk-engines-${VERSION}
|
||||
PKGNAME= gtk-engines2-${VERSION}
|
||||
CATEGORIES= x11
|
||||
|
||||
HOMEPAGE= http://www.gnome.org
|
||||
@ -20,18 +21,14 @@ WANTLIB= X11 Xcursor Xext Xft Xinerama Xrender atk-1.0.0.0 fontconfig \
|
||||
freetype glib-2.0.0.0 gmodule-2.0.0.0 gobject-2.0.0.0 iconv \
|
||||
intl m pango-1.0.0.0 pangox-1.0.0.0 pangoxft-1.0.0.0
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gtk-engines/2.2/}
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gtk-engines/2.6/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
BUILD_DEPENDS= :pkgconfig->=0.9.0:devel/pkgconfig
|
||||
LIB_DEPENDS= gdk-x11-2.0.400.0,gdk_pixbuf-2.0.400.0,gtk-x11-2.0.400.0::x11/gtk+2
|
||||
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
|
||||
LIB_DEPENDS= gdk-x11-2.0.600.0,gdk_pixbuf-2.0.600.0,gtk-x11-2.0.600.0::x11/gtk+2
|
||||
|
||||
SEPARATE_BUILD= concurrent
|
||||
USE_X11= Yes
|
||||
USE_LIBTOOL= Yes
|
||||
CONFIGURE_STYLE= gnu
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/themes/Pixmap/gtk-2.0
|
||||
${INSTALL_DATA} ${WRKSRC}/pixbuf/examples/bubble/gtk-2.0/* ${PREFIX}/share/themes/Pixmap/gtk-2.0
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
MD5 (gtk-engines-2.2.0.tar.bz2) = 78e9276c28b509f3203de4873c20a263
|
||||
RMD160 (gtk-engines-2.2.0.tar.bz2) = 464568aae902512df57a858e07cc22a73f9223d8
|
||||
SHA1 (gtk-engines-2.2.0.tar.bz2) = 963e9fe91a9819b8a073d33c7facf441bae0c928
|
||||
SIZE (gtk-engines-2.2.0.tar.bz2) = 401883
|
||||
MD5 (gtk-engines-2.6.3.tar.bz2) = ba5975f8ab390fa43fc0bf94f4a3b023
|
||||
RMD160 (gtk-engines-2.6.3.tar.bz2) = 0370cbc589ec8fdabe79f6a75570b5462deb2b3b
|
||||
SHA1 (gtk-engines-2.6.3.tar.bz2) = ffa7abd8485d91665ebcc2cc4b664e03a45524ea
|
||||
SIZE (gtk-engines-2.6.3.tar.bz2) = 469402
|
||||
|
@ -1,72 +0,0 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.2 2003/06/12 19:27:25 marcm Exp $
|
||||
--- ltmain.sh.orig Fri Jan 17 15:48:57 2003
|
||||
+++ ltmain.sh Thu Apr 3 22:15:46 2003
|
||||
@@ -1082,6 +1082,17 @@ compiler."
|
||||
continue
|
||||
;;
|
||||
|
||||
+ -pthread)
|
||||
+ case $host in
|
||||
+ *-*-openbsd*)
|
||||
+ deplibs="$deplibs $arg"
|
||||
+ ;;
|
||||
+ *)
|
||||
+ continue
|
||||
+ ;;
|
||||
+ esac
|
||||
+ ;;
|
||||
+
|
||||
-module)
|
||||
module=yes
|
||||
continue
|
||||
@@ -1522,6 +1533,9 @@ compiler."
|
||||
fi
|
||||
continue
|
||||
;;
|
||||
+ -pthread)
|
||||
+ continue
|
||||
+ ;;
|
||||
%DEPLIBS%)
|
||||
alldeplibs=yes
|
||||
continue
|
||||
@@ -4575,40 +4589,6 @@ relink_command=\"$relink_command\""
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = ":" && exit 0
|
||||
|
||||
- echo "----------------------------------------------------------------------"
|
||||
- echo "Libraries have been installed in:"
|
||||
- for libdir in $libdirs; do
|
||||
- echo " $libdir"
|
||||
- done
|
||||
- echo
|
||||
- echo "If you ever happen to want to link against installed libraries"
|
||||
- echo "in a given directory, LIBDIR, you must either use libtool, and"
|
||||
- echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
|
||||
- echo "flag during linking and do at least one of the following:"
|
||||
- if test -n "$shlibpath_var"; then
|
||||
- echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
|
||||
- echo " during execution"
|
||||
- fi
|
||||
- if test -n "$runpath_var"; then
|
||||
- echo " - add LIBDIR to the \`$runpath_var' environment variable"
|
||||
- echo " during linking"
|
||||
- fi
|
||||
- if test -n "$hardcode_libdir_flag_spec"; then
|
||||
- libdir=LIBDIR
|
||||
- eval flag=\"$hardcode_libdir_flag_spec\"
|
||||
-
|
||||
- echo " - use the \`$flag' linker flag"
|
||||
- fi
|
||||
- if test -n "$admincmds"; then
|
||||
- echo " - have your system administrator run these commands:$admincmds"
|
||||
- fi
|
||||
- if test -f /etc/ld.so.conf; then
|
||||
- echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
|
||||
- fi
|
||||
- echo
|
||||
- echo "See any operating system documentation about shared libraries for"
|
||||
- echo "more information, such as the ld(1) and ld.so(8) manual pages."
|
||||
- echo "----------------------------------------------------------------------"
|
||||
exit 0
|
||||
;;
|
||||
|
@ -1,4 +1,10 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.3 2004/06/22 03:18:43 marcm Exp $
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.4 2005/05/24 21:30:28 marcm Exp $
|
||||
lib/gtk-2.0/2.4.0/engines/libcrux-engine.so
|
||||
lib/gtk-2.0/2.4.0/engines/libhcengine.so
|
||||
lib/gtk-2.0/2.4.0/engines/libindustrial.so
|
||||
lib/gtk-2.0/2.4.0/engines/liblighthouseblue.so
|
||||
lib/gtk-2.0/2.4.0/engines/libmetal.so
|
||||
lib/gtk-2.0/2.4.0/engines/libpixmap.so
|
||||
lib/gtk-2.0/2.4.0/engines/libmist.so
|
||||
lib/gtk-2.0/2.4.0/engines/libredmond95.so
|
||||
lib/gtk-2.0/2.4.0/engines/libsmooth.so
|
||||
lib/gtk-2.0/2.4.0/engines/libthinice.so
|
||||
|
@ -1,28 +1,119 @@
|
||||
@comment $OpenBSD: PLIST,v 1.9 2004/09/15 19:26:29 espie Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.10 2005/05/24 21:30:28 marcm Exp $
|
||||
@conflict gtk-thinice-engine-*
|
||||
%%SHARED%%
|
||||
lib/gtk-2.0/
|
||||
lib/gtk-2.0/2.4.0/
|
||||
lib/gtk-2.0/2.4.0/engines/
|
||||
lib/gtk-2.0/2.4.0/engines/libcrux-engine.la
|
||||
lib/gtk-2.0/2.4.0/engines/libhcengine.la
|
||||
lib/gtk-2.0/2.4.0/engines/libindustrial.la
|
||||
lib/gtk-2.0/2.4.0/engines/liblighthouseblue.la
|
||||
lib/gtk-2.0/2.4.0/engines/libmetal.la
|
||||
lib/gtk-2.0/2.4.0/engines/libpixmap.la
|
||||
lib/gtk-2.0/2.4.0/engines/libmist.la
|
||||
lib/gtk-2.0/2.4.0/engines/libredmond95.la
|
||||
lib/gtk-2.0/2.4.0/engines/libsmooth.la
|
||||
lib/gtk-2.0/2.4.0/engines/libthinice.la
|
||||
lib/pkgconfig/
|
||||
lib/pkgconfig/gtk-engines-2.pc
|
||||
share/themes/
|
||||
share/themes/Crux/
|
||||
share/themes/Crux/gtk-2.0/
|
||||
share/themes/Crux/gtk-2.0/gtkrc
|
||||
share/themes/Crux/pixmaps/
|
||||
share/themes/Crux/pixmaps/arrow_down-spinner.png
|
||||
share/themes/Crux/pixmaps/arrow_down.png
|
||||
share/themes/Crux/pixmaps/arrow_left.png
|
||||
share/themes/Crux/pixmaps/arrow_right.png
|
||||
share/themes/Crux/pixmaps/arrow_up-spinner.png
|
||||
share/themes/Crux/pixmaps/arrow_up.png
|
||||
share/themes/Crux/pixmaps/check-active-default-focus.png
|
||||
share/themes/Crux/pixmaps/check-active-default.png
|
||||
share/themes/Crux/pixmaps/check-active-hilight-focus.png
|
||||
share/themes/Crux/pixmaps/check-active-hilight.png
|
||||
share/themes/Crux/pixmaps/check-active-insensitive.png
|
||||
share/themes/Crux/pixmaps/check-active-pressed-focus.png
|
||||
share/themes/Crux/pixmaps/check-active-pressed.png
|
||||
share/themes/Crux/pixmaps/check-default-focus.png
|
||||
share/themes/Crux/pixmaps/check-default.png
|
||||
share/themes/Crux/pixmaps/check-hilight-focus.png
|
||||
share/themes/Crux/pixmaps/check-hilight.png
|
||||
share/themes/Crux/pixmaps/check-insensitive.png
|
||||
share/themes/Crux/pixmaps/check-pressed-focus.png
|
||||
share/themes/Crux/pixmaps/check-pressed.png
|
||||
share/themes/Crux/pixmaps/progressbar-left.png
|
||||
share/themes/Crux/pixmaps/progressbar-right.png
|
||||
share/themes/Crux/pixmaps/progressbar.png
|
||||
share/themes/Crux/pixmaps/progressbar_trough.png
|
||||
share/themes/Crux/pixmaps/radio-active-default-focus.png
|
||||
share/themes/Crux/pixmaps/radio-active-default.png
|
||||
share/themes/Crux/pixmaps/radio-active-hilight-focus.png
|
||||
share/themes/Crux/pixmaps/radio-active-hilight.png
|
||||
share/themes/Crux/pixmaps/radio-active-insensitive.png
|
||||
share/themes/Crux/pixmaps/radio-active-pressed-focus.png
|
||||
share/themes/Crux/pixmaps/radio-active-pressed.png
|
||||
share/themes/Crux/pixmaps/radio-default-focus.png
|
||||
share/themes/Crux/pixmaps/radio-default.png
|
||||
share/themes/Crux/pixmaps/radio-hilight-focus.png
|
||||
share/themes/Crux/pixmaps/radio-hilight.png
|
||||
share/themes/Crux/pixmaps/radio-insensitive.png
|
||||
share/themes/Crux/pixmaps/radio-pressed-focus.png
|
||||
share/themes/Crux/pixmaps/radio-pressed.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-down-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-down-pressed.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-down.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-left-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-left-pressed.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-left.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-right-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-right-pressed.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-right.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-up-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-up-pressed.png
|
||||
share/themes/Crux/pixmaps/scroller-arrow-up.png
|
||||
share/themes/Crux/pixmaps/scroller-h-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-h-thumb-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-h-thumb.png
|
||||
share/themes/Crux/pixmaps/scroller-h-trough.png
|
||||
share/themes/Crux/pixmaps/scroller-h.png
|
||||
share/themes/Crux/pixmaps/scroller-v-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-v-thumb-hilight.png
|
||||
share/themes/Crux/pixmaps/scroller-v-thumb.png
|
||||
share/themes/Crux/pixmaps/scroller-v-trough.png
|
||||
share/themes/Crux/pixmaps/scroller-v.png
|
||||
share/themes/Crux/pixmaps/slider_h_thumb.png
|
||||
share/themes/Crux/pixmaps/slider_h_trough.png
|
||||
share/themes/Crux/pixmaps/slider_h_trough_focus.png
|
||||
share/themes/Crux/pixmaps/slider_v_thumb.png
|
||||
share/themes/Crux/pixmaps/slider_v_trough.png
|
||||
share/themes/Crux/pixmaps/slider_v_trough_focus.png
|
||||
share/themes/Crux/pixmaps/tab_left-unsel.png
|
||||
share/themes/Crux/pixmaps/tab_left.png
|
||||
share/themes/Crux/pixmaps/tab_right.png
|
||||
share/themes/Crux/pixmaps/tab_sel-bottom.png
|
||||
share/themes/Crux/pixmaps/tab_sel.png
|
||||
share/themes/Crux/pixmaps/tab_usel-bottom-left.png
|
||||
share/themes/Crux/pixmaps/tab_usel-bottom.png
|
||||
share/themes/Crux/pixmaps/tab_usel-left.png
|
||||
share/themes/Crux/pixmaps/tab_usel.png
|
||||
share/themes/Industrial/
|
||||
share/themes/Industrial/gtk-2.0/
|
||||
share/themes/Industrial/gtk-2.0/gtkrc
|
||||
share/themes/LighthouseBlue/
|
||||
share/themes/LighthouseBlue/gtk-2.0/
|
||||
share/themes/LighthouseBlue/gtk-2.0/gtkrc
|
||||
share/themes/Metal/
|
||||
@comment share/themes/Metal/README.html
|
||||
share/themes/Metal/gtk-2.0/
|
||||
share/themes/Metal/gtk-2.0/gtkrc
|
||||
share/themes/Mist/
|
||||
share/themes/Mist/gtk-2.0/
|
||||
share/themes/Mist/gtk-2.0/gtkrc
|
||||
share/themes/Pixmap/
|
||||
share/themes/Pixmap/gtk-2.0/
|
||||
share/themes/Pixmap/gtk-2.0/bc-dark.png
|
||||
share/themes/Pixmap/gtk-2.0/bc-light.png
|
||||
share/themes/Pixmap/gtk-2.0/bc.png
|
||||
share/themes/Pixmap/gtk-2.0/bubble-blue.png
|
||||
share/themes/Pixmap/gtk-2.0/bubble-parts.xcf
|
||||
share/themes/Pixmap/gtk-2.0/gtkrc
|
||||
share/themes/Pixmap/gtk-2.0/triangle_background.png
|
||||
share/themes/Redmond95/
|
||||
@comment share/themes/Redmond95/README.html
|
||||
share/themes/Redmond95/gtk-2.0/
|
||||
share/themes/Redmond95/gtk-2.0/gtkrc
|
||||
%%SHARED%%
|
||||
share/themes/Redmond/
|
||||
share/themes/Redmond/gtk/
|
||||
share/themes/Redmond/gtk-2.0/
|
||||
share/themes/Redmond/gtk-2.0/gtkrc
|
||||
share/themes/Redmond/gtk/gtkrc
|
||||
share/themes/ThinIce/
|
||||
share/themes/ThinIce/gtk-2.0/
|
||||
share/themes/ThinIce/gtk-2.0/gtkrc
|
||||
|
Loading…
x
Reference in New Issue
Block a user