diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-02-24 13:34:16 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-02-24 13:34:16 +0000 |
commit | 2952fe18d8285410d9b6de56779b1c611a2c84df (patch) | |
tree | 8951c02acdcce2921b1a41bc617a5f9c084f9ba6 /prt-get | |
parent | 66b0c1a9ae5a3e8195a250a9cec65f1f87198ed3 (diff) | |
download | core-2952fe18d8285410d9b6de56779b1c611a2c84df.tar.gz core-2952fe18d8285410d9b6de56779b1c611a2c84df.tar.xz |
2.2: update prt-get to reflect our new ports structure
Diffstat (limited to 'prt-get')
-rw-r--r-- | prt-get/.md5sum | 1 | ||||
-rw-r--r-- | prt-get/Pkgfile | 5 | ||||
-rw-r--r-- | prt-get/prt-get.conf | 44 |
3 files changed, 49 insertions, 1 deletions
diff --git a/prt-get/.md5sum b/prt-get/.md5sum index e3ed8485..4632d335 100644 --- a/prt-get/.md5sum +++ b/prt-get/.md5sum @@ -1 +1,2 @@ a9297b69ec9eacd555b291bc9ef50ad5 prt-get-0.5.11.tar.gz +2b1cec6ab2834ae7402b92f7bbd54d3b prt-get.conf diff --git a/prt-get/Pkgfile b/prt-get/Pkgfile index 162ed660..8ece43f6 100644 --- a/prt-get/Pkgfile +++ b/prt-get/Pkgfile @@ -5,11 +5,14 @@ name=prt-get version=0.5.11 release=1 -source=(http://jw.tks6.net/files/crux/prt-get-$version.tar.gz) +source=(http://jw.tks6.net/files/crux/prt-get-$version.tar.gz \ + prt-get.conf) build() { cd ${name}-${version} ./configure --prefix=/usr make make DESTDIR=$PKG install + + install -m 644 $SRC/prt-get.conf $PKG/etc/ } diff --git a/prt-get/prt-get.conf b/prt-get/prt-get.conf new file mode 100644 index 00000000..adc87daa --- /dev/null +++ b/prt-get/prt-get.conf @@ -0,0 +1,44 @@ +### +### prt-get conf +### + +# note: the order matters: the package found first is used +prtdir /usr/ports/core +prtdir /usr/ports/opt +prtdir /usr/ports/contrib + +### use mypackage form local directory +# prtdir /home/packages/build:mypackage + +### log options: +# writelog enabled # (enabled|disabled) +# logmode overwrite # (append|overwrite) +logfile /var/log/pkgbuild/%n.log + # path, %p=path to port dir, %n=port name + # %v=version, %r=release + +### use alternate cache file (default: /var/lib/pkg/prt-get.cache +# cachefile /mnt/nfs/cache + +### print README information: +# readme verbose # (verbose|compact|disabled) + +### prefer higher versions in sysup / diff +# preferhigher no # (yes|no) + +### use regexp search +# useregex no # (yes|no) + +### run pre- and post-installs scripts; yes is equivalent to the +### --install-scripts option +# runscripts no # (no|yes) + + +### EXPERT SECTION ### + +### alternative commands +# makecommand pkgmk +# addcommand pkgadd +# removecommand pkgrm +# runscriptcommand sh + |