aboutsummaryrefslogtreecommitdiffstats
path: root/misc/xdelta
Commit message (Collapse)AuthorAgeFilesLines
* SIZEify (maintainer timeout)trevor2004-03-311-0/+1
|
* Remove USE_GNOMENG.marcus2003-04-211-1/+0
|
* De-pkg-comment.knu2003-02-212-1/+1
|
* . Update to 1.1.3.glewis2003-02-042-2/+2
| | | | Approved by: Mail to maintainer bounces :(
* Convert USE_GLIB into USE_GNOMENG+USE_GNOME.sobomax2002-07-161-1/+2
|
* Backout previous change - it seems that new revision of the patch doesn'tsobomax2001-12-201-17/+8
| | | | | | apply everywhere. Submitted by: Todd Punderson <todd@doonga.net>
* Don't filter libc_r on 5-CURRENT.sobomax2001-12-201-8/+17
|
* Don't link in libc - FreeBSD doesn't need this.sobomax2001-10-311-4/+14
| | | | Submitted by: Ports Fury
* Fix pkg-plistkevlo2001-08-131-0/+2
| | | | | PR: 29484 Submitted by: Patrick Li <pat@databits.net>
* - Prevent the port from installing useless .la files;sobomax2001-07-233-7/+20
| | | | | | | - remove useless USE_LIBTOOL along with the custom regex and replace it with a patch; - properly pass CONFIGURE_TARGET for this configure script generated by the newest autoconf.
* Update to 1.1.2dwcjr2001-07-233-16/+16
| | | | | | | | | Add DEVEL category Add pre-patch to use libtool from ports Sort and add files to pkg-plist PR: 28825 Submitted by: pat@databits.net
* Massive style enforcement - use ^I instead of spaces for variables identation.sobomax2001-01-171-1/+1
|
* Implement USE_GLIB.reg2000-10-051-7/+2
|
* Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in theasami2000-06-171-1/+1
| | | | | | | | | previous commit message to bsd.port.mk, which said INSTALL_SHLIBS. Boo.) Line up the rhs of variable assignments nicely. Remove a couple of extra whitespaces while I'm here. Suggested by: sobomax
* Fix MASSIVE typo INSTALL_SHLIBS --> INSTALLS_SHLIBS, which occured because Isobomax2000-06-161-1/+1
| | | | | | | just cun'n'pasted the name from Satoshi's commit message without checking it. Hall of shame entry: sobomax
* First round of INSTALL_SHLIB fixes.sobomax2000-06-162-1/+1
|
* Change MAINTAINER from jmacd (who doesn't have time to maintain this port)will2000-04-261-1/+1
| | | | to Jacob Hart <c9710216@atlas.newcastle.edu.au>.
* Update xdelta to 1.1.1.will2000-04-233-11/+13
| | | | | | PR: 15461 Submitted by: Jacob A. Hart <c9710216@atlas.newcastle.edu.au> Apparently had no time: jmacd (maintainer)
* Convert to PORTNAME/PORTVERSION.asami2000-04-141-2/+2
|
* PREFIX -> LOCALBASE (portlint)mharo2000-03-211-1/+1
|
* Bump glib12 's share library version to 3,vanilla1999-10-101-1/+1
| | | | and portlint.
* FreeBSD.ORG -> FreeBSD.orgmharo1999-08-311-1/+1
| | | | | Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
* Change Id->FreeBSD.obrien1999-08-251-1/+1
|
* Commit #3/4 to enforce caps, no period.hoek1999-06-271-1/+1
| | | | | | | | | | | | FWIW, checkout of these things took 5+hrs, staying on the local .freebsd.org net w/o hitting the 'net at all. As promised, $ time cvs ci real 67m51.701s user 0m1.250s sys 0m5.345s
* Use glib version 1.2.3.steve1999-05-292-13/+7
| | | | | PR: 11841 Submitted by: Jeremy Lea <reg@shale.csir.co.za>
* use glib12, not glib11-devel. Like gtk, there are too many versions ofmharo1999-05-031-3/+3
| | | | | the library. If I recall correctly, this was the only port which depended on the glib11d port.
* Upgrade to 1.0.2.vanilla1999-02-203-15/+27
|
* Convert xdelta to elf.vanilla1998-09-232-4/+11
|
* Make this file match reality.asami1998-09-141-1/+1
| | | | | | Again. Untested commit by: jmacd :<
* New version.jmacd1998-09-032-5/+5
|
* Remove miscellaneous manpages.hoek1998-08-191-1/+0
|
* Don't override ${CC}, instead patch ltconfig as done in a couplesteve1998-05-041-4/+1
| | | | | | of other ports. PR: 6423
* Properly detect GDBM, especially since we're going through the troubleasami1998-04-301-1/+3
| | | | | | | | to depend on it. This fixes gimp's build problem ("XDELTA not found, the sky is falling!!!") too. PR: 6451 Submitted by: Donald Burr dburr@POBoxes.com
* I checksummed the wrong release.jmacd1998-04-241-1/+1
|
* Install the missing headers, use glib when available.jmacd1998-04-233-5/+7
| | | | PR: 6381
* "make deinstall" before the "make package" test, please!asami1998-04-211-1/+1
|
* This fixes problem #2 reported by pierre.dampure@k2c.co.uk (outjmacd1998-04-212-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of order includes--this version compiled on a 2.2.6 machine without problems, though). Rather than patch it, I cut a new release. Problem #2 is: > 1) Though the port depends on GDBM, the configure script does not find > it; I got that to work by creating ad hoc symlinks for > /usr/include/gdbm.h and /usr/lib/libgdbm.a --> for some reasons, > /usr/local/include and /usr/local/lib are ignored (btw, any way I can do > that "cleanly" for all ports?) which I haven't touched. Since the standard gcc doesn't search /usr/local/include and /usr/local/lib, it is neccesary to have CFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib before configure succeeds, but I tried adding those lines to MAKE_ENV and it didn't help configure (is there a CONFIGURE_ENV)? Why doesn't it search those paths anyway? I looked at other ports which require gdbm and they are no different, it seems they all have this problem, or their makefiles have hardcoded /usr/local paths in them. -josh
* Upgrade version, add MAN1 variable, make myself maintainer.jmacd1998-04-193-7/+9
|
* Add MAINTAINER so this portlints clean.steve1998-03-161-1/+3
|
* uncomment, BUILD_DEPENDS on gdbm, not sure why this was commentederich1998-02-051-2/+2
| | | | | out in the first place... Suggested by: Greg Troxel <gdt@lexort.com>
* Portlint. I left out the maintainer for now, please fill in your nameasami1998-01-291-3/+2
| | | | if you intend to maintain it. > erich
* new port for xdeltaerich1998-01-275-0/+52