summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2011-01-24 11:26:29 -0600
committerWilliam Pitcock <nenolod@dereferenced.org>2011-01-24 11:26:29 -0600
commit10c410a2cfd3e437af9338eb4a6a6745ba4e1d32 (patch)
treeec435e000b2ea76e8b43df1ba449c15ea98a1fdc /testing
parentc9345b5f3f6a582ea06de0c71fa4e69713182eca (diff)
downloadaports-10c410a2cfd3e437af9338eb4a6a6745ba4e1d32.tar.bz2
aports-10c410a2cfd3e437af9338eb4a6a6745ba4e1d32.tar.xz
testing/metacity: promote to main
Diffstat (limited to 'testing')
-rw-r--r--testing/metacity/APKBUILD53
-rw-r--r--testing/metacity/metacity.post-install7
-rw-r--r--testing/metacity/metacity.post-upgrade7
-rw-r--r--testing/metacity/metacity.pre-deinstall7
4 files changed, 0 insertions, 74 deletions
diff --git a/testing/metacity/APKBUILD b/testing/metacity/APKBUILD
deleted file mode 100644
index 2bd2b6ba4..000000000
--- a/testing/metacity/APKBUILD
+++ /dev/null
@@ -1,53 +0,0 @@
-# Contributor: William Pitcock <nenolod@dereferenced.org>
-# Maintainer: William Pitcock <nenolod@dereferenced.org>
-pkgname=metacity
-pkgver=2.30.3
-pkgrel=3
-pkgdesc="GTK+ window manager"
-url="http://projects.gnome.org/metacity"
-arch="all"
-license="GPL"
-depends="zenity"
-depends_dev="gtk+-dev
- gconf-dev
- libx11-dev
- gnome-doc-utils
- libgnome-dev
- gnome-desktop-dev
- libwnck-dev
- librsvg-dev
- libxcomposite-dev"
-makedepends="$depends_dev intltool gobject-introspection"
-install="$pkgname.post-install $pkgname.pre-deinstall $pkgname.post-upgrade"
-subpackages="$pkgname-dev"
-replaces_dev="$pkgname"
-source="ftp://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2"
-
-_builddir="${srcdir}/${pkgname}-${pkgver}"
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --enable-compositor \
- --disable-scrollkeeper || return 1
- make || return 1
-}
-
-package() {
- cd "$_builddir"
-
- export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
- make DESTDIR="$pkgdir" install || return 1
-}
-
-md5sums="553784f376d96b902e19ff437cd5b339 metacity-2.30.3.tar.bz2"
diff --git a/testing/metacity/metacity.post-install b/testing/metacity/metacity.post-install
deleted file mode 100644
index 4b16502e4..000000000
--- a/testing/metacity/metacity.post-install
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-for i in metacity.schemas; do
- echo "Installing GConf2 schema $i."
- GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
- /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i >/dev/null
-done
diff --git a/testing/metacity/metacity.post-upgrade b/testing/metacity/metacity.post-upgrade
deleted file mode 100644
index 4b16502e4..000000000
--- a/testing/metacity/metacity.post-upgrade
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-for i in metacity.schemas; do
- echo "Installing GConf2 schema $i."
- GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
- /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i >/dev/null
-done
diff --git a/testing/metacity/metacity.pre-deinstall b/testing/metacity/metacity.pre-deinstall
deleted file mode 100644
index 3fab274c9..000000000
--- a/testing/metacity/metacity.pre-deinstall
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-for i in metacity.schemas; do
- echo "Uninstalling GConf2 schema $i."
- GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
- /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/$i >/dev/null
-done