X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-bw0-f163.google.com (mail-bw0-f163.google.com [209.85.218.163]) by lists.alpinelinux.org (Postfix) with ESMTP id 9A7FD170000BA for ; Mon, 23 Feb 2009 13:28:03 +0000 (UTC) Received: by bwz7 with SMTP id 7so5164557bwz.1 for ; Mon, 23 Feb 2009 05:28:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=ISkW3M4k1HkYn5ABtfugjmaqQAbMQn2wE4Df7adF/9I=; b=KnclLpjhFK6mcAyojk9vzw727QLFSxqcLBcRJpM66dnET5eyeOyCO9TVNjqBvPhXtm rXbRykuLcz7viSdbS0mEtlqTWDv5W0JHf/DbvdTCsINwsXkKQqLHYOpifhOIyZ99XTj9 fDTSIaxVVMaFCEM3c/mREuxqyRZ4szqPohBMs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=Rgry+J9/aZxHLHgX+rOSD0dVM0l8boNtER1MWQSPR4cJwA58TFbGWp8VoZ6mjIlj1H rEJ7PHIKz1KyML6PRZnsV6529iGPn/ydsiFI1+jfLNmIz35iUv36XqczZ9nMa2cXKnBh 2VTDHPKev4kpXT0mRyMHzJ6LsNYpd1J2f+RrI= Received: by 10.86.4.2 with SMTP id 2mr312389fgd.34.1235395682093; Mon, 23 Feb 2009 05:28:02 -0800 (PST) Received: from ?10.65.65.1? (149-182-13.oke2-bras2.adsl.tele2.no [90.149.182.13]) by mx.google.com with ESMTPS id l12sm10426043fgb.51.2009.02.23.05.28.00 (version=SSLv3 cipher=RC4-MD5); Mon, 23 Feb 2009 05:28:01 -0800 (PST) Subject: Re: [alpine-devel] extras/lzo From: Natanael Copa To: Michael Mason Cc: alpine-devel@lists.alpinelinux.org In-Reply-To: References: Content-Type: text/plain Date: Mon, 23 Feb 2009 14:27:58 +0100 Message-Id: <1235395678.992.59.camel@nc> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Mime-Version: 1.0 X-Mailer: Evolution 2.24.4 Content-Transfer-Encoding: 7bit On Fri, 2009-02-20 at 22:31 +0000, Michael Mason wrote: > Please add. > the lzo.install is missing. > > > > > > > differences > between files > attachment > (0001-lzo-first-add.patch) > > From 550a17dc42b6d2c519ce2c138a8de20b1437c2fa Mon Sep 17 00:00:00 2001 > From: ms13sp > Date: Fri, 20 Feb 2009 22:27:05 +0000 > Subject: [PATCH] lzo first add > > --- > extra/lzo/APKBUILD | 32 ++++++++++++++++++++++++++++++++ > 1 files changed, 32 insertions(+), 0 deletions(-) > create mode 100644 extra/lzo/APKBUILD > > diff --git a/extra/lzo/APKBUILD b/extra/lzo/APKBUILD > new file mode 100644 > index 0000000..cd88409 > --- /dev/null > +++ b/extra/lzo/APKBUILD > @@ -0,0 +1,32 @@ > +# Contributor: ms13sp > +# Maintainer: ms13sp > +pkgname=lzo > +pkgver=2.03 > +pkgrel=0 > +pkgdesc="LZO -- a real-time data compression library" > +url="http://www.oberhumer.com/opensource/lzo" > +license="GPL" > +depends="" i suspect that uclibc is missing un depends. > +makedepends="" btw.. the reason that uclibc-dev is not needed in makedepends is that practically all packages needs it there, together with gcc, make, binutils and patch. those packages are automatically added to makedepends. Those will not be added as dependencies for the runtime package though. There are a few packages that does not depend on uclibc (uclibc itself for instance) so I prefer to not automatically add uclibc to depends. > +install="lzo.install" > +subpackages="" > +source="http://www.oberhumer.com/opensource/lzo/download/$pkgname-$pkgver.tar.gz > + $install > + " > + > +build() { > + cd "$srcdir/$pkgname-$pkgver" > + > + ./configure --prefix=/usr \ > + --sysconfdir=/etc \ > + --mandir=/usr/share/man \ > + --infodir=/usr/share/info > + make || return 1 > + make DESTDIR="$pkgdir" install > + > + # install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname > + # install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname > +} > + > +md5sums="0c3d078c2e8ea5a88971089a2f02a726 lzo-2.03.tar.gz > +b730b3d200f52027868378ad5ee0226b lzo.install" > -- > 1.6.1.3 Please send a new or additional patch with the missing lzo.install. Thanks! -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---