diff options
author | Renato Botelho <garga@FreeBSD.org> | 2006-06-21 15:42:17 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2006-06-21 15:42:17 +0000 |
commit | 4eb098a9562328a0610d57331ae578249ce3b357 (patch) | |
tree | 8d268cbb8d2f0280d2a4c6ec19b550c64f84f1b0 | |
parent | Remove lang/fpc2 in preparation to update lang/fpc to 2.0.2 (diff) |
Add fpc-unzip , free Pascal routines for unzipping zip files.
PR: ports/98679
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
Notes
Notes:
svn path=/head/; revision=165935
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/fpc-unzip/Makefile | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 903ef241d61d..50d3f60414e0 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -22,6 +22,7 @@ SUBDIR += fastjar SUBDIR += file-roller SUBDIR += fpc-paszlib + SUBDIR += fpc-unzip SUBDIR += freeze SUBDIR += gtar SUBDIR += gzip diff --git a/archivers/fpc-unzip/Makefile b/archivers/fpc-unzip/Makefile new file mode 100644 index 000000000000..23d23aaee449 --- /dev/null +++ b/archivers/fpc-unzip/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: fpc-unzip +# Date created: 2006-06-05 +# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> +# +# $FreeBSD$ +# + +CATEGORIES= archivers lang +PKGNAMESUFFIX= -unzip + +MAINTAINER= acardenas@bsd.org.pe +COMMENT= Free Pascal routines for unzipping zip files + +RUN_DEPENDS= ppc386:${PORTSDIR}/lang/fpc \ + unzip:${PORTSDIR}/archivers/unzip + +MASTERDIR= ${.CURDIR}/../../lang/fpc + +.include "${MASTERDIR}/Makefile" |