From 7cda1382ef83280368111922ffaf636a0bd61852 Mon Sep 17 00:00:00 2001 From: Jerome Duval Date: Mon, 17 Sep 2018 09:01:46 +0200 Subject: [PATCH] blogpositive: remove old recipes. --- .../blogpositive/blogpositive-0.1.0.recipe | 49 --------------- .../blogpositive/blogpositive-0.2.0.recipe | 49 --------------- .../blogpositive/blogpositive-0.3.0.recipe | 60 ------------------- 3 files changed, 158 deletions(-) delete mode 100644 haiku-apps/blogpositive/blogpositive-0.1.0.recipe delete mode 100644 haiku-apps/blogpositive/blogpositive-0.2.0.recipe delete mode 100644 haiku-apps/blogpositive/blogpositive-0.3.0.recipe diff --git a/haiku-apps/blogpositive/blogpositive-0.1.0.recipe b/haiku-apps/blogpositive/blogpositive-0.1.0.recipe deleted file mode 100644 index f0eeac1f5..000000000 --- a/haiku-apps/blogpositive/blogpositive-0.1.0.recipe +++ /dev/null @@ -1,49 +0,0 @@ -SUMMARY="The one blog app to rule them all!" -DESCRIPTION=" -Want to blog, but WebPositive isn't quick enough? Now you can use the new blog \ -app: BlogPositive! It can only connect to your Wordpress blogs for now. -" -HOMEPAGE="http://blogpositive.puckipedia.com" -COPYRIGHT="2013 :Puck Meerburg" -LICENSE="MIT" -REVISION="2" -SOURCE_URI="git://github.com/puckipedia/BlogPositive.git#tags/v0.1.0" - -ARCHITECTURES="x86 x86_gcc2 x86_64" - -USER_SETTINGS_FILES=" - settings/BlogPositive directory - " - -PROVIDES=" - blogpositive = $portVersion - app:blogpositive = $portVersion - " -REQUIRES=" - haiku - lib:libcurl - lib:libz - " - -BUILD_REQUIRES=" - haiku_devel - devel:libcurl - devel:libz - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:g++ - cmd:xres - " - -BUILD() -{ - make - make bindcatalogs -} - -INSTALL() -{ - make install INSTALL_DIR=$appsDir - addAppDeskbarSymlink $appsDir/BlogPositive -} diff --git a/haiku-apps/blogpositive/blogpositive-0.2.0.recipe b/haiku-apps/blogpositive/blogpositive-0.2.0.recipe deleted file mode 100644 index 0dd964104..000000000 --- a/haiku-apps/blogpositive/blogpositive-0.2.0.recipe +++ /dev/null @@ -1,49 +0,0 @@ -SUMMARY="The one blog app to rule them all!" -DESCRIPTION=" -Want to blog, but WebPositive isn't quick enough? Now you can use the new blog \ -app: BlogPositive! It can connect to Wordpress and LiveJournal blogs for now. -" -HOMEPAGE="http://blogpositive.puckipedia.com" -COPYRIGHT="2013 :Puck Meerburg" -LICENSE="MIT" -REVISION="1" -SOURCE_URI="git://github.com/puckipedia/BlogPositive.git#tags/v0.2.0" - -ARCHITECTURES="x86 x86_gcc2 x86_64" - -USER_SETTINGS_FILES=" - settings/BlogPositive directory - " - -PROVIDES=" - blogpositive = $portVersion - app:blogpositive = $portVersion - " -REQUIRES=" - haiku - lib:libcurl - lib:libz - " - -BUILD_REQUIRES=" - haiku_devel - devel:libcurl - devel:libz - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:g++ - cmd:xres - " - -BUILD() -{ - make - make bindcatalogs -} - -INSTALL() -{ - make install INSTALL_DIR=$appsDir - addAppDeskbarSymlink $appsDir/BlogPositive -} diff --git a/haiku-apps/blogpositive/blogpositive-0.3.0.recipe b/haiku-apps/blogpositive/blogpositive-0.3.0.recipe deleted file mode 100644 index 74765a3f0..000000000 --- a/haiku-apps/blogpositive/blogpositive-0.3.0.recipe +++ /dev/null @@ -1,60 +0,0 @@ -SUMMARY="The one blog app to rule them all!" -DESCRIPTION=" -Want to blog, but WebPositive isn't quick enough? Now you can use the new blog \ -app: BlogPositive! It can connect to Wordpress, LiveJournal and OnSugar blogs. -" -HOMEPAGE="http://blogpositive.puckipedia.com" -COPYRIGHT="2013 :Puck Meerburg" -LICENSE="MIT" -REVISION="1" -SOURCE_URI="git://github.com/puckipedia/BlogPositive.git#tags/v0.3" - -ARCHITECTURES="x86 x86_gcc2 x86_64" - -USER_SETTINGS_FILES=" - settings/BlogPositive directory - " - -PROVIDES=" - blogpositive = $portVersion - app:blogpositive = $portVersion - " -REQUIRES=" - haiku - lib:libcurl - lib:libz - " - -BUILD_REQUIRES=" - haiku_devel - devel:libcurl - devel:libz - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:g++ - cmd:xres - " - -BUILD() -{ - make - for i in BlogPositivePlugins/*; do - if [ -f $i/makefile ]; then - make -C $i - fi - done - make bindcatalogs -} - -INSTALL() -{ - make install INSTALL_DIR=$appsDir - addAppDeskbarSymlink $appsDir/BlogPositive - - for i in BlogPositivePlugins/*; do - if [ -f $i/makefile ]; then - make -C $i install INSTALL_DIR=$addOnsDir/BlogPositive - fi - done -}