diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-08-06 16:32:03 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-08-06 16:32:03 +0000 |
commit | ca2512a466de0382edbd64bad4184504d9a44029 (patch) | |
tree | 5083213be3f776c83d4b5e11183862c545749044 /encap/tools/bcfg2-python-apt | |
parent | 39ab351aee7bb86fa90450edc0ab75cdf705728f (diff) | |
download | bcfg2-ca2512a466de0382edbd64bad4184504d9a44029.tar.gz bcfg2-ca2512a466de0382edbd64bad4184504d9a44029.tar.bz2 bcfg2-ca2512a466de0382edbd64bad4184504d9a44029.zip |
Need older version for Debian Sarge
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2049 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'encap/tools/bcfg2-python-apt')
-rw-r--r-- | encap/tools/bcfg2-python-apt/Makefile | 6 | ||||
-rw-r--r-- | encap/tools/bcfg2-python-apt/bcfg2-python-apt-0.5.10.ep | 93 |
2 files changed, 99 insertions, 0 deletions
diff --git a/encap/tools/bcfg2-python-apt/Makefile b/encap/tools/bcfg2-python-apt/Makefile index 929bc97ec..0e4740002 100644 --- a/encap/tools/bcfg2-python-apt/Makefile +++ b/encap/tools/bcfg2-python-apt/Makefile @@ -12,7 +12,13 @@ export EPKG MKENCAP = ${BASEDIR}/bin/mkencap export MKENCAP +APTMAJOR := $(shell apt-get --version | head -1 | cut -c 7) + +ifeq ($(APTMAJOR),5) +PYTHON-APT = bcfg2-python-apt-0.5.10 +else ifeq ($(APTMAJOR),6) PYTHON-APT = bcfg2-python-apt-0.6.19 +endif .ep.installed : # Clean, compile and install an encap package @printf "***** START .ep.installed for |$*| ***** \n" diff --git a/encap/tools/bcfg2-python-apt/bcfg2-python-apt-0.5.10.ep b/encap/tools/bcfg2-python-apt/bcfg2-python-apt-0.5.10.ep new file mode 100644 index 000000000..57ce35310 --- /dev/null +++ b/encap/tools/bcfg2-python-apt/bcfg2-python-apt-0.5.10.ep @@ -0,0 +1,93 @@ +<?xml version="1.0"?> + +<!-- $Id$ --> + +<encap_profile + profile_ver="1.0" + pkgspec="bcfg2-python-apt-0.5.10" +> + +<environment + variable="CC" + value="gcc" + type="set" +/> + +<environment + variable="PATH" +PLATFORM_IF_MATCH(solaris) + value="/usr/local/lib/bcfg2/bin:/usr/local/bin:/usr/sfw/bin:/usr/ccs/bin:" +PLATFORM_ELSE + value="/usr/local/lib/bcfg2/bin:/usr/local/bin:" +PLATFORM_ENDIF + type="prepend" +/> + +PLATFORM_IF_MATCH(linux) +PLATFORM_ELSE +<environment + variable="MAKE" + value="gmake" + type="set" +/> +PLATFORM_ENDIF + +<environment + variable="LDFLAGS" +PLATFORM_IF_MATCH(linux) + value="-L/usr/local/lib/bcfg2/lib -Wl,-rpath,/usr/local/lib/bcfg2/lib" +PLATFORM_ELSE_IF_MATCH(aix) + value="-L/usr/local/lib/bcfg2/lib -Wl,-blibpath:/usr/local/lib/bcfg2/lib:/usr/lib" +PLATFORM_ELSE_IF_MATCH(solaris) + value="-L/usr/local/lib/bcfg2/lib -R/usr/local/lib/bcfg2/lib:/usr/lib -YP,/usr/local/lib/bcfg2/lib:/usr/lib" +PLATFORM_ELSE +PLATFORM_ENDIF + type="set" +/> + +<environment + variable="CPPFLAGS" + value="-I/usr/local/lib/bcfg2/include" + type="set" +/> + +<source +url="http://www.pobox.com/users/dclark/mirror/python-apt/python-apt_0.5.10.tar.gz + http://ftp.debian.org/debian/pool/main/p/python-apt/python-apt_0.5.10.tar.gz" +subdir="python-apt-0.5.10" +> + +<configure> +/usr/local/lib/bcfg2/bin/python setup.py build_ext \ +-I/usr/local/lib/bcfg2/include \ +-L/usr/local/lib/bcfg2/lib \ +-L/usr/local/lib/bcfg2/lib/python2.4/site-packages +</configure> + +<build> +/usr/local/lib/bcfg2/bin/python setup.py build \ +--build-base=${builddir}/build +</build> + +<install> +/usr/local/lib/bcfg2/bin/python setup.py install \ +--prefix=${ENCAP_SOURCE}/${ENCAP_PKGNAME}/lib/bcfg2 \ +</install> + +<clean> +/usr/local/lib/bcfg2/bin/python setup.py clean --all +</clean> + +</source> + +<prepackage type="set"> +mkdir var 2>/dev/null || exit 0 +mkdir var/encap 2>/dev/null || exit 0 +touch var/encap/${ENCAP_PKGNAME} +</prepackage> + +<encapinfo> +description python-apt - python interface to libapt-pkg +</encapinfo> + +</encap_profile> |