From c86b8e5168da4300be3a5242d83bebe23876b0cf Mon Sep 17 00:00:00 2001 From: Humdinger Date: Sun, 10 Apr 2016 17:28:34 +0200 Subject: [PATCH] Filer: actually doesn't build with arch x86 Marked x86 as non-working. Slightly improved description. No need to increase the revision for these changes. Removed filer-1.0.0beta3.recipe as it didn't build anyway and possibly interferes with building filer-1.0.0, because it's picked up first when doing a "haikuporter filer". --- haiku-apps/filer/filer-1.0.0.recipe | 8 ++-- haiku-apps/filer/filer-1.0.0beta3.recipe | 56 ------------------------ 2 files changed, 4 insertions(+), 60 deletions(-) delete mode 100644 haiku-apps/filer/filer-1.0.0beta3.recipe diff --git a/haiku-apps/filer/filer-1.0.0.recipe b/haiku-apps/filer/filer-1.0.0.recipe index f27ca8dff..1c43f94b3 100644 --- a/haiku-apps/filer/filer-1.0.0.recipe +++ b/haiku-apps/filer/filer-1.0.0.recipe @@ -3,9 +3,9 @@ DESCRIPTION="The Filer is a powerful, flexible automatic file organizer. It \ is an implementation of the 'Sorting Chute' idea conceived on the Glass \ Elevator mailing list for Haiku. -Filer is an automatic file organizer. It takes the files it's opened with or \ -that are dropped on its icon and moves, renames, copies or does all sorts of \ -other things with them according to rules created by the user. +Filer takes the files it's opened with or that are dropped on its icon and \ +moves, renames, copies or does all sorts of other things with them according \ +to rules created by the user. Filer is accompanied by AutoFiler. Instead of working on a set of files \ provided by the user, it can be started together with Haiku to monitor certain \ @@ -19,7 +19,7 @@ SOURCE_URI="https://github.com/HaikuArchives/Filer/archive/1e452286b24fbf3722ec2 CHECKSUM_SHA256="8dd8bf6cfe2074425fed02e91bdb2854c65f96840e6ef16466f025f76f27f4b8" SOURCE_DIR="Filer-1e452286b24fbf3722ec2ffb06bc55467b01b0d2" -ARCHITECTURES="x86 x86_gcc2" +ARCHITECTURES="!x86 x86_gcc2" PROVIDES=" filer = $portVersion diff --git a/haiku-apps/filer/filer-1.0.0beta3.recipe b/haiku-apps/filer/filer-1.0.0beta3.recipe deleted file mode 100644 index 4c0386484..000000000 --- a/haiku-apps/filer/filer-1.0.0beta3.recipe +++ /dev/null @@ -1,56 +0,0 @@ -SUMMARY="An automated file management system" -DESCRIPTION=" -The Filer is a powerful, flexible automatic file organizer. It is an \ -implementation of the Sorting Chute idea conceived on the Glass Elevator \ -mailing list for Haiku. Just drag and drop files onto its icon, use the \ -Terminal, or send it files via the Open With menu. It can even automatically \ -file items in folders you specify. Simple enough for the novice user, powerful \ -enough for developers. It automates file management according to a set of \ -rules you determine and is pretty much limited only by your imagination. \ -Powerful on its own, it can also be extended by shell scripting. -" # Taken from homepage -HOMEPAGE="http://darkwyrm.beemulated.net/apps/filer.htm" -SOURCE_URI="git://github.com/HaikuArchives/Filer.git#4618b2ae9d7238254860cf3633701dd4f52dad37" -REVISION="1" - -LICENSE="MIT" -COPYRIGHT="2008 DarkWyrm" - -ARCHITECTURES="x86 x86_gcc2" - - -PROVIDES=" - filer = $portVersion - app:Filer = $portVersion - " - -REQUIRES=" - haiku - lib:libsqlite3 - " - -BUILD_PREREQUIRES=" - cmd:gcc - cmd:xres - " - -BUILD_REQUIRES=" - haiku_devel - devel:libsqlite3 - " - -BUILD() -{ - cd sources/Filer - gcc -lbe -lsqlite3 -ltranslation -o ../FilerApp *.cpp - rc -o Filer.rsrc Filer.rdef - xres -o ../FilerApp Filer.rsrc - mimeset -f ../FilerApp -} - -INSTALL() -{ - mkdir -p $appsDir - cp sources/FilerApp $appsDir/Filer - addAppDeskbarSymlink $appsDir/Filer -}