diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2007-06-22 13:39:32 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2007-06-22 13:39:32 +0000 |
commit | 1f10ea02c6f3d1791a809b4425b53dfa48a95685 (patch) | |
tree | 1aa9c4c25501f2a7f50e0523df55d007f8695d9f /encap/epkg | |
parent | 1b6d329056e622ba765e998f33744fd63ad1499a (diff) | |
download | bcfg2-1f10ea02c6f3d1791a809b4425b53dfa48a95685.tar.gz bcfg2-1f10ea02c6f3d1791a809b4425b53dfa48a95685.tar.bz2 bcfg2-1f10ea02c6f3d1791a809b4425b53dfa48a95685.zip |
EncapPackages: seperating out server stuff
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@3332 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'encap/epkg')
-rw-r--r-- | encap/epkg/Makefile | 5 | ||||
-rw-r--r-- | encap/epkg/README | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/encap/epkg/Makefile b/encap/epkg/Makefile index acebb96e6..9ea9c12ee 100644 --- a/encap/epkg/Makefile +++ b/encap/epkg/Makefile @@ -14,9 +14,9 @@ export PATH LDFLAGS CPPFLAGS ZLIB = zlib-1.2.3 LIBTAR = libtar-1.2.11 -CURL = curl-7.15.4 +CURL = curl-7.16.2 FGET = fget-1.3.3 -EXPAT = expat-2.0.0 +EXPAT = expat-2.0.1 EPKG = epkg-2.3.9 all: zlib libtar curl fget expat epkg @@ -37,4 +37,5 @@ expat: cd ${EXPAT} && ./configure --disable-shared --prefix=${PREFIX} && $(MAKE) && $(MAKE) install epkg: + test -d $(ENCAPDIR)/$(EPKG) && rm -rf $(ENCAPDIR)/$(EPKG) cd ${EPKG} && ./configure && $(MAKE) && $(MAKE) install diff --git a/encap/epkg/README b/encap/epkg/README index 30ef2fd4f..7fb3bd856 100644 --- a/encap/epkg/README +++ b/encap/epkg/README @@ -9,8 +9,11 @@ decompress/untar the distributions, and then run make (or gmake on non-GNU platforms) All of the software is available from: - * http://www.dclark.us/mirror/epkg-deps -(or Google for it). + * http://mirror.opensysadmin.com/epkg-deps/epkg-with-all-deps.tar.gz +You will want to download and extract this file to this directory, as +it contains symbloic links to the README and Makefile in this directory. +After that is complete, do "cd epkg-with-all-deps" and then "make" or +"gmake" (depending on what GNU Make is called on your machine). Once you have a working epkg distribution, you should: * cd /usr/local/encap |