diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-03-09 01:09:51 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-03-09 01:09:51 +0000 |
commit | ace06b6cc59c3b7d75f3dd820fb0359bae5ca3d3 (patch) | |
tree | 867f8bacc3ce84915788b93dd704536a0fd5c2ef /archivers/file-roller/Makefile | |
parent | unzip is an EXTRACT_DEPENDS, not a BUILD_DEPENDS. This fixes some of the (diff) |
Replace the bzip dependency with bzip2. This will allow GNOME 2 to show up
on release CDs.
Approved by: portmgr (kris)
Notes
Notes:
svn path=/head/; revision=77070
Diffstat (limited to 'archivers/file-roller/Makefile')
-rw-r--r-- | archivers/file-roller/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/archivers/file-roller/Makefile b/archivers/file-roller/Makefile index b4c4a887b5ec..7286fe22b180 100644 --- a/archivers/file-roller/Makefile +++ b/archivers/file-roller/Makefile @@ -7,6 +7,7 @@ PORTNAME= fileroller PORTVERSION= 2.2.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= archivers gnome MASTER_SITES= ${MASTER_SITE_GNOME} @@ -15,13 +16,14 @@ DISTNAME= file-roller-${PORTVERSION} DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org -COMMENT= An archive manager for zip files, tar, etc. +COMMENT= An archive manager for zip files, tar, etc LIB_DEPENDS= gnomeui-2.200:${PORTSDIR}/x11-toolkits/libgnomeui -RUN_DEPENDS= bzip:${PORTSDIR}/archivers/bzip \ - lha:${PORTSDIR}/archivers/lha \ +RUN_DEPENDS= lha:${PORTSDIR}/archivers/lha \ lzop:${PORTSDIR}/archivers/lzop - +.if !exists(/usr/bin/bzip2) +RUN_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2 +.endif USE_X_PREFIX= yes USE_GMAKE= yes |