diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-04-13 18:00:04 +0000 |
---|---|---|
committer | Breno Leitao <breno.leitao@gmail.com> | 2017-04-13 18:00:04 +0000 |
commit | c0db8e5cdb6d3b2cb832e457ba0f2b4cd972a293 (patch) | |
tree | d02d1cea92c31adeded2ff98f9afa6ba54728a4e /community/mumudvb | |
parent | 0559d23c0a866afc52fcbe703079a2c8e6c8f2a4 (diff) | |
download | aports-c0db8e5cdb6d3b2cb832e457ba0f2b4cd972a293.tar.bz2 aports-c0db8e5cdb6d3b2cb832e457ba0f2b4cd972a293.tar.xz |
community/mumudvb: Add proper dependencies
mumudvb currently depends on gettext, but it is not listed in the
depencies variable, causing the following errror:
configure.ac:27: warning: macro 'AM_ICONV' not found in library
configure.ac:27: error: possibly undefined macro: AM_ICONV
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1
Adding the proper depedency fix this issue and the package builds fine
Diffstat (limited to 'community/mumudvb')
-rw-r--r-- | community/mumudvb/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/mumudvb/APKBUILD b/community/mumudvb/APKBUILD index a4574b664d..606a49486a 100644 --- a/community/mumudvb/APKBUILD +++ b/community/mumudvb/APKBUILD @@ -9,7 +9,7 @@ url="http://mumudvb.braice.net/" arch="all" license="GPL2" depends="" -makedepends="automake autoconf libtool linux-headers m4 libdvbcsa-dev asciidoc" +makedepends="automake autoconf libtool linux-headers m4 libdvbcsa-dev asciidoc gettext-dev" install="$pkgname.pre-install" subpackages="$pkgname-doc" pkgusers="mumudvb" |