diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-23 11:34:44 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-23 11:34:44 +0100 |
commit | 2c3389799c46724a4922179ff70d1230ccbe5b59 (patch) | |
tree | 2e890bacc226d2bef8518e38a935a0f6252d3a32 /package/fetchmail | |
parent | 9183b983ea3f2b20359eaa7cf3a8776af301c059 (diff) |
fixes for new pkgmaker generated menu
Diffstat (limited to 'package/fetchmail')
-rw-r--r-- | package/fetchmail/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/package/fetchmail/Makefile b/package/fetchmail/Makefile index 22a616412..ea569df1d 100644 --- a/package/fetchmail/Makefile +++ b/package/fetchmail/Makefile @@ -6,29 +6,29 @@ include ${TOPDIR}/rules.mk PKG_NAME:= fetchmail PKG_VERSION:= 6.3.9 PKG_RELEASE:= 1 -ifeq (${ADK_PACKAGE_FETCHMAIL_SSL},y) -PKG_BUILDDEP+= openssl -endif PKG_MD5SUM:= 72c20ad2b9629f1a109668b05a84d823 PKG_DESCR:= fetch mail from a POP, IMAP, ETRN, or ODMR-capable server PKG_SECTION:= text +ifeq (${ADK_PACKAGE_FETCHMAIL_SSL},y) +PKG_DEPENDS:= libopenssl +PKG_BUILDDEP+= openssl +endif PKG_URL:= http://fetchmail.berlios.de/ PKG_SITES:= http://download.berlios.de/fetchmail/ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2 -include ${TOPDIR}/mk/package.mk +PKG_FLAVOURS:= SSL +PKGFD_SSL:= enable SSL support -ifeq (${ADK_PACKAGE_FETCHMAIL_SSL},y) -PKG_DEPENDS:= libopenssl -endif +include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,FETCHMAIL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -CONFIGURE_STYLE= gnu +CONFIGURE_STYLE:= gnu CONFIGURE_ARGS+= --without-hesiod -BUILD_STYLE= auto -INSTALL_STYLE= auto +BUILD_STYLE:= auto +INSTALL_STYLE:= auto ifeq (${ADK_PACKAGE_FETCHMAIL_SSL},y) CONFIGURE_ARGS+= --with-ssl='${STAGING_DIR}/usr' |