Makefile 840 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # $OpenBSD: Makefile,v 1.30 2016/05/07 12:40:58 pascal Exp $
  2. COMMENT= portable OTR messaging library and toolkit
  3. DISTNAME= libotr-4.1.1
  4. CATEGORIES= security
  5. REVISION= 0
  6. SHARED_LIBS += otr 4.1 # 6.0
  7. HOMEPAGE= http://otr.cypherpunks.ca/
  8. MASTER_SITES= ${HOMEPAGE}
  9. MAINTAINER = Pascal Stumpf <pascal@stumpf.co>
  10. # GPLv2
  11. PERMIT_PACKAGE_CDROM= Yes
  12. WANTLIB += c gcrypt gpg-error
  13. MODULES= devel/gettext
  14. LIB_DEPENDS= security/libgcrypt
  15. # non-shared does not inherit LIB_DEPENDS
  16. LIB_DEPENDS += security/libgpg-error
  17. USE_LIBTOOL = gnu
  18. AUTOCONF_VERSION = 2.68
  19. AUTOMAKE_VERSION = 1.11
  20. CONFIGURE_STYLE= autoconf automake
  21. # PIE is taken care of on a per-arch basis on OpenBSD, and stack
  22. # protection is enabled anyway.
  23. CONFIGURE_ARGS= --disable-gcc-hardening \
  24. --disable-linker-hardening
  25. .include <bsd.port.mk>