aboutsummaryrefslogtreecommitdiff
path: root/archivers/rpm4
Commit message (Collapse)AuthorAgeFilesLines
* . Add SHA256.Greg Lewis2005-11-161-0/+2
| | | | | | | . SIZEify. Notes: svn path=/head/; revision=148430
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* . bzip2 has been in the base system since 4.4, so no need to check for it.Greg Lewis2005-11-141-3/+0
| | | | | | | | PR: 88985 Submitted by: edwin Notes: svn path=/head/; revision=148258
* . Change rpmrc to support amd64 and also to indicate that i386 and amd64Greg Lewis2005-06-022-1/+54
| | | | | | | | | | | | are compatible. This differs from PR 80922 in that amd64 is made the canonical RPM architecture on that architecture rather than x86_64 as it is under Linux. . Bump PORTREVISION. PR: 80922 (based on) Notes: svn path=/head/; revision=136684
* . Change the default path to search for the source when building an RPMGreg Lewis2005-02-181-0/+13
| | | | | | | | | | | | | | | to be ${LOCALBASE}/src/portbld, which is created by the port during installation. Don't use ${LOCALBASE}/src/redhat as the default as its not created by the port by default and is inappropriate for FreeBSD. Its quite likely ${LOCALBASE}/src/rpm is a better choice, but that requires more work than I have time for right now. Submitted by: Roman Neuhauser <neuhauser@chello.cz> Notes: svn path=/head/; revision=129193
* . Try to remove ${PREFIX}/src when deinstalling as the port creates thisGreg Lewis2004-12-281-0/+1
| | | | | | | | | directory. Submitted by: kris Notes: svn path=/head/; revision=125365
* Clean up handling of locale directories at deinstall-time:Kris Kennaway2004-12-161-0/+2
| | | | | | | | * Don't remove "system directories" (which were created by BSD.*.dist) * Silently try to remove locale directories which we might have created Notes: svn path=/head/; revision=124183
* s/mirror.ac.uk/mirrorservice.orgVolker Stolz2004-08-251-1/+1
| | | | | | | | | PR: ports/69481 Submitted by: Tim Bishop, lesi@ Approved by: maintainer timeout Notes: svn path=/head/; revision=117250
* . Use libtool 1.3.x rather than 1.4.x (thus removing the last portGreg Lewis2004-06-094-3/+9
| | | | | | | | | dependency on libtool14). Submitted by: ade Notes: svn path=/head/; revision=111181
* - Use USE_ICONV knobKirill Ponomarev2004-03-301-1/+1
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=105722
* . /usr/local -> %%LOCALBASE%%.Greg Lewis2004-03-241-1/+1
| | | | Notes: svn path=/head/; revision=105156
* . Link the python modules against libintl so they can actually be used.Greg Lewis2004-03-192-5/+6
| | | | | | | . Bump PORTREVISION. Notes: svn path=/head/; revision=104677
* . No, it doesn't conflict with rpm2cpio as that installs rpm2cpio.pl, notGreg Lewis2004-03-191-1/+1
| | | | | | | rpm2cpio. Notes: svn path=/head/; revision=104649
* . Build and install API documentation if NOPORTDOCS isn't set.Greg Lewis2004-03-091-0/+16
| | | | | | | . Bump PORTREVISION for this change. Notes: svn path=/head/; revision=103452
* . The RPM web site now refers to it as the "RPM Package Manager", not theGreg Lewis2004-03-051-9/+8
| | | | | | | "Red Hat Package Manager". Fix this and reformat the text. Notes: svn path=/head/; revision=103046
* . Disable the javaglue for beecrypt. Its pointless and its broken (breaksGreg Lewis2004-03-051-3/+4
| | | | | | | | the build). . Reformat CONFIGURE_ARGS. Notes: svn path=/head/; revision=103042
* . Fix fetch.Greg Lewis2004-03-051-3/+2
| | | | Notes: svn path=/head/; revision=103041
* Add a port of rpm 4.0.4:Greg Lewis2004-03-0520-0/+1033
"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. Notes: svn path=/head/; revision=102963