Re: [aur-general] mirdir pkg error

2009-06-10 Thread Andrea Scarpino
use:
make prefix="$pkgdir/usr" man1dir="$pkgdir/usr/share/man" install

you can remove empty arrays, and make and fakeroot are in base-devel
group so take they out from makedepends.

On 11/06/2009, nathan owe.  wrote:
> Allan McRae wrote:
>> nathan owe. wrote:
>>> I am trying to make a pkg :
>>>
>>>
>>> # Contributor: Nathan Owe. ndowens04 at gmail dot com
>>> pkgname=mirdir
>>> pkgver=2.1
>>> pkgrel=1
>>> pkgdesc="allows to synchronize two directory trees in a fast way."
>>> arch=(i686)
>>> url="http://mirdir.sf.net";
>>> license=('GPL')
>>> depends=()
>>> makedepends=('make' 'fakeroot')
>>> source=(http://downloads.sourceforge.net/sourceforge/mirdir/$pkgname-$pkgver-Unix.tar.gz)
>>>
>>>
>>> md5sums=('56afe2aae7983176fd804c264740d6a2')
>>>
>>> build() {
>>>  cd "$srcdir/$pkgname-$pkgver-UNIX"
>>>
>>>  ./configure --prefix=/usr
>>>  make || return 1
>>>  make DESTDIR="$pkgdir/" install
>>> }
>>>
>>> when i try to do makepkg -s it gives
>>> ./mkinstalldirs /usr/bin
>>> ./mkinstalldirs /usr/man/man1
>>> /bin/install -c bin/mirdir /usr/bin
>>> /bin/install: cannot create regular file `/usr/bin/mirdir':
>>> Permission denied
>>> make: *** [install] Error 1
>>
>> It looks like that package does not support the DESTDIR arguement.
>> You will need to look at the makefile to see what it does do...
>>
>> Allan
>>
>>
>>
>>
> well i got it to get past the error, now i just need to get it to
> install the man pages to /usr/share/man but i do
> mandir=${pkgdir}/usr/share/man after the make command and it still dont
> want to install in the correct dir
>


-- 
Andrea `BaSh` Scarpino
Arch Linux Developer


Re: [aur-general] Missing Packages

2009-06-10 Thread nathan owe.

Allan McRae wrote:

nathan owe. wrote:

Allan McRae wrote:

nathan owe. wrote:

aur-not...@archlinux.org wrote:

Missing i686 Packages:
No new package supplied for libev 3.60-1!

--
This is an automated message. If you wish to stop receiving it twice
a day, fix the package(s).

what pkg is missing?


This is a warning for Trusted Users that a package committed to 
community CVS is not found in the repos.  The name of the package is 
given quite clearly in the warning



um i am not in the trusted user list and can't upload to community


Then leave it to a Trusted User to fix...

Allan




sorry, i thought the message was directed at me for some reason


Re: [aur-general] Missing Packages

2009-06-10 Thread Allan McRae

nathan owe. wrote:

Allan McRae wrote:

nathan owe. wrote:

aur-not...@archlinux.org wrote:

Missing i686 Packages:
No new package supplied for libev 3.60-1!

--
This is an automated message. If you wish to stop receiving it twice
a day, fix the package(s).

what pkg is missing?


This is a warning for Trusted Users that a package committed to 
community CVS is not found in the repos.  The name of the package is 
given quite clearly in the warning



um i am not in the trusted user list and can't upload to community


Then leave it to a Trusted User to fix...

Allan





Re: [aur-general] Missing Packages

2009-06-10 Thread nathan owe.

Allan McRae wrote:

nathan owe. wrote:

aur-not...@archlinux.org wrote:

Missing i686 Packages:
No new package supplied for libev 3.60-1!

--
This is an automated message. If you wish to stop receiving it twice
a day, fix the package(s).

what pkg is missing?


This is a warning for Trusted Users that a package committed to 
community CVS is not found in the repos.  The name of the package is 
given quite clearly in the warning


Allan




um i am not in the trusted user list and can't upload to community


Re: [aur-general] Missing Packages

2009-06-10 Thread Allan McRae

nathan owe. wrote:

aur-not...@archlinux.org wrote:

Missing i686 Packages:
No new package supplied for libev 3.60-1!

--
This is an automated message. If you wish to stop receiving it twice
a day, fix the package(s).

what pkg is missing?


This is a warning for Trusted Users that a package committed to 
community CVS is not found in the repos.  The name of the package is 
given quite clearly in the warning


Allan





Re: [aur-general] Missing Packages

2009-06-10 Thread nathan owe.

aur-not...@archlinux.org wrote:

Missing i686 Packages:
No new package supplied for libev 3.60-1!

--
This is an automated message. If you wish to stop receiving it twice
a day, fix the package(s).

what pkg is missing?




[aur-general] Missing Packages

2009-06-10 Thread aur-notify
Missing i686 Packages:
No new package supplied for libev 3.60-1!

--
This is an automated message. If you wish to stop receiving it twice
a day, fix the package(s).



Re: [aur-general] mirdir pkg error

2009-06-10 Thread nathan owe.

Allan McRae wrote:

nathan owe. wrote:

I am trying to make a pkg :


# Contributor: Nathan Owe. ndowens04 at gmail dot com
pkgname=mirdir
pkgver=2.1
pkgrel=1
pkgdesc="allows to synchronize two directory trees in a fast way."
arch=(i686)
url="http://mirdir.sf.net";
license=('GPL')
depends=()
makedepends=('make' 'fakeroot')
source=(http://downloads.sourceforge.net/sourceforge/mirdir/$pkgname-$pkgver-Unix.tar.gz) 


md5sums=('56afe2aae7983176fd804c264740d6a2')

build() {
 cd "$srcdir/$pkgname-$pkgver-UNIX"

 ./configure --prefix=/usr
 make || return 1
 make DESTDIR="$pkgdir/" install
}

when i try to do makepkg -s it gives
./mkinstalldirs /usr/bin
./mkinstalldirs /usr/man/man1
/bin/install -c bin/mirdir /usr/bin
/bin/install: cannot create regular file `/usr/bin/mirdir': 
Permission denied

make: *** [install] Error 1


It looks like that package does not support the DESTDIR arguement.  
You will need to look at the makefile to see what it does do...


Allan




well i got it to get past the error, now i just need to get it to 
install the man pages to /usr/share/man but i do 
mandir=${pkgdir}/usr/share/man after the make command and it still dont 
want to install in the correct dir


Re: [aur-general] mirdir pkg error

2009-06-10 Thread Allan McRae

nathan owe. wrote:

I am trying to make a pkg :


# Contributor: Nathan Owe. ndowens04 at gmail dot com
pkgname=mirdir
pkgver=2.1
pkgrel=1
pkgdesc="allows to synchronize two directory trees in a fast way."
arch=(i686)
url="http://mirdir.sf.net";
license=('GPL')
depends=()
makedepends=('make' 'fakeroot')
source=(http://downloads.sourceforge.net/sourceforge/mirdir/$pkgname-$pkgver-Unix.tar.gz) 


md5sums=('56afe2aae7983176fd804c264740d6a2')

build() {
 cd "$srcdir/$pkgname-$pkgver-UNIX"

 ./configure --prefix=/usr
 make || return 1
 make DESTDIR="$pkgdir/" install
}

when i try to do makepkg -s it gives
./mkinstalldirs /usr/bin
./mkinstalldirs /usr/man/man1
/bin/install -c bin/mirdir /usr/bin
/bin/install: cannot create regular file `/usr/bin/mirdir': Permission 
denied

make: *** [install] Error 1


It looks like that package does not support the DESTDIR arguement.  You 
will need to look at the makefile to see what it does do...


Allan






[aur-general] mirdir pkg error

2009-06-10 Thread nathan owe.

I am trying to make a pkg :


# Contributor: Nathan Owe. ndowens04 at gmail dot com
pkgname=mirdir
pkgver=2.1
pkgrel=1
pkgdesc="allows to synchronize two directory trees in a fast way."
arch=(i686)
url="http://mirdir.sf.net";
license=('GPL')
depends=()
makedepends=('make' 'fakeroot')
source=(http://downloads.sourceforge.net/sourceforge/mirdir/$pkgname-$pkgver-Unix.tar.gz)
md5sums=('56afe2aae7983176fd804c264740d6a2')

build() {
 cd "$srcdir/$pkgname-$pkgver-UNIX"

 ./configure --prefix=/usr
 make || return 1
 make DESTDIR="$pkgdir/" install
}

when i try to do makepkg -s it gives
./mkinstalldirs /usr/bin
./mkinstalldirs /usr/man/man1
/bin/install -c bin/mirdir /usr/bin
/bin/install: cannot create regular file `/usr/bin/mirdir': Permission 
denied

make: *** [install] Error 1




Re: [aur-general] doc dir

2009-06-10 Thread Smartboy
On Wed, Jun 10, 2009 at 4:38 PM, nathan owe.  wrote:

> nathan owe. wrote:
>
>> nathan owe. wrote:
>>
>>> nathan owe. wrote:
>>>
 i used namcap and it is saying the package uses a non standard dir
 /usr/doc. this is probably wrong but i know how to make it tell where the
 mandir is, so i tried docdir={$pkgname}/usr/share/doc

 how can i fix this

 thanks

>>> nm i think i found my mistake maybe
>>>
>> nope still wants to install the docs to a non standard dir. and  i seen
>> the mandir={$pkgdir} instead of pkgname
>>
> so how do i tell it where to install the docs at
>

You can always move the docs manually if all else fails. Just use install to
move it. Not very clean, but it works for the time being.

Smartboy


Re: [aur-general] doc dir

2009-06-10 Thread nathan owe.

nathan owe. wrote:

nathan owe. wrote:

nathan owe. wrote:
i used namcap and it is saying the package uses a non standard dir 
/usr/doc. this is probably wrong but i know how to make it tell 
where the mandir is, so i tried docdir={$pkgname}/usr/share/doc


how can i fix this

thanks

nm i think i found my mistake maybe
nope still wants to install the docs to a non standard dir. and  i 
seen the mandir={$pkgdir} instead of pkgname

so how do i tell it where to install the docs at


Re: [aur-general] doc dir

2009-06-10 Thread nathan owe.

nathan owe. wrote:

nathan owe. wrote:
i used namcap and it is saying the package uses a non standard dir 
/usr/doc. this is probably wrong but i know how to make it tell where 
the mandir is, so i tried docdir={$pkgname}/usr/share/doc


how can i fix this

thanks

nm i think i found my mistake maybe
nope still wants to install the docs to a non standard dir. and  i seen 
the mandir={$pkgdir} instead of pkgname


Re: [aur-general] doc dir

2009-06-10 Thread nathan owe.

nathan owe. wrote:
i used namcap and it is saying the package uses a non standard dir 
/usr/doc. this is probably wrong but i know how to make it tell where 
the mandir is, so i tried docdir={$pkgname}/usr/share/doc


how can i fix this

thanks

nm i think i found my mistake maybe


[aur-general] doc dir

2009-06-10 Thread nathan owe.
i used namcap and it is saying the package uses a non standard dir 
/usr/doc. this is probably wrong but i know how to make it tell where 
the mandir is, so i tried docdir={$pkgname}/usr/share/doc


how can i fix this

thanks


[aur-general] Please remove apr-util

2009-06-10 Thread zc00gii
Please remove the apr-util(http://aur.archlinux.org/packages.php?ID=6805) I
by mistake uploaded a PKGBUILD with the name as the official package by
mistake, I have uploaded a corrected version.

Thank you,
zc00gii


Re: [aur-general] Deletion request

2009-06-10 Thread Daenyth Blank
Done


[aur-general] Deletion request

2009-06-10 Thread flocke
I uploaded the package vget [1] (not the one I wanted to have deleted
yesterday, but the original version from launchpad) but it won´t work
anymore and no one seems to maintain it.
So could you please remove it?

[1] http://aur.archlinux.org/packages.php?ID=27139

Thank You!
Jakob "flocke" Nixdorf


signature.asc
Description: PGP signature