diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2013-11-15 17:41:40 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2013-11-15 17:41:40 +0800 |
commit | 6a21f325379458c7738edd86b08c532c7fc14c00 (patch) | |
tree | 0ed5b9d28065979223cc731aaeb26da13fb87c86 /archivers/rzip | |
parent | 5e022be802e18e7ef0d0a846f0dcf22ba57ef024 (diff) | |
download | freebsd-ports-gnome-6a21f325379458c7738edd86b08c532c7fc14c00.tar.gz freebsd-ports-gnome-6a21f325379458c7738edd86b08c532c7fc14c00.tar.zst freebsd-ports-gnome-6a21f325379458c7738edd86b08c532c7fc14c00.zip |
- Add LICENSE
- Support staging
- Take maintainership
Diffstat (limited to 'archivers/rzip')
-rw-r--r-- | archivers/rzip/Makefile | 11 | ||||
-rw-r--r-- | archivers/rzip/files/patch-Makefile.in | 13 |
2 files changed, 19 insertions, 5 deletions
diff --git a/archivers/rzip/Makefile b/archivers/rzip/Makefile index a5d6c866bebb..0d818fa75bd3 100644 --- a/archivers/rzip/Makefile +++ b/archivers/rzip/Makefile @@ -4,15 +4,16 @@ PORTNAME= rzip PORTVERSION= 2.1 CATEGORIES= archivers -MASTER_SITES= http://rzip.samba.org/ftp/rzip/ +MASTER_SITES= SAMBA +MASTER_SITE_SUBDIR= rzip -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ehaupt@FreeBSD.org COMMENT= Compression program similar to gzip or bzip2 +LICENSE= GPLv2 + GNU_CONFIGURE= yes -NO_STAGE= yes -MAN1= rzip.1 -PLIST_FILES= bin/rzip +PLIST_FILES= bin/rzip man/man1/rzip.1.gz .include <bsd.port.mk> diff --git a/archivers/rzip/files/patch-Makefile.in b/archivers/rzip/files/patch-Makefile.in new file mode 100644 index 000000000000..31c6ad48cef4 --- /dev/null +++ b/archivers/rzip/files/patch-Makefile.in @@ -0,0 +1,13 @@ +--- ./Makefile.in.orig 2013-11-15 10:34:18.246331970 +0100 ++++ ./Makefile.in 2013-11-15 10:34:38.383364598 +0100 +@@ -3,8 +3,8 @@ + + prefix=@prefix@ + exec_prefix=@exec_prefix@ +-INSTALL_BIN=$(exec_prefix)/bin +-INSTALL_MAN=$(prefix)/man ++INSTALL_BIN=$(DESTDIR)$(exec_prefix)/bin ++INSTALL_MAN=$(DESTDIR)$(prefix)/man + + LIBS=@LIBS@ + CC=@CC@ |