diff options
author | netchild <netchild@FreeBSD.org> | 2003-12-12 21:43:05 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2003-12-12 21:43:05 +0800 |
commit | 7e4108d2e8dcc99218792ea72bc5f3686d7b79d1 (patch) | |
tree | 93fb7fd37e3d0028f80a950ce0dc03af626eacf4 /x11-toolkits/linux-gtk2 | |
parent | 0f604e9895401d15bc27421aa834b564241d2025 (diff) | |
download | freebsd-ports-gnome-7e4108d2e8dcc99218792ea72bc5f3686d7b79d1.tar.gz freebsd-ports-gnome-7e4108d2e8dcc99218792ea72bc5f3686d7b79d1.tar.zst freebsd-ports-gnome-7e4108d2e8dcc99218792ea72bc5f3686d7b79d1.zip |
s/rpm2cpio/rpm2cpio.pl/ after the recent update of archivers/rpm2cpio (the
script was renamed to solve a conflict with archivers/rpm) to fix possible
build problems.
I've tested this with lang/icc. Any new errors because of this commit in
one of the modified ports may be because the ports previously may have used
rpm2cpio from archivers/rpm instead of the used {EXTRACT,BUILD}_DEPENDS
archivers/rpm2cpio.
Diffstat (limited to 'x11-toolkits/linux-gtk2')
-rw-r--r-- | x11-toolkits/linux-gtk2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-toolkits/linux-gtk2/Makefile b/x11-toolkits/linux-gtk2/Makefile index f615ee4fc2d3..76a1d9355224 100644 --- a/x11-toolkits/linux-gtk2/Makefile +++ b/x11-toolkits/linux-gtk2/Makefile @@ -13,7 +13,7 @@ CATEGORIES= x11-toolkits linux MAINTAINER= trevor@FreeBSD.org COMMENT= GTK+ library, version 2.X, i386 Linux binary -BUILD_DEPENDS= rpm2cpio:${PORTSDIR}/archivers/rpm2cpio +BUILD_DEPENDS= rpm2cpio.pl:${PORTSDIR}/archivers/rpm2cpio BASEVERSION= 9 ONLY_FOR_ARCHS= i386 @@ -29,7 +29,7 @@ pre-install: ${RM} -rf ${WRKSRC}/tmp ${MKDIR} ${WRKSRC}/tmp cd ${WRKSRC}/tmp; \ - rpm2cpio < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | cpio -id; \ + rpm2cpio.pl < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | cpio -id; \ ${FIND} * -type f -o -type l >> ${PLIST}; \ ${FIND} -d * -type d | ${GREP} -E 'locale|gtk|themes' | \ ${SED} -e 's:^:@dirrm :' >> ${PLIST} |