diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-17 09:17:15 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-17 09:17:15 +0000 |
commit | a8f23b4bc7717f483e52c25fb5fa9606de486805 (patch) | |
tree | 384668d16e473ad8584940f34847b5b5e2ec0dec /main/osmo | |
parent | dd15f1bf4a82141ccac02436bf7d5eb0e73fb2cb (diff) | |
download | aports-a8f23b4bc7717f483e52c25fb5fa9606de486805.tar.bz2 aports-a8f23b4bc7717f483e52c25fb5fa9606de486805.tar.xz |
community/osmo: upgrade to 0.4.0
Diffstat (limited to 'main/osmo')
-rw-r--r-- | main/osmo/APKBUILD | 48 | ||||
-rw-r--r-- | main/osmo/osmo-0.2.10-build-mo.patch | 20 |
2 files changed, 0 insertions, 68 deletions
diff --git a/main/osmo/APKBUILD b/main/osmo/APKBUILD deleted file mode 100644 index fa85dc3603..0000000000 --- a/main/osmo/APKBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=osmo -pkgver=0.2.14 -pkgrel=1 -pkgdesc="A handy personal organizer" -url="http://clayo.org/osmo/" -arch="all" -license="GPL" -makedepends="gtk+-dev libnotify-dev libical-dev libxml2-dev autoconf automake" -install= -subpackages="$pkgname-doc $pkgname-lang" -source="http://downloads.sourceforge.net/$pkgname-pim/$pkgname-$pkgver.tar.gz - osmo-0.2.10-build-mo.patch - " - -_builddir="$srcdir"/$pkgname-$pkgver -prepare() { - cd "$_builddir" - for i in "$srcdir"/*.patch; do - msg "Applying ${i##*/}" - patch -p1 -i "$i" || return 1 - done - sed -i -e 's/-Werror//' configure.ac || return 1 - aclocal && autoconf && automake --add-missing -} - -build() { - cd "$_builddir" - CFLAGS="$CFLAGS -I/usr/include/libical" - ./configure \ - --build=$CBUILD \ - --host=$CHOST \ - --prefix=/usr \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make -j1 DESTDIR="$pkgdir" install || return 1 -} - -md5sums="712245eaa6c9cee522235b38d529a64c osmo-0.2.14.tar.gz -6c9939fd4df9d25e1a220585e6875c78 osmo-0.2.10-build-mo.patch" -sha256sums="052c3509e9e5ee3f7692fc0d456bebd3a13727acb985901f08c0e2e86bf64a6d osmo-0.2.14.tar.gz -ab81ce85449170a0256b6b4ef6bee1a5513772b46ee31571983ee0dc4fa63339 osmo-0.2.10-build-mo.patch" -sha512sums="e556f26a03e3bc3b5b78c8fc848739e900c3c16bf81a05a64fbba5b28e343bbf7d11743d0c8eadf4d37878d7165d6890021c5b55d70a634bd97e86959815fc25 osmo-0.2.14.tar.gz -c9e49a3177f6135b2cedc00b0bc36ef7421a34941349bcfe242702dcfb5ebf13907d0ae8f8af1e26065b21e53f29e69c1fe36fd6724bfbb86556c3df828c8f23 osmo-0.2.10-build-mo.patch" diff --git a/main/osmo/osmo-0.2.10-build-mo.patch b/main/osmo/osmo-0.2.10-build-mo.patch deleted file mode 100644 index ac1b9aa235..0000000000 --- a/main/osmo/osmo-0.2.10-build-mo.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/po/Makefile.am b/po/Makefile.am -index b3c904a..f0ee467 100644 ---- a/po/Makefile.am -+++ b/po/Makefile.am -@@ -16,8 +16,8 @@ all: $(MOFILES) - - update-po: $(DOMAIN).pot $(POFILES) $(MOFILES) - --%.mo: skip -- @po=$(@:.mo=.po); if test $$po -nt $@ ; then $(MSGFMT) -c --statistics $$po -o $@; echo "$@ updated."; fi -+%.mo: %.po -+ @$(MSGFMT) -c --statistics $^ -o $@; echo "$@ updated." - - %.po: $(DOMAIN).pot - $(MSGMERGE) $@ $< -o $@.in && mv $@.in $@ -@@ -41,4 +41,3 @@ uninstall-local: - clean-local: - rm -rf *.mo - --skip: |