head	1.2;
access;
symbols
	RELEASE_8_3_0:1.1
	RELEASE_9_0_0:1.1
	RELEASE_7_4_0:1.1
	RELEASE_8_2_0:1.1
	RELEASE_6_EOL:1.1
	RELEASE_8_1_0:1.1
	RELEASE_7_3_0:1.1
	RELEASE_8_0_0:1.1
	RELEASE_7_2_0:1.1
	RELEASE_7_1_0:1.1
	RELEASE_6_4_0:1.1
	RELEASE_5_EOL:1.1
	RELEASE_7_0_0:1.1
	RELEASE_6_3_0:1.1
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1
	RELEASE_6_2_0:1.1
	RELEASE_6_1_0:1.1
	RELEASE_5_5_0:1.1
	RELEASE_6_0_0:1.1
	RELEASE_5_4_0:1.1
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1
	RELEASE_4_10_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2012.11.17.05.54.23;	author svnexp;	state Exp;
branches;
next	1.1;

1.1
date	2004.03.05.02.26.10;	author glewis;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Switch exporter over
@
text
@#!/bin/sh
# $FreeBSD: head/archivers/rpm4/pkg-install 300895 2012-07-14 12:56:14Z beat $

# The RPM database directory
RPM_DATABASE_DIR=/var/lib/rpm

# Provide instructions for initialising the RPM database.
if [ "$2" = "POST-INSTALL" ]; then
	if [ ! -d "${RPM_DATABASE_DIR}" ]; then
		echo ""
		echo "No RPM database found.  If you wish to use RPM to install"
		echo "RPM packages the you will need to initialise the database"
		echo "with the commands:"
		echo ""
		echo "	mkdir -p ${RPM_DATABASE_DIR}"
		echo "	${PKG_PREFIX}/bin/rpm --initdb"
		echo ""
	fi
fi
@


1.1
log
@Add a port of rpm 4.0.4:

"The Red Hat Package Manager (RPM) is a powerful command line driven
 package management system capable of installing, uninstalling,
 verifying, querying, and updating computer software packages. Each
 software package consists of an archive of files along with information
 about the package like its version, a description, and the like.
 There is also a related API ("Application Program Interface"),
 permitting advanced developers to bypass 'shelling out' to a command
 line, and to manage such transactions from within a native coding
 language.

 WWW: http://www.rpm.org/"

4.0.4 was chosen because:
. The only newer version available as a tarball (4.1) is buggy.
. This version closely corresponds to our current default linux_base.
. This version uses the version of popt we have in the tree (unfortunately
  it uses an earlier version of beecrypt).
. This version is a lot less work to port than 4.2 (elfutils).

However, I am considering how best this port could be updated to a more
recent version (e.g. 4.1.1 or 4.2, probably the latter).

This wasn't an update to the current rpm port as I haven't done enough
testing of other ports that use rpm with it.

Tested on 4.9/i386, 5.2/sparc64 and 5.2/alpha.
@
text
@d2 1
a2 1
# $FreeBSD$
@

