From 0b0569a10843e625e2f26d6f395123838bd402bd Mon Sep 17 00:00:00 2001 From: Humdinger Date: Sat, 11 Jun 2016 11:18:36 +0200 Subject: [PATCH] Added new recipe for Clipdinger 0.5.3 ..and removed outdated recipes. --- haiku-apps/clipdinger/clipdinger-0.1.recipe | 70 ----------------- haiku-apps/clipdinger/clipdinger-0.2.recipe | 69 ----------------- haiku-apps/clipdinger/clipdinger-0.3.recipe | 67 ---------------- haiku-apps/clipdinger/clipdinger-0.4.recipe | 70 ----------------- ...r-0.5.1.recipe => clipdinger-0.5.3.recipe} | 4 +- haiku-apps/clipdinger/clipdinger-0.5.recipe | 77 ------------------- 6 files changed, 2 insertions(+), 355 deletions(-) delete mode 100644 haiku-apps/clipdinger/clipdinger-0.1.recipe delete mode 100644 haiku-apps/clipdinger/clipdinger-0.2.recipe delete mode 100644 haiku-apps/clipdinger/clipdinger-0.3.recipe delete mode 100644 haiku-apps/clipdinger/clipdinger-0.4.recipe rename haiku-apps/clipdinger/{clipdinger-0.5.1.recipe => clipdinger-0.5.3.recipe} (92%) delete mode 100644 haiku-apps/clipdinger/clipdinger-0.5.recipe diff --git a/haiku-apps/clipdinger/clipdinger-0.1.recipe b/haiku-apps/clipdinger/clipdinger-0.1.recipe deleted file mode 100644 index 8abeab19e..000000000 --- a/haiku-apps/clipdinger/clipdinger-0.1.recipe +++ /dev/null @@ -1,70 +0,0 @@ -SUMMARY="A tool to manage a history of the system clipboard" -DESCRIPTION="Clipdinger solves the problem that you often have to paste some \ -text you've just recently copied to the clipboard, but which has been \ -replaced by something you've copied more recently... It also saves the \ -history so it'll appear just as you left it on the last shutdown. - -Clipdinger provides a history of your recent clippings and should be started \ -automatically on every boot-up by creating a link to it at ~/config/settings/\ -boot/launch/. - -You access the history by pressing SHIFT + ALT + V, which opens the \ -Clipdinger window where you can select an entry with the cursor keys and \ -paste it by hitting RETURN. ESCAPE minimizes the window without pasting." -HOMEPAGE="https://github.com/humdingerb/clipdinger" -SOURCE_URI="git://github.com/humdingerb/clipdinger.git#e762bfb3b404537e5bb666bc78bea3dbd4a591d7" -LICENSE="MIT" -COPYRIGHT="2010-2015 Humdinger" -REVISION="1" -ARCHITECTURES="x86_gcc2 x86 x86_64" - -PROVIDES=" - clipdinger = $portVersion - app:Clipdinger = $portVersion - add_on:ClipdingerInputDevice = $portVersion - add_on:ClipdingerInputFilter = $portVersion - " -REQUIRES="haiku " - -BUILD_REQUIRES="haiku_devel" - -BUILD_PREREQUIRES=" - makefile_engine - cmd:gcc - cmd:make - " - -USER_SETTINGS_FILES=" - settings/Clipdinger/Clipdinger_settings - settings/Clipdinger/Clipdinger_history - " - -BUILD() -{ - make $jobArgs OBJ_DIR=objects - make bindcatalogs OBJ_DIR=objects - - cd input_device - make $jobArgs OBJ_DIR=objects - cd ../input_filter - make $jobArgs OBJ_DIR=objects -} - -INSTALL() -{ - clipdingerDir=$appsDir/Clipdinger - - mkdir -p $clipdingerDir - cp -af objects/Clipdinger $clipdingerDir - cp -af ReadMe.html $clipdingerDir - cp -r images $clipdingerDir - - mkdir -p $addOnsDir/input_server/devices - mkdir -p $addOnsDir/input_server/filters - cp -af input_device/objects/ClipdingerInputDevice \ - $addOnsDir/input_server/devices - cp -af input_filter/objects/ClipdingerInputFilter \ - $addOnsDir/input_server/filters - - addAppDeskbarSymlink $clipdingerDir/Clipdinger -} diff --git a/haiku-apps/clipdinger/clipdinger-0.2.recipe b/haiku-apps/clipdinger/clipdinger-0.2.recipe deleted file mode 100644 index 7e80a682d..000000000 --- a/haiku-apps/clipdinger/clipdinger-0.2.recipe +++ /dev/null @@ -1,69 +0,0 @@ -SUMMARY="A tool to manage a history of the system clipboard" -DESCRIPTION="Clipdinger solves the problem that you often have to paste some \ -text you've just recently copied to the clipboard, but which has been \ -replaced by something you've copied more recently... It also saves the \ -history so it'll appear just as you left it on the last shutdown. - -Clipdinger provides a history of your recent clippings and should be started \ -automatically on every boot-up by creating a link to it at ~/config/settings/\ -boot/launch/. - -You access the history by pressing SHIFT + ALT + V, which opens the \ -Clipdinger window where you can select an entry with the cursor keys and \ -paste it by hitting RETURN. ESCAPE minimizes the window without pasting." -HOMEPAGE="http://humdingerb.github.io/clipdinger/" -SOURCE_URI="git://github.com/humdingerb/clipdinger.git#a57bce02c91462a30239d32373d4421e70bc5686" -LICENSE="MIT" -COPYRIGHT="2010-2015 Humdinger" -REVISION="1" -ARCHITECTURES="x86_gcc2 x86 x86_64" - -PROVIDES=" - clipdinger = $portVersion - app:Clipdinger = $portVersion - add_on:ClipdingerInputDevice = $portVersion - add_on:ClipdingerInputFilter = $portVersion - " -REQUIRES="haiku" - -BUILD_REQUIRES="haiku_devel" - -BUILD_PREREQUIRES=" - makefile_engine - cmd:g++ - cmd:make - " - -USER_SETTINGS_FILES=" - settings/Clipdinger directory keep-old - " - -BUILD() -{ - make $jobArgs OBJ_DIR=objects - make bindcatalogs OBJ_DIR=objects - - cd input_device - make $jobArgs OBJ_DIR=objects - cd ../input_filter - make $jobArgs OBJ_DIR=objects -} - -INSTALL() -{ - clipdingerDir=$appsDir/Clipdinger - - mkdir -p $clipdingerDir - cp -af objects/Clipdinger $clipdingerDir - cp -af ReadMe.html $clipdingerDir - cp -r images $clipdingerDir - - mkdir -p $addOnsDir/input_server/devices - mkdir -p $addOnsDir/input_server/filters - cp -af input_device/objects/ClipdingerInputDevice \ - $addOnsDir/input_server/devices - cp -af input_filter/objects/ClipdingerInputFilter \ - $addOnsDir/input_server/filters - - addAppDeskbarSymlink $clipdingerDir/Clipdinger -} diff --git a/haiku-apps/clipdinger/clipdinger-0.3.recipe b/haiku-apps/clipdinger/clipdinger-0.3.recipe deleted file mode 100644 index eba20763e..000000000 --- a/haiku-apps/clipdinger/clipdinger-0.3.recipe +++ /dev/null @@ -1,67 +0,0 @@ -SUMMARY="A tool to manage a history of the system clipboard" -DESCRIPTION="Clipdinger solves the problem that you often have to paste some \ -text you've just recently copied to the clipboard, but which has been \ -replaced by something you've copied more recently... It also saves the \ -history so it'll appear just as you left it on the last shutdown. - -Clipdinger provides a history of your recent clippings and should be started \ -automatically on every boot-up by creating a link to it at ~/config/settings/\ -boot/launch/. - -You access the history by pressing SHIFT + ALT + V, which opens the \ -Clipdinger window where you can select an entry with the cursor keys and \ -paste it by hitting RETURN. ESCAPE minimizes the window without pasting." -HOMEPAGE="http://humdingerb.github.io/clipdinger/" -LICENSE="MIT" -REVISION="1" - -ARCHITECTURES="x86_gcc2 x86 x86_64" - -SOURCE_URI="git://github.com/humdingerb/clipdinger.git#36517b00fd866033966bfcfde26cba112175a952" -COPYRIGHT="2015 Humdinger" - -PROVIDES=" - clipdinger = $portVersion - app:Clipdinger = $portVersion - add_on:ClipdingerInputDevice = $portVersion - " -REQUIRES=" - haiku - " -BUILD_REQUIRES=" - haiku_devel - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:g++ - cmd:make - " - -USER_SETTINGS_FILES=" - settings/Clipdinger directory - " - -BUILD() -{ - make $jobArgs OBJ_DIR=objects - make bindcatalogs OBJ_DIR=objects - - cd input_device - make $jobArgs OBJ_DIR=objects -} - -INSTALL() -{ - clipdingerDir=$appsDir/Clipdinger - - mkdir -p $clipdingerDir - cp -af objects/Clipdinger $clipdingerDir - cp -af ReadMe.html $clipdingerDir - cp -r images $clipdingerDir - - mkdir -p $addOnsDir/input_server/devices - cp -af input_device/objects/ClipdingerInputDevice \ - $addOnsDir/input_server/devices - - addAppDeskbarSymlink $clipdingerDir/Clipdinger -} diff --git a/haiku-apps/clipdinger/clipdinger-0.4.recipe b/haiku-apps/clipdinger/clipdinger-0.4.recipe deleted file mode 100644 index d2481f86e..000000000 --- a/haiku-apps/clipdinger/clipdinger-0.4.recipe +++ /dev/null @@ -1,70 +0,0 @@ -SUMMARY="A tool to manage a history of the system clipboard" -DESCRIPTION="Clipdinger solves the problem that you often have to paste some \ -text you've just recently copied to the clipboard, but which has been \ -replaced by something you've copied more recently... It also saves the \ -history so it'll appear just as you left it on the last shutdown. - -Clipdinger provides a history of your recent clippings and lets you create \ -your own favorites. It should be started automatically on every boot-up by \ -creating a link to it at ~/config/settings/boot/launch/. - -You access the history by pressing SHIFT + ALT + V, which opens the \ -Clipdinger window where you can select an entry with the cursor keys and \ -paste it by hitting RETURN. ESCAPE minimizes the window without pasting. - -Please see the ReadMe available from the Help menu for more details." -HOMEPAGE="http://humdingerb.github.io/clipdinger/" -COPYRIGHT="2015 Humdinger" -LICENSE="MIT" -REVISION="2" -SOURCE_URI="https://github.com/humdingerb/clipdinger/archive/$portVersion.tar.gz" -CHECKSUM_SHA256="c8eda6d03fe40c04b977463015ed48463dfb39255b3c98eef1be0f9f90a484e3" - -ARCHITECTURES="x86_gcc2 x86 x86_64" - -PROVIDES=" - clipdinger = $portVersion - app:Clipdinger = $portVersion - add_on:ClipdingerInputDevice = $portVersion - " -REQUIRES=" - haiku - " - -BUILD_REQUIRES=" - haiku_devel - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:g++ - cmd:make - " - -USER_SETTINGS_FILES=" - settings/Clipdinger directory - " - -BUILD() -{ - make $jobArgs OBJ_DIR=objects - make bindcatalogs OBJ_DIR=objects - - cd input_device - make $jobArgs OBJ_DIR=objects -} - -INSTALL() -{ - clipdingerDir=$appsDir/Clipdinger - - mkdir -p $clipdingerDir - cp -af objects/Clipdinger $clipdingerDir - cp -af ReadMe.html $clipdingerDir - cp -r images $clipdingerDir - - mkdir -p $addOnsDir/input_server/devices - cp -af input_device/objects/ClipdingerInputDevice \ - $addOnsDir/input_server/devices - - addAppDeskbarSymlink $clipdingerDir/Clipdinger -} diff --git a/haiku-apps/clipdinger/clipdinger-0.5.1.recipe b/haiku-apps/clipdinger/clipdinger-0.5.3.recipe similarity index 92% rename from haiku-apps/clipdinger/clipdinger-0.5.1.recipe rename to haiku-apps/clipdinger/clipdinger-0.5.3.recipe index 1beefc09c..7d1725889 100644 --- a/haiku-apps/clipdinger/clipdinger-0.5.1.recipe +++ b/haiku-apps/clipdinger/clipdinger-0.5.3.recipe @@ -23,8 +23,8 @@ HOMEPAGE="http://humdingerb.github.io/clipdinger/" COPYRIGHT="2015-2016 Humdinger" LICENSE="MIT" REVISION="1" -SOURCE_URI="https://github.com/humdingerb/clipdinger/archive/$portVersion.tar.gz" -CHECKSUM_SHA256="db3fa308064529e2ca88e154b90187912676d51a82264dd945e0b32e0907f1fc" +SOURCE_URI="https://github.com/humdingerb/clipdinger/archive/v$portVersion.tar.gz" +CHECKSUM_SHA256="7e81a735706247a4f10292b2c272fb0b42a25392d2bbb4ea7e2a3a0b813f7157" ARCHITECTURES="x86_gcc2 x86 x86_64" diff --git a/haiku-apps/clipdinger/clipdinger-0.5.recipe b/haiku-apps/clipdinger/clipdinger-0.5.recipe deleted file mode 100644 index e8ec3d790..000000000 --- a/haiku-apps/clipdinger/clipdinger-0.5.recipe +++ /dev/null @@ -1,77 +0,0 @@ -SUMMARY="A tool to manage a history of the system clipboard" -DESCRIPTION="Clipdinger solves the problem that you often have to paste some \ -text you've just recently copied to the clipboard, but which has been \ -replaced by something you've copied more recently... It also saves the \ -history so it'll appear just as you left it on the last shutdown. - -Clipdinger provides a history of your recent clippings and lets you create \ -your own favorites. It should be started automatically on every boot-up by \ -creating a link to it at ~/config/settings/boot/launch/. - -You access the history by pressing SHIFT + ALT + V, which opens the \ -Clipdinger window where you can select an entry with the cursor keys and \ -paste it by hitting RETURN. - -After selecting a clip, you can also paste it to the online service \ -Sprunge.us by hitting ALT + P. The returned URL for the clip is put into the \ -clipboard for you to paste into your email or IRC channel etc. - -ESCAPE minimizes the window without pasting. - -Please see the ReadMe available from the Help menu for more details." -HOMEPAGE="http://humdingerb.github.io/clipdinger/" -COPYRIGHT="2015 Humdinger" -LICENSE="MIT" -REVISION="1" -SOURCE_URI="https://github.com/humdingerb/clipdinger/archive/$portVersion.tar.gz" -CHECKSUM_SHA256="142cc12f81e60219c526685ff90487b994332e3c93a7c09ddd29219d3d892695" - -ARCHITECTURES="x86_gcc2 x86 x86_64" - -PROVIDES=" - clipdinger = $portVersion - app:Clipdinger = $portVersion - add_on:ClipdingerInputDevice = $portVersion - " -REQUIRES=" - haiku - cmd:curl - " - -BUILD_REQUIRES=" - haiku_devel - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:g++ - cmd:make - " - -USER_SETTINGS_FILES=" - settings/Clipdinger directory - " - -BUILD() -{ - make $jobArgs OBJ_DIR=objects - make bindcatalogs OBJ_DIR=objects - - cd input_device - make $jobArgs OBJ_DIR=objects -} - -INSTALL() -{ - clipdingerDir=$appsDir/Clipdinger - - mkdir -p $clipdingerDir - cp -af objects/Clipdinger $clipdingerDir - cp -af ReadMe.html $clipdingerDir - cp -r images $clipdingerDir - - mkdir -p $addOnsDir/input_server/devices - cp -af input_device/objects/ClipdingerInputDevice \ - $addOnsDir/input_server/devices - - addAppDeskbarSymlink $clipdingerDir/Clipdinger -}