aed7b6d5b0
lzop -- # GNU GPL -> # GPL macutil -- sync w/# None style nulib -- # Restrictive rar -- # Restrictive ucl -- # GPL unace -- # Copyrighted but freely distributable. That's all the author states. Is this acceptable as a license? -- Drop MAINTAINER per his request unarj -- # Restrictive PERMIT_*_CDROM=No "If you wish to distribute a modified version of UNARJ you MUST indicate that it is a modified version both in the program and source code." unrar -- # Restrictive unzip -- # Conditional It is freely re-distributable with conditions which we meet. This could use another pair of eyes to confirm. zip -- # Conditional Same thing as unzip. zoo -- # Conditional Different author/license but same idea as zip/unzip.
30 lines
631 B
Makefile
30 lines
631 B
Makefile
# $OpenBSD: Makefile,v 1.4 2003/05/24 02:40:42 jolan Exp $
|
|
|
|
COMMENT= "portable lossless data compression library"
|
|
|
|
DISTNAME= ucl-1.01
|
|
CATEGORIES= archivers devel
|
|
|
|
HOMEPAGE= http://www.oberhumer.com/opensource/ucl
|
|
|
|
MAINTAINER= Wilbern Cobb <wcobb@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/download/
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
BUILD_DEPENDS= :nasm-*:devel/nasm
|
|
.endif
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} --enable-static
|
|
MAKE_FLAGS= CFLAGS_O=""
|
|
|
|
.include <bsd.port.mk>
|