diff --git a/devhelp-3.4.1-0.bee b/devhelp-3.4.1-0.bee deleted file mode 100755 index 0c754cc90..000000000 --- a/devhelp-3.4.1-0.bee +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://ftp.gnome.org/pub/gnome/sources/devhelp/${PKGVERSION[2]}/devhelp-${PKGVERSION}.tar.xz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - - - -# BEE_CONFIGURE=compat - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} - diff --git a/webkitgtk2-2.4.9-0.bee b/webkitgtk2-2.4.9-0.bee deleted file mode 100755 index b4c860c63..000000000 --- a/webkitgtk2-2.4.9-0.bee +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env beesh - -SRCURL[0]="http://webkitgtk.org/releases/webkitgtk-${PKGVERSION}.tar.xz" - -build_in_sourcedir - -# see http://www.linuxfromscratch.org/blfs/view/svn/x/webkitgtk2.html - -mee_configure() { - - set -x - - cd $B - mkdir -vp /build-3 - cp -a Documentation build-3 - cd build-3 - ../configure --prefix=/usr --enable-introspectio - -# cd $B -# mkdir build-1 -# cd build-1 -# ../configure --prefix=/usr --with-gtk=2.0 --disable-webkit - -} - -mee_build() { - set -x - - cd $B/build-3 - make - -# cd $B/build-1 -# make -} - -mee_install() { - set -x - - cd $B/build-3 - make install DESTDIR=$D - -# cd $B/build-1 -# make install DESTDIR=$D -}