X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/d33c9526ddd6b29137057ce53ccec781a5193c05..a1d1cc5f82fbb4e48ddfffd5c912d0de6fbbd111:/openwrt/package/fetchmail/Makefile diff --git a/openwrt/package/fetchmail/Makefile b/openwrt/package/fetchmail/Makefile index 1ca6cd76c..049c6aecf 100644 --- a/openwrt/package/fetchmail/Makefile +++ b/openwrt/package/fetchmail/Makefile @@ -1,17 +1,18 @@ -# $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $ +# $Id$ include $(TOPDIR)/rules.mk PKG_NAME:=fetchmail PKG_VERSION:=6.2.5 PKG_RELEASE:=1 +PKG_MD5SUM:=9956b30139edaa4f5f77c4d0dbd80225 PKG_SOURCE_URL:=http://www.catb.org/~esr/fetchmail/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_MD5SUM:=9956b30139edaa4f5f77c4d0dbd80225 PKG_CAT:=zcat PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(TOPDIR)/package/rules.mk @@ -28,32 +29,40 @@ $(PKG_BUILD_DIR)/.configured: ac_cv_sizeof_int=4 \ ac_cv_sizeof_long=4 \ ./configure \ - --target=$(GNU_TARGET_NAME) \ - --host=$(GNU_TARGET_NAME) \ - --build=$(GNU_HOST_NAME) \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --sbindir=/usr/sbin \ - --libexecdir=/usr/lib \ - --sysconfdir=/etc \ - --datadir=/usr/share \ - --localstatedir=/var \ - --mandir=/usr/man \ - --infodir=/usr/info \ - --program-prefix="" \ - --enable-fallback=procmail \ - $(DISABLE_NLS) \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + $(DISABLE_NLS) \ + $(DISABLE_LARGEFILE) \ + --enable-fallback=procmail \ + --without-hesiod \ ); touch $@ $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ - CC=$(TARGET_CC) + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install touch $@ $(IPKG_FETCHMAIL): mkdir -p $(IDIR_FETCHMAIL)/usr/bin - $(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(IDIR_FETCHMAIL)/usr/bin/ + $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(IDIR_FETCHMAIL)/usr/bin/ $(RSTRIP) $(IDIR_FETCHMAIL) $(IPKG_BUILD) $(IDIR_FETCHMAIL) $(PACKAGE_DIR)