diff options
-rw-r--r-- | package/intltool/Makefile | 23 | ||||
-rw-r--r-- | package/xkeyboard-config/Makefile | 6 | ||||
-rw-r--r-- | scripts/scan-pkgs.sh | 2 |
3 files changed, 27 insertions, 4 deletions
diff --git a/package/intltool/Makefile b/package/intltool/Makefile new file mode 100644 index 000000000..9ba13fe84 --- /dev/null +++ b/package/intltool/Makefile @@ -0,0 +1,23 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= intltool +PKG_VERSION:= 0.41.1 +PKG_RELEASE:= 1 +PKG_MD5SUM:= d6c91bf06681919ccfdf3624035b75dc +PKG_DESCR:= Internationalization Tool Collection +PKG_SECTION:= misc +PKG_SITES:= http://edge.launchpad.net/intltool/trunk/0.41.1/+download/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,INTLTOOL,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +post-install: + $(INSTALL_DIR) $(IDIR_INTLTOOL)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/intltool* \ + $(IDIR_INTLTOOL)/usr/bin + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/xkeyboard-config/Makefile b/package/xkeyboard-config/Makefile index 6e597b926..e53b1cd6e 100644 --- a/package/xkeyboard-config/Makefile +++ b/package/xkeyboard-config/Makefile @@ -4,12 +4,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:= xkeyboard-config -PKG_VERSION:= 1.7 +PKG_VERSION:= 1.8 PKG_RELEASE:= 1 -PKG_BUILDDEP+= xkbcomp -PKG_MD5SUM:= c024a6e2a5b8c4ce3d9d1f1286466163 +PKG_MD5SUM:= f049d15f1e9d95776a940f222df9404b PKG_DESCR:= X keyboard config PKG_SECTION:= x11/libs +PKG_BUILDDEP+= xkbcomp PKG_SITES:= http://xlibs.freedesktop.org/xkbdesc/ include $(TOPDIR)/mk/package.mk diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 20471ad57..f08ee812a 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -141,7 +141,7 @@ fi if [[ -n $NEED_INTL ]]; then if ! which intltool-update >/dev/null 2>&1; then - echo >&2 You need intltool-update to build $NEED_INTL + echo >&2 You need intltool to build $NEED_INTL out=1 fi fi |