diff options
author | steve <steve@FreeBSD.org> | 1999-11-14 03:02:01 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-11-14 03:02:01 +0000 |
commit | 4398cb40b7fa050f07d36bc502c8bcfcc611efc7 (patch) | |
tree | bc97fee21461ec829194b0059b42b9a98a30babc /misc | |
parent | dfbcecc6965e419d57051ac7baa7611965e73879 (diff) | |
download | FreeBSD-ports-4398cb40b7fa050f07d36bc502c8bcfcc611efc7.zip FreeBSD-ports-4398cb40b7fa050f07d36bc502c8bcfcc611efc7.tar.gz |
* Removed (unnecessary) dependancy on GNU gettext
* Modified install path of configuration files from lib/ to etc/
* Fixed some files to set file permission properly
PR: 14803
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/rpm/Makefile | 10 | ||||
-rw-r--r-- | misc/rpm/pkg-descr | 2 | ||||
-rw-r--r-- | misc/rpm/pkg-plist | 24 |
3 files changed, 18 insertions, 18 deletions
diff --git a/misc/rpm/Makefile b/misc/rpm/Makefile index e92cef3..84f05d5 100644 --- a/misc/rpm/Makefile +++ b/misc/rpm/Makefile @@ -14,13 +14,13 @@ MAINTAINER= ports@FreeBSD.org BUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm -GNU_CONFIGURE= yes -CONFIGURE_ENV= INSTALL_PROGRAM="${BSD_INSTALL_SCRIPT}" -CONFIGURE_ARGS= --disable-nls USE_GMAKE= yes +USE_AUTOCONF= yes +CONFIGURE_ARGS= --disable-nls + MAN8= rpm.8 rpm2cpio.8 -pre-install: - ${MKDIR} ${PREFIX}/include/rpm +pre-configure: + @(cd ${WRKSRC}/popt && ${AUTOCONF}) .include <bsd.port.mk> diff --git a/misc/rpm/pkg-descr b/misc/rpm/pkg-descr index 29b8cd9..72dc8b7 100644 --- a/misc/rpm/pkg-descr +++ b/misc/rpm/pkg-descr @@ -1,6 +1,6 @@ This is the Red Hat Package Manager. -Note: +FYI: There is also a rpm2cpio converter written in perl. You don't have to install the whole RPM manager to get the files in an RPM. diff --git a/misc/rpm/pkg-plist b/misc/rpm/pkg-plist index 3577be9..dacb62f 100644 --- a/misc/rpm/pkg-plist +++ b/misc/rpm/pkg-plist @@ -5,16 +5,16 @@ include/rpm/rpmlib.h include/rpm/dbindex.h include/rpm/header.h lib/librpm.a -@unexec rm %D/lib/rpmrc -@unexec rm %D/lib/rpmpopt -lib/rpm/mkinstalldirs -lib/rpm/find-provides -lib/rpm/find-requires -lib/rpm/rpmrc -lib/rpm/rpmpopt -lib/rpm/freshen.sh -lib/rpm/find-lang.sh -@exec ln -sf %D/lib/rpm/rpmrc %D/lib/rpmrc -@exec ln -sf %D/lib/rpm/rpmpopt %D/lib/rpmpopt +@unexec rm %D/etc/rpmrc +@unexec rm %D/etc/rpmpopt +etc/rpm/mkinstalldirs +etc/rpm/find-provides +etc/rpm/find-requires +etc/rpm/rpmrc +etc/rpm/rpmpopt +etc/rpm/freshen.sh +etc/rpm/find-lang.sh +@exec ln -sf %D/etc/rpm/rpmrc %D/etc/rpmrc +@exec ln -sf %D/etc/rpm/rpmpopt %D/etc/rpmpopt @dirrm include/rpm -@dirrm lib/rpm +@dirrm etc/rpm |