aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/wxformbuilder
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-05-11 16:43:52 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-05-11 16:45:47 +0000
commit315ddd26b78d81b1c2f0c1d2a85da338b00fdb25 (patch)
tree47205a7adb60694996874da8c3fc720dcd920501 /unmaintained/wxformbuilder
parentaacae4a7b4456b75cbc938f7656cc7118b1e8646 (diff)
downloadaports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.bz2
aports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.xz
unmaintained/: Purge packages unmaintained since v3.0
Removes packages that have been in aports/unmaintained since the 3.0-stable branch. Alpine Linux v3.0 was released on 2014-06-04 and EOL on 2016-05-01, so these packages have not been touched since at least 23 months. The files can still be recovered from the 3.3-stable branch.
Diffstat (limited to 'unmaintained/wxformbuilder')
-rw-r--r--unmaintained/wxformbuilder/APKBUILD44
-rw-r--r--unmaintained/wxformbuilder/icon_48x48_wxformbuilder.pngbin4650 -> 0 bytes
-rw-r--r--unmaintained/wxformbuilder/libdl.patch11
3 files changed, 0 insertions, 55 deletions
diff --git a/unmaintained/wxformbuilder/APKBUILD b/unmaintained/wxformbuilder/APKBUILD
deleted file mode 100644
index cc486c477b..0000000000
--- a/unmaintained/wxformbuilder/APKBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# Contributor: Natanael Copa <ncopa@alpinelinux.org>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=wxformbuilder
-pkgver=3.1.70
-pkgrel=0
-pkgdesc="RAD tool for wxWidgets GUI design"
-url="http://sourceforge.net/apps/wordpress/wxformbuilder"
-arch="all"
-license="GPLv2"
-depends=""
-depends_dev=""
-makedepends="$depends_dev wxgtk-dev"
-install=""
-subpackages=""
-source="http://downloads.sourceforge.net/project/wxformbuilder/wxformbuilder/$pkgver/wxFormBuilder_v${pkgver}-src.tar.bz2
- libdl.patch"
-
-_builddir="$srcdir"/wxformbuilder
-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
- sed -i -e 's/\r//' create_build_files.sh \
- install/linux/wxfb_export.sh
-}
-
-build() {
- cd "$_builddir"
- ./create_build_files.sh || return 1
- make CONFIG=Release || return 1
-}
-
-package() {
- cd "$_builddir"
- mkdir -p "$pkgdir"/usr
- install/linux/wxfb_export.sh "$pkgdir"/usr || return 1
-}
-
-md5sums="1c2d53a344333bd2389f9f07a5321d5e wxFormBuilder_v3.1.70-src.tar.bz2
-304bb4f7dd668fd42abc7d9ae986610a libdl.patch"
diff --git a/unmaintained/wxformbuilder/icon_48x48_wxformbuilder.png b/unmaintained/wxformbuilder/icon_48x48_wxformbuilder.png
deleted file mode 100644
index db33a0adef..0000000000
--- a/unmaintained/wxformbuilder/icon_48x48_wxformbuilder.png
+++ /dev/null
Binary files differ
diff --git a/unmaintained/wxformbuilder/libdl.patch b/unmaintained/wxformbuilder/libdl.patch
deleted file mode 100644
index 41aa10e383..0000000000
--- a/unmaintained/wxformbuilder/libdl.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./src/premake.lua.orig
-+++ ./src/premake.lua
-@@ -58,7 +58,7 @@
- package.libpaths = { "../output/lib/wxformbuilder", "../sdk/lib" }
- end
- -- Set the libraries it links to.
--package.links = { "wxFlatNotebook", "wxPropGrid", "wxScintilla", "TiCPP", "plugin-interface" }
-+package.links = { "wxFlatNotebook", "wxPropGrid", "wxScintilla", "TiCPP", "plugin-interface", "dl" }
-
- -- Add libraries and build options for stack trace in MinGW
- if ( windows and ( (string.find( target or "", ".*-gcc" )) or (target == "gnu") ) ) then