diff options
author | trevor <trevor@FreeBSD.org> | 2004-02-01 00:57:18 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-02-01 00:57:18 +0800 |
commit | 8a34a65f625d48c2e3e00e302ef205dfffe649b8 (patch) | |
tree | bd2a1f4783d4e555994e3705c510c87e709b8013 /devel | |
parent | 25f6b29bd7efe5c376a8e4f5f4e14039dbbdcdcd (diff) | |
download | freebsd-ports-gnome-8a34a65f625d48c2e3e00e302ef205dfffe649b8.tar.gz freebsd-ports-gnome-8a34a65f625d48c2e3e00e302ef205dfffe649b8.tar.zst freebsd-ports-gnome-8a34a65f625d48c2e3e00e302ef205dfffe649b8.zip |
patch from
<URL:http://people.freebsd.org/~trevor/ports/freeze-5.2/linux-misc-depends.diff>
to fix dependencies: these ports need ports/archivers/rpm for their
do-install, so they can can use the rpm2cpio that accompanies it
Reviewed by: silence (two months) from portmgr and freebsd-ports-bugs
Diffstat (limited to 'devel')
-rw-r--r-- | devel/linux-glib2/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/devel/linux-glib2/Makefile b/devel/linux-glib2/Makefile index 9d49e28c4f46..acde76e543f6 100644 --- a/devel/linux-glib2/Makefile +++ b/devel/linux-glib2/Makefile @@ -13,8 +13,6 @@ CATEGORIES= devel linux MAINTAINER= trevor@FreeBSD.org COMMENT= Version 2.X Linux/i386 binary port of GLib -BUILD_DEPENDS= rpm2cpio.pl:${PORTSDIR}/archivers/rpm2cpio - BASEVERSION= 9 ONLY_FOR_ARCHS= i386 PLIST= ${WRKDIR}/plist @@ -25,7 +23,7 @@ pre-install: ${RM} -rf ${WRKSRC}/tmp ${MKDIR} ${WRKSRC}/tmp cd ${WRKSRC}/tmp; \ - rpm2cpio.pl < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | \ + rpm2cpio < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | \ ${CPIO} -id; ${FIND} * -type f -o -type l > ${PLIST}; \ ${FIND} -d * -type d | ${GREP} glib | ${SED} -e 's:^:@dirrm :' \ >> ${PLIST} |