summaryrefslogtreecommitdiff
path: root/emulators/suse100_gtk2
diff options
context:
space:
mode:
authortonio <tonio@pkgsrc.org>2006-03-09 20:36:06 +0000
committertonio <tonio@pkgsrc.org>2006-03-09 20:36:06 +0000
commit4e3da9749c6696c717eef12702e6b70cf7228132 (patch)
tree44f710ebf2046094f6184fa06e7c773ada9f0464 /emulators/suse100_gtk2
parent04e9e931d23a1630f2d71269073f31105a740588 (diff)
downloadpkgsrc-4e3da9749c6696c717eef12702e6b70cf7228132.tar.gz
Import openSUSE 10.0 base packages for Linux emulation
Add support for powerpc (but it does *not* work stable yet)
Diffstat (limited to 'emulators/suse100_gtk2')
-rw-r--r--emulators/suse100_gtk2/DESCR5
-rw-r--r--emulators/suse100_gtk2/INSTALL15
-rw-r--r--emulators/suse100_gtk2/Makefile34
-rw-r--r--emulators/suse100_gtk2/Makefile.i3868
-rw-r--r--emulators/suse100_gtk2/Makefile.powerpc8
-rw-r--r--emulators/suse100_gtk2/Makefile.x86_648
-rw-r--r--emulators/suse100_gtk2/PLIST4
-rw-r--r--emulators/suse100_gtk2/distinfo.i38620
-rw-r--r--emulators/suse100_gtk2/distinfo.powerpc20
-rw-r--r--emulators/suse100_gtk2/distinfo.x86_6420
10 files changed, 142 insertions, 0 deletions
diff --git a/emulators/suse100_gtk2/DESCR b/emulators/suse100_gtk2/DESCR
new file mode 100644
index 00000000000..962f8891e8f
--- /dev/null
+++ b/emulators/suse100_gtk2/DESCR
@@ -0,0 +1,5 @@
+Linux compatibility package based on the SuSE Linux distribution, take a
+look at "http://www.suse.com/" for more information about it.
+
+This package supports running ELF binaries linked with glibc2 which require
+GTK2 shared libraries.
diff --git a/emulators/suse100_gtk2/INSTALL b/emulators/suse100_gtk2/INSTALL
new file mode 100644
index 00000000000..625cf3099f8
--- /dev/null
+++ b/emulators/suse100_gtk2/INSTALL
@@ -0,0 +1,15 @@
+# $NetBSD: INSTALL,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+#
+# Initialize gtk/pango module configuration.
+#
+case ${STAGE} in
+ POST-INSTALL)
+ @EMULDIR@/opt/gnome/bin/gtk-query-immodules-2.0 > @EMULDIR@/etc/opt/gnome/gtk-2.0/gtk.immodules
+
+ @EMULDIR@/opt/gnome/bin/gdk-pixbuf-query-loaders > @EMULDIR@/etc/opt/gnome/gtk-2.0/gdk-pixbuf.loaders
+
+ @EMULDIR@/opt/gnome/bin/pango-querymodules > @EMULDIR@/etc/opt/gnome/pango/pango.modules
+ ;;
+ *)
+ ;;
+esac
diff --git a/emulators/suse100_gtk2/Makefile b/emulators/suse100_gtk2/Makefile
new file mode 100644
index 00000000000..07beecbd236
--- /dev/null
+++ b/emulators/suse100_gtk2/Makefile
@@ -0,0 +1,34 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+
+DISTNAME= suse_gtk2-${SUSE_VERSION}
+CATEGORIES= emulators
+MASTER_SITES= ${MASTER_SITE_SUSE100}
+DISTFILES= ${RPMFILES}
+
+MAINTAINER= tonio@NetBSD.org
+HOMEPAGE= http://www.suse.com/
+COMMENT= Linux compatibility package for GTK2 binaries
+
+DEPENDS+= suse_fontconfig>=${SUSE_VERSION}:../../emulators/suse100_fontconfig
+DEPENDS+= suse_freetype2>=${SUSE_VERSION}:../../emulators/suse100_freetype2
+DEPENDS+= suse_libjpeg>=${SUSE_VERSION}:../../emulators/suse100_libjpeg
+DEPENDS+= suse_libpng>=${SUSE_VERSION}:../../emulators/suse100_libpng
+DEPENDS+= suse_libtiff>=${SUSE_VERSION}:../../emulators/suse100_libtiff
+DEPENDS+= suse_x11>=${SUSE_VERSION}:../../emulators/suse100_x11
+
+EXTRACT_ONLY= # empty
+NO_BUILD= YES
+PLIST_SRC= ${WRKDIR}/PLIST_DYNAMIC
+
+# Initialize gtk/pango modules.
+FILES_SUBST+= EMULDIR=${EMULDIR:Q}
+PLIST_SUBST+= EMULSUBDIR=${EMULSUBDIR:Q}
+INSTALL_EXTRA_TMPL+= ${PKGDIR}/INSTALL
+
+.if exists(Makefile.${MACHINE_ARCH})
+.include "Makefile.${MACHINE_ARCH}"
+DISTINFO_FILE= ${.CURDIR}/distinfo.${MACHINE_ARCH}
+.endif
+
+.include "../../emulators/suse100_linux/Makefile.common"
+.include "../../mk/bsd.pkg.mk"
diff --git a/emulators/suse100_gtk2/Makefile.i386 b/emulators/suse100_gtk2/Makefile.i386
new file mode 100644
index 00000000000..41855527538
--- /dev/null
+++ b/emulators/suse100_gtk2/Makefile.i386
@@ -0,0 +1,8 @@
+# $NetBSD: Makefile.i386,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+
+RPMFILES= atk-1.10.3-2.${SUSE_ARCH}.rpm \
+ glib2-2.8.1-3.${SUSE_ARCH}.rpm \
+ gtk2-2.8.3-4.${SUSE_ARCH}.rpm \
+ cairo-1.0.0-7.${SUSE_ARCH}.rpm \
+ glitz-0.4.4-4.${SUSE_ARCH}.rpm \
+ pango-1.10.0-3.${SUSE_ARCH}.rpm
diff --git a/emulators/suse100_gtk2/Makefile.powerpc b/emulators/suse100_gtk2/Makefile.powerpc
new file mode 100644
index 00000000000..312ac05e037
--- /dev/null
+++ b/emulators/suse100_gtk2/Makefile.powerpc
@@ -0,0 +1,8 @@
+# $NetBSD: Makefile.powerpc,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+
+RPMFILES= atk-1.10.3-2.${SUSE_ARCH}.rpm \
+ glib2-2.8.1-3.${SUSE_ARCH}.rpm \
+ gtk2-2.8.3-4.${SUSE_ARCH}.rpm \
+ cairo-1.0.0-7.${SUSE_ARCH}.rpm \
+ glitz-0.4.4-4.${SUSE_ARCH}.rpm \
+ pango-1.10.0-3.${SUSE_ARCH}.rpm
diff --git a/emulators/suse100_gtk2/Makefile.x86_64 b/emulators/suse100_gtk2/Makefile.x86_64
new file mode 100644
index 00000000000..7d74b8b4ddb
--- /dev/null
+++ b/emulators/suse100_gtk2/Makefile.x86_64
@@ -0,0 +1,8 @@
+# $NetBSD: Makefile.x86_64,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+
+RPMFILES= atk-1.10.3-2.${SUSE_ARCH}.rpm \
+ glib2-2.8.1-3.${SUSE_ARCH}.rpm \
+ gtk2-2.8.3-4.${SUSE_ARCH}.rpm \
+ cairo-1.0.0-7.${SUSE_ARCH}.rpm \
+ glitz-0.4.4-4.${SUSE_ARCH}.rpm \
+ pango-1.10.0-3.${SUSE_ARCH}.rpm
diff --git a/emulators/suse100_gtk2/PLIST b/emulators/suse100_gtk2/PLIST
new file mode 100644
index 00000000000..72158d5fc79
--- /dev/null
+++ b/emulators/suse100_gtk2/PLIST
@@ -0,0 +1,4 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+${EMULSUBDIR}/etc/opt/gnome/gtk-2.0/gtk.immodules
+${EMULSUBDIR}/etc/opt/gnome/gtk-2.0/gdk-pixbuf.loaders
+${EMULSUBDIR}/etc/opt/gnome/pango/pango.modules
diff --git a/emulators/suse100_gtk2/distinfo.i386 b/emulators/suse100_gtk2/distinfo.i386
new file mode 100644
index 00000000000..407e3e2758f
--- /dev/null
+++ b/emulators/suse100_gtk2/distinfo.i386
@@ -0,0 +1,20 @@
+$NetBSD: distinfo.i386,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+
+SHA1 (suse100/i586/atk-1.10.3-2.i586.rpm) = c1969029b70e91f49f3362e3aa385ccf9f520579
+RMD160 (suse100/i586/atk-1.10.3-2.i586.rpm) = 10a1609d6a1fdc1f5697db125a069ae0934c3a72
+Size (suse100/i586/atk-1.10.3-2.i586.rpm) = 182979 bytes
+SHA1 (suse100/i586/glib2-2.8.1-3.i586.rpm) = 82e97fbbf57d336092288b85d878fc3aaf047a4e
+RMD160 (suse100/i586/glib2-2.8.1-3.i586.rpm) = 155a23eb416591ccd2dc7878de8a224332532065
+Size (suse100/i586/glib2-2.8.1-3.i586.rpm) = 563199 bytes
+SHA1 (suse100/i586/gtk2-2.8.3-4.i586.rpm) = 5241ed1887f82cb9d0883963d6ac59f6af24a99d
+RMD160 (suse100/i586/gtk2-2.8.3-4.i586.rpm) = c9d4dbd7b4158b0db4ec7ca5209bd23b2c23daf3
+Size (suse100/i586/gtk2-2.8.3-4.i586.rpm) = 3656563 bytes
+SHA1 (suse100/i586/cairo-1.0.0-7.i586.rpm) = 1261a3670513c249a04f6a06b09c409a08b79552
+RMD160 (suse100/i586/cairo-1.0.0-7.i586.rpm) = 6ed5772c6d5a8d363ffa5bd1948b78ed381d4ff5
+Size (suse100/i586/cairo-1.0.0-7.i586.rpm) = 249171 bytes
+SHA1 (suse100/i586/glitz-0.4.4-4.i586.rpm) = 27ffca0347c5940af2a42fb33c795fc606ab7bf4
+RMD160 (suse100/i586/glitz-0.4.4-4.i586.rpm) = 54a95f704cbfd07d388bcc4bb1bcd54aa86fca46
+Size (suse100/i586/glitz-0.4.4-4.i586.rpm) = 76101 bytes
+SHA1 (suse100/i586/pango-1.10.0-3.i586.rpm) = 03520a04603bc8b90c15ae9a63ca2a9feb7970e3
+RMD160 (suse100/i586/pango-1.10.0-3.i586.rpm) = 309607551b8c814a93b7d79e6236da2737539ce7
+Size (suse100/i586/pango-1.10.0-3.i586.rpm) = 272552 bytes
diff --git a/emulators/suse100_gtk2/distinfo.powerpc b/emulators/suse100_gtk2/distinfo.powerpc
new file mode 100644
index 00000000000..71abbbe8b2d
--- /dev/null
+++ b/emulators/suse100_gtk2/distinfo.powerpc
@@ -0,0 +1,20 @@
+$NetBSD: distinfo.powerpc,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+
+SHA1 (suse100/ppc/atk-1.10.3-2.ppc.rpm) = f583040453c2f4615934026eb1dd1b29ecca1966
+RMD160 (suse100/ppc/atk-1.10.3-2.ppc.rpm) = 5ddf561d899880ce52a04a78a2a2e0db8bf9ca27
+Size (suse100/ppc/atk-1.10.3-2.ppc.rpm) = 193979 bytes
+SHA1 (suse100/ppc/glib2-2.8.1-3.ppc.rpm) = 06b21b579f9f5fbd697e402d8d150e5dbf65bb9d
+RMD160 (suse100/ppc/glib2-2.8.1-3.ppc.rpm) = ed70be3ec4074a17b18e5a02d5a72d815b5a7abe
+Size (suse100/ppc/glib2-2.8.1-3.ppc.rpm) = 624140 bytes
+SHA1 (suse100/ppc/gtk2-2.8.3-4.ppc.rpm) = f74493ae6efe4e67a6e8d25e351dd48aff833c8f
+RMD160 (suse100/ppc/gtk2-2.8.3-4.ppc.rpm) = d52c5bf3a8c1fe62c5fda0e46b84299ed902befb
+Size (suse100/ppc/gtk2-2.8.3-4.ppc.rpm) = 3894148 bytes
+SHA1 (suse100/ppc/cairo-1.0.0-7.ppc.rpm) = 416ce5ea34c77e13ff527a820bb94f2441f8ef95
+RMD160 (suse100/ppc/cairo-1.0.0-7.ppc.rpm) = fb7e2ed80bfd091c2c73209d9dda2335dcd94f7d
+Size (suse100/ppc/cairo-1.0.0-7.ppc.rpm) = 258214 bytes
+SHA1 (suse100/ppc/glitz-0.4.4-4.ppc.rpm) = eb681c824e99342cbbc7dcf8c3d0fb9038545655
+RMD160 (suse100/ppc/glitz-0.4.4-4.ppc.rpm) = fe43ca7ebbbecce9851b207f776debfa6d59782a
+Size (suse100/ppc/glitz-0.4.4-4.ppc.rpm) = 87494 bytes
+SHA1 (suse100/ppc/pango-1.10.0-3.ppc.rpm) = 5b6bd355a34cb908cefe98bf8474aed75bd27635
+RMD160 (suse100/ppc/pango-1.10.0-3.ppc.rpm) = e4fb855ddf12effb80528e71835909881dbe819e
+Size (suse100/ppc/pango-1.10.0-3.ppc.rpm) = 315684 bytes
diff --git a/emulators/suse100_gtk2/distinfo.x86_64 b/emulators/suse100_gtk2/distinfo.x86_64
new file mode 100644
index 00000000000..6b6f57c0193
--- /dev/null
+++ b/emulators/suse100_gtk2/distinfo.x86_64
@@ -0,0 +1,20 @@
+$NetBSD: distinfo.x86_64,v 1.1.1.1 2006/03/09 20:38:51 tonio Exp $
+
+SHA1 (suse100/x86_64/atk-1.10.3-2.x86_64.rpm) = 97257906dedffa12a03f5986a39ed18091c15ea1
+RMD160 (suse100/x86_64/atk-1.10.3-2.x86_64.rpm) = ad67d77c67c246e26674a52ec4be4fa5440f506b
+Size (suse100/x86_64/atk-1.10.3-2.x86_64.rpm) = 188249 bytes
+SHA1 (suse100/x86_64/glib2-2.8.1-3.x86_64.rpm) = 15ea9709b5b18f2495b13de75fad1527e70c8850
+RMD160 (suse100/x86_64/glib2-2.8.1-3.x86_64.rpm) = be9b2b1ffa62e4c12290f509c9ad1621ae8bd9d1
+Size (suse100/x86_64/glib2-2.8.1-3.x86_64.rpm) = 609991 bytes
+SHA1 (suse100/x86_64/gtk2-2.8.3-4.x86_64.rpm) = 6d280b963567bb5a525d280f88756c1dfa7fea20
+RMD160 (suse100/x86_64/gtk2-2.8.3-4.x86_64.rpm) = 7a579a9c7a3b24f3dab328fe4507e772cf34a4dd
+Size (suse100/x86_64/gtk2-2.8.3-4.x86_64.rpm) = 3829330 bytes
+SHA1 (suse100/x86_64/cairo-1.0.0-7.x86_64.rpm) = c856e0dbe255848b13ccef2894c552e131577297
+RMD160 (suse100/x86_64/cairo-1.0.0-7.x86_64.rpm) = ad119d00af603ee147f8eb3042aae312a19badca
+Size (suse100/x86_64/cairo-1.0.0-7.x86_64.rpm) = 262289 bytes
+SHA1 (suse100/x86_64/glitz-0.4.4-4.x86_64.rpm) = 1a71fb5da673006546fcf492820c2926e7501dd5
+RMD160 (suse100/x86_64/glitz-0.4.4-4.x86_64.rpm) = 837da9e0d8f0b42d49fafe1db3299e8ac28f1df0
+Size (suse100/x86_64/glitz-0.4.4-4.x86_64.rpm) = 80965 bytes
+SHA1 (suse100/x86_64/pango-1.10.0-3.x86_64.rpm) = 21597f12a195cfb1d018cc3c82db9a786036f979
+RMD160 (suse100/x86_64/pango-1.10.0-3.x86_64.rpm) = a2b5728987ba8d8b181b1e8be8585be1566f43ab
+Size (suse100/x86_64/pango-1.10.0-3.x86_64.rpm) = 294276 bytes