Makefile 612 B

123456789101112131415161718192021222324252627282930313233343536
  1. # $OpenBSD: Makefile,v 1.10 2013/10/11 23:50:40 naddy Exp $
  2. COMMENT= intelligent n-up printing
  3. DISTNAME= psdim-1.4
  4. REVISION = 0
  5. CATEGORIES= print
  6. HOMEPAGE= http://www.mathstat.dal.ca/~selinger/psdim
  7. MAINTAINER= Steven Mestdagh <steven@openbsd.org>
  8. # GPL
  9. PERMIT_PACKAGE_CDROM= Yes
  10. MASTER_SITES= ${HOMEPAGE}/download/
  11. RUN_DEPENDS= print/ghostscript/gnu
  12. BUILD_DEPENDS= ${RUN_DEPENDS}
  13. WANTLIB= c
  14. CONFIGURE_STYLE= gnu
  15. CONFIGURE_ARGS= --enable-metric
  16. SEPARATE_BUILD= Yes
  17. FLAVORS= a4
  18. FLAVOR?=
  19. .if defined(FLAVOR) && ${FLAVOR} == "a4"
  20. CONFIGURE_ARGS+= --enable-a4
  21. .endif
  22. .include <bsd.port.mk>